diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-05-28 22:00:26 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2002-05-28 22:00:26 (GMT) |
commit | 0ba943194ec2c8b74bbfd6531ee7a9b110803974 (patch) | |
tree | 8fcc6b80380be0362ea61dccc129f552b4bb2ba4 /perform | |
parent | 607fb9618b8f97338c834ebde6a2fb1ca13c85ff (diff) | |
download | hdf5-0ba943194ec2c8b74bbfd6531ee7a9b110803974.zip hdf5-0ba943194ec2c8b74bbfd6531ee7a9b110803974.tar.gz hdf5-0ba943194ec2c8b74bbfd6531ee7a9b110803974.tar.bz2 |
[svn-r5470] Purpose:
Update
Description:
Only print out the parameters for a run if we're in debug mode one
and the 0'th process or if we're in debug mode > 0.
Platforms tested:
Linux
Diffstat (limited to 'perform')
-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 2816e40..c8910d2 100644 --- a/perform/pio_perf.c +++ b/perform/pio_perf.c @@ -326,7 +326,9 @@ main(int argc, char **argv) } } - report_parameters(opts); + if ((pio_debug_level == 0 && comm_world_rank_g == 0) || pio_debug_level > 0) + report_parameters(opts); + run_test_loop(opts); finish: |