Changeset 543
- Timestamp:
- Mar 30, 2015, 6:23:27 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/applications/transpose/main.c
r515 r543 110 110 } 111 111 112 // Barrier initialisation113 sqt_barrier_init( &barrier, x_size , y_size , nprocs );114 115 giet_shr_printf("\n[TRANSPOSE] Proc [0,0,0] completes barrier init at cycle %d\n",116 giet_proctime() );117 118 112 // Distributed buffers allocation 119 113 // The buffers containing one image are distributed in the user … … 125 119 unsigned int ry = c % y_size; 126 120 121 heap_init( rx, ry ); 127 122 buf_in[c] = remote_malloc( npixels/nclusters, rx, ry ); 128 123 buf_out[c] = remote_malloc( npixels/nclusters, rx, ry ); … … 136 131 (unsigned int)buf_out[c] ); 137 132 } 133 134 // Barrier initialisation 135 sqt_barrier_init( &barrier, x_size , y_size , nprocs ); 136 137 giet_shr_printf("\n[TRANSPOSE] Proc [0,0,0] completes barrier init at cycle %d\n", 138 giet_proctime() ); 138 139 139 140 // open file containing images
Note: See TracChangeset
for help on using the changeset viewer.