diff --git a/tensorflow/compiler/tests/image_ops_test.py b/tensorflow/compiler/tests/image_ops_test.py index 9590688fda7..1ba93173ed8 100644 --- a/tensorflow/compiler/tests/image_ops_test.py +++ b/tensorflow/compiler/tests/image_ops_test.py @@ -605,9 +605,6 @@ class ResizeBilinearTest(parameterized.TestCase, xla_test.XLATestCase): ) def test(self, src_y, src_x, dst_y, dst_x, dtype=np.float32): - if test.is_built_with_rocm(): - self.skipTest("Disabled on ROCm, because it runs out of memory") - max_y = max(src_y - 1, 1) * (dst_y - 1) + 1 max_x = max(src_x - 1, 1) * (dst_x - 1) + 1