Explorar el Código

show on stderr the sizes of the hist-based model

Samuel Thibault hace 14 años
padre
commit
51677b2116
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      tools/starpu_regression_display.c

+ 2 - 0
tools/starpu_regression_display.c

@@ -227,6 +227,7 @@ static void display_history_based_perf_models(FILE *gnuplot_file, struct starpu_
 			}
 		}
 
+		fprintf(stderr, "%lu ", minimum);
 		fprintf(datafile, "%-15lu ", minimum);
 		for (arch = arch1; arch < arch2; arch++) {
 			if (ptr[arch-arch1]) {
@@ -243,6 +244,7 @@ static void display_history_based_perf_models(FILE *gnuplot_file, struct starpu_
 		}
 		fprintf(datafile, "\n");
 	}
+	fprintf(stderr, "\n");
 }
 
 static void display_perf_models(FILE *gnuplot_file, struct starpu_perfmodel_t *model, enum starpu_perf_archtype arch1, enum starpu_perf_archtype arch2, int *first)