slope
0.29.0
Loading...
Searching...
No Matches
timer.cpp
1
#include "
timer.h
"
2
3
namespace
slope
{
4
5
void
6
Timer::start
()
7
{
8
start_time = std::chrono::high_resolution_clock::now();
9
is_running =
true
;
10
accumulated_time = std::chrono::microseconds(0);
11
}
12
13
void
14
Timer::pause
()
15
{
16
if
(is_running) {
17
auto
current_time = std::chrono::high_resolution_clock::now();
18
accumulated_time += std::chrono::duration_cast<std::chrono::microseconds>(
19
current_time - start_time);
20
is_running =
false
;
21
}
22
}
23
24
void
25
Timer::resume
()
26
{
27
if
(!is_running) {
28
start_time = std::chrono::high_resolution_clock::now();
29
is_running =
true
;
30
}
31
}
32
33
double
34
Timer::elapsed
()
const
35
{
36
auto
total_time = accumulated_time;
37
if
(is_running) {
38
auto
current_time = std::chrono::high_resolution_clock::now();
39
total_time += std::chrono::duration_cast<std::chrono::microseconds>(
40
current_time - start_time);
41
}
42
return
total_time.count() * 1e-6;
// Convert microseconds to seconds
43
}
44
45
}
// namespace slope
slope::Timer::start
void start()
Starts the timer by recording the current time point.
Definition
timer.cpp:6
slope::Timer::resume
void resume()
Resumes the timer after a pause.
Definition
timer.cpp:25
slope::Timer::elapsed
double elapsed() const
Returns the elapsed time in seconds since start() was called.
Definition
timer.cpp:34
slope::Timer::pause
void pause()
Pauses the timer.
Definition
timer.cpp:14
slope
Namespace containing SLOPE regression implementation.
Definition
clusters.cpp:5
timer.h
Simple high-resolution timer class for performance measurements.
src
slope
timer.cpp
Generated by
1.9.8