Changeset 720 for soft/giet_vm/applications/classif/classif.py
- Timestamp:
- Oct 11, 2015, 6:23:18 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/classif/classif.py
r712 r720 56 56 57 57 # create vspace 58 vspace = mapping.addVspace( name = 'classif', startname = 'classif_data', active = False ) 58 vspace = mapping.addVspace( name = 'classif', 59 startname = 'classif_data', 60 active = False ) 59 61 60 62 # data vseg : shared / cluster[0][0] … … 88 90 local = True ) 89 91 90 # stacks vsegs: local (one stack per processor=> nprocs stacks per cluster)92 # stacks vsegs: local (one stack per thread => nprocs stacks per cluster) 91 93 # ... plus main_stack in cluster[0][0] 92 94 mapping.addVseg( vspace, 'main_stack', … … 133 135 'classif_stack_%d_%d_%d' % (x,y,p), 134 136 'classif_heap_%d_%d' % (x,y), 135 start_index ) # index in start_vector137 start_index ) 136 138 137 139 # extend mapping name
Note: See TracChangeset
for help on using the changeset viewer.