-
Notifications
You must be signed in to change notification settings - Fork 858
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
coll/han: fix bug in reduce in place #11800
Conversation
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.
Thank you!
ce4d807
to
01f552b
Compare
@B-a-S Looks like a failure in the NVIDIA CI environment:
Can you please investigate? |
da87fdc
to
dc3b21a
Compare
dc3b21a
to
93bfdd5
Compare
CI infra issue has been resolved. @bosilca Can you review? |
93bfdd5
to
9ba0637
Compare
Piror to this patch, the reduce code try to applied arithematic operations on a sendbuf, even when it is MPI_IN_PLACE. this patch addressed the issue. Signed-off-by: Wei Zhang <[email protected]>
9ba0637
to
d520921
Compare
all CI passed. Ready for merge! |
@wzamazon It says you force-pushed an hour ago. What did you push after the PR was approved? |
I rebased to latest main branch (using the github's rebase branch option) |
Ok. In our community, there's generally no need to do that unless a specific reason for why it's necessary. Otherwise, it just brings up the question "what changed?" 😄 |
Piror to this patch, the reduce code try to applied arithematic operations on a sendbuf, even when it
is MPI_IN_PLACE. this patch addressed the issue.