-
Notifications
You must be signed in to change notification settings - Fork 937
pmix: added check for pmix fence status #5498
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
Conversation
eac3cc0 to
8d02007
Compare
d585cfa to
221dc37
Compare
|
The IBM CI (GNU Compiler) build failed! Please review the log, linked below. Gist: https://gist.github.com/c7391e8f58032139aeb5325d6e23f29c |
|
The IBM CI (XL Compiler) build failed! Please review the log, linked below. Gist: https://gist.github.com/0fe463389af62da504c537cf69f68475 |
|
The IBM CI (PGI Compiler) build failed! Please review the log, linked below. Gist: https://gist.github.com/1d1f14f27d9637dd6c832ac665a10a75 |
9f6cc79 to
a9bb90b
Compare
| if (OMPI_SUCCESS != (ret = opal_pmix.fence_nb(NULL, 0, fence_cbfunc, | ||
| (void*)&active))) { | ||
| OMPI_ERROR_LOG(ret); | ||
| } |
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.
If the fence operation returns an error, then the wait_for_completion is never going to happen. You need to skip that step.
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.
Thanks. Fixed.
|
@karasevb we use the release stream tags on the underlying issue and for a PR into a non-master branch. |
Signed-off-by: Boris Karasev <karasev.b@gmail.com>
a9bb90b to
5768336
Compare
Closes #5086