diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-12-18 21:33:54 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-12-18 21:33:54 (GMT) |
commit | 258a10c5c5ab423feac9b914a68d8470425138c5 (patch) | |
tree | 7a7699e01f17db8ef3b1886c40d22519ef35b49e /perform/pio_perf.c | |
parent | 5c891c5c5176ff3a27907bbc70ad1e4cdcf19e55 (diff) | |
download | hdf5-258a10c5c5ab423feac9b914a68d8470425138c5.zip hdf5-258a10c5c5ab423feac9b914a68d8470425138c5.tar.gz hdf5-258a10c5c5ab423feac9b914a68d8470425138c5.tar.bz2 |
[svn-r4742]
Purpose:
Feature Add
Description:
Print out the transfer buffer size with the data
Platforms tested:
Linux
Diffstat (limited to 'perform/pio_perf.c')
-rw-r--r-- | perform/pio_perf.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/perform/pio_perf.c b/perform/pio_perf.c index 5a7e56d..8aa11d6 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -318,8 +318,10 @@ run_test_loop(FILE *output, struct options *opts) parms.num_elmts = opts->file_size / (parms.num_dsets * sizeof(int)); print_indent(output, TAB_SPACE * 1); + fprintf(output, "Transfer Buffer Size: %u\n", j); + print_indent(output, TAB_SPACE * 1); fprintf(output, - "# of files: %u, # of dsets: %lu, Elements per dset: %lu\n", + " # of files: %u, # of dsets: %lu, Elements per dset: %lu\n", parms.num_files, parms.num_dsets, parms.num_elmts); if (io_runs & PIO_RAW) |