Home
last modified time | relevance | path

Searched refs:EagerProfiler (Results 1 – 3 of 3) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/internal/runtime/
Deager_profiler.cc33 /* static */ std::unique_ptr<ProfilerInterface> EagerProfiler::Create( in Create()
35 return absl::WrapUnique(new EagerProfiler(eager_context)); in Create()
38 Status EagerProfiler::Start() { in Start()
46 Status EagerProfiler::Stop() { in Stop()
52 Status EagerProfiler::CollectData(RunMetadata* run_metadata) { in CollectData()
56 EagerProfiler::EagerProfiler(EagerContext* const eager_context) in EagerProfiler() function in tensorflow::profiler::runtime::EagerProfiler
Deager_profiler.h38 class EagerProfiler : public ProfilerInterface {
50 EagerProfiler(EagerContext* const eager_context);
53 EagerProfiler(const EagerProfiler&) = delete;
54 EagerProfiler& operator=(const EagerProfiler&) = delete;
/external/tensorflow/tensorflow/core/profiler/lib/
Dprofiler_session.cc167 profilers_.push_back(tensorflow::profiler::runtime::EagerProfiler::Create( in ProfilerSession()