From 9e4d0407682e08e8ec53f65a29367406fe831510 Mon Sep 17 00:00:00 2001 From: Revan Sopher Date: Thu, 1 Aug 2019 14:18:07 -0700 Subject: [PATCH] A noop change. PiperOrigin-RevId: 261195954 --- tensorflow/core/platform/default/build_config.bzl | 3 +++ tensorflow/python/distribute/cluster_resolver/BUILD | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/tensorflow/core/platform/default/build_config.bzl b/tensorflow/core/platform/default/build_config.bzl index b1248af6381..8907f7e6160 100644 --- a/tensorflow/core/platform/default/build_config.bzl +++ b/tensorflow/core/platform/default/build_config.bzl @@ -816,3 +816,6 @@ def tf_additional_numa_copts(): "-DTENSORFLOW_USE_NUMA", ], }) + +def tf_additional_rpc_deps(): + return [] diff --git a/tensorflow/python/distribute/cluster_resolver/BUILD b/tensorflow/python/distribute/cluster_resolver/BUILD index c4341ca8396..44a966142fd 100644 --- a/tensorflow/python/distribute/cluster_resolver/BUILD +++ b/tensorflow/python/distribute/cluster_resolver/BUILD @@ -1,6 +1,10 @@ # Description: Operations defined for Cluster Resolvers load("//tensorflow:tensorflow.bzl", "tf_py_test") +load( + "//tensorflow/core:platform/default/build_config.bzl", + "tf_additional_rpc_deps", +) package( default_visibility = [ @@ -63,7 +67,7 @@ py_library( deps = [ ":base_cluster_resolver_py", "//tensorflow/python:training_server_lib", - ], + ] + tf_additional_rpc_deps(), ) py_library(