/usr/include/trilinos/MueLu_MutuallyExclusiveTime.hpp is in libtrilinos-muelu-dev 12.4.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | // @HEADER
//
// ***********************************************************************
//
// MueLu: A package for multigrid based preconditioning
// Copyright 2012 Sandia Corporation
//
// Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
// the U.S. Government retains certain rights in this software.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact
// Jonathan Hu (jhu@sandia.gov)
// Andrey Prokopenko (aprokop@sandia.gov)
// Ray Tuminaro (rstumin@sandia.gov)
//
// ***********************************************************************
//
// @HEADER
#ifndef MUELU_MUTUALLYEXCLUSIVETIME_HPP
#define MUELU_MUTUALLYEXCLUSIVETIME_HPP
#include <string>
#include <stack>
#include <map>
#include <iostream> // for basic_ostream, etc
#include <utility> // for pair
#include "Teuchos_FancyOStream.hpp" // for basic_FancyOStream, etc
#include "Teuchos_RCP.hpp" // for RCP::operator->, etc
#include "Teuchos_RCPDecl.hpp" // for RCP
#include "Teuchos_TestForException.hpp" // for TEUCHOS_TEST_FOR_EXCEPTION
#include "Teuchos_Time.hpp"
#include "Teuchos_TimeMonitor.hpp"
#include "MueLu_ConfigDefs.hpp"
#include "MueLu_Exceptions.hpp"
#include "MueLu_BaseClass.hpp"
#include "MueLu_VerbosityLevel.hpp" // for MsgType::Debug, etc
namespace MueLu {
// Map that record parent/child relations for post-processing.
extern std::map<std::string,std::string> myParent_;
/*! @class MutuallyExclusiveTime
@brief This class wraps a Teuchos::Time and maintains a mutually exclusive property between wrapped timers.
This class is useful to exclude from a timer the execution time of a subroutine;
when a MutuallyExclusiveTime is running, other timers are not running.
Timers have three states (running, stopped, paused) to enforce the mutually exclusive property.
When the running timer is stopped, the last active timer is restarted. A stack of timers is used internally to support this functionality.
The template parameter of this class can be used to define several sets of mutually exclusive timers.
Note: Only one timer can be active at a time but all timers can be inactive at the same time. Timers cannot be destroyed when they are in 'paused'.
@todo inheritence from PerformanceMonitorBase<Time> ?
*/
template<class TagName>
class MutuallyExclusiveTime : public BaseClass {
public:
//! @name Constructor/Destructor
//@{
//!Constructor
MutuallyExclusiveTime(const std::string &name, bool startFlag=false)
: name_(name),
timer_(rcp(new Teuchos::Time(name, false))), // second argument is false in any case, because if start==true,
// timer has to be started by MutuallyExclusiveTime::start() instead of Teuchos::Time::start().
isPaused_(false)
{
if (startFlag == true) timer_->start();
}
//!Destructor
~MutuallyExclusiveTime() {
// This timer can only be destroyed if it is not in the stack
if (isPaused()) {
// error message because cannot throw an exception in destructor
GetOStream(Errors) << "MutuallyExclusiveTime::~MutuallyExclusiveTime(): Error: destructor called on a paused timer." << std::endl;
//TODO: Even if timing results will be wrong, the timer can be removed from the stack to avoid a segmentation fault.
}
stop(); // if isRunning(), remove from the stack, resume previous timer
}
//@}
//! @brief Starts the timer. If a MutuallyExclusiveTime timer is running, it will be stopped.
//! @pre Timer is not already paused.
//! @post Timer is running. Other MutuallyExclusiveTime timers are paused or stopped.
void start(bool reset=false) {
TEUCHOS_TEST_FOR_EXCEPTION(isPaused(), Exceptions::RuntimeError, "MueLu::MutuallyExclusiveTime::start(): timer is paused. Use resume().");
if (isRunning()) { return; } // If timer is already running, do not pause/push-in-the-stack/start the timer.
// Otherwise, something bad will happen when this.stop() will be called
// pause currently running timer
if (!timerStack_.empty()) {
GetOStream(Debug) << "pausing parent timer " << timerStack_.top()->name_ << std::endl;
timerStack_.top()->pause();
GetOStream(Debug) << "starting child timer " << this->name_ << std::endl;
myParent_[this->name_] = timerStack_.top()->name_;
} else {
GetOStream(Debug) << "starting orphan timer " << this->name_ << std::endl;
myParent_[this->name_] = "no parent";
}
// start this timer
timer_->start(reset);
timerStack_.push(this);
}
//! @name Functions that can only be called on the most recent timer (i.e., the running or last paused timer)
//@{
//! @brief Stops the timer.
//! The previous MutuallyExclusiveTime that has been paused when this timer was started will be resumed.
//! This method can be called on an already stopped timer or on the currently running timer.
double stop() {
TEUCHOS_TEST_FOR_EXCEPTION(isPaused(), Exceptions::RuntimeError, "MueLu::MutuallyExclusiveTime::start(): timer is paused. Use resume().");
if (!isRunning()) { return timer_->stop(); } // stop() can be called on stopped timer
// Here, timer is running, so it is the head of the stack
TopOfTheStack();
timerStack_.pop();
double r = timer_->stop();
if (!timerStack_.empty()) {
GetOStream(Debug) << "resuming timer " << timerStack_.top()->name_ << std::endl;
timerStack_.top()->resume();
}
return r;
}
//! Pause running timer. Used internally by start().
void pause() {
if (isPaused()) // calling twice pause() is allowed
return;
TopOfTheStack();
timer_->stop();
isPaused_ = true;
}
//! @brief Resume paused timer.
//! Used internally by stop(). Timer is not reset.
//! @pre Timer is at the top of the stack.
void resume() {
TopOfTheStack();
// no 'shortcut' test necessary:
// - if timer is stop, it is in pause (cannot be stop and not in pause because this timer is the head of the stack).
// - if timer is running, nothing is changed by this function.
timer_->start(false);
isPaused_ = false;
}
//@}
//! @name Query methods.
//@{
bool isRunning() {
if (timer_->isRunning()) {
// TEUCHOS_TEST_FOR_EXCEPTION(timerStack_.top() != this, Exceptions::RuntimeError,
// "MueLu::MutuallyExclusiveTime::isRunning(): this timer is active so it is supposed to be the head of the stack");
}
return timer_->isRunning();
}
bool isPaused() {
TEUCHOS_TEST_FOR_EXCEPTION(isPaused_ && timer_->isRunning(), Exceptions::RuntimeError, "");
return isPaused_;
}
//@}
//! Return a new MutuallyExclusiveTime that is registered with the Teuchos::TimeMonitor (for timer summary).
// Note: this function is provided by the timer class, not by a monitor (!= Teuchos)
static RCP<MutuallyExclusiveTime<TagName> > getNewTimer(const std::string& name) {
RCP<MutuallyExclusiveTime<TagName> > timer = rcp(new MutuallyExclusiveTime<TagName>(Teuchos::TimeMonitor::getNewTimer(name)));
timer->name_ = name;
return timer;
}
//! Increment the number of times this timer has been called.
void incrementNumCalls() { timer_->incrementNumCalls(); }
//! Name of this mutually exclusive timer.
std::string name_;
/*! @brief Print std::map of (child,parent) pairs for post-run analysis.
This method print a std::map. Each key is a child, and the value is its parent.
The (child,parent0) pairs can be used by the MueLu script ``mueprof.sh" to print a
nice hierarchical tree that shows both runtime flow and time for each section.
*/
static void PrintParentChildPairs() {
//key is child, value is parent
RCP<Teuchos::FancyOStream> fos = Teuchos::fancyOStream(Teuchos::rcpFromRef(std::cout)); fos->setOutputToRootOnly(0);
*fos << "Parent Child Map" << std::endl;
std::map<std::string, std::string >::const_iterator iter;
for (iter = ::MueLu::myParent_.begin(); iter != ::MueLu::myParent_.end(); ++iter) {
*fos << "Key: " << iter->first << " Value: " << iter->second << std::endl;
}
}
private:
//! This constructor is not public to prevent users from using Teuchos::Time::start()/stop()
//! instead of MutuallyExclusiveTime::start()/stop(), if they have access to the underlying Teuchos::Time object.
MutuallyExclusiveTime(RCP<Teuchos::Time> timer)
: timer_(timer), isPaused_(false)
{ }
// MutuallyExclusiveTime() { }
//! Using an RCP allows to use Teuchos::TimeMonitor to keep track of the timer.
RCP<Teuchos::Time> timer_;
bool isPaused_;
//! Stack of created timers (active or paused timers).
// - empty when no active timer
// - head is the active timer
// - other timers are timers paused to enforce the mutually exclusive property of the timer set.
static std::stack<MutuallyExclusiveTime<TagName>*> timerStack_;
//static std::map<std::string,std::string> myParent_;
//! Check if 'this' is the head of the stack.
void TopOfTheStack() {
TEUCHOS_TEST_FOR_EXCEPTION(timerStack_.empty(), Exceptions::RuntimeError, "MueLu::MutuallyExclusiveTime::TopOfTheStack(): timer is not the head of the stack (stack is empty).");
// TEUCHOS_TEST_FOR_EXCEPTION(timerStack_.top() != this, Exceptions::RuntimeError, "MueLu::MutuallyExclusiveTime::TopOfTheStack(): timer is not the head of the stack.");
TEUCHOS_TEST_FOR_EXCEPTION(!(isRunning() || isPaused()), Exceptions::RuntimeError, "MueLu::MutuallyExclusiveTime::TopOfTheStack(): head of the stack timer is neither active nor paused.");
}
//TODO: test integrity of the stack:
// Head = running or paused
// Other timers of the stack = paused
};
} // namespace MueLu
#endif // MUELU_MUTUALLYEXCLUSIVETIME_HPP
|