aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/distributed_runtime/rpc/BUILD
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@google.com>2018-04-17 12:21:10 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-04-17 12:23:52 -0700
commit105d9795ae692ed2486652e5d672825ccbd726e9 (patch)
treea9c786b16d5006978788d7ae4471989a629c6110 /tensorflow/core/distributed_runtime/rpc/BUILD
parentb50142067e776fc86ce2ba3d01d01c7c16da671f (diff)
Removes another custom implementation of ZeroCopyInputStream, instead uses the now public gRPC implementation.
Also, moves GrpcByteSource to grpc_util, to keep it near the other serialization code. Lastly, gives a more verbose error if serialization (unparsing) fails (which should not ever happen). PiperOrigin-RevId: 193236893
Diffstat (limited to 'tensorflow/core/distributed_runtime/rpc/BUILD')
-rw-r--r--tensorflow/core/distributed_runtime/rpc/BUILD1
1 files changed, 1 insertions, 0 deletions
diff --git a/tensorflow/core/distributed_runtime/rpc/BUILD b/tensorflow/core/distributed_runtime/rpc/BUILD
index fa0f8c9b52..e973a22f45 100644
--- a/tensorflow/core/distributed_runtime/rpc/BUILD
+++ b/tensorflow/core/distributed_runtime/rpc/BUILD
@@ -189,6 +189,7 @@ cc_library(
srcs = ["grpc_worker_service_impl.cc"],
hdrs = ["grpc_worker_service_impl.h"],
deps = [
+ ":grpc_util",
"//tensorflow/core:worker_proto_cc",
"//tensorflow/core/distributed_runtime:tensor_coding",
"@grpc//:grpc++_unsecure",