From: David Wells Date: Sat, 7 Mar 2020 20:28:12 +0000 (-0500) Subject: step-69: fix some timer variable names. X-Git-Tag: v9.2.0-rc1~442^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9637%2Fhead;p=dealii.git step-69: fix some timer variable names. --- diff --git a/examples/step-69/step-69.cc b/examples/step-69/step-69.cc index 9091ef7835..97f3873775 100644 --- a/examples/step-69/step-69.cc +++ b/examples/step-69/step-69.cc @@ -1839,8 +1839,8 @@ namespace Step69 template void TimeStepping::prepare() { - TimerOutput::Scope scopeime(computing_timer, - "time_stepping - prepare scratch space"); + TimerOutput::Scope scope(computing_timer, + "time_stepping - prepare scratch space"); for (auto &it : temporary_vector) it.reinit(offline_data->partitioner); @@ -1914,8 +1914,8 @@ namespace Step69 // computes the viscosity $d_{ij}$ for a subrange [i1, i2) of column // indices: { - TimerOutput::Scope scopeime(computing_timer, - "time_stepping - 1 compute d_ij"); + TimerOutput::Scope scope(computing_timer, + "time_stepping - 1 compute d_ij"); const auto on_subranges = // [&](typename decltype(indices_relevant)::iterator i1, @@ -2005,8 +2005,8 @@ namespace Step69 std::atomic tau_max{std::numeric_limits::infinity()}; { - TimerOutput::Scope scopeime( - computing_timer, "time_stepping - 2 compute d_ii, and tau_max"); + TimerOutput::Scope scope(computing_timer, + "time_stepping - 2 compute d_ii, and tau_max"); // on_subranges() will be executed on every thread individually. The // variable tau_max_on_subrange is thus stored thread @@ -2092,8 +2092,8 @@ namespace Step69 // artifacts. { - TimerOutput::Scope scopeime(computing_timer, - "time_stepping - 3 perform update"); + TimerOutput::Scope scope(computing_timer, + "time_stepping - 3 perform update"); const auto on_subranges = [&](typename decltype(indices_owned)::iterator i1,