-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime_tracker.h
67 lines (59 loc) · 1.79 KB
/
time_tracker.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* Copyright (C) 2005 M.J. Zaki <zaki@cs.rpi.edu> Rensselaer Polytechnic Institute
* Written by parimi@cs.rpi.edu
* Updated by chaojv@cs.rpi.edu, alhasan@cs.rpi.edu, salems@cs.rpi.edu
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
*/
#ifndef _TT_H
#define _TT_H
#include <sys/time.h>
#include <unistd.h>
#define microsec 1000000.0
/**
* \brief An auxilary class to keep track of the running time statistics.
*/
class time_tracker {
private:
struct timeval start_time;
struct timeval stop_time;
bool running;
double curr_time;
public:
time_tracker() {
running=false;
curr_time=0;
}
/** Start the timer */
void start() {
gettimeofday(&start_time, (struct timezone *)0);
running=true;
}
/** Stop the timer and return the total time taken */
void stop() {
double st, en;
if (!running) return;
else {
gettimeofday(&stop_time, (struct timezone *)0);
st = start_time.tv_sec + (start_time.tv_usec/microsec);
en = stop_time.tv_sec + (stop_time.tv_usec/microsec);
running=false;
curr_time+=en-st;
}
}
double print() const
{ return curr_time; }
};
#endif