-
Notifications
You must be signed in to change notification settings - Fork 885
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
OSC-RDMA: PSCW fix #9556
OSC-RDMA: PSCW fix #9556
Conversation
@@ -456,6 +456,11 @@ int ompi_osc_rdma_complete_atomic (ompi_win_t *win) | |||
OSC_RDMA_VERBOSE(MCA_BASE_VERBOSE_TRACE, "complete: %s", win->w_name); | |||
|
|||
OPAL_THREAD_LOCK(&module->lock); | |||
if (0 == ompi_group_size (sync->sync.pscw.group)) { |
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.
Wait! The group is not retained if it is empty. Use the sync->num_peers
instead, it's properly set in ompi_osc_rdma_start_atomic
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.
nice catch!
related to open-mpi#9540 Signed-off-by: Howard Pritchard <howardp@lanl.gov>
f248e09
to
e20108c
Compare
bot:ompi:retest |
@hjelmn this is a customer reported problem. please review. |
related to #9540
Signed-off-by: Howard Pritchard howardp@lanl.gov