diff --git a/runtime/starpu/control/runtime_control.c b/runtime/starpu/control/runtime_control.c index e1a05a8abde697f778751f76a3c77d0638c953c5..8e6952a17f097ee3ad8de64e7f59c5bcf2b5c726 100644 --- a/runtime/starpu/control/runtime_control.c +++ b/runtime/starpu/control/runtime_control.c @@ -122,10 +122,6 @@ int RUNTIME_init_scheduler( MORSE_context_t *morse, int ncpus, int ncudas, int n } #endif -#if defined(HAVE_STARPU_FXT_PROFILING) - starpu_fxt_stop_profiling(); -#endif - #if defined(CHAMELEON_USE_CUDA) starpu_cublas_init(); #endif diff --git a/timing/timing.c b/timing/timing.c index 5d5f67f684de82ab47d1ffb813d72718c0408820..dafc8d7732a52689a904f90aae8d933cf30e9469 100644 --- a/timing/timing.c +++ b/timing/timing.c @@ -602,6 +602,10 @@ main(int argc, char *argv[]) { MORSE_Init( iparam[IPARAM_THRDNBR], iparam[IPARAM_NCUDAS] ); + /* Stops profiling here to avoid profiling uninteresting routines. + It will be reactivated in the time_*.c routines with the macro START_TIMING() */ + RUNTIME_stop_profiling(); + MORSE_Disable(MORSE_AUTOTUNING); MORSE_Set(MORSE_TILE_SIZE, iparam[IPARAM_NB] ); MORSE_Set(MORSE_INNER_BLOCK_SIZE, iparam[IPARAM_IB] );