-
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
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
d59344c
BUG: `clip()` should not have `out=` parameter
crusaderky b940c19
Revert "BUG: `clip()` should not have `out=` parameter"
crusaderky cc00aee
Merge branch 'main' into clip
crusaderky df226fe
Fix and test out=
crusaderky ed83b80
lint
crusaderky fa24021
dead comment
crusaderky 94be1c8
Speed up
crusaderky 030f670
Revert "Speed up"
crusaderky File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
from typing import NamedTuple | ||
import inspect | ||
|
||
from ._helpers import array_namespace, _check_device, device, is_torch_array, is_cupy_namespace | ||
from ._helpers import array_namespace, _check_device, device, is_cupy_namespace | ||
|
||
# These functions are modified from the NumPy versions. | ||
|
||
|
@@ -368,23 +368,23 @@ def _isscalar(a): | |
if type(max) is int and max >= wrapped_xp.iinfo(x.dtype).max: | ||
max = None | ||
|
||
dev = device(x) | ||
if out is None: | ||
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 | ||
|
||
if min is not None: | ||
if is_torch_array(x) and x.dtype == xp.float64 and _isscalar(min): | ||
# Avoid loss of precision due to torch defaulting to float32 | ||
min = wrapped_xp.asarray(min, dtype=xp.float64) | ||
a = xp.broadcast_to(wrapped_xp.asarray(min, device=device(x)), result_shape) | ||
a = wrapped_xp.asarray(min, dtype=x.dtype, device=dev) | ||
a = xp.broadcast_to(a, result_shape) | ||
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 commentThe reason will be displayed to describe this comment to others. Learn more. Could not reproduce |
||
out[ia] = wrapped_xp.astype(a[ia], out.dtype) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Removed unnecessary deep copy |
||
out[ia] = a[ia] | ||
|
||
if max is not None: | ||
if is_torch_array(x) and x.dtype == xp.float64 and _isscalar(max): | ||
max = wrapped_xp.asarray(max, dtype=xp.float64) | ||
b = xp.broadcast_to(wrapped_xp.asarray(max, device=device(x)), result_shape) | ||
b = wrapped_xp.asarray(max, dtype=x.dtype, device=dev) | ||
b = xp.broadcast_to(b, result_shape) | ||
ib = (out > b) | xp.isnan(b) | ||
out[ib] = wrapped_xp.astype(b[ib], out.dtype) | ||
out[ib] = b[ib] | ||
|
||
# Return a scalar for 0-D | ||
return out[()] | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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