Home
last modified time | relevance | path

Searched refs:ProfilerSession (Results 1 – 4 of 4) sorted by relevance

/external/tensorflow/tensorflow/core/profiler/lib/
Dprofiler_session.h36 class ProfilerSession {
39 static std::unique_ptr<ProfilerSession> Create(
43 ~ProfilerSession();
51 explicit ProfilerSession(ProfilerContext* const context);
54 ProfilerSession(const ProfilerSession&) = delete;
55 ProfilerSession& operator=(const ProfilerSession&) = delete;
Dprofiler_session.cc120 /*static*/ std::unique_ptr<ProfilerSession> ProfilerSession::Create( in Create()
122 return absl::WrapUnique(new ProfilerSession(context)); in Create()
125 Status ProfilerSession::Status() { in Status()
130 Status ProfilerSession::SerializeToString(string* content) { in SerializeToString()
155 ProfilerSession::ProfilerSession(ProfilerContext* const context) in ProfilerSession() function in tensorflow::ProfilerSession
179 ProfilerSession::~ProfilerSession() { in ~ProfilerSession()
/external/tensorflow/tensorflow/core/profiler/rpc/
Dprofiler_service_impl.cc40 std::unique_ptr<ProfilerSession> profiler = in Profile()
41 ProfilerSession::Create(&profiler_context_); in Profile()
/external/tensorflow/tensorflow/c/eager/
Dc_api_internal.h128 profiler = tensorflow::ProfilerSession::Create(&ctx->profiler_context); in TFE_Profiler()
131 std::unique_ptr<tensorflow::ProfilerSession> profiler;