1
1

Merge pull request #5186 from hoopoepg/topic/ucx-amo-error-msg

MCA/UCX: fixed error messages for incorrect msg size
Этот коммит содержится в:
Yossi Itigin 2018-05-29 15:54:02 +03:00 коммит произвёл GitHub
родитель 9adc38c963 4495da5cb9
Коммит 976cd5e307
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -63,7 +63,7 @@ int mca_atomic_ucx_cswap(void *target,
return ucx_status_to_oshmem(status);
err_size:
ATOMIC_ERROR("[#%d] Type size must be 1/2/4 or 8 bytes.", my_pe);
ATOMIC_ERROR("[#%d] Type size must be 4 or 8 bytes.", my_pe);
return OSHMEM_ERROR;
}

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

@ -63,6 +63,6 @@ int mca_atomic_ucx_fadd(void *target,
return ucx_status_to_oshmem(status);
err_size:
ATOMIC_ERROR("[#%d] Type size must be 1/2/4 or 8 bytes.", my_pe);
ATOMIC_ERROR("[#%d] Type size must be 4 or 8 bytes.", my_pe);
return OSHMEM_ERROR;
}