casa
$Rev:20696$
|
Precision timer to measure elapsed times in a cumulative way. More...
#include <PrecTimer.h>
Classes | |
struct | TimeStruct |
union | Union1 |
struct | Union2 |
Public Member Functions | |
PrecTimer () | |
Construct. | |
~PrecTimer () | |
Destruct. | |
void | start () |
Restart the timer. | |
void | stop () |
Stop the timer. | |
void | reset () |
Reset the timer to zero. | |
void | show () const |
Show real time on cout or a user supplied stream. | |
void | show (std::ostream &os) const |
void | show (const String &) const |
Show real time on cout or a user supplied stream preceeded by the string parameter. | |
void | show (std::ostream &os, const String &prefix) const |
double | getReal () const |
Get the real time (in seconds). | |
unsigned long long | getCount () const |
Get the total number of times start/stop is done. | |
Private Member Functions | |
void | print_time (std::ostream &, double time) const |
Static Private Member Functions | |
static double | get_CPU_speed_in_MHz () |
Private Attributes | |
Union1 | u1 |
Union2 | u2 |
Static Private Attributes | |
static double | CPU_speed_in_MHz |
Precision timer to measure elapsed times in a cumulative way.
Public interface
The PrecTimer supplements the Timer class. If offers a low-overhead and high-resolution interval timer for use on i386, x86_64, ia64, and powerpc platforms, using the processor's timestamp counter that is incremented each cycle. Put timer.start() and timer.stop() calls around the piece of code to be timed. Because the timer is cumulative, the total time of a particular piece of code can be timed.
Caution: Make sure that start() and stop() calls alternate, otherwise very strange times will be the result;
A timer can be started and stopped multiple times; both the average and total time, as well as the number of iterations are printed. The measured time is real time (as opposed to user or system time). The timer can be used to measure from 10 nanosecond to a century interval.
Multiple timers can be used in a nested way as long as each of them has independent (matching) start and stop calls.
The class is more or less a copy of the original written by John Romein at ASTRON, Dwingeloo, the Netherlands.
Here's how to create a timer, start it (the 'mark' member function) and display a breakdown.
PrecTimer ttimer; // the timer is reset at construction time PrecTimer ctimer; ttimer.reset(); // if you want to reset the timer (not needed here) ttimer.start(); // start the total timer for (int i=0; i<n; ++i) { ... do something ..\. ctimer.start(); // start the calc timer ...do some calculation which will be timed..\. ctimer.stop(); // and stop it } ttimer.stop(); ttimer.show (cout, "Total "); ctimer.show (cout, "Calculations");
Definition at line 100 of file PrecTimer.h.
casa::PrecTimer::PrecTimer | ( | ) | [inline] |
casa::PrecTimer::~PrecTimer | ( | ) | [inline] |
Destruct.
Definition at line 189 of file PrecTimer.h.
static double casa::PrecTimer::get_CPU_speed_in_MHz | ( | ) | [static, private] |
unsigned long long casa::PrecTimer::getCount | ( | ) | const [inline] |
Get the total number of times start/stop is done.
Definition at line 179 of file PrecTimer.h.
References casa::PrecTimer::Union2::count, and u2.
double casa::PrecTimer::getReal | ( | ) | const |
Get the real time (in seconds).
void casa::PrecTimer::print_time | ( | std::ostream & | , |
double | time | ||
) | const [private] |
void casa::PrecTimer::reset | ( | ) | [inline] |
Reset the timer to zero.
Definition at line 173 of file PrecTimer.h.
References casa::PrecTimer::Union2::count, casa::PrecTimer::Union1::total_time, u1, and u2.
Referenced by PrecTimer().
void casa::PrecTimer::show | ( | ) | const |
Show real time on cout or a user supplied stream.
void casa::PrecTimer::show | ( | std::ostream & | os | ) | const |
void casa::PrecTimer::show | ( | const String & | ) | const |
Show real time on cout or a user supplied stream preceeded by the string parameter.
void casa::PrecTimer::show | ( | std::ostream & | os, |
const String & | prefix | ||
) | const |
void casa::PrecTimer::start | ( | ) | [inline] |
Restart the timer.
Definition at line 193 of file PrecTimer.h.
References casa::PrecTimer::Union1::s1, casa::time, casa::PrecTimer::Union1::total_time, casa::PrecTimer::TimeStruct::total_time_high, casa::PrecTimer::TimeStruct::total_time_low, and u1.
void casa::PrecTimer::stop | ( | ) | [inline] |
Stop the timer.
Definition at line 267 of file PrecTimer.h.
References casa::PrecTimer::Union2::count, casa::PrecTimer::Union1::s1, casa::time, casa::PrecTimer::Union1::total_time, casa::PrecTimer::TimeStruct::total_time_high, casa::PrecTimer::TimeStruct::total_time_low, u1, and u2.
double casa::PrecTimer::CPU_speed_in_MHz [static, private] |
Definition at line 167 of file PrecTimer.h.
Union1 casa::PrecTimer::u1 [private] |
Definition at line 164 of file PrecTimer.h.
Union2 casa::PrecTimer::u2 [private] |
Definition at line 165 of file PrecTimer.h.
Referenced by getCount(), reset(), and stop().