code_profiler
loop_timer.h
Go to the documentation of this file.
1 #ifndef TUE_PROFILING_LOOP_TIMER_H_
2 #define TUE_PROFILING_LOOP_TIMER_H_
3 
4 
5 #include <iostream>
6 #include <tue/profiling/timer.h>
7 
8 namespace tue
9 {
10 
11 class LoopTimer
12 {
13 private:
16 
20  long unsigned int counts_;
21 
25  long double sum_;
26 
30  long double c_;
31 
32 public:
33  LoopTimer();
34  ~LoopTimer() = default;
35 
36  void start();
37  void stop();
38 
42  void reset();
43 
48  inline long unsigned int getIterationCount() const { return counts_; }
49 
54  long double getTotalLoopTime();
57  long double getTotalLoopTime() const;
59 
60 
65  long double getAverageLoopTime();
68  long double getAverageLoopTime() const;
70 
75  long double getTotalTime() const;
76 
81  double getLoopUsagePercentage();
84  double getLoopUsagePercentage() const;
86 };
87 
88 }
89 
90 #endif // TUE_PROFILING_LOOP_TIMER_H_
tue::LoopTimer::getTotalTime
long double getTotalTime() const
Get the total elapsed time since the first start.Stops the current iteration when running.
Definition: loop_timer.cpp:73
tue::LoopTimer::getAverageLoopTime
long double getAverageLoopTime()
Get average time per loop iteration. Stops the current iteration when running.
Definition: loop_timer.cpp:56
tue::LoopTimer::reset
void reset()
Stop the timer and reset all counters to zero.
Definition: loop_timer.cpp:31
tue::LoopTimer::counts_
long unsigned int counts_
loop counter
Definition: loop_timer.h:20
iostream
tue::LoopTimer::getTotalLoopTime
long double getTotalLoopTime()
Get total elapsed time during the loops. Stops the current iteration when running.
Definition: loop_timer.cpp:40
tue::LoopTimer::getIterationCount
long unsigned int getIterationCount() const
Get total number of loop iterations. When running, the current iteration is included.
Definition: loop_timer.h:48
tue::LoopTimer::getLoopUsagePercentage
double getLoopUsagePercentage()
Get average percentage of total time used by the loop.
Definition: loop_timer.cpp:78
timer.h
tue::LoopTimer::~LoopTimer
~LoopTimer()=default
tue::Timer
Definition: timer.h:30
tue::LoopTimer::total_timer_
tue::Timer total_timer_
Definition: loop_timer.h:15
tue::LoopTimer::stop
void stop()
Definition: loop_timer.cpp:21
tue::LoopTimer::sum_
long double sum_
Sum so far.
Definition: loop_timer.h:25
tue::LoopTimer::c_
long double c_
Compensation for lost low-order bits.
Definition: loop_timer.h:30
tue::LoopTimer::LoopTimer
LoopTimer()
Definition: loop_timer.cpp:9
tue::LoopTimer::timer_
tue::Timer timer_
Definition: loop_timer.h:14
tue::LoopTimer
Definition: loop_timer.h:11
tue
Definition: loop_timer.h:8
tue::LoopTimer::start
void start()
Definition: loop_timer.cpp:13