10#ifndef TEUCHOS_TIMEMONITOR_HPP
11#define TEUCHOS_TIMEMONITOR_HPP
38#include "Teuchos_Comm.hpp"
47#define TEUCHOS_TIMER(funcName, strName) \
48 static Teuchos::Time& funcName() \
49 {static Teuchos::RCP<Time> rtn = \
50 Teuchos::TimeMonitor::getNewCounter(strName); return *rtn;}
61#define TEUCHOS_FUNC_TIME_MONITOR_DIFF( FUNCNAME, DIFF ) \
62 static Teuchos::RCP<Teuchos::Time> DIFF ## blabla_localTimer; \
63 if(!DIFF ## blabla_localTimer.get()) { \
64 std::ostringstream oss; \
66 DIFF ## blabla_localTimer = Teuchos::TimeMonitor::getNewCounter(oss.str()); \
68 Teuchos::TimeMonitor DIFF ## blabla_localTimeMonitor(*DIFF ## blabla_localTimer)
93#define TEUCHOS_FUNC_TIME_MONITOR( FUNCNAME ) \
94 TEUCHOS_FUNC_TIME_MONITOR_DIFF( FUNCNAME, main )
113typedef std::map<std::string, std::vector<std::pair<double, double> > >
stat_map_type;
199 static void disableTimer (
const std::string& name);
209 static void enableTimer (
const std::string& name);
217 static void zeroOutTimers();
336 std::vector<std::string>& statNames,
339 const std::string& filter=
"");
378 std::vector<std::string>& statNames,
380 const std::string& filter=
"");
451 std::ostream &out=std::cout,
452 const bool alwaysWriteLocal=
false,
453 const bool writeGlobalStats=
true,
454 const bool writeZeroTimers=
true,
456 const std::string& filter=
"",
457 const bool ignoreZeroTimers=
false);
477 summarize (std::ostream& out=std::cout,
478 const bool alwaysWriteLocal=
false,
479 const bool writeGlobalStats=
true,
480 const bool writeZeroTimers=
true,
482 const std::string& filter=
"",
483 const bool ignoreZeroTimers=
false);
569 const std::string& filter,
586 report (std::ostream& out,
587 const std::string& filter,
595 report (std::ostream& out,
615 enum ETimeMonitorReportFormat {
624 enum ETimeMonitorYamlFormat {
644 summarizeToYaml (Ptr<
const Comm<int> > comm,
646 const ETimeMonitorYamlFormat yamlStyle,
647 const std::string& filter=
"");
654 summarizeToYaml (std::ostream& out,
655 const ETimeMonitorYamlFormat yamlStyle,
656 const std::string& filter=
"");
662 static void setReportFormatParameter (ParameterList& plist);
668 static void setYamlFormatParameter (ParameterList& plist);
674 static void setSetOpParameter (ParameterList& plist);
690 static void setReportParameters (
const RCP<ParameterList>& params);
698 static ETimeMonitorReportFormat reportFormat_;
703 static ETimeMonitorYamlFormat yamlStyle_;
711 static bool alwaysWriteLocal_;
718 static bool writeGlobalStats_;
721 static bool writeZeroTimers_;
728 static bool setParams_;
784 virtual void summarize (std::ostream& out) {
834 if (
is_null (CommandLineProcessor::getTimeMonitorSurrogate ())) {
Basic command line parser for input from (argc,argv[]).
Templated Parameter List class.
Basic wall-clock timer class.
Abstract interface for distributed-memory communication.
Interface by which CommandLineProcessor may use TimeMonitor.
Simple wrapper class for raw pointers to single objects where no persisting relationship exists.
Smart reference counting pointer class for automatic garbage collection.
SyncTimeMonitor()=delete
Default constructor is deleted, since it would be unsafe.
SyncTimeMonitor(Time &timer, Ptr< const Comm< int > > comm, bool reset=false)
Constructor: starts the timer.
Injects run-time dependency of a class on TimeMonitor.
TimeMonitorSurrogateImplInserter()
Constructor: inject dependency on TimeMonitor into CommandLineProcessor.
Implementation of TimeMonitorSurrogate that invokes TimeMonitor.
static void summarize(Ptr< const Comm< int > > comm, std::ostream &out=std::cout, const bool alwaysWriteLocal=false, const bool writeGlobalStats=true, const bool writeZeroTimers=true, const ECounterSetOp setOp=Intersection, const std::string &filter="", const bool ignoreZeroTimers=false)
Print summary statistics for all timers on the given communicator.
static Teuchos::RCP< Teuchos::StackedTimer > stackedTimer_
Stacked timer for optional injection of timing from TimeMonitor-enabled objects.
static RCP< Time > getNewTimer(const std::string &name)
Return a new timer with the given name (class method).
TimeMonitor()=delete
Default constructor is deleted, since it would be unsafe.
TimeMonitor(Time &timer, bool reset=false)
Constructor: starts the timer.
bool is_null(const std::shared_ptr< T > &p)
Returns true if p.get()==NULL.
The Teuchos namespace contains all of the classes, structs and enums used by Teuchos,...
ECounterSetOp
Set operation type for mergeCounterNames() to perform.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Deprecated.
std::map< std::string, std::vector< std::pair< double, double > > > stat_map_type
Global statistics collected from timer data.