瀏覽代碼

Also print ncpus and size in dat file for performance regression history

Samuel Thibault 9 年之前
父節點
當前提交
b6fc9643b6
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/microbenchs/tasks_size_overhead.c

+ 1 - 1
tests/microbenchs/tasks_size_overhead.c

@@ -221,7 +221,7 @@ int main(int argc, char **argv)
 
 					sprintf(file, "%s/tasks_size_overhead_total.dat", output_dir);
 					f = fopen(file, "a");
-					fprintf(f, "%s\t%f\n", bench_id, timing/1000000);
+					fprintf(f, "%s\t%u\t%u\t%f\n", bench_id, ncpus, size, timing/1000000);
 					fclose(f);
 				}
 			}