Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion opal/mca/common/ofi/common_ofi.c
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,10 @@ static uint32_t get_package_rank(opal_process_info_t *process_info)
&pname, &locality_string, PMIX_STRING);
if (PMIX_SUCCESS != rc || NULL == locality_string) {
// If we don't have information about locality, fall back to procid
opal_show_help("help-common-ofi.txt", "package_rank failed", true);
opal_output_verbose(1, opal_common_ofi.output,
"%s:%d:Unable to get locality string from local peers.\n"
"This may negatively impact performance.\n",
__FILE__, __LINE__);
return (uint32_t)process_info->myprocid.rank;
}

Expand Down