aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/distributed_runtime/rpc/BUILD
diff options
context:
space:
mode:
authorGravatar David Soergel <soergel@google.com>2016-06-13 15:42:31 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-06-13 17:03:20 -0700
commit1b4fca3124c6c8c3739cb922f228ab8deef3033d (patch)
tree7e84b82e518dedfe4cb7814eac2748d392186d76 /tensorflow/core/distributed_runtime/rpc/BUILD
parent3d4a824bc6fc5242cf9cce649879091e96646e5c (diff)
Monitor InFlow queues via TensorBoard summaries
Change: 124784031
Diffstat (limited to 'tensorflow/core/distributed_runtime/rpc/BUILD')
-rw-r--r--tensorflow/core/distributed_runtime/rpc/BUILD24
1 files changed, 12 insertions, 12 deletions
diff --git a/tensorflow/core/distributed_runtime/rpc/BUILD b/tensorflow/core/distributed_runtime/rpc/BUILD
index 00025eb8fb..9eef1b9648 100644
--- a/tensorflow/core/distributed_runtime/rpc/BUILD
+++ b/tensorflow/core/distributed_runtime/rpc/BUILD
@@ -50,8 +50,8 @@ cc_library(
srcs = [],
hdrs = ["grpc_util.h"],
deps = [
- "@grpc//:grpc++_unsecure",
"//tensorflow/core:lib",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -60,9 +60,9 @@ cc_library(
srcs = [],
hdrs = ["grpc_client_cq_tag.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_util",
"//tensorflow/core:lib",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -71,7 +71,6 @@ cc_library(
srcs = ["grpc_remote_worker.cc"],
hdrs = ["grpc_remote_worker.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_client_cq_tag",
":grpc_util",
":grpc_worker_service_impl",
@@ -81,6 +80,7 @@ cc_library(
"//tensorflow/core:worker_proto_cc",
"//tensorflow/core/distributed_runtime:worker_cache_logger",
"//tensorflow/core/distributed_runtime:worker_interface",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -89,9 +89,9 @@ cc_library(
srcs = ["grpc_channel.cc"],
hdrs = ["grpc_channel.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_util",
"//tensorflow/core:lib",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -100,8 +100,8 @@ cc_library(
srcs = [],
hdrs = ["grpc_call.h"],
deps = [
- "@grpc//:grpc++_unsecure",
"//tensorflow/core:lib",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -133,7 +133,6 @@ cc_library(
srcs = ["grpc_worker_service.cc"],
hdrs = ["grpc_worker_service.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":async_service_interface",
":grpc_call",
":grpc_util",
@@ -150,6 +149,7 @@ cc_library(
"//tensorflow/core/distributed_runtime:worker_cache",
"//tensorflow/core/distributed_runtime:worker_env",
"//tensorflow/core/distributed_runtime:worker_interface",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -158,9 +158,9 @@ cc_library(
srcs = ["grpc_worker_service_impl.cc"],
hdrs = ["grpc_worker_service_impl.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_serialization_traits",
"//tensorflow/core:worker_proto_cc",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -184,7 +184,6 @@ cc_library(
srcs = ["grpc_master_service.cc"],
hdrs = ["grpc_master_service.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":async_service_interface",
":grpc_call",
":grpc_master_service_impl",
@@ -192,6 +191,7 @@ cc_library(
"//tensorflow/core:lib",
"//tensorflow/core:master_proto_cc",
"//tensorflow/core/distributed_runtime:master",
+ "@grpc//:grpc++_unsecure",
],
alwayslink = 1,
)
@@ -201,9 +201,9 @@ cc_library(
srcs = ["grpc_master_service_impl.cc"],
hdrs = ["grpc_master_service_impl.h"],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_serialization_traits",
"//tensorflow/core:master_proto_cc",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -237,7 +237,6 @@ cc_library(
hdrs = ["grpc_server_lib.h"],
linkstatic = 1, # Seems to be needed since alwayslink is broken in bazel
deps = [
- "@grpc//:grpc++_unsecure",
":async_service_interface",
":grpc_channel",
":grpc_master_service",
@@ -254,6 +253,7 @@ cc_library(
"//tensorflow/core/distributed_runtime:master_session",
"//tensorflow/core/distributed_runtime:server_lib",
"//tensorflow/core/distributed_runtime:worker_env",
+ "@grpc//:grpc++_unsecure",
],
alwayslink = 1,
)
@@ -264,7 +264,6 @@ cc_binary(
"grpc_tensorflow_server.cc",
],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_server_lib",
"//tensorflow/core:all_kernels",
"//tensorflow/core:core_cpu",
@@ -272,6 +271,7 @@ cc_binary(
"//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
"//tensorflow/core/distributed_runtime:server_lib",
+ "@grpc//:grpc++_unsecure",
],
)
@@ -294,7 +294,6 @@ cc_binary(
"grpc_testlib_server.cc",
],
deps = [
- "@grpc//:grpc++_unsecure",
":grpc_server_lib",
":grpc_testlib_ops",
"//tensorflow/core:core_cpu",
@@ -308,6 +307,7 @@ cc_binary(
"//tensorflow/core/kernels:matmul_op",
"//tensorflow/core/kernels:reduction_ops",
"//tensorflow/core/kernels:variable_ops",
+ "@grpc//:grpc++_unsecure",
],
)