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

more timers.

Former-commit-id: d1c3a60c6bee7cad88b31fa8ced84d3b9693672e
parent 8d104aef
Branches
Tags
Loading
...@@ -685,6 +685,10 @@ int main ( int argc , char *argv[] ) { ...@@ -685,6 +685,10 @@ int main ( int argc , char *argv[] ) {
#ifdef TIMER #ifdef TIMER
for ( k = 0 ; k < runner_timer_count ; k++ ) for ( k = 0 ; k < runner_timer_count ; k++ )
runner_timer[k] = 0; runner_timer[k] = 0;
for ( k = 0 ; k < queue_timer_count ; k++ )
queue_timer[k] = 0;
for ( k = 0 ; k < cell_timer_count ; k++ )
cell_timer[k] = 0;
#endif #endif
#ifdef COUNTER #ifdef COUNTER
for ( k = 0 ; k < runner_counter_count ; k++ ) for ( k = 0 ; k < runner_counter_count ; k++ )
...@@ -700,6 +704,10 @@ int main ( int argc , char *argv[] ) { ...@@ -700,6 +704,10 @@ int main ( int argc , char *argv[] ) {
for ( k = 1 ; k < queue_timer_count ; k++ ) for ( k = 1 ; k < queue_timer_count ; k++ )
printf( " %.3f" , ((double)queue_timer[k])/CPU_TPS*1000 ); printf( " %.3f" , ((double)queue_timer[k])/CPU_TPS*1000 );
printf( " ] ms.\n" ); printf( " ] ms.\n" );
printf( "main: cell timers are [ %.3f" , cell_timer[0]/CPU_TPS*1000 );
for ( k = 1 ; k < cell_timer_count ; k++ )
printf( " %.3f" , ((double)cell_timer[k])/CPU_TPS*1000 );
printf( " ] ms.\n" );
#else #else
printf( "main: runner_run with %i threads took %.3f ms.\n" , nr_threads , ((double)(getticks() - tic)) / CPU_TPS * 1000 ); printf( "main: runner_run with %i threads took %.3f ms.\n" , nr_threads , ((double)(getticks() - tic)) / CPU_TPS * 1000 );
#endif #endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment