Class Reference for E1039 Core & Analysis Software
PHTimer.h
Go to the documentation of this file.
1 // $Id: PHTimer.h,v 1.6 2013/01/07 09:27:01 bbannier Exp $
2 
3 #ifndef __PHTIMER_H__
4 #define __PHTIMER_H__
5 
14 #include <iostream>
15 #include <sstream>
16 #include <unistd.h>
17 
18 #define rdtsc(low,high) \
19 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
20 
23 
24 class PHTimer
25 {
26  public:
27 
29  enum State
30  {
31  STOP=0,
32  RUN=1
33  };
34 
36  State get_state( void ) const
37  { return _state; }
38 
40  PHTimer(const std::string& name = "Generic Timer") :
41  _name(name),
42  _state( STOP ),
43  _start_time(get_clock_counts()),
44  _stop_time(get_clock_counts()),
45  _accumulated_time( 0 ),
46  _ncycle( 0 )
47  {
48  _stop_time._low++;
49  }
50 
51  void reset() {
52  _state = STOP;
53  _start_time = get_clock_counts();
54  _stop_time = get_clock_counts();
55  _accumulated_time = 0;
56  _ncycle = 0;
57  _stop_time._low++;
58  }
59 
61  void stop(){
62  if( _state == STOP ) return;
63  _stop_time = get_clock_counts();
64  _state = STOP;
65  _ncycle++;
66  _accumulated_time+=elapsed();
67  }
68 
70  void restart(){ _start_time = get_clock_counts(); _state = RUN; }
71 
73  void print(std::ostream& os = std::cout) const
74  {
75  double elapse( elapsed() );
76  PRINT(os,"Timing for " + _name);
77  os << "time (ms): " << elapse << std::endl;
78  PRINT();
79  }
80 
82  void print_stat( std::ostream& os = std::cout ) const
83  {
84  PRINT(os, std::string( "Stats for " + _name ) );
85  if( _ncycle )
86  {
87  os << "accumulated time (ms): " << _accumulated_time << std::endl;
88  os << "per event time: (ms) " << _accumulated_time/_ncycle << std::endl;
89  } else {
90  os << "never started.\n";
91  }
92  PRINT(os,"**");
93  }
94 
96  void set_name(const std::string& name)
97  { _name = name; }
98 
100  std::string get_name( void ) const
101  { return _name; }
102 
104  double get_accumulated_time( void ) const
105  { return _accumulated_time; }
106 
108  unsigned int get_ncycle( void ) const
109  { return _ncycle; }
110 
112  double get_time_per_cycle( void ) const
113  { return _accumulated_time/_ncycle; }
114 
116  double elapsed( void ) const
117  {
118  return 1000.0*get_difference(
119  ( _state==RUN ) ? get_clock_counts():_stop_time,
120  _start_time );
121  }
122 
124  void test( double time, std::ostream& os = std::cout)
125  {
126  std::ostringstream tmp;
127  tmp << "Test for " << _name << " - " << time << "ms";
128  PRINT(os, tmp.str());
129  restart();
130  usleep( (unsigned int)(time*1000) );
131  print( os );
132  }
133 
135  static void PRINT(std::ostream& os = std::cout, const std::string& message = "");
136 
137  private:
138 
140  class Frequency
141  {
142  public:
143 
145  Frequency()
146  {
147  try { set_cpu_freq(); }
148  catch (std::exception& e) { std::cerr << e.what() << std::endl; }
149  _period = 1.0/_frequency;
150  }
151 
153  operator double() const
154  {return _frequency;}
155 
157  double period() const
158  {return _period;}
159 
160  private:
161 
163  double _frequency;
164 
166  double _period;
167 
169  void set_cpu_freq(const char * cpuinfopath = "/proc/cpuinfo");
170  };
171 
173  struct time_struct
174  {
175 
177  time_struct( void ):
178  _low(0),
179  _high(0)
180  {}
181 
183  unsigned long _low;
184 
186  unsigned long _high;
187 
188  };
189 
191  static time_struct get_clock_counts( void ) {
192  time_struct t;
193  rdtsc(t._low, t._high);
194  return t;
195  }
196 
198  static double get_difference(
199  const time_struct &,
200  const time_struct & );
201 
203  static Frequency _frequency;
204 
206  static const double _twopower32;
207 
209  std::string _name;
210 
212  State _state;
213 
215  time_struct _start_time;
216 
218  time_struct _stop_time;
219 
221  double _accumulated_time;
222 
224  unsigned int _ncycle;
225 
226 };
227 
228 #endif
#define rdtsc(low, high)
Definition: PHTimer.h:18
high precision timer
Definition: PHTimer.h:25
void test(double time, std::ostream &os=std::cout)
test PHTimer for a given amount of time (in ms)
Definition: PHTimer.h:124
unsigned int get_ncycle(void) const
get number of cycles
Definition: PHTimer.h:108
double get_accumulated_time(void) const
get cumulated time
Definition: PHTimer.h:104
void print(std::ostream &os=std::cout) const
Dump elapsed time to provided ostream.
Definition: PHTimer.h:73
void set_name(const std::string &name)
Set timer name.
Definition: PHTimer.h:96
std::string get_name(void) const
get timer name
Definition: PHTimer.h:100
void restart()
Restart timer.
Definition: PHTimer.h:70
State get_state(void) const
access timer state
Definition: PHTimer.h:36
State
enum for timer state
Definition: PHTimer.h:30
@ RUN
Definition: PHTimer.h:32
@ STOP
Definition: PHTimer.h:31
PHTimer(const std::string &name="Generic Timer")
Construct with a name.
Definition: PHTimer.h:40
static void PRINT(std::ostream &os=std::cout, const std::string &message="")
print a message (formated) to a stream
Definition: PHTimer.cc:75
void stop()
stops the counter
Definition: PHTimer.h:61
void reset()
Definition: PHTimer.h:51
double get_time_per_cycle(void) const
get averaged time/cycle
Definition: PHTimer.h:112
double elapsed(void) const
retrieve elapsed value since last restart (in ms)
Definition: PHTimer.h:116
void print_stat(std::ostream &os=std::cout) const
Dump statistics.
Definition: PHTimer.h:82