Home
last modified time | relevance | path

Searched refs:ExtendSession (Results 1 – 18 of 18) sorted by relevance

/external/tensorflow/tensorflow/core/distributed_runtime/
Dmaster_test.cc80 Status ExtendSession(const string& handle, const GraphDef& def, in ExtendSession() function in tensorflow::MasterTest
88 const Status s = FromGrpcStatus(master_->ExtendSession(&ctx, req, &resp)); in ExtendSession()
187 TF_ASSERT_OK(ExtendSession(handle, def_1, initial_version, &version_1)); in TEST_F()
199 ExtendSession("randombits", def_2, version_1, &version_2))); in TEST_F()
200 TF_ASSERT_OK(ExtendSession(handle, def_2, version_1, &version_2)); in TEST_F()
223 TF_ASSERT_OK(ExtendSession(handle, def_1, initial_version, &version_1)); in TEST_F()
226 ExtendSession(handle, def_1, version_1, &version_2))); in TEST_F()
242 TF_ASSERT_OK(ExtendSession(handle, def_1, initial_version, &version_1)); in TEST_F()
245 ExtendSession(handle, def_1, initial_version, &version_1))); in TEST_F()
268 Status s = ExtendSession(handle, def_1, initial_version, &new_version); in TEST_F()
[all …]
Dlocal_master.cc67 Status LocalMaster::ExtendSession(CallOptions* call_options, in ExtendSession() function in tensorflow::LocalMaster
72 master_impl_->ExtendSession(request, response, [&n, &ret](const Status& s) { in ExtendSession()
Dlocal_master.h47 Status ExtendSession(CallOptions* call_options,
Dmaster.h47 void ExtendSession(const ExtendSessionRequest* req,
Dmaster_interface.h40 virtual Status ExtendSession(CallOptions* call_options,
Dmaster.cc494 void Master::ExtendSession(const ExtendSessionRequest* req, in ExtendSession() function in tensorflow::Master
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_master_service.cc106 ENQUEUE_REQUEST(ExtendSession, false); in HandleRPCsLoop()
166 master_impl_->ExtendSession(&call->request, &call->response, in ExtendSessionHandler()
170 ENQUEUE_REQUEST(ExtendSession, false); in ExtendSessionHandler()
Dgrpc_remote_master.cc54 Status ExtendSession(CallOptions* call_options, in ExtendSession() function in tensorflow::GrpcRemoteMaster
58 &MasterServiceStub::ExtendSession); in ExtendSession()
Dgrpc_master_service_impl.h48 virtual ::grpc::Status ExtendSession(::grpc::ClientContext* context,
82 ::grpc::Status ExtendSession(::grpc::ClientContext* context,
Dgrpc_master_service_impl.cc86 ::grpc::Status MasterService::Stub::ExtendSession( in ExtendSession() function in tensorflow::grpc::MasterService::Stub
Dgrpc_session.cc171 Status s = master_->ExtendSession(call_options, &req, &resp); in ExtendImpl()
/external/tensorflow/tensorflow/c/
Dpython_api.h60 void ExtendSession(TF_Session* session, TF_Status* status);
Dpython_api.cc80 void ExtendSession(TF_Session* session, TF_Status* status) { in ExtendSession() function
/external/tensorflow/tensorflow/core/protobuf/
Dmaster_service.proto61 // CreateSession call, and add nodes to the graph using ExtendSession.
94 rpc ExtendSession(ExtendSessionRequest) returns (ExtendSessionResponse); rpc
Dmaster.proto58 // to ExtendSession.
64 // ExtendSession method request/response protos.
75 // CreateSession or ExtendSession with the same session_handle.
100 // to ExtendSession.
/external/tensorflow/tensorflow/tools/def_file_filter/
Dsymbols_pybind.txt232 tensorflow::ExtendSession
/external/tensorflow/tensorflow/python/client/
Dsession.py1398 tf_session.ExtendSession(self._session)
Dtf_session_wrapper.cc388 tensorflow::ExtendSession(session, status.get()); in PYBIND11_MODULE()