Home
last modified time | relevance | path

Searched refs:keep_alive_secs (Results 1 – 9 of 9) sorted by relevance

/external/tensorflow/tensorflow/c/eager/
Dc_api.cc271 int keep_alive_secs, const tensorflow::ServerDef& server_def, in CreateRemoteContexts() argument
324 request.set_keep_alive_secs(keep_alive_secs); in CreateRemoteContexts()
447 int keep_alive_secs, const tensorflow::ServerDef& server_def, in UpdateTFE_ContextWithServerDef() argument
595 ctx, remote_workers, context_id, context_view_id, keep_alive_secs, in UpdateTFE_ContextWithServerDef()
605 ctx, added_workers, context_id, context_view_id + 1, keep_alive_secs, in UpdateTFE_ContextWithServerDef()
647 remote_workers, context_id, r, device_mgr, keep_alive_secs, cluster_flr, in UpdateTFE_ContextWithServerDef()
667 keep_alive_secs, cluster_flr)); in UpdateTFE_ContextWithServerDef()
758 int keep_alive_secs, in TFE_ContextSetServerDef() argument
788 status->status = UpdateTFE_ContextWithServerDef(keep_alive_secs, server_def, in TFE_ContextSetServerDef()
794 int keep_alive_secs, in TFE_ContextUpdateServerDef() argument
[all …]
Dc_api.h128 int keep_alive_secs,
Dc_api_experimental.h426 int keep_alive_secs,
/external/tensorflow/tensorflow/core/common_runtime/eager/
Dcontext.h321 Rendezvous* r, DeviceMgr* local_device_mgr, int keep_alive_secs,
337 Rendezvous* r, DeviceMgr* local_device_mgr, int keep_alive_secs,
561 DeviceMgr* local_device_mgr, int keep_alive_secs,
Dcontext.cc919 Rendezvous* r, DeviceMgr* local_device_mgr, int keep_alive_secs, in InitializeRemoteMaster() argument
937 context_id, 0, r, local_device_mgr, keep_alive_secs, cluster_flr, in InitializeRemoteMaster()
946 Rendezvous* r, DeviceMgr* local_device_mgr, int keep_alive_secs, in UpdateRemoteMaster() argument
1023 int keep_alive_secs, DistributedFunctionLibraryRuntime* cluster_flr, in SetMasterContextState() argument
1071 keep_alive_secs_ = keep_alive_secs; in SetMasterContextState()
/external/tensorflow/tensorflow/python/
Dtfe_wrapper.cc441 m.def("TFE_ContextSetServerDef", [](py::handle& ctx, int keep_alive_secs, in PYBIND11_MODULE()
447 TFE_ContextSetServerDef(tensorflow::InputTFE_Context(ctx), keep_alive_secs, in PYBIND11_MODULE()
451 m.def("TFE_ContextUpdateServerDef", [](py::handle& ctx, int keep_alive_secs, in PYBIND11_MODULE() argument
458 keep_alive_secs, buf.get()->data, in PYBIND11_MODULE()
/external/tensorflow/tensorflow/python/eager/
Dcontext.py539 def set_server_def(self, server_def, keep_alive_secs=_KEEP_ALIVE_SECS): argument
565 pywrap_tfe.TFE_ContextSetServerDef(self._context_handle, keep_alive_secs,
572 def update_server_def(self, server_def, keep_alive_secs=_KEEP_ALIVE_SECS): argument
599 keep_alive_secs, server_def_str)
/external/tensorflow/tensorflow/core/protobuf/
Deager_service.proto73 // Number of seconds to keep the context alive. If more than keep_alive_secs
76 int64 keep_alive_secs = 3; field
/external/tensorflow/tensorflow/core/distributed_runtime/eager/
Deager_service_impl.cc212 new ServerContext(ctx, request->keep_alive_secs(), env_)); in CreateContext()