Skip to content

Commit cff3431

Browse files
committed
BUG: fix flaky clip with float32
Testing `clip` converts array elements to builtin types and uses exact equaity. Converting `out` from float32 to 64-bit builtin float incurs floating-point errors, and further exact equality testing fails. So use `math.isclose` instead. closes gh-339
1 parent 3fb693c commit cff3431

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

array_api_tests/test_operators_and_elementwise_functions.py

+10-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
pytestmark = pytest.mark.unvectorized
2727

2828

29+
EPS32 = xp.finfo(xp.float32).eps
30+
31+
2932
def mock_int_dtype(n: int, dtype: DataType) -> int:
3033
"""Returns equivalent of `n` that mocks `dtype` behaviour."""
3134
nbits = dh.dtype_nbits[dtype]
@@ -1093,7 +1096,13 @@ def refimpl(_x, _min, _max):
10931096
f"x[{x_idx}]={x_val}, min[{min_idx}]={min_val}, max[{max_idx}]={max_val}"
10941097
)
10951098
else:
1096-
assert out_val == expected, (
1099+
if out.dtype == xp.float32:
1100+
# conversion to builtin float is prone to roundoff errors
1101+
close_enough = math.isclose(out_val, expected, rel_tol=EPS32)
1102+
else:
1103+
close_enough = out_val == expected
1104+
1105+
assert close_enough, (
10971106
f"out[{o_idx}]={out[o_idx]} but should be {expected} [clip()]\n"
10981107
f"x[{x_idx}]={x_val}, min[{min_idx}]={min_val}, max[{max_idx}]={max_val}"
10991108
)

0 commit comments

Comments
 (0)