Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
112920b4
Commit
112920b4
authored
Sep 07, 2016
by
Guillaume Sylvand
Browse files
Disable profiling in timing driver instead of doing it in the runtime initialization
parent
536cf112
Changes
2
Hide whitespace changes
Inline
Side-by-side
runtime/starpu/control/runtime_control.c
View file @
112920b4
...
...
@@ -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
...
...
timing/timing.c
View file @
112920b4
...
...
@@ -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
]
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment