diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2016-04-19 15:00:53 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2016-04-19 15:00:53 (GMT) |
commit | 988c33527f47572ae3f28a8df031565ac9dd0fcb (patch) | |
tree | 8ab8d9ed59d9879be0bb7def1f45654de5f8d342 /tools | |
parent | 5108468482c34ecb70109fe8060f74ed65c45261 (diff) | |
download | hdf5-988c33527f47572ae3f28a8df031565ac9dd0fcb.zip hdf5-988c33527f47572ae3f28a8df031565ac9dd0fcb.tar.gz hdf5-988c33527f47572ae3f28a8df031565ac9dd0fcb.tar.bz2 |
[svn-r29745] HDFFV-9767
h5perf output; should be MB not MBs
FIX: changed output text from MBs to MB and KBs to KB
Diffstat (limited to 'tools')
-rw-r--r-- | tools/perform/pio_perf.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perform/pio_perf.c b/tools/perform/pio_perf.c index 509513b..1402ec3 100644 --- a/tools/perform/pio_perf.c +++ b/tools/perform/pio_perf.c @@ -461,28 +461,28 @@ run_test_loop(struct options *opts) if (parms.dim2d){ parms.num_bytes = (off_t)pow((double)(opts->num_bpp*parms.num_procs),2); if (parms.interleaved) - output_report("Transfer Buffer Size: %ldx%ld bytes, File size: %.2f MBs\n", + output_report("Transfer Buffer Size: %ldx%ld bytes, File size: %.2f MB\n", buf_size, opts->blk_size, ((double)parms.num_dsets * (double)parms.num_bytes) / ONE_MB); else - output_report("Transfer Buffer Size: %ldx%ld bytes, File size: %.2f MBs\n", + output_report("Transfer Buffer Size: %ldx%ld bytes, File size: %.2f MB\n", opts->blk_size, buf_size, ((double)parms.num_dsets * (double)parms.num_bytes) / ONE_MB); print_indent(1); - output_report(" # of files: %ld, # of datasets: %ld, dataset size: %.2fx%.2f KBs\n", + output_report(" # of files: %ld, # of datasets: %ld, dataset size: %.2fx%.2f KB\n", parms.num_files, parms.num_dsets, (double)(opts->num_bpp*parms.num_procs)/ONE_KB, (double)(opts->num_bpp*parms.num_procs)/ONE_KB); } else{ parms.num_bytes = (off_t)opts->num_bpp*parms.num_procs; - output_report("Transfer Buffer Size: %ld bytes, File size: %.2f MBs\n", + output_report("Transfer Buffer Size: %ld bytes, File size: %.2f MB\n", buf_size,((double)parms.num_dsets * (double)parms.num_bytes) / ONE_MB); print_indent(1); - output_report(" # of files: %ld, # of datasets: %ld, dataset size: %.2f MBs\n", + output_report(" # of files: %ld, # of datasets: %ld, dataset size: %.2f MB\n", parms.num_files, parms.num_dsets, (double)(opts->num_bpp*parms.num_procs)/ONE_MB); } |