-
-
Notifications
You must be signed in to change notification settings - Fork 11.1k
BUG ensure monotonic property of lerp in numpy.percentile #15098
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
Closed
Closed
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
1cdb83d
FIX ensure monotic property of lerp in percentile
glemaitre 845d219
spelling
glemaitre aac5e41
address comments
glemaitre 313ea69
better syntax
glemaitre 2fbbf72
remove diff
glemaitre 786c7bb
address comments
glemaitre 5ba6527
Update numpy/lib/tests/test_function_base.py
glemaitre 64258de
add comments regarding the source
glemaitre e5f1d0c
Merge remote-tracking branch 'origin/master' into is/14685
glemaitre 64c6fa1
avoid intermediate copy
glemaitre 9607d2b
Update function_base.py
glemaitre 733469d
use copyto
glemaitre 045a7e3
Update function_base.py
glemaitre 6f070c2
ups
glemaitre e9449a8
address review
glemaitre File filter
Filter by extension
< 8000 /header>Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
avoid intermediate copy
- Loading branch information
commit 64c6fa15f61abb61fa3378d6bb2af920ade0d7cf
There are no files selected for viewing
This file contains hidden or 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
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.
Assignment to out should not be necessary here, the above operation is already in-place (i.e. similar to the old branch, which did not do this).
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.
@seberg is the double-assignment cleanup a blocker?
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.
Not on its own, but I think the above also needs some cleanups, maybe I should just put it on my todo list to do it myself.