From e9df2320efbc3b91cbd05b2f159022dd5ab3bc76 Mon Sep 17 00:00:00 2001 From: Ioannis Assiouras Date: Mon, 27 Nov 2023 11:50:13 +0000 Subject: [PATCH] SWDEV-433821 - Make hipStreamWaitEvent flags a default argument Change-Id: I95a70b76fb492e141db8b4776d8945c9d13bd177 --- include/hip/hip_runtime_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/hip/hip_runtime_api.h b/include/hip/hip_runtime_api.h index 69613c18e1..9e9e1eaa77 100644 --- a/include/hip/hip_runtime_api.h +++ b/include/hip/hip_runtime_api.h @@ -2354,7 +2354,7 @@ hipError_t hipStreamSynchronize(hipStream_t stream); * * @see hipStreamCreate, hipStreamCreateWithFlags, hipStreamCreateWithPriority, hipStreamSynchronize, hipStreamDestroy */ -hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int flags); +hipError_t hipStreamWaitEvent(hipStream_t stream, hipEvent_t event, unsigned int flags __dparm(0)); /** * @brief Return flags associated with this stream. *