Skip to content
Snippets Groups Projects
Commit b5ecb22c authored by Tobias Leibner's avatar Tobias Leibner
Browse files

Merge branch 'master' of https://github.com/wwu-numerik/dune-stuff into dune-testtools

parents 59d94527 25114ed9
No related branches found
No related tags found
No related merge requests found
......@@ -151,6 +151,16 @@ TimingData::DeltaType Profiler::getTimingIdx(const std::string section_name, con
return timer_it->second.second->delta();
}
return section->second;
}
void Profiler::stopAll()
{
for (auto&& section : known_timers_map_) {
try {
stopTiming(section.first);
} catch (Dune::RangeError) {
}
}
} // GetTiming
void Profiler::reset(const size_t numRuns)
......
......@@ -84,6 +84,8 @@ private:
TimingData::DeltaType getTimingIdx(const std::string section_name, const size_t run_number) const;
public:
void stopAll();
//! set this to begin a named section
void startTiming(const std::string section_name);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment