diff --git a/tensorflow/BUILD b/tensorflow/BUILD index a346a546038..aa73e22feae 100644 --- a/tensorflow/BUILD +++ b/tensorflow/BUILD @@ -501,6 +501,10 @@ cc_library( }), ) +# PLACEHOLDER_GRPC_RULE + +# PLACEHOLDER_GRPC++_RULE + # A shared object which includes registration mechanisms for ops and # kernels. Does not include the implementations of any ops or kernels. Instead, # the library which loads libtensorflow_framework.so diff --git a/tensorflow/python/ops/gradients_impl.py b/tensorflow/python/ops/gradients_impl.py index 954783adb5c..4af2f4583fb 100644 --- a/tensorflow/python/ops/gradients_impl.py +++ b/tensorflow/python/ops/gradients_impl.py @@ -109,7 +109,7 @@ def gradients(ys, ```python a = tf.ones([1, 2]) b = tf.ones([3, 1]) - g1 = tf.gradients([b], [a], unnconnected_gradients='none') + g1 = tf.gradients([b], [a], unconnected_gradients='none') sess.run(g1) # [None] g2 = tf.gradients([b], [a], unconnected_gradients='zero') @@ -227,7 +227,7 @@ def gradients_v2(ys, # pylint: disable=invalid-name ```python a = tf.ones([1, 2]) b = tf.ones([3, 1]) - g1 = tf.gradients([b], [a], unnconnected_gradients='none') + g1 = tf.gradients([b], [a], unconnected_gradients='none') sess.run(g1) # [None] g2 = tf.gradients([b], [a], unconnected_gradients='zero')