From f574464b92cb6e766ea1de947602bdb93eb452ae Mon Sep 17 00:00:00 2001 From: Guillaume Sylvand <guillaume.sylvand@airbus.com> Date: Thu, 22 Sep 2016 13:35:39 +0000 Subject: [PATCH] progress indicator is now written in stderr --- runtime/starpu/control/runtime_async.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/runtime/starpu/control/runtime_async.c b/runtime/starpu/control/runtime_async.c index 2216d7e2b..894d041f2 100644 --- a/runtime/starpu/control/runtime_async.c +++ b/runtime/starpu/control/runtime_async.c @@ -61,16 +61,15 @@ void update_progress(int currentValue, int maximumValue) { } // Print the percentage if (res.quot > progress) - printf("%3d%%\b\b\b\b", res.quot) ; + fprintf(stderr, "%3d%%\b\b\b\b", res.quot) ; progress=res.quot ; if (currentValue>=maximumValue) { progress=-1 ; } - - fflush(stdout); } +// no progress indicator for algorithms faster than 'PROGRESS_MINIMUM_DURATION' seconds #define PROGRESS_MINIMUM_DURATION 10 /******************************************************************************* @@ -89,7 +88,7 @@ int RUNTIME_progress( MORSE_context_t *morse) // update_progress(0, max); while ((tasksLeft = starpu_task_nsubmitted()) > 0) { current = max - tasksLeft; - if (timer > PROGRESS_MINIMUM_DURATION) // no progress indicator for algorithms faster than 'PROGRESS_MINIMUM_DURATION' seconds + if (timer > PROGRESS_MINIMUM_DURATION) update_progress(current, max); sleep(1); timer++; -- GitLab