Changeset 457 for soft/giet_vm/applications/convol/convol.py
- Timestamp:
- Dec 5, 2014, 3:41:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/convol/convol.py
r432 r457 65 65 for p in xrange( nprocs ): 66 66 proc_id = (((x * y_size) + y) * nprocs) + p 67 size = stack_size / nprocs67 size = (stack_size / nprocs) & 0xFFFFF000 68 68 base = stack_base + (proc_id * size) 69 69 mapping.addVseg( vspace, 'conv_stack_%d_%d_%d' % (x,y,p), base, size,
Note: See TracChangeset
for help on using the changeset viewer.