Disable PgleTest.testAutoPgleWithPersistentCache.

This is a new test that is failing in CI.

PiperOrigin-RevId: 638619001
This commit is contained in:
Peter Hawkins 2024-05-30 05:32:59 -07:00 committed by jax authors
parent 01b4cb6de0
commit f24d2a71bb

View File

@ -18,6 +18,7 @@ import logging
import math
import os
import tempfile
import unittest
from absl.testing import absltest
import jax
@ -149,6 +150,7 @@ class PgleTest(jtu.JaxTestCase):
self.assertArraysEqual(compiled(x), expected)
self.assertEqual(cache_miss_count[0], 0)
@unittest.skip("Test failing in CI")
def testAutoPgleWithPersistentCache(self):
if xla_extension_version < 268:
return self.skipTest('Requires xla_extension_version >= 268')