Home
last modified time | relevance | path

Searched refs:remote_contexts_ (Results 1 – 2 of 2) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/eager/
Dcontext.cc170 std::vector<eager::CloseContextRequest> requests(remote_contexts_.size()); in CloseRemoteContexts()
171 std::vector<eager::CloseContextResponse> responses(remote_contexts_.size()); in CloseRemoteContexts()
172 BlockingCounter counter(static_cast<int>(remote_contexts_.size())); in CloseRemoteContexts()
175 for (const auto& worker_and_context_id : remote_contexts_) { in CloseRemoteContexts()
310 BlockingCounter blocking_counter(static_cast<int>(remote_contexts_.size())); in MaybeRegisterFunctionRemotely()
312 std::vector<eager::RegisterFunctionRequest> requests(remote_contexts_.size()); in MaybeRegisterFunctionRemotely()
314 remote_contexts_.size()); in MaybeRegisterFunctionRemotely()
315 std::vector<Status> statuses(remote_contexts_.size()); in MaybeRegisterFunctionRemotely()
318 for (const auto& target_and_context_id : remote_contexts_) { in MaybeRegisterFunctionRemotely()
336 for (int i = 0; i < remote_contexts_.size(); i++) { in MaybeRegisterFunctionRemotely()
[all …]
Dcontext.h327 gtl::FlatMap<string, uint64> remote_contexts_; variable