Go to the documentation of this file.
46 #ifndef MUELU_TIMEMONITOR_HPP
47 #define MUELU_TIMEMONITOR_HPP
50 #include <Teuchos_DefaultComm.hpp>
57 #ifdef HAVE_TEUCHOS_ADD_TIME_MONITOR_TO_STACKED_TIMER
58 #include "Teuchos_StackedTimer.hpp"
90 #ifdef HAVE_TEUCHOS_ADD_TIME_MONITOR_TO_STACKED_TIMER
100 if (
timer_ != Teuchos::null) {
102 #ifdef HAVE_TEUCHOS_ADD_TIME_MONITOR_TO_STACKED_TIMER
108 catch (std::runtime_error) {
109 std::ostringstream warning;
111 "\n*********************************************************************\n"
112 "WARNING: Overlapping timers detected!\n"
113 "A TimeMonitor timer was stopped before a nested subtimer was\n"
114 "stopped. This is not allowed by the StackedTimer. This corner case\n"
115 "typically occurs if the TimeMonitor is stored in an RCP and the RCP is\n"
116 "assigned to a new timer. To disable this warning, either fix the\n"
117 "ordering of timer creation and destuction or disable the StackedTimer\n"
118 "support in the TimeMonitor by setting the StackedTimer to null\n"
120 "Teuchos::TimeMonitor::setStackedTimer(Teuchos::null)\n"
121 "*********************************************************************\n";
122 std::cout << warning.str() << std::endl;
143 template <
class TagName>
169 timer_->incrementNumCalls();
175 if (
timer_ != Teuchos::null)
188 #endif // MUELU_TIMEMONITOR_HPP
static void setStackedTimer(const Teuchos::RCP< Teuchos::StackedTimer > &t)
MutuallyExclusiveTimeMonitor(const BaseClass &object, const std::string &msg, MsgType timerLevel=Timings0)
Constructor.
static RCP< Time > getNewTimer(const std::string &name)
static RCP< MutuallyExclusiveTime< TagName > > getNewTimer(const std::string &name)
Return a new MutuallyExclusiveTime that is registered with the Teuchos::TimeMonitor (for timer summar...
bool IsPrint(MsgType type, int thisProcRankOnly=-1) const
Find out whether we need to print out information for a specific message type.
RCP< Teuchos::Time > timer_
static const Teuchos::RCP< Teuchos::StackedTimer > & getStackedTimer()
RCP< MutuallyExclusiveTime< TagName > > timer_
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
~MutuallyExclusiveTimeMonitor()
High level timing information (use Teuchos::TimeMonitor::summarize() to print)
Namespace for MueLu classes and methods.
int GetProcRankVerbose() const
Get proc rank used for printing. Do not use this information for any other purpose.
void start(bool reset=false)
Timers that are enabled (using Timings0/Timings1) will be printed during the execution.
Base class for MueLu classes.
void SetVerbLevel(const VerbLevel verbLevel)
Set the verbosity level of this object.
int SetProcRankVerbose(int procRank) const
Set proc rank used for printing.
MutuallyExclusiveTimeMonitor()
VerbLevel GetVerbLevel() const
Get the verbosity level.
By default, enabled timers appears in the teuchos time monitor summary. Use this option if you do not...
Integrates Teuchos::TimeMonitor with MueLu verbosity system.
bool nonnull(const boost::shared_ptr< T > &p)
Similar to TimeMonitor, but uses MutuallyExclusiveTime objects.
const std::string & name() const
TimeMonitor(const BaseClass &object, const std::string &msg, MsgType timerLevel=Timings0)
This class wraps a Teuchos::Time and maintains a mutually exclusive property between wrapped timers.