From 88c0959afb504981eefe6ef07622ac26f05c780a Mon Sep 17 00:00:00 2001 From: jujiang Date: Tue, 16 Mar 2021 19:14:40 -0400 Subject: [PATCH] SWDEV-277423 - Correct hipStreamWaitValue doxygen format Change-Id: I8914c14cb7a05d5d0bdfa054af14765c872c70a6 [ROCm/clr commit: cc69e95c1a335411afd8a661cce0641997068ecc] --- projects/clr/hipamd/include/hip/amd_detail/hip_runtime_api.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/projects/clr/hipamd/include/hip/amd_detail/hip_runtime_api.h b/projects/clr/hipamd/include/hip/amd_detail/hip_runtime_api.h index 9f04967164..c6106d45b2 100644 --- a/projects/clr/hipamd/include/hip/amd_detail/hip_runtime_api.h +++ b/projects/clr/hipamd/include/hip/amd_detail/hip_runtime_api.h @@ -1254,8 +1254,11 @@ hipError_t hipStreamAddCallback(hipStream_t stream, hipStreamCallback_t callback * not execute until the defined wait condition is true. * * hipStreamWaitValueGte: waits until *ptr&mask >= value + * * hipStreamWaitValueEq : waits until *ptr&mask == value + * * hipStreamWaitValueAnd: waits until ((*ptr&mask) & value) != 0 + * * hipStreamWaitValueNor: waits until ~((*ptr&mask) | (value&mask)) != 0 * * @note when using 'hipStreamWaitValueNor', mask is applied on both 'value' and '*ptr'.