-
Notifications
You must be signed in to change notification settings - Fork 0
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
Resilient pmix #1
base: resilient_pmix
Are you sure you want to change the base?
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.
Please replace all the non essential pmix_output and pml_output_verbose by PMIX_OUTPUT_VERBOSE
@@ -290,6 +293,8 @@ PMIX_EXPORT pmix_status_t PMIx_server_init(pmix_server_module_t *module, | |||
PMIX_RELEASE_THREAD(&pmix_global_lock); | |||
return PMIX_ERR_INIT; | |||
} | |||
pmix_perrmgr.start(); | |||
//pmix_pdetector.start(); |
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.
Why is this commented out ? Who starts the detector ?
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 detector is a new one in pmix which should be based on a P2P communication(for heartbeat), but pmix doesn't have one. I write this one ahead. The working one is in orte.
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.
For the output, i will replace all pmix_output.
Also some people use pmix_output_verbose, others use PMIX_OUTPUT_VERBOSE, i want to make sure which one do you prefer ?
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.
It''
s not really a matter of preference. PMIX_OUTPUT_VERBOSE gets compiled out in a release build, when the others are always available. Thus, everything that is at the level where only a developer can understand the intricacies should be PMIX_OUTPUT_VERBOSE, and pmix_output_verbose should be used for everything else.
No description provided.