diff options
author | Christian Chilan <chilan@hdfgroup.org> | 2008-10-09 18:12:34 (GMT) |
---|---|---|
committer | Christian Chilan <chilan@hdfgroup.org> | 2008-10-09 18:12:34 (GMT) |
commit | 08da960c2c9411f4fbe572fc58470d665cd04961 (patch) | |
tree | 9db7046e8a72e1ed37afac3846b1efa756fb1fbe /perform/pio_perf.c | |
parent | 488508c81514eef3c1d0fd5c79daf61beb473ce3 (diff) | |
download | hdf5-08da960c2c9411f4fbe572fc58470d665cd04961.zip hdf5-08da960c2c9411f4fbe572fc58470d665cd04961.tar.gz hdf5-08da960c2c9411f4fbe572fc58470d665cd04961.tar.bz2 |
[svn-r15832] Modified the display of the accumulated times taken to open and close files.
Tested on kagiso.
Diffstat (limited to 'perform/pio_perf.c')
-rw-r--r-- | perform/pio_perf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perform/pio_perf.c b/perform/pio_perf.c index 8f9cb55..2275646 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -1054,7 +1054,7 @@ output_times(const struct options *opts, const char *name, minmax *table, output_report("Minimum Accumulated Time using %d file(s): %7.5f s\n", opts->num_files,(total_mm.min)); print_indent(4); - output_report("Average Time per file: %7.5f s\n", ((total_mm.sum / opts->num_files) / total_mm.num)); + output_report("Average Accumulated Time using %d file(s): %7.5f s\n", opts->num_files,(total_mm.sum / total_mm.num)); print_indent(4); output_report("Maximum Accumulated Time using %d file(s): %7.5f s\n", opts->num_files,(total_mm.max)); |