From 0b335d7e629366de8023437cb1fdf772696077c4 Mon Sep 17 00:00:00 2001 From: Marc Fehling Date: Thu, 19 Aug 2021 16:29:10 -0600 Subject: [PATCH] Prevent excess timer output. --- examples/step-55/step-55.cc | 2 +- examples/step-62/step-62.cc | 2 +- examples/step-75/step-75.cc | 2 +- examples/step-79/step-79.cc | 1 - 4 files changed, 3 insertions(+), 4 deletions(-) diff --git a/examples/step-55/step-55.cc b/examples/step-55/step-55.cc index cb02d8ea6c..9f60ae8343 100644 --- a/examples/step-55/step-55.cc +++ b/examples/step-55/step-55.cc @@ -326,7 +326,7 @@ namespace Step55 (Utilities::MPI::this_mpi_process(mpi_communicator) == 0)) , computing_timer(mpi_communicator, pcout, - TimerOutput::summary, + TimerOutput::never, TimerOutput::wall_times) {} diff --git a/examples/step-62/step-62.cc b/examples/step-62/step-62.cc index 6fbf85d8f6..9e2614eec6 100644 --- a/examples/step-62/step-62.cc +++ b/examples/step-62/step-62.cc @@ -729,7 +729,7 @@ namespace step62 (Utilities::MPI::this_mpi_process(mpi_communicator) == 0)) , computing_timer(mpi_communicator, pcout, - TimerOutput::summary, + TimerOutput::never, TimerOutput::wall_times) {} diff --git a/examples/step-75/step-75.cc b/examples/step-75/step-75.cc index 56648232e0..7385bb6722 100644 --- a/examples/step-75/step-75.cc +++ b/examples/step-75/step-75.cc @@ -904,7 +904,7 @@ namespace Step75 (Utilities::MPI::this_mpi_process(mpi_communicator) == 0)) , computing_timer(mpi_communicator, pcout, - TimerOutput::summary, + TimerOutput::never, TimerOutput::wall_times) { Assert(prm.min_h_level <= prm.max_h_level, diff --git a/examples/step-79/step-79.cc b/examples/step-79/step-79.cc index ad580750d5..8018bd81cf 100644 --- a/examples/step-79/step-79.cc +++ b/examples/step-79/step-79.cc @@ -2435,7 +2435,6 @@ namespace SAND (iteration_number < max_iterations)); write_as_stl(); - timer.print_summary(); } } // namespace SAND -- 2.39.5