mlpack
master
|
The timer class provides a way for mlpack methods to be timed. More...
Static Public Member Functions | |
static std::chrono::microseconds | Get (const std::string &name) |
Get the value of the given timer. More... | |
static void | Start (const std::string &name) |
Start the given timer. More... | |
static void | Stop (const std::string &name) |
Stop the given timer. More... | |
The timer class provides a way for mlpack methods to be timed.
The three methods contained in this class allow a named timer to be started and stopped, and its value to be obtained.
Definition at line 38 of file timers.hpp.
|
static |
Get the value of the given timer.
name | Name of timer to return value of. |
|
static |
Start the given timer.
If a timer is started, then stopped, then re-started, then re-stopped, the final value of the timer is the length of both runs – that is, mlpack timers are additive for each time they are run, and do not reset.
name | Name of timer to be started. |
|
static |
Stop the given timer.
name | Name of timer to be stopped. |