From 1924fe1c4df33f818ef2d2eb6582d07995f70b94 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Wed, 30 Jan 2019 10:31:50 -0800 Subject: [PATCH] [TF:XLA] Re-enable MaxPool test for XLA. PiperOrigin-RevId: 231620880 --- tensorflow/python/kernel_tests/pooling_ops_test.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tensorflow/python/kernel_tests/pooling_ops_test.py b/tensorflow/python/kernel_tests/pooling_ops_test.py index 27a71904340..94a861f5545 100644 --- a/tensorflow/python/kernel_tests/pooling_ops_test.py +++ b/tensorflow/python/kernel_tests/pooling_ops_test.py @@ -730,7 +730,7 @@ class PoolingTest(test.TestCase): t = nn_ops.max_pool( t, ksize=ksize, strides=strides, padding="SAME").eval() - @test_util.disable_xla("This test never passed for XLA") + @test_util.disable_xla("b/123338077") def testDepthwiseMaxPoolInvalidConfigs(self): self._testDepthwiseMaxPoolInvalidConfig( [1, 2, 2, 4], [1, 2, 2, 2], [1, 1, 1, 2], @@ -1175,7 +1175,6 @@ class PoolingTest(test.TestCase): use_gpu=use_gpu) @test_util.run_deprecated_v1 - @test_util.disable_xla("This test never passed for XLA") def testMaxPoolGrad(self): for (data_format, use_gpu) in GetTestConfigs(): self._testMaxPoolGradValidPadding1_1(data_format, use_gpu)