Disable idct tests on GPU.

We recently switched our CI to use T4 GPUs instead of P100s, which causes these tests to fail. Disable the tests for now.

PiperOrigin-RevId: 551910196
This commit is contained in:
Peter Hawkins 2023-07-28 11:45:55 -07:00 committed by jax authors
parent 19eefac1e8
commit 7f30ae3f00

View File

@ -86,6 +86,9 @@ class LaxBackedScipyFftTests(jtu.JaxTestCase):
axis=[-1, 0],
norm=[None, 'ortho'],
)
# TODO(phawkins): these tests are failing on T4 GPUs in CI with a
# CUDA_ERROR_ILLEGAL_ADDRESS.
@jtu.skip_on_devices("cuda")
def testiDct(self, shape, dtype, n, axis, norm):
rng = jtu.rand_default(self.rng())
args_maker = lambda: (rng(shape, dtype),)