MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MueLu_MutuallyExclusiveTime.hpp
Go to the documentation of this file.
1 // @HEADER
2 //
3 // ***********************************************************************
4 //
5 // MueLu: A package for multigrid based preconditioning
6 // Copyright 2012 Sandia Corporation
7 //
8 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact
39 // Jonathan Hu (jhu@sandia.gov)
40 // Andrey Prokopenko (aprokop@sandia.gov)
41 // Ray Tuminaro (rstumin@sandia.gov)
42 //
43 // ***********************************************************************
44 //
45 // @HEADER
46 #ifndef MUELU_MUTUALLYEXCLUSIVETIME_HPP
47 #define MUELU_MUTUALLYEXCLUSIVETIME_HPP
48 
49 #include <string>
50 #include <stack>
51 #include "Teuchos_RCPDecl.hpp" // for RCP
52 
53 // types for explicit instantiation
55 #include "MueLu_Level_fwd.hpp"
56 #include "MueLu_BaseClass.hpp"
57 
58 namespace MueLu {
59 
74 template <class TagName>
76  public:
78 
79  MutuallyExclusiveTime(const std::string& name, bool startFlag = false);
81 
85 
89  void start(bool reset = false);
90 
92 
93 
97  double stop();
98 
100  void pause();
101 
105 
106  void resume();
107 
109 
111 
112 
113  bool isRunning();
114 
115  bool isPaused();
116 
118 
120  // Note: this function is provided by the timer class, not by a monitor (!= Teuchos)
121  static RCP<MutuallyExclusiveTime<TagName> > getNewTimer(const std::string& name);
122 
124  void incrementNumCalls();
125 
127  std::string name_;
128 
135  static void PrintParentChildPairs();
136 
137  private:
141 
142  // MutuallyExclusiveTime() { }
143 
146  bool isPaused_;
147 
149  // - empty when no active timer
150  // - head is the active timer
151  // - other timers are timers paused to enforce the mutually exclusive property of the timer set.
152  static std::stack<MutuallyExclusiveTime<TagName>*> timerStack_;
153  // static std::map<std::string,std::string> myParent_;
154 
156  void TopOfTheStack();
157 
158  // TODO: test integrity of the stack:
159  // Head = running or paused
160  // Other timers of the stack = paused
161 };
162 
163 extern template class MutuallyExclusiveTime<FactoryBase>;
164 extern template class MutuallyExclusiveTime<Level>;
165 extern template class MutuallyExclusiveTime<BaseClass>;
166 
167 } // namespace MueLu
168 
169 #endif // MUELU_MUTUALLYEXCLUSIVETIME_HPP
void TopOfTheStack()
Check if &#39;this&#39; is the head of the stack.
static std::stack< MutuallyExclusiveTime< TagName > * > timerStack_
Stack of created timers (active or paused timers).
void reset()
static RCP< MutuallyExclusiveTime< TagName > > getNewTimer(const std::string &name)
Return a new MutuallyExclusiveTime that is registered with the Teuchos::TimeMonitor (for timer summar...
static void PrintParentChildPairs()
Print std::map of (child,parent) pairs for post-run analysis.
void start(bool reset=false)
Starts the timer. If a MutuallyExclusiveTime timer is running, it will be stopped.
double stop()
Stops the timer. The previous MutuallyExclusiveTime that has been paused when this timer was started ...
std::string name_
Name of this mutually exclusive timer.
void incrementNumCalls()
Increment the number of times this timer has been called.
RCP< Teuchos::Time > timer_
Using an RCP allows to use Teuchos::TimeMonitor to keep track of the timer.
void pause()
Pause running timer. Used internally by start().
Base class for MueLu classes.
void resume()
Resume paused timer. Used internally by stop(). Timer is not reset.
This class wraps a Teuchos::Time and maintains a mutually exclusive property between wrapped timers...
MutuallyExclusiveTime(const std::string &name, bool startFlag=false)
Constructor.