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

MAINT: finfo() / iinfo() input/output review #143

Merged
merged 1 commit into from
Apr 2, 2025

Conversation

crusaderky
Copy link
Contributor

@crusaderky crusaderky commented Apr 2, 2025

Comment on lines +133 to +136
if isinstance(type, Array):
np_type = type._dtype._np_dtype
Copy link
Contributor Author

@crusaderky crusaderky Apr 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be tested in array-api-tests

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -35,7 +35,7 @@ def __eq__(self, other: object) -> builtins.bool:
stacklevel=2,
)
if not isinstance(other, DType):
return NotImplemented
return False
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You do not want Python to try other.__eq__(self)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be nice to run scipy tests against this branch. I doubt any of the behaviors prohibited here is relied on, but we've been surprised more than once, so...

Comment on lines +105 to +111
def test_finfo_iinfo_wrap_output():
"""Test that the finfo(...).dtype and iinfo(...).dtype
are array-api-strict.DType objects; not numpy.dtype.
"""
# Note: array_api_strict.DType objects are not singletons
assert finfo(float64).dtype == float64
assert iinfo(int8).dtype == int8
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This also ought to be in array-api-tests, TBH

@pytest.mark.parametrize("func,arg", [(finfo, float64), (iinfo, int8)])
def test_finfo_iinfo_output_assumptions(func, arg):
"""There should be no expectation for the output of finfo()/iinfo()
to be comparable, hashable, or writeable.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

...or serializable, or have a __dict__, or being targetable by weakref, and probably a few more.
These I think are the important ones.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Didn't bother testing against them behaving like namedtuples because numpy ones aren't anyway

Copy link
Member

@ev-br ev-br left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks reasonable, would be nice to double-check it doesn't break scipy though.

Comment on lines +133 to +136
if isinstance(type, Array):
np_type = type._dtype._np_dtype
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@@ -35,7 +35,7 @@ def __eq__(self, other: object) -> builtins.bool:
stacklevel=2,
)
if not isinstance(other, DType):
return NotImplemented
return False
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would be nice to run scipy tests against this branch. I doubt any of the behaviors prohibited here is relied on, but we've been surprised more than once, so...

"""
match = "must be a dtype or array"
with pytest.raises(TypeError, match=match):
finfo("float64")
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got to admit I do miss the ability to use dtype=float. Nothing to do about it though.

@crusaderky
Copy link
Contributor Author

Would be nice to run scipy tests against this branch. I doubt any of the behaviors prohibited here is relied on, but we've been surprised more than once, so...

Good news: this branch doesn't cause regressions in scipy
Bad news: scipy is already broken against array-api-strict main git tip 🤣

@ev-br ev-br merged commit dc71844 into data-apis:main Apr 2, 2025
19 checks passed
@ev-br
Copy link
Member

ev-br commented Apr 2, 2025

Thanks Guido!

Is it more self-flattering to think of ourselves as an Achilles or self-deprecating to think of a no-bug state as a turtle :-).

@ev-br ev-br added this to the 2.4 milestone Apr 2, 2025
@crusaderky crusaderky deleted the finfo_iinfo branch April 2, 2025 13:40
@crusaderky
Copy link
Contributor Author

Do I take it you're up to adding that test

data-apis/array-api-tests#358

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

finfo/iinfo accepts strings? iinfo and finfo do not accept Arrays as input
2 participants