-
Notifications
You must be signed in to change notification settings - Fork 13
/
timer.h
51 lines (42 loc) · 1.26 KB
/
timer.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
/*
* Copyright (C) 2005-2016 Christoph Rupp ([email protected]).
* All Rights Reserved.
*
* 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 3 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.
*
* See the file COPYING for License information.
*/
#ifndef UPS_BENCH_TIMER_H
#define UPS_BENCH_TIMER_H
#include <boost/chrono.hpp>
#include <iostream>
#include <iomanip>
using namespace boost::chrono;
// based on
// http://www.boost.org/doc/libs/1_54_0/libs/chrono/example/await_keystroke.cpp
template<class Clock>
struct Timer {
typename Clock::time_point _start;
Timer() {
start();
}
void start() {
_start = Clock::now();
}
typename Clock::duration elapsed() const {
return Clock::now() - _start;
}
double seconds() const {
return elapsed().count() *
((double)Clock::period::num / Clock::period::den);
}
};
#endif // UPS_BENCH_TIMER_H