18 #define rdtsc(low,high) \
19 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
40 PHTimer(
const std::string& name =
"Generic Timer") :
43 _start_time(get_clock_counts()),
44 _stop_time(get_clock_counts()),
45 _accumulated_time( 0 ),
53 _start_time = get_clock_counts();
54 _stop_time = get_clock_counts();
55 _accumulated_time = 0;
62 if( _state ==
STOP )
return;
63 _stop_time = get_clock_counts();
70 void restart(){ _start_time = get_clock_counts(); _state =
RUN; }
73 void print(std::ostream& os = std::cout)
const
76 PRINT(os,
"Timing for " + _name);
77 os <<
"time (ms): " << elapse << std::endl;
84 PRINT(os, std::string(
"Stats for " + _name ) );
87 os <<
"accumulated time (ms): " << _accumulated_time << std::endl;
88 os <<
"per event time: (ms) " << _accumulated_time/_ncycle << std::endl;
90 os <<
"never started.\n";
105 {
return _accumulated_time; }
113 {
return _accumulated_time/_ncycle; }
118 return 1000.0*get_difference(
119 ( _state==
RUN ) ? get_clock_counts():_stop_time,
124 void test(
double time, std::ostream& os = std::cout)
126 std::ostringstream tmp;
127 tmp <<
"Test for " << _name <<
" - " << time <<
"ms";
128 PRINT(os, tmp.str());
130 usleep( (
unsigned int)(time*1000) );
135 static void PRINT(std::ostream& os = std::cout,
const std::string& message =
"");
147 try { set_cpu_freq(); }
148 catch (std::exception& e) { std::cerr << e.what() << std::endl; }
149 _period = 1.0/_frequency;
153 operator double()
const
157 double period()
const
169 void set_cpu_freq(
const char * cpuinfopath =
"/proc/cpuinfo");
191 static time_struct get_clock_counts(
void ) {
193 rdtsc(t._low, t._high);
198 static double get_difference(
200 const time_struct & );
203 static Frequency _frequency;
206 static const double _twopower32;
215 time_struct _start_time;
218 time_struct _stop_time;
221 double _accumulated_time;
224 unsigned int _ncycle;
void test(double time, std::ostream &os=std::cout)
test PHTimer for a given amount of time (in ms)
unsigned int get_ncycle(void) const
get number of cycles
double get_accumulated_time(void) const
get cumulated time
void print(std::ostream &os=std::cout) const
Dump elapsed time to provided ostream.
void set_name(const std::string &name)
Set timer name.
std::string get_name(void) const
get timer name
void restart()
Restart timer.
State get_state(void) const
access timer state
State
enum for timer state
PHTimer(const std::string &name="Generic Timer")
Construct with a name.
static void PRINT(std::ostream &os=std::cout, const std::string &message="")
print a message (formated) to a stream
void stop()
stops the counter
double get_time_per_cycle(void) const
get averaged time/cycle
double elapsed(void) const
retrieve elapsed value since last restart (in ms)
void print_stat(std::ostream &os=std::cout) const
Dump statistics.