tvm
|
Base class for all implementations. More...
#include <profiling.h>
Public Member Functions | |
virtual void | Start ()=0 |
Start the timer. More... | |
virtual void | Stop ()=0 |
Stop the timer. More... | |
virtual int64_t | SyncAndGetElapsedNanos ()=0 |
Synchronize timer state and return elapsed time between Start and Stop . More... | |
virtual | ~TimerNode () |
TVM_FFI_DECLARE_OBJECT_INFO ("runtime.TimerNode", TimerNode, Object) | |
Static Public Attributes | |
static constexpr const bool | _type_mutable = true |
Base class for all implementations.
New implementations of this interface should make sure that Start
and Stop
are as lightweight as possible. Expensive state synchronization should be done in SyncAndGetElapsedNanos
.
|
inlinevirtual |
|
pure virtual |
Start the timer.
Note: this function should only be called once per object.
|
pure virtual |
Stop the timer.
Note: this function should only be called once per object.
|
pure virtual |
Synchronize timer state and return elapsed time between Start
and Stop
.
Start
and Stop
.This function is necessary because we want to avoid timing the overhead of doing timing. When using multiple timers, it is recommended to stop all of them before calling SyncAndGetElapsedNanos
on any of them.
Note: this function should be only called once per object. It may incur a large synchronization overhead (for example, with GPUs).
tvm::runtime::TimerNode::TVM_FFI_DECLARE_OBJECT_INFO | ( | "runtime.TimerNode" | , |
TimerNode | , | ||
Object | |||
) |
|
staticconstexpr |