tvm
Public Member Functions | Static Public Attributes | List of all members
tvm::runtime::TimerNode Class Referenceabstract

Base class for all implementations. More...

#include <profiling.h>

Inheritance diagram for tvm::runtime::TimerNode:
Collaboration diagram for tvm::runtime::TimerNode:

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
 

Detailed Description

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.

Constructor & Destructor Documentation

◆ ~TimerNode()

virtual tvm::runtime::TimerNode::~TimerNode ( )
inlinevirtual

Member Function Documentation

◆ Start()

virtual void tvm::runtime::TimerNode::Start ( )
pure virtual

Start the timer.

Note: this function should only be called once per object.

◆ Stop()

virtual void tvm::runtime::TimerNode::Stop ( )
pure virtual

Stop the timer.

Note: this function should only be called once per object.

◆ SyncAndGetElapsedNanos()

virtual int64_t tvm::runtime::TimerNode::SyncAndGetElapsedNanos ( )
pure virtual

Synchronize timer state and return elapsed time between Start and Stop.

Returns
The time in nanoseconds between 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_FFI_DECLARE_OBJECT_INFO()

tvm::runtime::TimerNode::TVM_FFI_DECLARE_OBJECT_INFO ( "runtime.TimerNode"  ,
TimerNode  ,
Object   
)

Member Data Documentation

◆ _type_mutable

constexpr const bool tvm::runtime::TimerNode::_type_mutable = true
staticconstexpr

The documentation for this class was generated from the following file: