aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-10-09 23:57:17 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-10 00:01:03 -0700
commit5a2d98f7f7cf6f52eb0496bf27be07d9e1f29040 (patch)
tree9339f0e63d72646bc7045bd85bcb0dad33564665
parentdcf641daac0f2fee74eafbb0de1d32f6c8c4c6fd (diff)
Run while loop test that was not being run before.
PiperOrigin-RevId: 216483744
-rw-r--r--tensorflow/python/kernel_tests/control_flow_ops_py_test.py4
1 files changed, 2 insertions, 2 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 baea5c0f6d..a5f85b97f7 100644
--- a/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
+++ b/tensorflow/python/kernel_tests/control_flow_ops_py_test.py
@@ -1116,8 +1116,8 @@ class ControlFlowTest(test.TestCase):
self.assertAllClose(10.0, r.eval())
def testWhile_Gpu_2(self):
- self._testWhile_Gpu_1(use_gpu=False)
- self._testWhile_Gpu_1(use_gpu=True)
+ self._testWhile_Gpu_2(use_gpu=False)
+ self._testWhile_Gpu_2(use_gpu=True)
def testWhileShape(self):
with self.cached_session():