-
Notifications
You must be signed in to change notification settings - Fork 937
pmix: add "pmix*_library_version" info MCA var #4992
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
pmix: add "pmix*_library_version" info MCA var #4992
Conversation
Simple MCA vars for ext1, ext2, and pmix3 components to reflect what the underlying PMIx library version is. For example: ``` $ ompi_info --param pmix pmix3x --parsable --level 9 | grep library_version mca:pmix:pmix3x:param:pmix_pmix3x_library_version:value:PMIx library version 3.0.0 (embedded in Open MPI) mca:pmix:pmix3x:param:pmix_pmix3x_library_version:source:default mca:pmix:pmix3x:param:pmix_pmix3x_library_version:status:writeable mca:pmix:pmix3x:param:pmix_pmix3x_library_version:level:4 mca:pmix:pmix3x:param:pmix_pmix3x_library_version:help:Version of the underlying PMIx library mca:pmix:pmix3x:param:pmix_pmix3x_library_version:deprecated:no mca:pmix:pmix3x:param:pmix_pmix3x_library_version:type:string mca:pmix:pmix3x:param:pmix_pmix3x_library_version:disabled:false ``` Signed-off-by: Jeff Squyres <jsquyres@cisco.com>
|
|
@hjelmn In this PR, I created an |
|
Hmm, I thought we made sure the settable flag was unset on constant scope. |
|
bot:ibm:pgi:retest |
jjhursey
left a comment
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.
This looks good to me. Thanks!
|
@jjhursey Does this stuff need to be added to s1/s2/etc.? |
|
I don't know if s1 and s2 have versions we need to pull. I think just focusing on the pmix components is enough for now. |
Simple MCA vars for ext1, ext2, and pmix3 components to reflect what
the underlying PMIx library version is. For example:
Signed-off-by: Jeff Squyres jsquyres@cisco.com