summaryrefslogtreecommitdiff
path: root/ufo/ufo-scheduler.c
diff options
context:
space:
mode:
authorMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-02-23 12:19:28 +0100
committerMatthias Vogelgesang <matthias.vogelgesang@kit.edu>2015-02-23 12:19:28 +0100
commitc1e5f9028013b6c8ca3180f47c1da100251df8be (patch)
tree8046cd503028615f5e33d4a7c609a4f7e33e71cb /ufo/ufo-scheduler.c
parente8f1edf24c7924cc94650b1b9a3e1429de569a4e (diff)
Fix #78: reset num-processed before execution
Diffstat (limited to 'ufo/ufo-scheduler.c')
-rw-r--r--ufo/ufo-scheduler.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ufo/ufo-scheduler.c b/ufo/ufo-scheduler.c
index b68a598..5e5e436 100644
--- a/ufo/ufo-scheduler.c
+++ b/ufo/ufo-scheduler.c
@@ -274,7 +274,6 @@ run_task (TaskLocalData *tld)
ufo_profiler_trace_event (profiler, UFO_TRACE_EVENT_PROCESS | UFO_TRACE_EVENT_BEGIN);
active = ufo_task_process (tld->task, inputs, output, &requisition);
ufo_profiler_trace_event (profiler, UFO_TRACE_EVENT_PROCESS | UFO_TRACE_EVENT_END);
- ufo_task_node_increase_processed (UFO_TASK_NODE (tld->task));
break;
case UFO_TASK_MODE_REDUCTOR:
@@ -282,7 +281,6 @@ run_task (TaskLocalData *tld)
ufo_profiler_trace_event (profiler, UFO_TRACE_EVENT_PROCESS | UFO_TRACE_EVENT_BEGIN);
ufo_task_process (tld->task, inputs, output, &requisition);
ufo_profiler_trace_event (profiler, UFO_TRACE_EVENT_PROCESS | UFO_TRACE_EVENT_END);
- ufo_task_node_increase_processed (UFO_TASK_NODE (tld->task));
release_inputs (tld, inputs);
active = get_inputs (tld, inputs);