From 0ba943194ec2c8b74bbfd6531ee7a9b110803974 Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Tue, 28 May 2002 17:00:26 -0500 Subject: [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 --- perform/pio_perf.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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: -- cgit v0.12