Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tighten tests on iinfo/finfo #358

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 36 additions & 8 deletions array_api_tests/test_data_type_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,9 +147,12 @@ def test_can_cast(_from, to):
assert out == expected, f"{out=}, but should be {expected} {f_func}"


@pytest.mark.parametrize("dtype", dh.real_float_dtypes)
def test_finfo(dtype):
out = xp.finfo(dtype)
@pytest.mark.parametrize("arg_type", ["dtype", "array"])
@pytest.mark.parametrize("dtype", dh.real_float_dtypes + dh.complex_dtypes)
def test_finfo(dtype, arg_type):
arg = xp.asarray(1, dtype=dtype) if arg_type == "array" else dtype
out = xp.finfo(arg)

f_func = f"[finfo({dh.dtype_to_name[dtype]})]"
for attr, stype in [
("bits", int),
Expand All @@ -164,12 +167,30 @@ def test_finfo(dtype):
value, stype
), f"type(out.{attr})={type(value)!r}, but should be {stype.__name__} {f_func}"
assert hasattr(out, "dtype"), f"out has no attribute 'dtype' {f_func}"
# TODO: test values

assert isinstance(out.bits, int)
assert isinstance(out.eps, float)
assert isinstance(out.max, float)
assert isinstance(out.min, float)
assert isinstance(out.smallest_normal, float)
if dtype == xp.complex64:
assert out.dtype == xp.float32
elif dtype == xp.complex128:
assert out.dtype == xp.float64
else:
assert out.dtype == dtype
# Guard vs. numpy.dtype.__eq__ lax comparison
assert not isinstance(out.dtype, str)
assert out.dtype is not float
assert out.dtype is not complex


@pytest.mark.parametrize("dtype", dh.int_dtypes)
def test_iinfo(dtype):
out = xp.iinfo(dtype)
@pytest.mark.parametrize("arg_type", ["dtype", "array"])
@pytest.mark.parametrize("dtype", dh.int_dtypes + dh.uint_dtypes)
def test_iinfo(dtype, arg_type):
arg = xp.asarray(1, dtype=dtype) if arg_type == "array" else dtype
out = xp.iinfo(arg)

f_func = f"[iinfo({dh.dtype_to_name[dtype]})]"
for attr in ["bits", "max", "min"]:
assert hasattr(out, attr), f"out has no attribute '{attr}' {f_func}"
Expand All @@ -178,7 +199,14 @@ def test_iinfo(dtype):
value, int
), f"type(out.{attr})={type(value)!r}, but should be int {f_func}"
assert hasattr(out, "dtype"), f"out has no attribute 'dtype' {f_func}"
# TODO: test values

assert isinstance(out.bits, int)
assert isinstance(out.max, int)
assert isinstance(out.min, int)
assert out.dtype == dtype
# Guard vs. numpy.dtype.__eq__ lax comparison
assert not isinstance(out.dtype, str)
assert out.dtype is not int


def atomic_kinds() -> st.SearchStrategy[Union[DataType, str]]:
Expand Down
Loading