Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/core/distributed_runtime/eager/
Deager_service_impl_test.cc1061 auto* send_tensor = remote_enqueue_request.add_queue()->mutable_send_tensor(); in TEST_F() local
1062 send_tensor->set_op_id(1); in TEST_F()
1063 SetTensorProto(send_tensor->add_tensors()); in TEST_F()
1134 auto* send_tensor = remote_enqueue_request.add_queue()->mutable_send_tensor(); in TEST_F() local
1135 send_tensor->set_op_id(1); in TEST_F()
1136 SetTensorProto(send_tensor->add_tensors()); in TEST_F()
1144 remote_handle->set_op_id(send_tensor->op_id()); in TEST_F()
1239 auto* send_tensor = remote_enqueue_request.add_queue()->mutable_send_tensor(); in TEST_F() local
1240 send_tensor->set_op_id(1); in TEST_F()
1241 SetTensorProto(send_tensor->add_tensors()); in TEST_F()
Dremote_copy_node.cc421 auto* send_tensor = request.add_queue()->mutable_send_tensor(); in StartRemoteSendTensor() local
422 send_tensor->set_op_id(recv_op_id_); in StartRemoteSendTensor()
423 send_tensor->set_device_name(recv_device_->name()); in StartRemoteSendTensor()
437 tensor.AsProtoTensorContent(send_tensor->add_tensors()); in StartRemoteSendTensor()
Deager_service_impl.cc580 s = SendTensor(item.send_tensor(), context->Context()); in Enqueue()
675 Status EagerServiceImpl::SendTensor(const SendTensorOp& send_tensor, in SendTensor() argument
678 for (const auto& tensor_proto : send_tensor.tensors()) { in SendTensor()
689 send_tensor.device_name().c_str(), &device)); in SendTensor()
697 eager_context->RemoteMgr()->AddOperationOutputs(tensors, send_tensor.op_id()); in SendTensor()
Deager_service_impl.h214 Status SendTensor(const SendTensorOp& send_tensor,
/external/tensorflow/tensorflow/core/protobuf/
Deager_service.proto64 SendTensorOp send_tensor = 3; field