Skip to content

Commit

Permalink
Increase the tolerance of the flaky pre-existing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Ch0ronomato authored and ricardoV94 committed Nov 5, 2024
1 parent e655429 commit 6f4219a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/tensor/test_blockwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ def core_scipy_fn(A, b):
A_val_copy, b_val_copy
)
np.testing.assert_allclose(
out, expected_out, atol=1e-6 if config.floatX == "float32" else 0
out, expected_out, atol=1e-5 if config.floatX == "float32" else 0
)

# Confirm input was destroyed
Expand Down

0 comments on commit 6f4219a

Please sign in to comment.