Skip to content

Commit

Permalink
test_ufuncs: relaxed tolerance for np_matmul
Browse files Browse the repository at this point in the history
  • Loading branch information
HannanNaeem committed Mar 1, 2024
1 parent 0e4498e commit f15298b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_ufuncs.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ def test_np_matmul_2d_2d_vs_numpy(pk_ufunc,
view2[:] = np2
actual = pk_ufunc(view1, view2)

assert_allclose(actual, expected)
assert_allclose(actual, expected, rtol=1.5e-7)

@pytest.mark.parametrize("pk_ufunc, numpy_ufunc", [
(pk.np_matmul, np.matmul),
Expand Down

0 comments on commit f15298b

Please sign in to comment.