Allow long summary to be printed for every test.

master
Christopher J. Morrone 2012-01-13 13:27:55 -08:00
parent 8c95611125
commit ef70266a84
4 changed files with 43 additions and 19 deletions

View File

@ -280,6 +280,9 @@ GENERAL:
-storeFileOffset -storeFileOffset
-MPIIO collective or useFileView -MPIIO collective or useFileView
-HDF5 or NCMPI -HDF5 or NCMPI
* summaryAlways - Always print the long summary for each test.
Useful for long runs that may be interrupted, preventing
the final long summary for ALL tests to be printed.
POSIX-ONLY: POSIX-ONLY:

View File

@ -74,7 +74,7 @@ static IOR_test_t *SetupTests(int, char **);
static void ShowTestInfo(IOR_param_t *); static void ShowTestInfo(IOR_param_t *);
static void ShowSetup(IOR_param_t *params); static void ShowSetup(IOR_param_t *params);
static void ShowTest(IOR_param_t *); static void ShowTest(IOR_param_t *);
static void PrintSummaryAllTests(IOR_test_t *tests_head); static void PrintLongSummaryAllTests(IOR_test_t *tests_head);
static void TestIoSys(IOR_test_t *); static void TestIoSys(IOR_test_t *);
static void ValidTests(IOR_param_t *); static void ValidTests(IOR_param_t *);
static IOR_offset_t WriteOrRead(IOR_param_t *, void *, int); static IOR_offset_t WriteOrRead(IOR_param_t *, void *, int);
@ -138,7 +138,7 @@ int main(int argc, char **argv)
TestIoSys(tptr); TestIoSys(tptr);
} }
PrintSummaryAllTests(tests_head); PrintLongSummaryAllTests(tests_head);
/* display finish time */ /* display finish time */
if (rank == 0 && verbose >= VERBOSE_0) { if (rank == 0 && verbose >= VERBOSE_0) {
@ -1580,8 +1580,8 @@ static double mean_of_array_of_doubles(double *values, int len)
for (i = 0; i < len; i++) { for (i = 0; i < len; i++) {
tot += values[i]; tot += values[i];
} }
return tot / len; return tot / len;
} }
struct results { struct results {
@ -1628,9 +1628,11 @@ static struct results *bw_values(int reps, IOR_offset_t *agg_file_size, double *
} }
/* /*
* Summarize results, showing max rates (and min, mean, stddev if verbose) * Summarize results
*
* operation is typically "write" or "read"
*/ */
static void PrintSummaryOneOperation(IOR_test_t *test, double *times, char *operation) static void PrintLongSummaryOneOperation(IOR_test_t *test, double *times, char *operation)
{ {
IOR_param_t *params = &test->params; IOR_param_t *params = &test->params;
IOR_results_t *results = test->results; IOR_results_t *results = test->results;
@ -1671,10 +1673,29 @@ static void PrintSummaryOneOperation(IOR_test_t *test, double *times, char *oper
free(bw); free(bw);
} }
static void PrintSummaryAllTests(IOR_test_t *tests_head) static void PrintLongSummaryOneTest(IOR_test_t *test)
{
IOR_param_t *params = &test->params;
IOR_results_t *results = test->results;
if (params->writeFile)
PrintLongSummaryOneOperation(test, results->writeTime, "write");
if (params->readFile)
PrintLongSummaryOneOperation(test, results->readTime, "read");
}
static void PrintLongSummaryHeader()
{
fprintf(stdout, "\n");
fprintf(stdout, "%-9s %10s %10s %10s %10s %10s",
"Operation", "Max(MiB)", "Min(MiB)", "Mean(MiB)", "StdDev",
"Mean(s)");
fprintf(stdout, " #Tasks tPN reps fPP reord reordoff reordrand seed"
" segcnt blksiz xsize aggsize TestNum API\n");
}
static void PrintLongSummaryAllTests(IOR_test_t *tests_head)
{ {
IOR_param_t *params = &tests_head->params;
IOR_results_t *results = tests_head->results;
IOR_test_t *tptr; IOR_test_t *tptr;
if (rank !=0) if (rank !=0)
@ -1682,18 +1703,10 @@ 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"); PrintLongSummaryHeader();
fprintf(stdout, "%-9s %10s %10s %10s %10s %10s",
"Operation", "Max(MiB)", "Min(MiB)", "Mean(MiB)", "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) PrintLongSummaryOneTest(tptr);
PrintSummaryOneOperation(tptr, results->writeTime, "write");
if (params->readFile)
PrintSummaryOneOperation(tptr, results->readTime, "read");
} }
} }
@ -2172,7 +2185,12 @@ static void TestIoSys(IOR_test_t *test)
MPI_CHECK(MPI_Comm_free(&testComm), "MPI_Comm_free() error"); MPI_CHECK(MPI_Comm_free(&testComm), "MPI_Comm_free() error");
if (params->summary_every_test) {
PrintLongSummaryHeader();
PrintLongSummaryOneTest(test);
} else {
PrintShortSummary(test); PrintShortSummary(test);
}
if (hog_buf != NULL) if (hog_buf != NULL)
free(hog_buf); free(hog_buf);

View File

@ -85,6 +85,7 @@ typedef struct
int useO_DIRECT; /* use O_DIRECT, bypassing I/O buffers */ int useO_DIRECT; /* use O_DIRECT, bypassing I/O buffers */
int showHints; /* show hints */ int showHints; /* show hints */
int showHelp; /* show options and help */ int showHelp; /* show options and help */
int summary_every_test; /* flag to print summary every test, not just at end */
int uniqueDir; /* use unique directory for each fpp */ int uniqueDir; /* use unique directory for each fpp */
int useExistingTestFile; /* do not delete test file before access */ int useExistingTestFile; /* do not delete test file before access */
int storeFileOffset; /* use file offset as stored signature */ int storeFileOffset; /* use file offset as stored signature */

View File

@ -266,6 +266,8 @@ void DecodeDirective(char *line, IOR_param_t *params)
} else if (strcasecmp(option, "numtasks") == 0) { } else if (strcasecmp(option, "numtasks") == 0) {
params->numTasks = atoi(value); params->numTasks = atoi(value);
RecalculateExpectedFileSize(params); RecalculateExpectedFileSize(params);
} else if (strcasecmp(option, "summaryalways") == 0) {
params->summary_every_test = atoi(value);
} else { } else {
if (rank == 0) if (rank == 0)
fprintf(stdout, "Unrecognized parameter \"%s\"\n", fprintf(stdout, "Unrecognized parameter \"%s\"\n",