Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/profiler/rpc/client/
Dremote_profiler_session_manager.cc35 /*static*/ std::unique_ptr<RemoteProfilerSessionManager>
36 RemoteProfilerSessionManager::Create( in Create()
42 new RemoteProfilerSessionManager(options, request, resolver)); in Create()
50 RemoteProfilerSessionManager::RemoteProfilerSessionManager( in RemoteProfilerSessionManager() function in tensorflow::profiler::RemoteProfilerSessionManager
61 RemoteProfilerSessionManager::~RemoteProfilerSessionManager() { in ~RemoteProfilerSessionManager()
65 Status RemoteProfilerSessionManager::Init() { in Init()
100 std::vector<RemoteProfilerSessionManager::Response>
101 RemoteProfilerSessionManager::WaitForCompletion() { in WaitForCompletion()
103 std::vector<RemoteProfilerSessionManager::Response> remote_responses( in WaitForCompletion()
Dremote_profiler_session_manager.h37 class RemoteProfilerSessionManager {
46 static std::unique_ptr<RemoteProfilerSessionManager> Create(
56 RemoteProfilerSessionManager(const RemoteProfilerSessionManager&) = delete;
57 RemoteProfilerSessionManager operator=(const RemoteProfilerSessionManager&) =
60 ~RemoteProfilerSessionManager();
63 explicit RemoteProfilerSessionManager(
Dremote_profiler_session_manager_test.cc39 using Response = tensorflow::profiler::RemoteProfilerSessionManager::Response;
83 RemoteProfilerSessionManager::Create(options, request, status); in TEST()
116 RemoteProfilerSessionManager::Create(options, request, status); in TEST()
149 RemoteProfilerSessionManager::Create(options, request, status); in TEST()
Dcapture_profile.cc42 using ::tensorflow::profiler::RemoteProfilerSessionManager;
43 using Response = ::tensorflow::profiler::RemoteProfilerSessionManager::Response;
121 auto session = RemoteProfilerSessionManager::Create(opts, request, status); in Profile()