aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-04-06 20:49:46 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-06 22:06:53 -0700
commit55ad623ecaf12de0260008395afb061cdf75f55d (patch)
tree49267a0d4e5dccc0185d582b51d28cf3bf34426a
parent0ca4d911321e60d27e91a93ef892332b1b9523ff (diff)
Automated rollback of change 152465346
Change: 152465844
-rw-r--r--tensorflow/core/ops/math_ops.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/tensorflow/core/ops/math_ops.cc b/tensorflow/core/ops/math_ops.cc
index c99a933f2c..b69ce13775 100644
--- a/tensorflow/core/ops/math_ops.cc
+++ b/tensorflow/core/ops/math_ops.cc
@@ -1256,8 +1256,6 @@ REGISTER_OP("ArgMax")
.Doc(R"doc(
Returns the index with the largest value across dimensions of a tensor.
-Note: in case of ties the identity of the return value is not guaranteed.
-
dimension: int32, 0 <= dimension < rank(input). Describes which dimension
of the input Tensor to reduce across. For vectors, use dimension = 0.
)doc");
@@ -1272,8 +1270,6 @@ REGISTER_OP("ArgMin")
.Doc(R"doc(
Returns the index with the smallest value across dimensions of a tensor.
-Note: in case of ties the identity of the return value is not guaranteed.
-
dimension: int32, 0 <= dimension < rank(input). Describes which dimension
of the input Tensor to reduce across. For vectors, use dimension = 0.
)doc");