-
Notifications
You must be signed in to change notification settings - Fork 33
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
BUG: clip(out=...)
is broken
#261
Conversation
I don't think this is correct. And this is by design: see "Avoid Restricting Behavior that is Outside the Scope of the Standard" section in |
Ah, ok. |
clip()
should not have out=
parameterclip(out=...)
is broken
out = wrapped_xp.asarray(xp.broadcast_to(x, result_shape), | ||
copy=True, device=device(x)) | ||
out = wrapped_xp.empty(result_shape, dtype=x.dtype, device=dev) | ||
out[()] = x |
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.
When out is None I expect this to have exactly the same performance as before
ia = (out < a) | xp.isnan(a) | ||
# torch requires an explicit cast here | ||
out[ia] = wrapped_xp.astype(a[ia], out.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.
Removed unnecessary deep copy
ia = (out < a) | xp.isnan(a) | ||
# torch requires an explicit cast here |
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.
Could not reproduce
This reverts commit 94be1c8.
Okay, the added test looks convincing, the CI gives a green light, the patch looks like a nice fix and a simplification. Let's roll with it. Thanks @crusaderky |
reviewed at data-apis#261
Fix issue where clip() would accept an out= parameter in numpy (wrapped or not), cupy(wrapped or not), and wrapped torch, whereas in all other namespaces it would (correctly) reject it.Fix non-standard out= parameter for clip and add unit test.
Also speed up all cases by removing one unnecessary deep copy.
I checked scipy and there are no use cases for this.