Home
last modified time | relevance | path

Searched refs:CloseSession (Results 1 – 15 of 15) sorted by relevance

/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_test.cc123 Status CloseSession(const string& handle) { in CloseSession() function in tensorflow::MasterTest
128 return FromGrpcStatus(master_->CloseSession(&ctx, req, &resp)); in CloseSession()
144 EXPECT_TRUE(errors::IsAborted(CloseSession("randombits"))); in TEST_F()
145 EXPECT_TRUE(CloseSession(handle).ok()); in TEST_F()
165 EXPECT_TRUE(errors::IsAborted(CloseSession(s1))); in TEST_F()
166 EXPECT_TRUE(errors::IsAborted(CloseSession(s2))); in TEST_F()
207 TF_ASSERT_OK(CloseSession(handle)); in TEST_F()
226 TF_ASSERT_OK(CloseSession(handle)); in TEST_F()
245 TF_ASSERT_OK(CloseSession(handle)); in TEST_F()
290 TF_ASSERT_OK(CloseSession(handle)); in TEST_F()
[all …]
Dlocal_master.cc118 Status LocalMaster::CloseSession(CallOptions* call_options, in CloseSession() function in tensorflow::LocalMaster
123 master_impl_->CloseSession(request, response, [&n, &ret](const Status& s) { in CloseSession()
Dmaster.h56 void CloseSession(const CloseSessionRequest* req, CloseSessionResponse* resp,
Dlocal_master.h62 Status CloseSession(CallOptions* call_options,
Dmaster_interface.h84 virtual Status CloseSession(CallOptions* call_options,
Dmaster.cc559 void Master::CloseSession(const CloseSessionRequest* req, in CloseSession() function in tensorflow::Master
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_master_service.cc111 ENQUEUE_REQUEST(CloseSession, false); in HandleRPCsLoop()
219 master_impl_->CloseSession(&call->request, &call->response, in CloseSessionHandler()
223 ENQUEUE_REQUEST(CloseSession, false); in CloseSessionHandler()
Dgrpc_remote_master.cc72 Status CloseSession(CallOptions* call_options, in CloseSession() function in tensorflow::GrpcRemoteMaster
76 &MasterServiceStub::CloseSession); in CloseSession()
Dgrpc_master_service_impl.h55 virtual ::grpc::Status CloseSession(::grpc::ClientContext* context,
89 ::grpc::Status CloseSession(::grpc::ClientContext* context,
Dgrpc_master_service_impl.cc107 ::grpc::Status MasterService::Stub::CloseSession( in CloseSession() function in tensorflow::grpc::MasterService::Stub
Dgrpc_session.cc346 return master_->CloseSession(&call_options, &req, &resp); in Close()
/external/tensorflow/tensorflow/core/protobuf/
Dmaster_service.proto66 // close the session by invoking CloseSession, which allows the master
83 // stub->CloseSession({handle})
101 rpc CloseSession(CloseSessionRequest) returns (CloseSessionResponse); rpc
Dmaster.proto53 // The client must arrange to call CloseSession with this returned
209 // CloseSession method request/response protos.
/external/tensorflow/tensorflow/core/grappler/clusters/
Dsingle_machine.cc64 CloseSession(false /*use_timeout*/).IgnoreError(); in ~SingleMachine()
276 Status SingleMachine::CloseSession(bool use_timeout) { in CloseSession() function in tensorflow::grappler::SingleMachine
322 TF_RETURN_IF_ERROR(CloseSession(true /*use_timeout*/)); in ShutdownSession()
Dsingle_machine.h62 Status CloseSession(bool use_timeout);