-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
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
PERF: masked ops for reductions (min/max) #33261
PERF: masked ops for reductions (min/max) #33261
Conversation
|
||
|
||
min = _minmax(np.min) | ||
max = _minmax(np.max) |
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.
since mypy is a static checker, min and max will resolve to Any.
something to consider is that maybe could do something like
def min(values: np.ndarray, mask: np.ndarray, skipna: bool = True):
return _reduction(np.min, values=values, mask=mask, skipna=skipna)
def max(values: np.ndarray, mask: np.ndarray, skipna: bool = True):
return _reduction(np.max, values=values, mask=mask, skipna=skipna)
and remove _minmax and move func into reduction signature.
This issue occurs elsewhere in the codebase, so this is not a blocker, but may give more confidence in the refactors.
alternatively, would using functools.partial be clearer. (newer versions on mypy might support this better)
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.
OK, adapted as you suggested (it gives an extra function call in runtime (instead of only at import time), but that should be negligible)
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.
lgtm. some comments by others.
Co-Authored-By: MomIsBestFriend <50263213+MomIsBestFriend@users.noreply.github.com>
thanks @jorisvandenbossche |
Follow-up on #30982, adding similar mask reduction but now for min/max.