Home
last modified time | relevance | path

Searched refs:SE_Timer (Results 1 – 6 of 6) sorted by relevance

/external/tensorflow/tensorflow/stream_executor/tpu/
Dtpu_timer.h28 explicit TpuTimer(SE_Timer* timer) : timer_(timer) {} in TpuTimer()
40 SE_Timer* timer_;
Dc_api_defn.h53 struct SE_Timer { struct
54 explicit SE_Timer(stream_executor::StreamExecutor* parent) : timer(parent) {} in SE_Timer() argument
Dtpu_executor_c_api.h81 bool TpuExecutor_AllocateTimer(SE_StreamExecutor* executor, SE_Timer* timer);
82 void TpuExecutor_DeallocateTimer(SE_StreamExecutor* executor, SE_Timer* timer);
84 SE_Timer* timer);
86 SE_Timer* timer);
146 SE_Timer* TpuTimer_New(SE_StreamExecutor* parent);
147 void TpuTimer_Free(SE_Timer*);
148 int64_t TpuTimer_Nanoseconds(SE_Timer*);
149 int64_t TpuTimer_Microseconds(SE_Timer*);
Dc_api_decl.h57 typedef struct SE_Timer SE_Timer; typedef
Dtpu_executor.h58 SE_Timer*>;
Dtpu_executor.cc169 SE_Timer* tpu_timer = tpu::ExecutorApiFn()->TpuTimer_NewFn(executor_); in GetTimerImplementation()