Browse Source

put the hash of the job in the model debug output

Cédric Augonnet 16 years ago
parent
commit
9f8a766cbb
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/core/perfmodel/perfmodel_history.c

+ 3 - 1
src/core/perfmodel/perfmodel_history.c

@@ -494,7 +494,9 @@ void update_perfmodel_history(job_t j, enum starpu_perf_archtype arch, double me
 
 
 		take_mutex(&model->model_mutex);
 		take_mutex(&model->model_mutex);
 
 
-		fprintf(debug_file, "%lf\t", measured);
+		STARPU_ASSERT(j->footprint_is_computed);
+
+		fprintf(debug_file, "%x\t%lf\t\t", j->footprint, measured);
 		unsigned i;
 		unsigned i;
 			
 			
 		struct starpu_task *task = j->task;
 		struct starpu_task *task = j->task;