-
Notifications
You must be signed in to change notification settings - Fork 54
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
Features/37 minimum #324
Merged
Merged
Features/37 minimum #324
Changes from all commits
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
da15766
Implementation of ht.minimum(), first pass.
ClaudiaComito 0611cb1
ht.minimum(), fixes to the distributed case, also removed debugging s…
ClaudiaComito f4d885e
Added comments, small fixes.
ClaudiaComito 8324951
Improved documentation, added examples.
ClaudiaComito 6a1867a
Added test_minimum() to test_statistics.py.
ClaudiaComito 2b8d067
ht.minimum() providing global result, not local.
ClaudiaComito 9740400
ht.minimum() providing global result, not local.
ClaudiaComito 6d41122
Addressing writing out to output buffer in distributed case.
ClaudiaComito f03f737
Merge branch 'features/37-minimum' of https://github.com/helmholtz-an…
ClaudiaComito b031767
Addressing writing out to output buffer in distributed case.
ClaudiaComito 2f3b50f
Merge branch 'features/37-minimum' of https://github.com/helmholtz-an…
ClaudiaComito ed358da
Again. Writing to output buffer in distributed case. (Having a quarre…
ClaudiaComito 8266edd
Modified documentation and added example for NaN propagation.
ClaudiaComito b6833dd
Removed call to __reduce_op() for a more straightforward implementation.
ClaudiaComito 2a20f1b
Outcome of ht.minimum() keeps split value of input tensors. Adapted t…
ClaudiaComito 9c8c1a7
Merge branch 'master' into features/37-minimum
ClaudiaComito 734e666
Merge branch 'master' into features/37-minimum
ClaudiaComito 4edc3c3
Expanded test_minimum() to increase code coverage.
ClaudiaComito 856a90b
Merge branch 'master' into features/37-minimum
ClaudiaComito ee91a57
* Case x1.split == x2.split: back to using __reduce_op with local_min…
ClaudiaComito 5e073d3
Adapted test_minimum().
ClaudiaComito 8aaf29e
Merge branch 'master' into features/37-minimum
ClaudiaComito 8a1fb28
Implementation of minimum(), uses Allgather, not __reduce_op().
ClaudiaComito b089548
Merge branch 'master' into features/37-minimum
ClaudiaComito 45f72d4
Added input/output sanitation.
ClaudiaComito 5c3522e
Implemented redistribution according to split semantics.
ClaudiaComito ef5a579
Removed redundant comments and code.
ClaudiaComito 46c566f
local_min() brought back within min().
ClaudiaComito 4534838
Increasing test coverage.
ClaudiaComito a497b3a
Enhanced test_minimum() to improve test coverage.
ClaudiaComito c10bf8d
Increased test coverage.
ClaudiaComito 5ce196d
Expanded redistribution cases when x1.split != x2.split
ClaudiaComito af5f449
Fixing tests.
ClaudiaComito fee286a
Improving test coverage.
ClaudiaComito 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
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
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
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.
is it possible to combine this
if out
and the other one?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.
I'm not sure how, as one of them only writes out in the distributed case, the other one in the non-distributed case. If you can think of something, let me know.