From d4b1b32629093eab10745ba555ffbdf2fc303a01 Mon Sep 17 00:00:00 2001 From: Saurabh Saxena Date: Fri, 15 Mar 2019 12:34:01 -0700 Subject: [PATCH] Disable failing test testCondAutoControlDeps on GPU. PiperOrigin-RevId: 238690396 --- tensorflow/python/kernel_tests/control_flow_ops_py_test.py | 2 ++ 1 file changed, 2 insertions(+) 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 381372a585c..9208ad55240 100644 --- a/tensorflow/python/kernel_tests/control_flow_ops_py_test.py +++ b/tensorflow/python/kernel_tests/control_flow_ops_py_test.py @@ -1139,6 +1139,8 @@ class ControlFlowTest(test.TestCase): @test_util.disable_xla("b/128644469 PrintV2") @test_util.run_in_graph_and_eager_modes def testCondAutoControlDeps(self): + if test_util.is_gpu_available(): + self.skipTest("b/128676188 causes OOM on opensource gpu tests") def branch_fn(): logging_ops.print_v2("A")