From d33762a405406a9d8d827897979318e4a024985e Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Mon, 4 Mar 2019 17:48:08 +0100 Subject: [PATCH] Disable profiling with parsec --- runtime/parsec/control/runtime_context.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/runtime/parsec/control/runtime_context.c b/runtime/parsec/control/runtime_context.c index aae3b7831..e75177411 100644 --- a/runtime/parsec/control/runtime_context.c +++ b/runtime/parsec/control/runtime_context.c @@ -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"); -- GitLab