Changeset 468 for soft/giet_vm/giet_libs/barrier.c
- Timestamp:
- Dec 12, 2014, 5:06:18 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/giet_libs/barrier.c
r431 r468 12 12 13 13 /////////////////////////////////////////////////////////////////////////////////// 14 ///////////////////////////////////////////////////////////////////////////////////15 14 // Simple barrier access functions 16 ///////////////////////////////////////////////////////////////////////////////////17 15 /////////////////////////////////////////////////////////////////////////////////// 18 16 … … 32 30 { 33 31 34 #if GIET_DEBUG_ BARRIER32 #if GIET_DEBUG_USER_BARRIER 35 33 unsigned int x; 36 34 unsigned int y; … … 85 83 asm volatile ("sync" ::: "memory"); 86 84 87 #if GIET_DEBUG_ BARRIER85 #if GIET_DEBUG_USER_BARRIER 88 86 giet_shr_printf("[DEBUG BARRIER] proc[%d,%d,%d] exit barrier_wait()\n", x, y, p ); 89 87 #endif … … 176 174 barrier->ntasks = ntasks; 177 175 178 #if GIET_DEBUG_ BARRIER176 #if GIET_DEBUG_USER_BARRIER 179 177 giet_shr_printf("\n[DEBUG BARRIER] sbt_nodes allocation / ntasks = %d\n", ntasks ); 180 178 #endif … … 200 198 ( (l == 8) && ((x&0x0F) == 0) && ((y&0x0F) == 0) ) ) 201 199 { 202 barrier->node[x][y][l] = remote_malloc( SBT_NODE_SIZE, x, y );203 204 #if GIET_DEBUG_ BARRIER200 barrier->node[x][y][l] = remote_malloc( sizeof(sbt_node_t), x, y ); 201 202 #if GIET_DEBUG_USER_BARRIER 205 203 giet_shr_printf("[DEBUG SBT] node[%d][%d][%d] : vaddr = %x\n", 206 204 x, y, l, (unsigned int)barrier->node[x][y][l] ); … … 211 209 } 212 210 213 #if GIET_DEBUG_ BARRIER211 #if GIET_DEBUG_USER_BARRIER 214 212 giet_shr_printf("\n[DEBUG SBT] SBT nodes initialisation\n"); 215 213 #endif … … 261 259 node->child1 = NULL; 262 260 263 #if GIET_DEBUG_ BARRIER261 #if GIET_DEBUG_USER_BARRIER 264 262 giet_shr_printf("[DEBUG BARRIER] initialize sbt_node[%d][%d][%d] :" 265 263 " arity = %d / child0 = %x / child1 = %x\n", … … 302 300 node->child1 = barrier->node[x1][y1][level-1]; 303 301 304 #if GIET_DEBUG_ BARRIER302 #if GIET_DEBUG_USER_BARRIER 305 303 giet_shr_printf("[DEBUG BARRIER] initialize sbt_node[%d][%d][%d] :" 306 304 " arity = %d / child0 = %x / child1 = %x\n",
Note: See TracChangeset
for help on using the changeset viewer.