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

BUG: clip(out=...) is broken #261

Merged
merged 8 commits into from
Mar 5, 2025
Merged

BUG: clip(out=...) is broken #261

merged 8 commits into from
Mar 5, 2025

Conversation

crusaderky
Copy link
Contributor

@crusaderky crusaderky commented Feb 27, 2025

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.

@ev-br
Copy link
Member

ev-br commented Feb 28, 2025

I don't think this is correct. array-api-compat generally allows additional arguments or other additional behaviors beyond what the spec allows. Restricting the behavior is what array-api-strict is for.

And this is by design: see "Avoid Restricting Behavior that is Outside the Scope of the Standard" section in
https://data-apis.org/array-api-compat/dev/special-considerations.html

@crusaderky
Copy link
Contributor Author

crusaderky commented Mar 4, 2025

Ah, ok.
out= was untested and broken.
I've fixed it and added a unit test.
I've also sped up the general case.

@crusaderky crusaderky changed the title BUG: clip() should not have out= parameter BUG: clip(out=...) is broken Mar 4, 2025
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
Copy link
Contributor Author

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)
Copy link
Contributor Author

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
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Could not reproduce

@ev-br
Copy link
Member

ev-br commented Mar 5, 2025

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

@ev-br ev-br merged commit e14754b into data-apis:main Mar 5, 2025
40 checks passed
@ev-br ev-br added this to the 1.12 milestone Mar 5, 2025
@crusaderky crusaderky deleted the clip branch March 5, 2025 14:59
NeilGirdhar pushed a commit to NeilGirdhar/array-api-compat that referenced this pull request Mar 9, 2025
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.

2 participants