slope 0.29.0
Loading...
Searching...
No Matches
timer.cpp
1#include "timer.h"
2
3namespace slope {
4
5void
7{
8 start_time = std::chrono::high_resolution_clock::now();
9 is_running = true;
10 accumulated_time = std::chrono::microseconds(0);
11}
12
13void
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
24void
26{
27 if (!is_running) {
28 start_time = std::chrono::high_resolution_clock::now();
29 is_running = true;
30 }
31}
32
33double
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
void start()
Starts the timer by recording the current time point.
Definition timer.cpp:6
void resume()
Resumes the timer after a pause.
Definition timer.cpp:25
double elapsed() const
Returns the elapsed time in seconds since start() was called.
Definition timer.cpp:34
void pause()
Pauses the timer.
Definition timer.cpp:14
Namespace containing SLOPE regression implementation.
Definition clusters.cpp:5
Simple high-resolution timer class for performance measurements.