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-02-28 14:50:02 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-02-28 14:53:59 -0800
commit91d49c7d98114da4e4647c62d9f9b69119296b69 (patch)
treef471ce837b915650f1128a57d505ac2c46dc51da /tensorflow/python/kernel_tests/control_flow_ops_py_test.py
parentf28e4d6faf94c08464f430f9cd01ef32dde6ad46 (diff)
Removing underscore prefixes from hidden generated Python functions.
PiperOrigin-RevId: 187386941
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.py10
1 files changed, 5 insertions, 5 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 58f38650eb..b429fa5c42 100644
--- a/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
+++ b/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
@@ -552,7 +552,7 @@ class ControlFlowTest(test.TestCase):
def testCondRef(self):
with self.test_session():
- x = gen_state_ops._variable(
+ x = gen_state_ops.variable(
shape=[1],
dtype=dtypes.float32,
name="x",
@@ -580,7 +580,7 @@ class ControlFlowTest(test.TestCase):
def testUninitializedRefIdentity(self):
with self.test_session() as sess:
- v = gen_state_ops._variable(
+ v = gen_state_ops.variable(
shape=[1],
dtype=dtypes.float32,
name="v",
@@ -1620,7 +1620,7 @@ class ControlFlowTest(test.TestCase):
def testWhileStack_1(self):
with self.test_session():
- s = gen_data_flow_ops._stack_v2(-1, dtypes.int32, stack_name="foo")
+ s = gen_data_flow_ops.stack_v2(-1, dtypes.int32, stack_name="foo")
i = constant_op.constant(0)
def c(i):
@@ -1629,7 +1629,7 @@ class ControlFlowTest(test.TestCase):
def b(i):
ni = math_ops.add(i, 1)
ni = control_flow_ops.with_dependencies(
- [gen_data_flow_ops._stack_push_v2(s, i)], ni)
+ [gen_data_flow_ops.stack_push_v2(s, i)], ni)
return ni
r = control_flow_ops.while_loop(c, b, [i], parallel_iterations=1)
@@ -1641,7 +1641,7 @@ class ControlFlowTest(test.TestCase):
def b1(i, x):
ni = math_ops.subtract(i, 1)
- nx = x + gen_data_flow_ops._stack_pop_v2(s, dtypes.int32)
+ nx = x + gen_data_flow_ops.stack_pop_v2(s, dtypes.int32)
return [ni, nx]
_, rx = control_flow_ops.while_loop(