Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/profiler/lib/
Dprofiler_session.cc45 ProfileOptions options = ProfilerSession::DefaultOptions(); in GetOptions()
52 /*static*/ std::unique_ptr<ProfilerSession> ProfilerSession::Create( in Create()
54 return absl::WrapUnique(new ProfilerSession(GetOptions(options))); in Create()
57 tensorflow::Status ProfilerSession::Status() { in Status()
62 Status ProfilerSession::CollectData(profiler::XSpace* space) { in CollectData()
87 Status ProfilerSession::CollectData(RunMetadata* run_metadata) { in CollectData()
109 ProfilerSession::ProfilerSession(ProfileOptions options) in ProfilerSession() function in tensorflow::ProfilerSession
156 ProfilerSession::~ProfilerSession() { in ~ProfilerSession()
Dprofiler_session.h39 class ProfilerSession {
42 static std::unique_ptr<ProfilerSession> Create(const ProfileOptions& options);
57 ~ProfilerSession();
69 explicit ProfilerSession(ProfileOptions options);
72 ProfilerSession(const ProfilerSession&) = delete;
73 ProfilerSession& operator=(const ProfilerSession&) = delete;
/external/tensorflow/tensorflow/core/profiler/rpc/
Dprofiler_service_impl.cc47 ProfilerSession* profiler, in CollectDataToRepository()
82 std::unique_ptr<ProfilerSession> profiler = in Profile()
83 ProfilerSession::Create(req->opts()); in Profile()
/external/tensorflow/tensorflow/core/profiler/rpc/client/
Dremote_profiler_session_manager_test.cc66 tensorflow::ProfilerSession::DefaultOptions(); in TEST()
98 tensorflow::ProfilerSession::DefaultOptions(); in TEST()
131 tensorflow::ProfilerSession::DefaultOptions(); in TEST()
Dprofiler_client_test_util.h52 *request->mutable_opts() = ProfilerSession::DefaultOptions();
/external/tensorflow/tensorflow/tools/def_file_filter/
Dsymbols_pybind.txt324 tensorflow::ProfilerSession::Create
325 tensorflow::ProfilerSession::CollectData
326 tensorflow::ProfilerSession::Status
327 tensorflow::ProfilerSession::~ProfilerSession
/external/tensorflow/tensorflow/python/profiler/internal/
Dprofiler_pywrap_impl.h47 std::unique_ptr<tensorflow::ProfilerSession> session_;
Dprofiler_pywrap_impl.cc130 tensorflow::ProfilerSession::DefaultOptions(); in GetOptionsLocked()
248 session_ = tensorflow::ProfilerSession::Create(opts.profiler_options()); in Start()
/external/tensorflow/tensorflow/core/profiler/internal/cpu/
Dhost_tracer_test.cc86 auto tracer = CreateHostTracer(ProfilerSession::DefaultOptions()); in TEST()
131 auto tracer = CreateHostTracer(ProfilerSession::DefaultOptions()); in TEST()
/external/tensorflow/tensorflow/python/profiler/
Dprofiler_v2.py117 _profiler = _pywrap_profiler.ProfilerSession()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dworker.cc198 ProfilerSession* profiler_session = nullptr; in DoRunGraph()
201 ProfileOptions options = ProfilerSession::DefaultOptions(); in DoRunGraph()
203 profiler_session = ProfilerSession::Create(options).release(); in DoRunGraph()
/external/tensorflow/tensorflow/python/eager/
Dprofiler.py79 _profiler = _pywrap_profiler.ProfilerSession()
/external/tensorflow/tensorflow/core/profiler/internal/gpu/
Ddevice_tracer_test.cc56 ProfileOptions options = ProfilerSession::DefaultOptions(); in CreateGpuTracer()
/external/tensorflow/tensorflow/core/common_runtime/
Ddirect_session.cc676 std::unique_ptr<ProfilerSession> profiler_session; in RunInternal()
678 ProfileOptions options = ProfilerSession::DefaultOptions(); in RunInternal()
680 profiler_session = ProfilerSession::Create(options); in RunInternal()