Skip to content

Commit d649c0c

Browse files
committed
ENH: add testing of reciprocal
1 parent 0469c0c commit d649c0c

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

array_api_tests/test_operators_and_elementwise_functions.py

+16
Original file line numberDiff line numberDiff line change
@@ -1559,6 +1559,22 @@ def test_pow(ctx, data):
15591559
# Values testing pow is too finicky
15601560

15611561

1562+
@pytest.mark.min_version("2024.12")
1563+
@given(hh.arrays(dtype=hh.floating_dtypes, shape=hh.shapes(), elements=finite_kw))
1564+
def test_reciprocal(x):
1565+
out = xp.reciprocal(x)
1566+
ph.assert_dtype("reciprocal", in_dtype=x.dtype, out_dtype=out.dtype)
1567+
ph.assert_shape("reciprocal", out_shape=out.shape, expected=x.shape)
1568+
refimpl = lambda x: 1.0 / x
1569+
unary_assert_against_refimpl(
1570+
"reciprocal",
1571+
x,
1572+
out,
1573+
refimpl,
1574+
strict_check=True,
1575+
)
1576+
1577+
15621578
if api_version >= "2022.12":
15631579

15641580
@given(hh.arrays(dtype=hh.complex_dtypes, shape=hh.shapes()))

0 commit comments

Comments
 (0)