OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TimerInterface
(Results
1 - 8
of
8
) sorted by null
/external/tensorflow/tensorflow/stream_executor/
timer.h
27
class
TimerInterface
;
58
internal::
TimerInterface
*implementation() { return implementation_.get(); }
67
std::unique_ptr<internal::
TimerInterface
> implementation_;
stream_executor_internal.h
126
class
TimerInterface
{
129
TimerInterface
() {}
132
virtual ~
TimerInterface
() {}
141
SE_DISALLOW_COPY_AND_ASSIGN(
TimerInterface
);
317
virtual std::unique_ptr<
TimerInterface
> GetTimerImplementation() = 0;
335
using TimerFactory = std::function<
TimerInterface
*(StreamExecutor *)>;
/external/tensorflow/tensorflow/stream_executor/host/
host_timer.h
27
class HostTimer : public internal::
TimerInterface
{
host_gpu_executor.h
202
std::unique_ptr<internal::
TimerInterface
> GetTimerImplementation() override {
203
return std::unique_ptr<internal::
TimerInterface
>(new HostTimer());
/external/tensorflow/tensorflow/stream_executor/cuda/
cuda_timer.h
36
class CUDATimer : public internal::
TimerInterface
{
cuda_gpu_executor.h
204
std::unique_ptr<internal::
TimerInterface
> GetTimerImplementation() override;
cuda_gpu_executor.cc
843
std::unique_ptr<internal::
TimerInterface
>
845
return std::unique_ptr<internal::
TimerInterface
>(new CUDATimer(this));
[
all
...]
/external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executor.h
202
std::unique_ptr<internal::
TimerInterface
> GetTimerImplementation() override {
203
return std::unique_ptr<internal::
TimerInterface
>(new host::HostTimer());
Completed in 349 milliseconds