Disable flaky test.

PiperOrigin-RevId: 297405706
Change-Id: Ie5818fd1facf75c6662ae7b06585a7b29a1b1ebc
This commit is contained in:
Scott Zhu 2020-02-26 11:22:08 -08:00 committed by TensorFlower Gardener
parent 19a03b9758
commit dba16b1aaa

View File

@ -1735,7 +1735,8 @@ class SpectralTest(PForTestCase, parameterized.TestCase):
(fft_ops.irfft2d,),
(fft_ops.irfft3d,),
)
def test_irfft(self, op_func):
# TODO(agarwal): Reenable this once the test flaky is fixed.
def disabled_test_irfft(self, op_func):
for dtype in (dtypes.complex64, dtypes.complex128):
shape = [2, 3, 4, 3, 4]
x = np.random.uniform(size=shape) + 1j * np.random.uniform(size=shape)