Teuchos Package Browser (Single Doxygen Collection)
Version of the Day
|
This class allows one to push and pop timers on and off a stack. More...
#include <Teuchos_StackedTimer.hpp>
Classes | |
struct | AlignmentWidths |
Stores the column widths for output alignment. More... | |
class | LevelTimer |
Timer info at a given level and all the children. More... | |
struct | OutputOptions |
Public Member Functions | |
StackedTimer (const char *name, const bool start_base_timer=true) | |
void | startBaseTimer () |
void | stopBaseTimer () |
void | start (const std::string name, const bool push_kokkos_profiling_region=true) |
void | stop (const std::string &name, const bool pop_kokkos_profiling_region=true) |
void | incrementUpdates (const long long i=1) |
double | accumulatedTime (const std::string &name="") |
double | accumulatedTimePerUpdate (const std::string &name="") |
double | accumulatedTimePerTimerCall (const std::string &name="") |
const BaseTimer * | findBaseTimer (const std::string &name) const |
BaseTimer::TimeInfo | findTimer (const std::string &name) |
void | report (std::ostream &os) |
void | report (std::ostream &os, Teuchos::RCP< const Teuchos::Comm< int > > comm, OutputOptions options=OutputOptions()) |
void | reportXML (std::ostream &os, const std::string &datestamp, const std::string ×tamp, Teuchos::RCP< const Teuchos::Comm< int > > comm) |
std::string | reportWatchrXML (const std::string &name, Teuchos::RCP< const Teuchos::Comm< int > > comm) |
void | enableVerbose (const bool enable_verbose) |
void | enableVerboseTimestamps (const unsigned levels) |
void | setVerboseOstream (const Teuchos::RCP< std::ostream > &os) |
Protected Member Functions | |
void | flatten () |
void | merge (Teuchos::RCP< const Teuchos::Comm< int > > comm) |
void | collectRemoteData (Teuchos::RCP< const Teuchos::Comm< int > > comm, const OutputOptions &options) |
double | computeColumnWidthsForAligment (std::string prefix, int print_level, std::vector< bool > &printed, double parent_time, const OutputOptions &options) |
double | printLevel (std::string prefix, int level, std::ostream &os, std::vector< bool > &printed, double parent_time, const OutputOptions &options) |
double | printLevelXML (std::string prefix, int level, std::ostream &os, std::vector< bool > &printed, double parent_time, const std::string &rootName="") |
Protected Attributes | |
LevelTimer * | top_ |
Current level running. More... | |
LevelTimer | timer_ |
Base timer. More... | |
Array< std::string > | flat_names_ |
Array< double > | min_ |
Array< double > | max_ |
Array< int > | procmin_ |
Array< int > | procmax_ |
Array< double > | sum_ |
Array< double > | sum_sq_ |
Array< Array< int > > | hist_ |
Array< unsigned long > | count_ |
Array< unsigned long long > | updates_ |
Array< int > | active_ |
struct Teuchos::StackedTimer::AlignmentWidths | alignments_ |
bool | enable_verbose_ |
If set to true, prints to the debug ostream. At construction, default value is set from environment variable. More... | |
unsigned | verbose_timestamp_levels_ |
If set to a value greater than 0, verbose mode will print that many levels of timers with timestamps. A value of zero disables timestamps. More... | |
Teuchos::RCP< std::ostream > | verbose_ostream_ |
For debugging, this is the ostream used for printing. More... | |
This class allows one to push and pop timers on and off a stack.
To use this class one would do something like this
StackedTimer timer(); // construct top level timer timer.start("some comp"); do_work(); timer.start("sub comp"); more_work(); timer.stop(); // stopping sub comp timer.stop(); // stopping comp
timer.stop(); // stopping all timer stuff timer.report(std::cout); // dump to screen
Definition at line 221 of file Teuchos_StackedTimer.hpp.
|
inlineexplicit |
Construct a stacked timer
[in] | name | Top level name of the timer |
[in] | start_top_timer | Automatically start the top level timer. If set to false, the user will have to start it manually. |
Definition at line 472 of file Teuchos_StackedTimer.hpp.
|
inline |
Start the base level timer only
Definition at line 495 of file Teuchos_StackedTimer.hpp.
|
inline |
Stop the base level timer only
Definition at line 505 of file Teuchos_StackedTimer.hpp.
|
inline |
Start a sublevel timer
[in] | name | Name of the timer you wish to start |
[in] | push_kokkos_profiling_region | Optional parameter that if set to true, will pushRegion() in kokkos profiling for this timer. The TimeMonitor will always set this to false since it does its own pushRegion() in the Timer object (this prevents double registering with kokkos). |
Definition at line 517 of file Teuchos_StackedTimer.hpp.
|
inline |
Stop the current top running timer, should be called for the root timer prior to final output
[in] | name | Name of the timer you wish to stop |
[in] | pop_kokkos_profiling_region | Optional parameter that if set to true, will popRegion() in kokkos profiling for this timer. The TimeMonitor will always set this to false since it does its own pushRegion() in the Timer object (this prevents double registering with kokkos). |
Definition at line 554 of file Teuchos_StackedTimer.hpp.
|
inline |
Increment the iteration count for the running timer
[in] | i | amount to increment the count |
Definition at line 591 of file Teuchos_StackedTimer.hpp.
|
inline |
Return the accumulated time the named timer has, if name is blank top level timer
[in] | name | Name of the timer to output |
Definition at line 600 of file Teuchos_StackedTimer.hpp.
|
inline |
Return the time spent per update at a given level
[in] | name | name of subtimer, if blank return current level time |
Definition at line 612 of file Teuchos_StackedTimer.hpp.
|
inline |
Return the time spent per timer start/stop at a given level
[in] | name | name of subtimer, if blank return current level time |
Definition at line 623 of file Teuchos_StackedTimer.hpp.
|
inline |
Return pointer to the BaseTimer corresponding to a given string (full string name)
name | input string to search for |
Definition at line 635 of file Teuchos_StackedTimer.hpp.
|
inline |
Return the time info for a given string (full string name)
name | input string to search for |
Definition at line 647 of file Teuchos_StackedTimer.hpp.
|
inline |
Definition at line 655 of file Teuchos_StackedTimer.hpp.
void Teuchos::StackedTimer::report | ( | std::ostream & | os, |
Teuchos::RCP< const Teuchos::Comm< int > > | comm, | ||
OutputOptions | options = OutputOptions() |
||
) |
Dump all the data from all the MPI ranks to an ostream
[in,out] | os | - Output stream |
[in] | comm | - Teuchos comm pointer |
Definition at line 694 of file Teuchos_StackedTimer.cpp.
void Teuchos::StackedTimer::reportXML | ( | std::ostream & | os, |
const std::string & | datestamp, | ||
const std::string & | timestamp, | ||
Teuchos::RCP< const Teuchos::Comm< int > > | comm | ||
) |
Dump all the data from all the MPI ranks to the given output stream, in Watchr XML format. reportWatchrXML()
is a wrapper for this function that creates os
as a std::ofstream
.
[in,out] | os | - stream where XML will be written |
[in] | datestamp | - UTC datestamp in the format YYYY_MM_DD |
[in] | timestamp | - UTC timestamp in ISO 8601 format: YYYY-MM-DDTHH:MM:SS (HH in 24-hour time, and T is just the character 'T') |
[in] | comm | - Teuchos comm pointer |
Definition at line 728 of file Teuchos_StackedTimer.cpp.
std::string Teuchos::StackedTimer::reportWatchrXML | ( | const std::string & | name, |
Teuchos::RCP< const Teuchos::Comm< int > > | comm | ||
) |
Dump all the data from all the MPI ranks to an XML file. This function calls reportXML and is intended to be used directly by performance tests.
In the XML report, the top-level timer name (representing the total) will be replaced with name
(the name of the test). This becomes the top-level chart name in Watchr.
The output filename is controlled by two environment variables: $WATCHR_PERF_DIR
(required for output) and $WATCHR_BUILD_NAME
(optional). $WATCHR_PERF_DIR
is the directory where the output file will be created. If it is not set or is empty, no output will be produced and the function returns an empty string on all ranks.
If $WATCHR_BUILD_NAME
is set, the filename is $WATCHR_BUILD_NAME-name_$DATESTAMP.xml
. Additionally, the build name is prepended (verbatim) to the the top-level chart name, so that Watchr knows it is a different data series than runs of the same test from other builds.
If $WATCHR_BUILD_NAME
is not set or is empty, the filename is just name_$DATESTAMP.xml
. DATESTAMP is calculated from the current UTC time, in the format YYYY_MM_DD.
In the filename, all spaces in will be replaced by underscores.
[in] | name | - Name of performance test |
[in] | comm | - Teuchos comm pointer |
Definition at line 744 of file Teuchos_StackedTimer.cpp.
void Teuchos::StackedTimer::enableVerbose | ( | const bool | enable_verbose | ) |
Definition at line 807 of file Teuchos_StackedTimer.cpp.
void Teuchos::StackedTimer::enableVerboseTimestamps | ( | const unsigned | levels | ) |
Definition at line 810 of file Teuchos_StackedTimer.cpp.
void Teuchos::StackedTimer::setVerboseOstream | ( | const Teuchos::RCP< std::ostream > & | os | ) |
Definition at line 813 of file Teuchos_StackedTimer.cpp.
|
protected |
Flatten the timers into a single array
Definition at line 118 of file Teuchos_StackedTimer.cpp.
|
protected |
Merge all the timers together into a single structure
[in] | comm | - Communicator to use |
Definition at line 126 of file Teuchos_StackedTimer.cpp.
|
protected |
Migrate all the timer data to rank=0 if parallel
Definition at line 133 of file Teuchos_StackedTimer.cpp.
|
protected |
Compute the column widths to align the output from report() in columns.
Definition at line 257 of file Teuchos_StackedTimer.cpp.
|
protected |
Recursive call to print a level of timer data.
Definition at line 396 of file Teuchos_StackedTimer.cpp.
|
protected |
Recursive call to print a level of timer data, in Watchr XML format. If non-empty, rootName will replace the root level's timer name in the output. If empty or level > 0, it has no effect.
Definition at line 637 of file Teuchos_StackedTimer.cpp.
|
protected |
Current level running.
Definition at line 747 of file Teuchos_StackedTimer.hpp.
|
protected |
Base timer.
Definition at line 749 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 751 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 752 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 753 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 754 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 755 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 756 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 757 of file Teuchos_StackedTimer.hpp.
Definition at line 758 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 759 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 760 of file Teuchos_StackedTimer.hpp.
|
protected |
Definition at line 761 of file Teuchos_StackedTimer.hpp.
|
protected |
|
protected |
If set to true, prints to the debug ostream. At construction, default value is set from environment variable.
Definition at line 790 of file Teuchos_StackedTimer.hpp.
|
protected |
If set to a value greater than 0, verbose mode will print that many levels of timers with timestamps. A value of zero disables timestamps.
Definition at line 793 of file Teuchos_StackedTimer.hpp.
|
protected |
For debugging, this is the ostream used for printing.
Definition at line 796 of file Teuchos_StackedTimer.hpp.