Home
last modified time | relevance | path

Searched refs:tensors_to_send (Results 1 – 5 of 5) sorted by relevance

/external/tensorflow/tensorflow/core/common_runtime/
Drendezvous_util.cc25 const std::vector<string>& keys, gtl::ArraySlice<Tensor> tensors_to_send) { in SendTensorsToRendezvous() argument
26 if (keys.size() != tensors_to_send.size()) { in SendTensorsToRendezvous()
29 keys.size(), "; tensors_to_send.size() = ", tensors_to_send.size()); in SendTensorsToRendezvous()
51 rendezvous->Send(parsed, rendez_args, tensors_to_send[i], false)); in SendTensorsToRendezvous()
Drendezvous_util.h36 const std::vector<string>& keys, gtl::ArraySlice<Tensor> tensors_to_send);
Dprocess_function_library_runtime.h94 gtl::ArraySlice<Tensor> tensors_to_send,
Dprocess_function_library_runtime.cc123 gtl::ArraySlice<Tensor> tensors_to_send, DeviceContext* device_context, in SendTensors() argument
127 for (int i = 0; i < tensors_to_send.size(); ++i) { in SendTensors()
134 rendezvous, device_context, alloc_attrs, keys, tensors_to_send)); in SendTensors()
/external/tensorflow/tensorflow/core/distributed_runtime/
Dgraph_mgr.cc359 std::vector<Tensor> tensors_to_send; in SendInputs() local
361 tensors_to_send.reserve(in.size()); in SendInputs()
365 tensors_to_send.push_back(p.second); in SendInputs()
370 SendTensorsToRendezvous(rendezvous, nullptr, {}, keys, tensors_to_send); in SendInputs()
474 std::vector<Tensor> tensors_to_send; in ExecuteAsync() local
476 tensors_to_send.reserve(in.size()); in ExecuteAsync()
479 tensors_to_send.push_back(p.second); in ExecuteAsync()
482 s = SendTensorsToRendezvous(rendezvous, nullptr, {}, keys, tensors_to_send); in ExecuteAsync()