Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AGULLO Emmanuel
Chameleon
Commits
d33762a4
Commit
d33762a4
authored
Mar 04, 2019
by
Mathieu Faverge
Browse files
Disable profiling with parsec
parent
3693456a
Changes
1
Hide whitespace changes
Inline
Side-by-side
runtime/parsec/control/runtime_context.c
View file @
d33762a4
...
...
@@ -50,7 +50,8 @@ void RUNTIME_enable( void *runtime_ctxt, int lever )
fprintf
(
stderr
,
"DAG is not available with PaRSEC
\n
"
);
break
;
case
CHAMELEON_PROFILING_MODE
:
parsec_profiling_start
();
fprintf
(
stderr
,
"Profiling is not available with PaRSEC
\n
"
);
//parsec_profiling_start();
break
;
case
CHAMELEON_BOUND
:
fprintf
(
stderr
,
"Bound computation is not available with Quark
\n
"
);
...
...
@@ -72,7 +73,8 @@ void RUNTIME_disable( void *runtime_ctxt, int lever )
fprintf
(
stderr
,
"DAG is not available with PaRSEC
\n
"
);
break
;
case
CHAMELEON_PROFILING_MODE
:
parsec_profiling_stop
();
fprintf
(
stderr
,
"Profiling is not available with PaRSEC
\n
"
);
//parsec_profiling_stop();
break
;
case
CHAMELEON_BOUND
:
fprintf
(
stderr
,
"Bound computation is not available with PaRSEC
\n
"
);
...
...
Write
Preview
Markdown
is supported
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