1
1

Merge pull request #7708 from mwheinz/master-7700

PSM2 update to use PRRTE instead of ORTE
Этот коммит содержится в:
Ralph Castain 2020-05-06 19:03:45 -07:00 коммит произвёл GitHub
родитель ac87e812e0 42b3541242
Коммит 698e6bb549
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
3 изменённых файлов: 3 добавлений и 3 удалений

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

@ -25,7 +25,7 @@ active on the node and the hardware is functioning.
Error: %s
#
[no uuid present]
Error obtaining unique transport key from ORTE (orte_precondition_transports %s
Error obtaining unique transport key from PMIX (PMIX_MCA_opa_precondition_transports %s
the environment).
Local host: %s

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

@ -101,7 +101,7 @@ int ompi_mtl_psm2_module_init(int local_rank, int num_local_procs) {
char env_string[256];
int rc;
generated_key = getenv(OPAL_MCA_PREFIX"orte_precondition_transports");
generated_key = getenv("OPA_TRANSPORT_KEY");
memset(uu, 0, sizeof(psm2_uuid_t));
if (!generated_key || (strlen(generated_key) != 33) ||

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

@ -348,7 +348,7 @@ get_local_rank(int *out_rank)
{
*out_rank = 0;
if (OMPI_NODE_RANK_INVALID == ompi_process_info.my_node_rank) {
if (UINT16_MAX == ompi_process_info.my_node_rank) {
return OMPI_ERROR;
}
*out_rank = (int)ompi_process_info.my_node_rank;