-
Notifications
You must be signed in to change notification settings - Fork 9
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
Conversation
if isinstance(type, Array): | ||
np_type = type._dtype._np_dtype |
There was a problem hiding this comment.
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do I take it you're up to adding that test https://github.com/data-apis/array-api-tests/blob/c48410f96fc58e02eea844e6b7f6cc01680f77ce/array_api_tests/test_data_type_functions.py#L151 :-).
@@ -35,7 +35,7 @@ def __eq__(self, other: object) -> builtins.bool: | |||
stacklevel=2, | |||
) | |||
if not isinstance(other, DType): | |||
return NotImplemented | |||
return False |
There was a problem hiding this comment.
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)
There was a problem hiding this comment.
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...
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 |
There was a problem hiding this comment.
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. |
There was a problem hiding this comment.
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.
There was a problem hiding this comment.
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
There was a problem hiding this 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.
if isinstance(type, Array): | ||
np_type = type._dtype._np_dtype |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do I take it you're up to adding that test https://github.com/data-apis/array-api-tests/blob/c48410f96fc58e02eea844e6b7f6cc01680f77ce/array_api_tests/test_data_type_functions.py#L151 :-).
@@ -35,7 +35,7 @@ def __eq__(self, other: object) -> builtins.bool: | |||
stacklevel=2, | |||
) | |||
if not isinstance(other, DType): | |||
return NotImplemented | |||
return False |
There was a problem hiding this comment.
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") |
There was a problem hiding this comment.
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.
Good news: this branch doesn't cause regressions in scipy |
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 :-). |
|
finfo
/iinfo
accepts strings? #138iinfo
andfinfo
do not acceptArray
s as input #116