Class for real time, CPU time and CPU cycles measuring.
More...
#include <TNL/Timer.h>
|
| Timer () |
| Basic constructor creating a new timer and resets it.
|
|
double | getCPUTime () const |
| Returns the elapsed CPU time on this timer.
|
|
double | getRealTime () const |
| Returns the elapsed real time on this timer.
|
|
void | reset () |
| Reset the CPU and real-time timers.
|
|
void | start () |
| Starts timer.
|
|
void | stop () |
| Stops (pauses) the CPU and the real-time timers, but does not set them to zero.
|
|
bool | writeLog (Logger &logger, int logLevel=0) const |
| Writes a record into the logger.
|
|
|
using | Duration = typename std::chrono::high_resolution_clock::duration |
|
using | TimePoint = typename std::chrono::high_resolution_clock::time_point |
|
|
static double | durationToDouble (const Duration &duration) |
| Converts the real time into seconds as a floating point number.
|
|
static double | readCPUTime () |
| Function for measuring the CPU time.
|
|
static TimePoint | readRealTime () |
| Function for measuring the real time.
|
|
|
double | initialCPUTime |
|
TimePoint | initialRealTime |
|
bool | stopState |
|
double | totalCPUTime |
|
Duration | totalRealTime |
|
Class for real time, CPU time and CPU cycles measuring.
It measures the elapsed real time and CPU time (in seconds) elapsed on the timer. The timer can be paused by calling stop and start methods and reseted by calling reset.
- Example
#include <iostream>
#include <chrono>
#include <thread>
#include <TNL/Timer.h>
int
main()
{
const int milliseconds = 0.5e3;
time.start();
time.stop();
time.reset();
}
Class for real time, CPU time and CPU cycles measuring.
Definition Timer.h:25
- Output
Elapsed real time: 0.500098
Elapsed CPU time: 1.4e-05
Real time after reset:0
CPU time after reset: 0
◆ getCPUTime()
double TNL::Timer::getCPUTime |
( |
| ) |
const |
|
inlinenodiscard |
Returns the elapsed CPU time on this timer.
This method returns the CPU time (i.e. time the CPU spent by processing this process) elapsed so far (in seconds). This method can be called while the timer is running, there is no need to use stop method first.
◆ getRealTime()
double TNL::Timer::getRealTime |
( |
| ) |
const |
|
inlinenodiscard |
Returns the elapsed real time on this timer.
This method returns the real time elapsed so far (in seconds). This method can be called while the timer is running, there is no need to use stop method first.
◆ start()
void TNL::Timer::start |
( |
| ) |
|
|
inline |
Starts timer.
Starts the CPU and real-time timers. This method can be used also after using the stop method. The timer then continues measuring the time without reseting.
◆ writeLog()
bool TNL::Timer::writeLog |
( |
Logger & | logger, |
|
|
int | logLevel = 0 ) const |
|
inline |
Writes a record into the logger.
- Parameters
-
logger | Name of Logger object. |
logLevel | A non-negative integer recording the log record indent. |
- Example
#include <iostream>
#include <chrono>
#include <thread>
#include <TNL/Timer.h>
#include <TNL/Logger.h>
int
main()
{
const int milliseconds = 0.5e3;
time.start();
time.stop();
time.writeLog( logger, 0 );
}
Creates calculations log in the form of a table.
Definition Logger.h:15
- Output
| Real time: 0.500066 |
| CPU time: 9e-06 |
The documentation for this class was generated from the following files:
- src/TNL/Timer.h
- src/TNL/Timer.hpp