From 5a141cbda4f8f42b4dab86103e98211d55f53201 Mon Sep 17 00:00:00 2001 From: Ioannis Assiouras Date: Mon, 27 Nov 2023 11:52:52 +0000 Subject: [PATCH] SWDEV-433821 - Make hipStreamWaitEvent flags a default argument Change-Id: I0192c1c5f69a1bbcc3f9919f76c947dc40737cb8 [ROCm/clr commit: a56219456247ad9c8ad0c8fc2f1a5fef937e9d3d] --- .../clr/hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/clr/hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h b/projects/clr/hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h index 19e767a0d5..0fb8bc2dfb 100644 --- a/projects/clr/hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h +++ b/projects/clr/hipamd/include/hip/amd_detail/amd_hip_runtime_pt_api.h @@ -153,7 +153,7 @@ hipError_t hipStreamSynchronize_spt(hipStream_t stream); hipError_t hipStreamGetPriority_spt(hipStream_t stream, int* priority); -hipError_t hipStreamWaitEvent_spt(hipStream_t stream, hipEvent_t event, unsigned int flags); +hipError_t hipStreamWaitEvent_spt(hipStream_t stream, hipEvent_t event, unsigned int flags __dparm(0)); hipError_t hipStreamGetFlags_spt(hipStream_t stream, unsigned int* flags);