SWDEV-277423 - Correct hipStreamWaitValue doxygen format

Change-Id: I8914c14cb7a05d5d0bdfa054af14765c872c70a6


[ROCm/clr commit: cc69e95c1a]
Этот коммит содержится в:
jujiang
2021-03-16 19:14:40 -04:00
коммит произвёл Julia Jiang
родитель 2e89139b49
Коммит 88c0959afb
+3
Просмотреть файл
@@ -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'.