All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Timer Class Reference Wrapper for the system time query methods. More...
Detailed DescriptionWrapper for the system time query methods. In C or C++ programs, the usual way to measure time intervals, e.g., running times of some complex computations, is to call one of the provided system functions like clock(), time(), times(), gettimeofday(), getrusage() etc. By these functions one can gather information about the process' user and system time and the system clock (real time). Unfortunately, these functions are rather clumsy. The programmer determines computation times by querying a (virtual) clock value at the beginning and another one at the end of some computation and converting the difference of these values into seconds. Some functions impose restrictions; for instance, the values of the ANSI C function clock() are of high resolution but will wrap around after about 36 minutes (cpu time). Most timing functions take some data structure as argument that has to be allocated before the call and from which the user has to pick up the information of interest after the call. Problems can arise when porting programs to other operating systems that do not support standards like POSIX etc. In order to simplify measuring computation times and to hide the system-dependencies involved, a concept of timers accounting the process' user, system and real time is implemented. C and C++ interfaces are provided as a set of functions operating on timers and a timer class respectively. The idea is to provide a type Timer for objects that act like a stopwatch. Operations on such an objects include: start accounting time, stop accounting, read the actual time account and reset the objects time account to zero. After initialization, accounting for user, system and real time can be started by calling a function start(). Accounting is suspended by calling a function stop() and can be resumed at any time by calling start() again. The user, system or real time actually accounted by a timer can be accessed at any time by the methods shown in this code section: Real utime, stime, rtime; utime = timer.userTime(); stime = timer.systemTime(); rtime = timer.realTime(); timer.getTimes(utime, stime rtime); For convenience, the actually accounted user time is returned by stop() too. Function reset() re-initializes a timer clearing all time accounts. Function resolution() returns the smallest (non-zero) time intervall which is resolved by the underlying system function: res = 1/Timer_resolution(). The process' user and system times are accessed by calling function times(), which is declared in Member Enumeration Documentation
Constructor & Destructor Documentation
Member Function Documentationget accounted user, system or real time. Definition at line 107 of file timer.cpp. References Timer::rAccount, Timer::rTicks, Timer::RUNNING, Timer::sAccount, Timer::status, Timer::sTicks, Timer::ticks2sec(), Timer::uAccount, Timer::updateTicks(), and Timer::uTicks. Referenced by Timer::realTime(), Timer::systemTime(), and Timer::userTime().
initialize timer, set timing accounts to zero. Definition at line 158 of file timer.h. References Timer::rAccount, Timer::RESET, Timer::sAccount, Timer::status, and Timer::uAccount. Referenced by SPxMainSM::simplify(), and SPxSolver::solve().
return resolution of timer as 1/seconds. Definition at line 187 of file timer.h. References Timer::ticks_per_sec.
start timer, resume accounting user, system and real time. Definition at line 76 of file timer.cpp. References Timer::rAccount, Timer::rTicks, Timer::RUNNING, Timer::sAccount, Timer::status, Timer::sTicks, Timer::uAccount, Timer::updateTicks(), and Timer::uTicks. Referenced by SPxBasis::change(), CLUFactor::factor(), read_input_file(), SPxMainSM::simplify(), SPxSolver::solve(), SLUFactor::solve2right4update(), SLUFactor::solve3right4update(), solve_LP(), SLUFactor::solveLeft(), SLUFactor::solveRight(), and SLUFactor::solveRight4update().
stop timer, return accounted user time. Definition at line 91 of file timer.cpp. References Timer::rAccount, Timer::rTicks, Timer::RUNNING, Timer::sAccount, Timer::status, Timer::sTicks, Timer::STOPPED, Timer::ticks2sec(), Timer::uAccount, Timer::updateTicks(), and Timer::uTicks. Referenced by SPxBasis::change(), CLUFactor::factor(), SPxMainSM::simplify(), SPxSolver::solve(), SLUFactor::solve2right4update(), SLUFactor::solve3right4update(), solve_LP(), SLUFactor::solveLeft(), SLUFactor::solveRight(), and SLUFactor::solveRight4update().
return accounted system time. Definition at line 148 of file timer.cpp. References Timer::getTimes().
convert ticks to secounds. Definition at line 132 of file timer.h. References Timer::ticks_per_sec. Referenced by Timer::getTimes(), and Timer::stop().
get actual user, system and real ticks from the system. Definition at line 53 of file timer.cpp. References Timer::rTicks, Timer::sTicks, and Timer::uTicks. Referenced by Timer::getTimes(), Timer::start(), and Timer::stop().
return accounted user time. Definition at line 138 of file timer.cpp. References Timer::getTimes(). Referenced by SLUFactor::getFactorTime(), SLUFactor::getSolveTime(), SPxBasis::getTotalUpdateTime(), and SPxSimplifier::timeUsed(). Member Data Documentation
real time Definition at line 122 of file timer.h. Referenced by Timer::getTimes(), Timer::reset(), Timer::start(), and Timer::stop().
real ticks Definition at line 125 of file timer.h. Referenced by Timer::getTimes(), Timer::start(), Timer::stop(), and Timer::updateTicks().
system time Definition at line 121 of file timer.h. Referenced by Timer::getTimes(), Timer::reset(), Timer::start(), and Timer::stop().
timer status Referenced by Timer::getTimes(), Timer::reset(), Timer::start(), and Timer::stop().
system ticks Definition at line 124 of file timer.h. Referenced by Timer::getTimes(), Timer::start(), Timer::stop(), and Timer::updateTicks().
ticks per secound, should be constant Definition at line 114 of file timer.h. Referenced by Timer::resolution(), Timer::ticks2sec(), and Timer::Timer().
user time Definition at line 120 of file timer.h. Referenced by Timer::getTimes(), Timer::reset(), Timer::start(), and Timer::stop().
user ticks Definition at line 123 of file timer.h. Referenced by Timer::getTimes(), Timer::start(), Timer::stop(), and Timer::updateTicks().
|