Merge pull request #12197 from ROCmSoftwarePlatform:fixedRocmUnitTestsSkip

PiperOrigin-RevId: 479566021
This commit is contained in:
jax authors 2022-10-07 06:36:11 -07:00
commit 363cc124e3
2 changed files with 0 additions and 2 deletions

View File

@ -227,7 +227,6 @@ class CustomLinearSolveTest(jtu.JaxTestCase):
order=2,
rtol={jnp.float32: 6e-2, jnp.float64: 2e-3})
@jtu.skip_on_devices("rocm") # rtol and atol needs to be adjusted for ROCm
def test_custom_linear_solve_cholesky(self):
def positive_definite_solve(a, b):

View File

@ -409,7 +409,6 @@ class LaxBackedScipyTests(jtu.JaxTestCase):
self.assertAllClose(actual, expected, rtol=1.1e-7, atol=3e-8)
@jtu.skip_on_devices("rocm") # rtol and atol needs to be adjusted for ROCm
@jax.numpy_dtype_promotion('standard') # This test explicitly exercises dtype promotion
def testSphHarmOrderZeroDegreeOne(self):
"""Tests the spherical harmonics of order one and degree zero."""