Changeset 384 for soft/giet_vm/convol/main.c
- Timestamp:
- Aug 7, 2014, 12:28:23 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/convol/main.c
r377 r384 11 11 #include "stdlib.h" 12 12 #include "barrier.h" 13 #include " remote_malloc.h"13 #include "malloc.h" 14 14 15 15 #define USE_SBT_BARRIER 1 … … 183 183 #endif 184 184 185 GA[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters) , 9 ,x , y );186 GB[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , 9 ,x , y );187 GC[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , 9 ,x , y );188 GD[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , 9 ,x , y );189 GZ[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)/2 , 9 ,x , y );185 GA[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters) , x , y ); 186 GB[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , x , y ); 187 GC[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , x , y ); 188 GD[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)*2 , x , y ); 189 GZ[cluster_id] = remote_malloc( (FRAME_SIZE/nclusters)/2 , x , y ); 190 190 191 191 #if VERBOSE
Note: See TracChangeset
for help on using the changeset viewer.