qxLib
benchmark.h
Go to the documentation of this file.
1 /**
2 
3  @file benchmark.h
4  @author Khrapov
5  @date 2.02.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 #include <chrono>
12 
13 namespace qx
14 {
15 
16 /**
17 
18  @class benchmark
19  @brief Benchmark class
20  @details ~
21  @author Khrapov
22  @date 2.02.2020
23 
24 **/
25 class benchmark
26 {
27 public:
28  using clock = std::chrono::steady_clock;
29  using time_point = clock::time_point;
30  using duration = std::chrono::nanoseconds;
31 
32  /**
33  @brief Start benchmark
34  **/
35  void start();
36 
37  /**
38  @brief End benchmark
39  @retval - number of seconds since start time
40  **/
41  double end();
42 
43  /**
44  @brief Get last benchmark time
45  @retval - last number of seconds since start time
46  **/
47  double last() const;
48 
49 private:
50  time_point m_Start;
51  duration m_LastDuration = duration(0);
52 };
53 
54 } // namespace qx
55 
56 #include <qx/stat/benchmark.inl>
Benchmark class.
Definition: benchmark.h:26
void start()
Start benchmark.
Definition: benchmark.inl:13
double last() const
Get last benchmark time.
Definition: benchmark.inl:24
double end()
End benchmark.
Definition: benchmark.inl:18