blob: 1f100cd782183d75110ffef04cf0d32fb2a054a7 (
plain)
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
|
//
// Created by Keuin on 2022/4/11.
//
#ifndef RT_TIMER_H
#define RT_TIMER_H
#include <iostream>
#include <chrono>
class timer {
private:
typeof(std::chrono::system_clock::now()) start_time;
public:
void start_measure() {
fprintf(stderr, "Start timing...\n");
start_time = std::chrono::system_clock::now();
}
void stop_measure() {
const auto end = std::chrono::system_clock::now();
const auto duration = std::chrono::duration_cast<std::chrono::nanoseconds>(end - start_time);
const auto secs = 1e-3 * duration.count() * std::chrono::microseconds::period::num / std::chrono::microseconds::period::den;
fprintf(stderr, "Stop timing. Duration: %fs\n", secs);
}
};
#endif //RT_TIMER_H
|