23 level_(std::numeric_limits<unsigned>::max()),name_(
"INVALID"),parent_(nullptr)
34 for (
unsigned i=0; i<level_; ++i)
36 os << name_<<
":"<<
accumulatedTime()<<
" [" << count_started_<<
"] ("<< count_updates_ <<
")"<<std::endl;
38 for (
size_t i=0; i<sub_timers_.size(); ++i) {
39 t_total += sub_timers_[i].accumulatedTime();
40 sub_timers_[i].report(os);
42 if ( sub_timers_.size() == 0 )
44 for (
unsigned i=0; i<=level_; ++i)
53 if (get_full_name() == name) {
57 for (
unsigned i=0;i<sub_timers_.size(); ++i){
58 t = sub_timers_[i].findBaseTimer(name);
69 auto full_name = get_full_name();
70 if (full_name.size() > name.size())
72 if ( strncmp(full_name.c_str(), name.c_str(), full_name.size()))
74 if (get_full_name() == name) {
79 for (
unsigned i=0;i<sub_timers_.size(); ++i){
80 t = sub_timers_[i].findTimer(name,found);
134 hist_[i].resize(num_names);
142 updates.
resize(num_names);
150 for (
int i=0;i<num_names; ++i) {
155 used[i] = t.count==0? 0:1;
157 updates[i] = t.updates;
167 for (
int i=0;i<num_names;++i)
171 for (
int i=0;i<num_names;++i)
177 int commRank = comm->getRank();
178 for (
int i=0;i<num_names; ++i) {
179 if (used[i] && (
min_[i]==time[i]))
180 procmin[i] = commRank;
183 if (used[i] && (
max_[i]==time[i]))
184 procmax[i] = commRank;
194 for (
int i=0;i<num_names; ++i) {
200 int bin=(time[i]-
min_[i])/dh;
201 bins[i] = std::max(std::min(bin,options.
num_histogram-1) , 0);
207 for (
int i=0;i<num_names; ++i) {
218 for (
int i=0;i<num_names; ++i)
225 std::pair<std::string, std::string>
getPrefix(
const std::string &name) {
226 for (std::size_t i=name.size()-1; i>0; --i)
227 if (name[i] ==
'@') {
228 return std::pair<std::string, std::string>(name.substr(0,i), name.substr(i+1));
230 return std::pair<std::string, std::string>(std::string(
""), name);
236 std::vector<bool> &printed,
242 double total_time = 0.0;
250 if ( (level != print_level) || (level >= options.
max_levels) )
253 if ( prefix != split_names.first)
258 std::ostringstream os;
259 for (
int l=0; l<level; ++l)
262 os << split_names.second <<
": ";
268 std::ostringstream os;
275 std::ostringstream os;
276 os <<
" - "<<
sum_[i]/
active_[i]/parent_time*100<<
"%";
282 std::ostringstream os;
289 std::ostringstream os;
297 std::ostringstream os;
298 os <<
" {min=" <<
min_[i];
302 std::ostringstream os;
303 os <<
", max=" <<
max_[i];
309 std::ostringstream os;
316 std::ostringstream os;
323 std::ostringstream os;
331 std::ostringstream os;
335 os <<
", "<<
hist_[h][i];
349 std::ostringstream tmp;
350 for (
int l=0; l<=level; ++l)
352 tmp <<
"Remainder: ";
356 std::ostringstream tmp;
361 std::ostringstream tmp;
380 double total_time = 0.0;
389 if ( (level != print_level) || (level >= options.
max_levels) )
392 if ( prefix != split_names.first)
397 std::ostringstream tmp;
398 for (
int l=0; l<level; ++l) {
402 tmp << split_names.second <<
": ";
409 std::ostringstream tmp;
417 std::ostringstream tmp;
418 tmp <<
" - "<<
sum_[i]/
active_[i]/parent_time*100<<
"%";
430 std::ostringstream tmp;
438 std::ostringstream tmp;
447 std::ostringstream tmp;
448 tmp <<
" {min="<<
min_[i];
454 std::ostringstream tmp;
455 tmp <<
", max="<<
max_[i];
463 std::ostringstream tmp;
472 std::ostringstream tmp;
481 std::ostringstream tmp;
492 for (
size_t j=0; j < offset; ++j)
498 std::ostringstream tmp;
502 tmp <<
", "<<
hist_[h][i];
518 std::ostringstream tmp;
520 for (
int l=0; l<level; ++l) {
524 tmp << split_names.second <<
": ";
535 std::ostringstream tmp;
536 for (
int l=0; l<=level; ++l)
538 tmp <<
"Remainder: ";
544 std::ostringstream tmp;
553 std::ostringstream tmp;
567 for (
size_t j=0; j < offset; ++j)
570 std::ostringstream tmp;
572 for (
int l=0; l<=level; ++l)
574 tmp <<
"Remainder: ";
622 StackedTimer::printLevelXML (std::string prefix,
int print_level, std::ostream& os, std::vector<bool> &printed,
double parent_time,
const std::string& rootName)
624 constexpr
int indSpaces = 2;
625 int indent = indSpaces * print_level;
627 double total_time = 0.0;
633 if ( level != print_level)
636 if ( prefix != split_names.first)
639 for (
int j = 0; j < indent; j++)
641 os <<
"<timing name=\"";
642 if(level == 0 && rootName.length())
650 std::ostringstream osInner;
652 std::string innerContents = osInner.str();
653 if(innerContents.length())
659 for (
int j = 0; j < indent + indSpaces; j++)
661 os <<
"<timing name=\"Remainder\" value=\"" << (
sum_[i]/
active_[i] - sub_time) <<
"\"/>\n";
664 for (
int j = 0; j < indent; j++)
681 if (rank(*comm) == 0 ) {
683 os <<
"*** Teuchos::StackedTimer::report() - Remainder for a level will be ***"
684 <<
"\n*** incorrect if a timer in the level does not exist on every rank ***"
685 <<
"\n*** of the MPI Communicator. ***"
689 os <<
"Teuchos::StackedTimer::report() - max_levels manually set to " << options.
max_levels
690 <<
". \nTo print more levels, increase value of OutputOptions::max_levels." << std::endl;
695 os <<
"Teuchos::StackedTimer::report() - option print_names_before_values=false "
696 <<
"\nrequires that the option align_columns=true too. Setting the value for "
697 <<
"\nalign_column to true."
715 if (rank(*comm) == 0 ) {
717 os <<
"<?xml version=\"1.0\"?>\n";
718 os <<
"<performance-report date=\"" << timestamp <<
"\" name=\"nightly_run_" << datestamp <<
"\" time-units=\"seconds\">\n";
720 os <<
"</performance-report>\n";
726 const char* rawWatchrDir = getenv(
"WATCHR_PERF_DIR");
727 const char* rawBuildName = getenv(
"WATCHR_BUILD_NAME");
728 const char* rawGitSHA = getenv(
"TRILINOS_GIT_SHA");
729 const char* rawBuildDateOverride = getenv(
"WATCHR_BUILD_DATE");
733 std::string watchrDir = rawWatchrDir;
734 if(!watchrDir.length())
740 std::string buildName = rawBuildName ? rawBuildName :
"";
741 std::string datestamp;
742 std::string timestamp;
748 tstruct = gmtime(&t);
749 if(rawBuildDateOverride)
752 int year = 0, month = 0, day = 0;
753 sscanf(rawBuildDateOverride,
"%d_%d_%d", &year, &month, &day);
755 if(year <= 2000 || year > 2100)
756 throw std::invalid_argument(
"$WATCHR_BUILD_DATE has invalid year or is not in YYYY_MM_DD format.");
757 if(month < 1 || month > 12)
758 throw std::invalid_argument(
"$WATCHR_BUILD_DATE has invalid month or is not in YYYY_MM_DD format.");
759 if(day < 1 || day > 31)
760 throw std::invalid_argument(
"$WATCHR_BUILD_DATE has invalid day or is not in YYYY_MM_DD format.");
761 snprintf(buf, 256,
"%04d_%02d_%02d", year, month, day);
763 strftime(buf, 256,
"T%H:%M:%S", tstruct);
764 std::string justTime = buf;
765 snprintf(buf, 256,
"%04d-%02d-%02d", year, month, day);
766 timestamp = std::string(buf) + justTime;
770 strftime(buf, 256,
"%Y_%m_%d", tstruct);
772 strftime(buf, 256,
"%FT%H:%M:%S", tstruct);
778 std::string fullFile;
780 if(rank(*comm) == 0) {
781 std::string nameNoSpaces = name;
782 for(
char& c : nameNoSpaces)
787 if(buildName.length())
790 std::string buildNameNoSpaces = buildName;
791 for(
char& c : buildNameNoSpaces)
796 fullFile = watchrDir +
'/' + buildNameNoSpaces +
"-" + nameNoSpaces +
'_' + datestamp +
".xml";
799 fullFile = watchrDir +
'/' + nameNoSpaces +
'_' + datestamp +
".xml";
800 std::ofstream os(fullFile);
802 os <<
"<?xml version=\"1.0\"?>\n";
803 os <<
"<performance-report date=\"" << timestamp <<
"\" name=\"nightly_run_" << datestamp <<
"\" time-units=\"seconds\">\n";
806 std::string gitSHA(rawGitSHA);
808 if(gitSHA.length() > 10)
809 gitSHA = gitSHA.substr(0, 10);
810 os <<
" <metadata key=\"Trilinos Version\" value=\"" << gitSHA <<
"\"/>\n";
812 printLevelXML(
"", 0, os, printed, 0.0, buildName +
": " + name);
813 os <<
"</performance-report>\n";
850 return static_cast<double>(
count_[i]) / static_cast<double>(
active_[i]);
856 "ERROR: StackedTimer::getAverageMpiTime() - must call aggregateMpiData() first!");
861 "ERROR: StackedTimer::getAverageMpiTime() - the timer named \""
862 << flat_timer_name <<
"\" does not exist!");
865 return static_cast<int>(i);
871 "ERROR: StackedTimer::isTimer() - must call aggregateMpiData() before using this query!");
bool isTimer(const std::string &flat_timer_name)
void setVerboseOstream(const Teuchos::RCP< std::ostream > &os)
Set the ostream for verbose mode(defaults to std::cout).
std::string::size_type timer_names_
std::string::size_type histogram_
std::string::size_type average_time_
std::string::size_type total_updates_
std::string::size_type procmax_
void addTimerNames(Array< std::string > &names, unsigned &pos)
void enableVerboseTimestamps(const unsigned levels)
Enable timestamps in verbose mode for the number of levels specified.
void enableVerbose(const bool enable_verbose)
If set to true, print timer start/stop to verbose ostream.
void merge(Teuchos::RCP< const Teuchos::Comm< int > > comm)
std::string::size_type max_
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
Macro for throwing an exception with breakpointing to ease debugging.
void reduce< int, double >(const double sendBuf[], double recvBuf[], const int count, const EReductionType reductType, const int root, const Comm< int > &comm)
std::string::size_type procmin_
bool enable_verbose_
If set to true, prints to the debug ostream. At construction, default value is set from environment v...
T * getRawPtr()
Return a raw pointer to beginning of array or NULL if unsized.
double printLevelXML(std::string prefix, int level, std::ostream &os, std::vector< bool > &printed, double parent_time, const std::string &rootName="")
double getMpiAverageCount(const std::string &flat_timer_name)
bool enable_timers_
Used to disable timers for asynchronous work.
std::string reportWatchrXML(const std::string &name, Teuchos::RCP< const Teuchos::Comm< int > > comm)
unsigned verbose_timestamp_levels_
If set to a value greater than 0, verbose mode will print that many levels of timers with timestamps...
BaseTimer::TimeInfo findTimer(const std::string &name, bool &found)
double printLevel(std::string prefix, int level, std::ostream &os, std::vector< bool > &printed, double parent_time, const OutputOptions &options)
double accumulatedTime(const std::string &name="")
std::string::size_type fraction_
std::string::size_type count_
void report(std::ostream &os)
void error_out(const std::string &msg, const bool)
Error reporting function for stacked timer.
The basic timer used internally, uses std::chrono::high_resolution_clock.
static void printXMLEscapedString(std::ostream &os, const std::string &str)
double computeColumnWidthsForAligment(std::string prefix, int print_level, std::vector< bool > &printed, double parent_time, const OutputOptions &options)
void reportXML(std::ostream &os, const std::string &datestamp, const std::string ×tamp, Teuchos::RCP< const Teuchos::Comm< int > > comm)
Array< Array< int > > hist_
void collectRemoteData(Teuchos::RCP< const Teuchos::Comm< int > > comm, const OutputOptions &options)
bool print_names_before_values
Array< unsigned long long > updates_
void mergeCounterNames(const Comm< int > &comm, const Array< std::string > &localNames, Array< std::string > &globalNames, const ECounterSetOp setOp)
Merge counter names over all processors.
std::string::size_type min_
void resize(size_type new_size, const value_type &x=value_type())
Teuchos::RCP< std::ostream > verbose_ostream_
For debugging, this is the ostream used for printing.
LevelTimer timer_
Base timer.
double getMpiAverageTime(const std::string &flat_timer_name)
Array< std::string > flat_names_
int getFlatNameIndex(const std::string &flat_timer_name)
bool global_mpi_aggregation_called_
void report(std::ostream &os)
LevelTimer()
Default constructor, shouldn't be used but needed for std::vector.
const BaseTimer * findBaseTimer(const std::string &name) const
void aggregateMpiData(Teuchos::RCP< const Teuchos::Comm< int > > comm, OutputOptions options=OutputOptions())
Smart reference counting pointer class for automatic garbage collection.
Array< unsigned long > count_
std::string::size_type stddev_
bool output_total_updates
std::pair< std::string, std::string > getPrefix(const std::string &name)
struct Teuchos::StackedTimer::AlignmentWidths alignments_