1
1

Merge pull request #6417 from abouteiller/bugfix/cart_create_cid

Cart/Graph create would not run the next_cid  algorithm
Этот коммит содержится в:
Howard Pritchard 2019-02-22 13:05:59 -07:00 коммит произвёл GitHub
родитель d6cdbdfd39 fb17115ba9
Коммит 9b3a9c2579
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -1892,6 +1892,10 @@ int ompi_comm_enable(ompi_communicator_t *old_comm,
{
int ret = OMPI_SUCCESS;
/* set the rank information before calling nextcid */
new_comm->c_local_group->grp_my_rank = new_rank;
new_comm->c_my_rank = new_rank;
/* Determine context id. It is identical to f_2_c_handle */
ret = ompi_comm_nextcid (new_comm, old_comm, NULL, NULL, NULL, false,
OMPI_COMM_CID_INTRA);