1
1

Merge pull request #8244 from dancejic/oversub_message

common/ofi: fixing error message to be a debug output
Этот коммит содержится в:
Raghu Raja 2020-12-23 11:18:22 -08:00 коммит произвёл GitHub
родитель c752534e43 5af8497a05
Коммит c8e1847372
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -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;
}