From: Marc Fehling Date: Thu, 19 Aug 2021 22:29:10 +0000 (-0600) Subject: Prevent excess timer output. X-Git-Tag: v9.4.0-rc1~1053^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F12680%2Fhead;p=dealii.git Prevent excess timer output. --- 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