Skip to content
Snippets Groups Projects
Commit 54448de7 authored by Pedro Gonnet's avatar Pedro Gonnet
Browse files

don't use cell mapping for kick1.

Former-commit-id: 829fa520f7740d61a0b3b18399a6418f415a1068
parent 80082f66
No related branches found
No related tags found
No related merge requests found
......@@ -495,7 +495,20 @@ void engine_step ( struct engine *e , int sort_queues ) {
/* First kick. */
TIMER_TIC
space_map_cells_post( e->s , 1 , &engine_map_kick_first , e );
// space_map_cells_post( e->s , 1 , &engine_map_kick_first , e );
k = 0;
#pragma omp parallel shared(k,e)
{
int myk;
while ( 1 ) {
#pragma omp critical
myk = k++;
if ( myk < e->s->nr_cells )
engine_map_kick_first( &e->s->cells[myk] , e );
else
break;
}
}
TIMER_TOC( timer_kick1 );
// for(k=0; k<10; ++k)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment