Browse Source

fxt_tool: Disable dump tasks along their termination, it can not work

Samuel Thibault 6 years ago
parent
commit
1fb8a27112
1 changed files with 5 additions and 1 deletions
  1. 5 1
      src/debug/traces/starpu_fxt.c

+ 5 - 1
src/debug/traces/starpu_fxt.c

@@ -2787,7 +2787,11 @@ static void handle_task_done(struct fxt_ev_64 *ev, struct starpu_fxt_options *op
 
 	struct task_info *task = get_task(job_id, options->file_rank);
 
-	task_dump(task, options);
+        /* Ideally, we would be able to dump tasks as they terminate, to save
+         * memory.
+         * We however may have to change their state later, e.g. the show field,
+         * due to dependencies added way later. */
+	/* task_dump(task, options); */
 }
 
 static void handle_tag_done(struct fxt_ev_64 *ev, struct starpu_fxt_options *options)