Message cleanup

master
Christopher J. Morrone 2011-12-13 11:36:47 -08:00
parent dfdb7407a5
commit dbca13903b
1 changed files with 13 additions and 9 deletions

View File

@ -1750,7 +1750,7 @@ static void PrintSummaryOneOperation(IOR_test_t *test, double *times, char *oper
ops = ops_values(reps, params->numTasks, params->blockSize, ops = ops_values(reps, params->numTasks, params->blockSize,
params->transferSize, times); params->transferSize, times);
fprintf(stdout, "%-10s ", operation); fprintf(stdout, "%-9s ", operation);
fprintf(stdout, "%10.2f ", bw->max / MEBIBYTE); fprintf(stdout, "%10.2f ", bw->max / MEBIBYTE);
fprintf(stdout, "%10.2f ", bw->min / MEBIBYTE); fprintf(stdout, "%10.2f ", bw->min / MEBIBYTE);
fprintf(stdout, "%10.2f ", bw->mean / MEBIBYTE); fprintf(stdout, "%10.2f ", bw->mean / MEBIBYTE);
@ -1795,7 +1795,11 @@ static void PrintSummaryAllTests(IOR_test_t *tests_head)
fprintf(stdout, "\n"); fprintf(stdout, "\n");
fprintf(stdout, "Summary of all tests:"); fprintf(stdout, "Summary of all tests:");
fprintf(stdout, "\n"); fprintf(stdout, "\n");
fprintf(stdout, "Operation Max(MiB) Min(MiB) Mean(MiB) StdDev Max(OPs) Min(OPs) Mean(OPs) StdDev Mean(s) #Tasks tPN reps fPP reord reordoff reordrand seed segcnt blksiz xsize aggsize TestNum API\n"); fprintf(stdout, "%-9s %10s %10s %10s %10s %10s %10s %10s %10s %10s",
"Operation", "Max(MiB)", "Min(MiB)", "Mean(MiB)", "StdDev",
"Max(OPs)", "Min(OPs)", "Mean(OPs)", "StdDev", "Mean(s)");
fprintf(stdout, " #Tasks tPN reps fPP reord reordoff reordrand seed"
" segcnt blksiz xsize aggsize TestNum API\n");
for (tptr = tests_head; tptr != NULL; tptr = tptr->next) { for (tptr = tests_head; tptr != NULL; tptr = tptr->next) {
if (params->writeFile) if (params->writeFile)