aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
diff options
context:
space:
mode:
authorGravatar Anna R <annarev@google.com>2018-03-14 15:25:53 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-03-14 15:30:13 -0700
commitc6dbbdc339ab351700793885417d12fd7172d14c (patch)
tree4cde391f4e90de4af2df1bb0f4db233ba1979ca9 /tensorflow/python/kernel_tests/control_flow_ops_py_test.py
parenta12d5cc7d5aa3d159312424a2b84d33a7648775d (diff)
Remove underscore prefix from ref_identity op.
PiperOrigin-RevId: 189096108
Diffstat (limited to 'tensorflow/python/kernel_tests/control_flow_ops_py_test.py')
-rw-r--r--tensorflow/python/kernel_tests/control_flow_ops_py_test.py13
1 files changed, 5 insertions, 8 deletions
diff --git a/tensorflow/python/kernel_tests/control_flow_ops_py_test.py b/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
index 5257826ebd..75f8644f69 100644
--- a/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
+++ b/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
@@ -591,10 +591,10 @@ class ControlFlowTest(test.TestCase):
# Both v_f and v_t are uninitialized references. However, an actual use
# of the reference in the 'true' branch in the 'tf.identity' op will
# not 'fire' when v is uninitialized, so this is a valid construction.
- # This test tests that _ref_identity allows uninitialized ref as input
+ # This test tests that ref_identity allows uninitialized ref as input
# so that this construction is allowed.
- v_f_op = gen_array_ops._ref_identity(v_f)
- v_t_op = gen_array_ops._ref_identity(v_t)
+ v_f_op = gen_array_ops.ref_identity(v_f)
+ v_t_op = gen_array_ops.ref_identity(v_t)
with ops.control_dependencies([v_f_op]):
assign_v = state_ops.assign(v, [1.0])
with ops.control_dependencies([v_t_op]):
@@ -751,7 +751,7 @@ class ControlFlowTest(test.TestCase):
def b(i, x):
self.assertEqual(x.dtype, dtypes.int32_ref)
- return (i + 1, gen_array_ops._ref_identity(x))
+ return (i + 1, gen_array_ops.ref_identity(x))
r = control_flow_ops.while_loop(c, b, [i, x], parallel_iterations=5)
@@ -2212,12 +2212,9 @@ class ControlFlowTest(test.TestCase):
self.assertEqual(x.dtype, dtypes.int32_ref)
- # pylint: disable=protected-access
def body(i, x):
self.assertEqual(x.dtype, dtypes.int32_ref)
- return [i + 1, gen_array_ops._ref_identity(x)]
-
- # pylint: enable=protected-access
+ return [i + 1, gen_array_ops.ref_identity(x)]
r = control_flow_ops.while_loop(c, body, [i, x], parallel_iterations=5)