1
1
Signed-off-by: Mikhail Brinskii <mikhailb@mellanox.com>
Этот коммит содержится в:
Mikhail Brinskii 2019-04-30 16:49:11 +03:00
родитель c4c99457db
Коммит d4843b1651
4 изменённых файлов: 6 добавлений и 6 удалений

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

@ -172,7 +172,7 @@ OSHMEM_DECLSPEC void shmemx_int64_prod_to_all(int64_t *target, const int64_t *so
* exchanges size bytes of data with all other PEs in the OpenSHMEM job.
* @param dest A symmetric data object that is large enough to receive
* size bytes of data.
* size bytes of data from each PE in the OpenSHMEM job.
* @param source A symmetric data object that contains size bytes of data
* for each PE in the OpenSHMEM job.
* @param size The number of bytes to be sent to each PE in the job.

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

@ -329,7 +329,7 @@ typedef int (*mca_spml_base_module_send_fn_t)(void *buf,
* shmemx_alltoall_global calls.
*
* @param dest A symmetric data object that is large enough to receive
* size bytes of data.
* size bytes of data from each PE in the OpenSHMEM job.
* @param source A symmetric data object that contains size bytes of data
* for each PE in the OpenSHMEM job.
* @param size The number of bytes to be sent to each PE in the job.

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

@ -840,14 +840,14 @@ static int mca_spml_ucx_create_aux_ctx(void)
if (rand_dci_supp) {
pthread_mutex_lock(&mca_spml_ucx.ctx_create_mutex);
opal_setenv("UCX_DC_MLX5_TX_POLICY", "rand", 1, &environ);
opal_setenv("UCX_DC_MLX5_TX_POLICY", "rand", 0, &environ);
}
rc = mca_spml_ucx_ctx_create_common(SHMEM_CTX_PRIVATE, &mca_spml_ucx.aux_ctx);
if (rand_dci_supp) {
pthread_mutex_unlock(&mca_spml_ucx.ctx_create_mutex);
opal_unsetenv("UCX_DC_MLX5_TX_POLICY", &environ);
pthread_mutex_unlock(&mca_spml_ucx.ctx_create_mutex);
}
return rc;