Mentions légales du service

Skip to content
Snippets Groups Projects
Commit d33762a4 authored by Mathieu Faverge's avatar Mathieu Faverge
Browse files

Disable profiling with parsec

parent 3693456a
No related branches found
No related tags found
1 merge request!146Issue49 - Restore DAG support for Quark
...@@ -50,7 +50,8 @@ void RUNTIME_enable( void *runtime_ctxt, int lever ) ...@@ -50,7 +50,8 @@ void RUNTIME_enable( void *runtime_ctxt, int lever )
fprintf(stderr, "DAG is not available with PaRSEC\n"); fprintf(stderr, "DAG is not available with PaRSEC\n");
break; break;
case CHAMELEON_PROFILING_MODE: case CHAMELEON_PROFILING_MODE:
parsec_profiling_start(); fprintf(stderr, "Profiling is not available with PaRSEC\n");
//parsec_profiling_start();
break; break;
case CHAMELEON_BOUND: case CHAMELEON_BOUND:
fprintf(stderr, "Bound computation is not available with Quark\n"); fprintf(stderr, "Bound computation is not available with Quark\n");
...@@ -72,7 +73,8 @@ void RUNTIME_disable( void *runtime_ctxt, int lever ) ...@@ -72,7 +73,8 @@ void RUNTIME_disable( void *runtime_ctxt, int lever )
fprintf(stderr, "DAG is not available with PaRSEC\n"); fprintf(stderr, "DAG is not available with PaRSEC\n");
break; break;
case CHAMELEON_PROFILING_MODE: case CHAMELEON_PROFILING_MODE:
parsec_profiling_stop(); fprintf(stderr, "Profiling is not available with PaRSEC\n");
//parsec_profiling_stop();
break; break;
case CHAMELEON_BOUND: case CHAMELEON_BOUND:
fprintf(stderr, "Bound computation is not available with PaRSEC\n"); fprintf(stderr, "Bound computation is not available with PaRSEC\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment