1
1

ofi mtl: fix problem with mrecv

the ofi mtl mrecv was not properly setting the message in/out
arg to MPI_MRECV to MPI_MESSAGE_NULL.

Signed-off-by: Howard Pritchard <hppritcha@gmail.com>
(cherry picked from commit e6f81ed6d6f4940c95732451d6ebf4d39cde1591)
Этот коммит содержится в:
Howard Pritchard 2020-08-18 15:39:19 -06:00 коммит произвёл Howard Pritchard
родитель f63d6e2335
Коммит 833f8b2b41

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

@ -955,6 +955,8 @@ ompi_mtl_ofi_imrecv(struct mca_mtl_base_module_t *mtl,
return ompi_mtl_ofi_get_error(ret);
}
*message = MPI_MESSAGE_NULL;
return OMPI_SUCCESS;
}