You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update strings of "Open MPI" to instead use OMPI_IDENT_NAME
There are a number of other places to do this, but starting with this.
Signed-off-by: Austen Lauria <[email protected]>
Co-authored-by: Joseph Schuchart <[email protected]>
Co-authored-by: Jeff Squyres <[email protected]>
fprintf(stderr, "WARNING: Open MPI is unable to find " \
70
+
fprintf(stderr, "WARNING: " OMPI_IDENT_STRING " is unable to find " \
71
71
"field " #field_name " in the " #struct_name \
72
-
" type. This can happen can if Open MPI is built " \
72
+
" type. This can happen if " OMPI_IDENT_STRING " is built " \
73
73
"without debugging information, or is stripped " \
74
74
"after building.\n"); \
75
75
} \
@@ -512,7 +512,7 @@ int ompi_fill_in_type_info(mqs_image *image, char **message)
512
512
* did our best but here we're at our limit. Give up!
513
513
*/
514
514
*message=missing_in_action;
515
-
fprintf(stderr, "WARNING: Open MPI is unable to find debugging information about the \"%s\" type. This can happen if Open MPI was built without debugging information, or was stripped after building.\n",
515
+
fprintf(stderr, "WARNING: "OMPI_IDENT_STRING" is unable to find debugging information about the \"%s\" type. This can happen if "OMPI_IDENT_STRING" was built without debugging information, or was stripped after building.\n",
516
516
missing_in_action);
517
517
returnerr_missing_type;
518
518
}
@@ -634,7 +634,7 @@ int ompi_fetch_opal_pointer_array_item(mqs_process *proc, mqs_taddr_t addr,
"If mpi_show_mca_params is true, setting this string to a valid filename tells Open MPI to dump all the MCA parameter values into a file suitable for reading via the mca_param_files parameter (good for reproducability of MPI jobs)",
249
+
"If mpi_show_mca_params is true, setting this string to a valid filename tells "
250
+
OMPI_IDENT_STRING" to dump all the MCA parameter values into a file suitable for reading via the mca_param_files parameter (good for reproducability of MPI jobs)",
250
251
MCA_BASE_VAR_TYPE_STRING, NULL, 0, 0,
251
252
OPAL_INFO_LVL_9,
252
253
MCA_BASE_VAR_SCOPE_READONLY,
@@ -272,7 +273,7 @@ int ompi_mpi_register_params(void)
"Whether this Open MPI installation supports storing of data in MPI groups in \"sparse\" formats (good for extremely large process count MPI jobs that create many communicators/groups)",
276
+
"Whether this "OMPI_IDENT_STRING" installation supports storing of data in MPI groups in \"sparse\" formats (good for extremely large process count MPI jobs that create many communicators/groups)",
0 commit comments