We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e3d18d commit f3578e6Copy full SHA for f3578e6
tests/tensor/test_blockwise.py
@@ -484,7 +484,7 @@ def test_cholesky(self, is_batched):
484
np.testing.assert_allclose(
485
X_val_in,
486
np.linalg.cholesky(X_val_in_copy),
487
- atol=1e-4 if config.floatX == "float32" else 0,
+ atol=1e-5 if config.floatX == "float32" else 0,
488
)
489
490
@pytest.mark.parametrize("batched_A", (False, True))
@@ -538,7 +538,7 @@ def core_scipy_fn(A, b):
538
A_val_copy, b_val_copy
539
540
541
- out, expected_out, atol=1e-6 if config.floatX == "float32" else 0
+ out, expected_out, atol=1e-5 if config.floatX == "float32" else 0
542
543
544
# Confirm input was destroyed
0 commit comments