Add out-of-place reduce-scatter coalescing#6058
Merged
Conversation
6c1923f to
a560206
Compare
jeffhataws
commented
Dec 8, 2023
jeffhataws
commented
Dec 8, 2023
jeffhataws
commented
Dec 8, 2023
a560206 to
edd095f
Compare
This was referenced Dec 8, 2023
Collaborator
Author
|
I don't understand why the profiler test failed with: |
Collaborator
|
@jonb377 hmm is it possible that |
Collaborator
|
I suppose it could be, the capture and assertion are async. Let's rerun the workflow and see if it passes, I'll also open a PR to add more headroom to the test. |
JackCaoG
reviewed
Dec 8, 2023
JackCaoG
reviewed
Dec 8, 2023
Collaborator
JackCaoG
left a comment
There was a problem hiding this comment.
mostly lgtm, I think we should add a test too
2d2b532 to
87fd463
Compare
87fd463 to
451f9c5
Compare
Collaborator
Author
|
@JackCaoG is is failing due to flaky test? It was green until I rebased. |
Collaborator
Author
Done adding new test. Please take a look. Thanks. |
Collaborator
|
yea that flaky test is already fixed in head, you can ignore it for now. |
Collaborator
|
I will take care of the backport once #6059 (review) is also merged |
JackCaoG
pushed a commit
that referenced
this pull request
Dec 12, 2023
chunnienc
pushed a commit
to chunnienc/xla
that referenced
this pull request
Dec 14, 2023
golechwierowicz
pushed a commit
that referenced
this pull request
Jan 12, 2024
bhavya01
pushed a commit
that referenced
this pull request
Apr 22, 2024
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
In #5956 we added reduce-scatter coalescing, but the out-of-place was combined with the in-place processing, making it hard to understand/maintain the code.
Per recommendation from reviewer, this PR adds the out-of-place version of reduce-scatter coalescing.