mirror of
https://github.com/paboyle/Grid.git
synced 2025-06-25 03:02:02 +01:00
Hadrons: big update abstracting the block meson field routine, tested & working, performance counters broken and code dirty
This commit is contained in:
29
Hadrons/TimerArray.hpp
Normal file
29
Hadrons/TimerArray.hpp
Normal file
@ -0,0 +1,29 @@
|
||||
#ifndef Hadrons_TimerArray_hpp_
|
||||
#define Hadrons_TimerArray_hpp_
|
||||
|
||||
#include <Hadrons/Global.hpp>
|
||||
|
||||
BEGIN_HADRONS_NAMESPACE
|
||||
|
||||
class TimerArray
|
||||
{
|
||||
public:
|
||||
TimerArray(void) = default;
|
||||
virtual ~TimerArray(void) = default;
|
||||
void startTimer(const std::string &name);
|
||||
GridTime getTimer(const std::string &name);
|
||||
double getDTimer(const std::string &name);
|
||||
void startCurrentTimer(const std::string &name);
|
||||
void stopTimer(const std::string &name);
|
||||
void stopCurrentTimer(void);
|
||||
void stopAllTimers(void);
|
||||
void resetTimers(void);
|
||||
std::map<std::string, GridTime> getTimings(void);
|
||||
private:
|
||||
std::string currentTimer_;
|
||||
std::map<std::string, GridStopWatch> timer_;
|
||||
};
|
||||
|
||||
END_HADRONS_NAMESPACE
|
||||
|
||||
#endif // Hadrons_TimerArray_hpp_
|
Reference in New Issue
Block a user