-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCTimer.h
More file actions
executable file
·283 lines (231 loc) · 6.32 KB
/
CTimer.h
File metadata and controls
executable file
·283 lines (231 loc) · 6.32 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
/*************************************************************************************
cpl - cross-platform library - v. 0.1.0.
Copyright (C) 2016 Janus Lynggaard Thorborg (www.jthorborg.com)
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.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
See \licenses\ for additional details on licenses associated with this program.
**************************************************************************************
file:CTimer.h
Class that measures time spend between events in clocks and walltime.
*************************************************************************************/
#ifndef _CTIMER_H
#define _CTIMER_H
#include "Utility.h"
#include "Misc.h"
#include "Mathext.h"
#include <cstdint>
#include <vector>
#include <ostream>
#include <cstdlib>
#include <atomic>
#include "system/SysStats.h"
namespace cpl
{
namespace
{
typedef std::int64_t time_object;
auto static getClocks = []() { return cpl::Misc::ClockCounter(); };
auto static timeToMs = [](time_object time) { return cpl::Misc::TimeToMilisecs(time); };
auto static getTime = []() { return cpl::Misc::TimeCounter(); };
};
class CTimer
{
private:
public:
template<class ClockObj, class TimeObj>
class basic_time_event;
typedef basic_time_event<time_object, time_object> time_event;
typedef time_event TimeProxy;
CTimer()
: size(0)
{
if (!hasBeenTuned)
{
tune();
hasBeenTuned = true;
}
}
void start()
{
events.clear();
events.reserve(size);
startEvent = measure();
}
void setSize(std::size_t size)
{
this->size = size;
events.reserve(size);
}
void postEvent()
{
events.push_back(measure());
}
template<typename T = double>
T getTotalElapsedTime()
{
if (events.size())
return timeToMs(static_cast<time_object>(((events[events.size() - 1] - startEvent) - delta).getTime()));
else
return 0;
}
template<typename T = double>
T getTotalElapsedClocks()
{
if (events.size())
return static_cast<time_object>(((events[events.size() - 1] - startEvent) - delta).getClocks());
else
return 0;
}
template<typename T = double>
T getAverageElapsedTime()
{
T sum(0);
if (events.size())
{
for (auto i = events.size() - 1; i; --i)
{
sum += (events[i] - events[i - 1] - delta).getTime();
}
sum += (startEvent - events[0] - delta).getTime();
sum /= events.size();
}
return timeToMs(static_cast<time_object>(sum));
}
template<typename T = double>
T getAverageElapsedClocks()
{
T sum(0);
if (events.size())
{
for (auto i = events.size() - 1; i; --i)
{
sum += (events[i] - events[i - 1] - delta).getClocks();
}
sum += (startEvent - events[0] - delta).getClocks();
sum /= events.size();
}
return (sum);
}
void postEvent(TimeProxy t)
{
events.push_back(t);
}
static TimeProxy measure()
{
return time_event(getClocks(), getTime());
}
template<typename T>
static double clocksToMSec()
{
return 0;
}
static void tune()
{
// might also want to include postEvent() cycle time
const unsigned measurements = 60;
auto clockCold = getClocks();
auto timeCold = getTime();
cpl::CBoxFilter<double, measurements> clockFilter;
{
auto t1 = getClocks();
clockCold = t1 - clockCold;
for (unsigned i = 0; i < measurements; ++i)
{
auto const t2 = getClocks();
auto const t3 = t2 - t1;
clockFilter.setNext(static_cast<double>(t3));
t1 = t2;
}
}
cpl::CBoxFilter<double, measurements> timeFilter;
{
auto t1 = getTime();
timeCold = t1 - timeCold;
for (unsigned i = 0; i < measurements; ++i)
{
auto const t2 = getTime();
auto const t3 = t2 - t1;
timeFilter.setNext(static_cast<double>(t3));
t1 = t2;
}
}
delta = time_event
(
cpl::Math::round<time_object>((clockFilter.getAverage() + clockCold) / 2),
cpl::Math::round<time_object>((timeFilter.getAverage() + timeCold) / 2)
);
}
template<class ClockObj, class TimeObj>
class basic_time_event
{
public:
typedef ClockObj ClockTy;
typedef TimeObj TimeTy;
basic_time_event(ClockTy clocks, TimeObj time, const basic_time_event & r)
: clocks(clocks), time(time), ref(&r)
{
}
basic_time_event(ClockTy clocks, TimeObj time, const basic_time_event * r = nullptr)
: clocks(clocks), time(time), ref(r)
{
}
basic_time_event()
: clocks(0), time(0), ref(nullptr)
{
}
basic_time_event & set(ClockTy clocks, TimeObj time)
{
this->time = time;
this->clocks = clocks;
return *this;
}
basic_time_event & setRef(const basic_time_event & r)
{
ref = &r;
return *this;
}
basic_time_event & setRef(const basic_time_event * r)
{
ref = r;
return *this;
}
basic_time_event reference() const
{
if (ref)
{
return basic_time_event(clocks - ref->clocks, time - ref->time);
}
else
return *this;
}
basic_time_event reference(const basic_time_event & other) const
{
return basic_time_event(clocks - other.clocks, time - other.time);
}
basic_time_event operator - (const basic_time_event & other) const
{
return reference(other);
}
ClockTy getClocks() const { return clocks; }
TimeObj getTime() const { return time; }
private:
ClockTy clocks;
TimeObj time;
const basic_time_event * ref;
};
static time_event delta;
static std::atomic<bool> hasBeenTuned;
std::vector<time_event> events;
time_event startEvent;
std::size_t size;
};
}; // cpl
#endif