aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/ops/state_ops.cc
diff options
context:
space:
mode:
authorGravatar Vijay Vasudevan <vrv@google.com>2016-09-23 12:55:06 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-09-23 14:02:29 -0700
commitd2c2d134dfc3e31f6d1296576f76e9abd4fc6c1c (patch)
treea3f3ec1b9ebc6f1ef1355234c0b40616ced3bc2f /tensorflow/core/ops/state_ops.cc
parent1cf9120cec318826f5c079f1500cb3d2dc6cc0ed (diff)
Fix CountUpTo documentation -- returns the value
before the update. Fixes #4424 Change: 134113831
Diffstat (limited to 'tensorflow/core/ops/state_ops.cc')
-rw-r--r--tensorflow/core/ops/state_ops.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/tensorflow/core/ops/state_ops.cc b/tensorflow/core/ops/state_ops.cc
index 6de3f97548..629a280cc8 100644
--- a/tensorflow/core/ops/state_ops.cc
+++ b/tensorflow/core/ops/state_ops.cc
@@ -442,9 +442,6 @@ REGISTER_OP("CountUpTo")
.Doc(R"doc(
Increments 'ref' until it reaches 'limit'.
-This operation outputs "ref" after the update is done. This makes it
-easier to chain operations that need to use the updated value.
-
ref: Should be from a scalar `Variable` node.
limit: If incrementing ref would bring it above limit, instead generates an
'OutOfRange' error.