Skip to content
Snippets Groups Projects
Commit d26fa3b1 authored by Matthieu Schaller's avatar Matthieu Schaller
Browse files

Reset the task debugging timers every time-step

parent de4d7b38
Branches
Tags
1 merge request!339Reset the task debugging timers every time-step
......@@ -1107,6 +1107,15 @@ void scheduler_enqueue_mapper(void *map_data, int num_elements,
*/
void scheduler_start(struct scheduler *s) {
/* Reset all task debugging timers */
#ifdef SWIFT_DEBUG_TASKS
for (int i = 0; i < s->nr_tasks; ++i) {
s->tasks[i].tic = 0;
s->tasks[i].toc = 0;
s->tasks[i].rid = -1;
}
#endif
/* Re-wait the tasks. */
if (s->active_count > 1000) {
threadpool_map(s->threadpool, scheduler_rewait_mapper, s->tid_active,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment