3 * This file is a part of LEMON, a generic C++ optimization library
5 * Copyright (C) 2003-2008
6 * Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
7 * (Egervary Research Group on Combinatorial Optimization, EGRES).
9 * Permission to use, modify and distribute this software is granted
10 * provided that this copyright notice appears in all copies. For
11 * precise terms see the accompanying LICENSE file.
13 * This software is provided "AS IS" with no warranty of any kind,
14 * express or implied, and with no claim as to its suitability for any
19 #ifndef LEMON_TIME_MEASURE_H
20 #define LEMON_TIME_MEASURE_H
24 ///\brief Tools for measuring cpu usage
26 #include <sys/times.h>
35 /// \addtogroup timecount
38 /// A class to store (cpu)time instances.
40 /// This class stores five time values.
43 /// - a system cpu time
44 /// - a user cpu time of children
45 /// - a system cpu time of children
47 /// TimeStamp's can be added to or substracted from each other and
48 /// they can be pushed to a stream.
50 /// In most cases, perhaps the \ref Timer or the \ref TimeReport
51 /// class is what you want to use instead.
53 ///\author Alpar Juttner
64 rtms(tms ts) : tms_utime(ts.tms_utime), tms_stime(ts.tms_stime),
65 tms_cutime(ts.tms_cutime), tms_cstime(ts.tms_cstime) {}
70 rtms &getTms() {return ts;}
71 const rtms &getTms() const {return ts;}
74 ts.tms_utime = ts.tms_stime = ts.tms_cutime = ts.tms_cstime = 0;
80 ///Read the current time values of the process
86 gettimeofday(&tv, 0);real_time=tv.tv_sec+double(tv.tv_usec)/1e6;
90 /// Constructor initializing with zero
93 ///Constructor initializing with the current time values of the process
94 TimeStamp(void *) { stamp();}
96 ///Set every time value to zero
97 TimeStamp &reset() {_reset();return *this;}
100 TimeStamp &operator+=(const TimeStamp &b)
102 ts.tms_utime+=b.ts.tms_utime;
103 ts.tms_stime+=b.ts.tms_stime;
104 ts.tms_cutime+=b.ts.tms_cutime;
105 ts.tms_cstime+=b.ts.tms_cstime;
106 real_time+=b.real_time;
110 TimeStamp operator+(const TimeStamp &b) const
116 TimeStamp &operator-=(const TimeStamp &b)
118 ts.tms_utime-=b.ts.tms_utime;
119 ts.tms_stime-=b.ts.tms_stime;
120 ts.tms_cutime-=b.ts.tms_cutime;
121 ts.tms_cstime-=b.ts.tms_cstime;
122 real_time-=b.real_time;
126 TimeStamp operator-(const TimeStamp &b) const
132 TimeStamp &operator*=(double b)
142 TimeStamp operator*(double b) const
147 friend TimeStamp operator*(double b,const TimeStamp &t);
149 TimeStamp &operator/=(double b)
159 TimeStamp operator/(double b) const
164 ///The time ellapsed since the last call of stamp()
165 TimeStamp ellapsed() const
171 friend std::ostream& operator<<(std::ostream& os,const TimeStamp &t);
173 ///Gives back the user time of the process
174 double userTime() const
176 return double(ts.tms_utime)/sysconf(_SC_CLK_TCK);
178 ///Gives back the system time of the process
179 double systemTime() const
181 return double(ts.tms_stime)/sysconf(_SC_CLK_TCK);
183 ///Gives back the user time of the process' children
184 double cUserTime() const
186 return double(ts.tms_cutime)/sysconf(_SC_CLK_TCK);
188 ///Gives back the user time of the process' children
189 double cSystemTime() const
191 return double(ts.tms_cstime)/sysconf(_SC_CLK_TCK);
193 ///Gives back the real time
194 double realTime() const {return real_time;}
197 TimeStamp operator*(double b,const TimeStamp &t)
202 ///Prints the time counters
204 ///Prints the time counters in the following form:
206 /// <tt>u: XX.XXs s: XX.XXs cu: XX.XXs cs: XX.XXs real: XX.XXs</tt>
208 /// where the values are the
209 /// \li \c u: user cpu time,
210 /// \li \c s: system cpu time,
211 /// \li \c cu: user cpu time of children,
212 /// \li \c cs: system cpu time of children,
213 /// \li \c real: real time.
214 /// \relates TimeStamp
215 inline std::ostream& operator<<(std::ostream& os,const TimeStamp &t)
217 long cls = sysconf(_SC_CLK_TCK);
218 os << "u: " << double(t.getTms().tms_utime)/cls <<
219 "s, s: " << double(t.getTms().tms_stime)/cls <<
220 "s, cu: " << double(t.getTms().tms_cutime)/cls <<
221 "s, cs: " << double(t.getTms().tms_cstime)/cls <<
222 "s, real: " << t.realTime() << "s";
226 ///Class for measuring the cpu time and real time usage of the process
228 ///Class for measuring the cpu time and real time usage of the process.
229 ///It is quite easy-to-use, here is a short example.
231 /// #include<lemon/time_measure.h>
232 /// #include<iostream>
241 /// std::cout << t << '\n';
243 /// doSomethingElse();
244 /// std::cout << t << '\n';
251 ///The \ref Timer can also be \ref stop() "stopped" and
252 ///\ref start() "started" again, so it is possible to compute collected
255 ///\warning Depending on the operation system and its actual configuration
256 ///the time counters have a certain (10ms on a typical Linux system)
258 ///Therefore this tool is not appropriate to measure very short times.
259 ///Also, if you start and stop the timer very frequently, it could lead to
260 ///distorted results.
262 ///\note If you want to measure the running time of the execution of a certain
263 ///function, consider the usage of \ref TimeReport instead.
265 ///\todo This shouldn't be Unix (Linux) specific.
268 ///\author Alpar Juttner
271 int _running; //Timer is running iff _running>0; (_running>=0 always holds)
272 TimeStamp start_time; //This is the relativ start-time if the timer
273 //is _running, the collected _running time otherwise.
275 void _reset() {if(_running) start_time.stamp(); else start_time.reset();}
280 ///\param run indicates whether or not the timer starts immediately.
282 Timer(bool run=true) :_running(run) {_reset();}
284 ///\name Control the state of the timer
285 ///Basically a Timer can be either running or stopped,
286 ///but it provides a bit finer control on the execution.
287 ///The \ref Timer also counts the number of \ref start()
288 ///executions, and is stops only after the same amount (or more)
289 ///\ref stop() "stop()"s. This can be useful e.g. to compute the running time
290 ///of recursive functions.
295 ///Reset and stop the time counters
297 ///This function resets and stops the time counters
305 ///Start the time counters
307 ///This function starts the time counters.
309 ///If the timer is started more than ones, it will remain running
310 ///until the same amount of \ref stop() is called.
314 if(_running) _running++;
319 start_time=t-start_time;
324 ///Stop the time counters
326 ///This function stops the time counters. If start() was executed more than
327 ///once, then the same number of stop() execution is necessary the really
337 if(_running && !--_running) {
340 start_time=t-start_time;
344 ///Halt (i.e stop immediately) the time counters
346 ///This function stops immediately the time counters, i.e. <tt>t.halt()</tt>
348 ///equivalent of the following.
350 /// while(t.running()) t.stop()
364 start_time=t-start_time;
368 ///Returns the running state of the timer
370 ///This function returns the number of stop() exections that is
371 ///necessary to really stop the timer.
372 ///For example the timer
373 ///is running if and only if the return value is \c true
374 ///(i.e. greater than
376 int running() { return _running; }
379 ///Restart the time counters
381 ///This function is a shorthand for
382 ///a reset() and a start() calls.
392 ///\name Query Functions for the ellapsed time
396 ///Gives back the ellapsed user time of the process
397 double userTime() const
399 return operator TimeStamp().userTime();
401 ///Gives back the ellapsed system time of the process
402 double systemTime() const
404 return operator TimeStamp().systemTime();
406 ///Gives back the ellapsed user time of the process' children
407 double cUserTime() const
409 return operator TimeStamp().cUserTime();
411 ///Gives back the ellapsed user time of the process' children
412 double cSystemTime() const
414 return operator TimeStamp().cSystemTime();
416 ///Gives back the ellapsed real time
417 double realTime() const
419 return operator TimeStamp().realTime();
421 ///Computes the ellapsed time
423 ///This conversion computes the ellapsed time, therefore you can print
424 ///the ellapsed time like this.
428 /// std::cout << t << '\n';
430 operator TimeStamp () const
434 return _running?t-start_time:start_time;
441 ///Same as \ref Timer but prints a report on destruction.
443 ///Same as \ref Timer but prints a report on destruction.
444 ///This example shows its usage.
446 /// void myAlg(ListGraph &g,int n)
448 /// TimeReport tr("Running time of myAlg: ");
449 /// ... //Here comes the algorithm
455 ///\todo There is no test case for this
456 class TimeReport : public Timer
463 ///\param title This text will be printed before the ellapsed time.
464 ///\param os The stream to print the report to.
465 ///\param run Sets whether the timer should start immediately.
467 TimeReport(std::string title,std::ostream &os=std::cerr,bool run=true)
468 : Timer(run), _title(title), _os(os){}
469 ///\e Prints the ellapsed time on destruction.
472 _os << _title << *this << std::endl;
476 ///'Do nothing' version of \ref TimeReport
484 NoTimeReport(std::string,std::ostream &,bool) {}
486 NoTimeReport(std::string,std::ostream &) {}
488 NoTimeReport(std::string) {}
492 operator TimeStamp () const { return TimeStamp(); }
497 int running() { return 0; }
499 double userTime() const { return 0; }
500 double systemTime() const { return 0; }
501 double cUserTime() const { return 0; }
502 double cSystemTime() const { return 0; }
503 double realTime() const { return 0; }
506 ///Tool to measure the running time more exactly.
508 ///This function calls \c f several times and returns the average
509 ///running time. The number of the executions will be choosen in such a way
510 ///that the full real running time will be roughly between \c min_time
511 ///and <tt>2*min_time</tt>.
512 ///\param f the function object to be measured.
513 ///\param min_time the minimum total running time.
514 ///\retval num if it is not \c NULL, then the actual
515 /// number of execution of \c f will be written into <tt>*num</tt>.
516 ///\retval full_time if it is not \c NULL, then the actual
517 /// total running time will be written into <tt>*full_time</tt>.
518 ///\return The average running time of \c f.
521 TimeStamp runningTimeTest(F f,double min_time=10,unsigned int *num = NULL,
522 TimeStamp *full_time=NULL)
525 unsigned int total=0;
527 for(unsigned int tn=1;tn <= 1U<<31 && full.realTime()<=min_time; tn*=2) {
528 for(;total<tn;total++) f();
532 if(full_time) *full_time=full;
541 #endif //LEMON_TIME_MEASURE_H