From 2258fa423c4eb5663852c613ebdd7933f32737bb Mon Sep 17 00:00:00 2001 From: German Andryeyev Date: Mon, 12 Jul 2021 12:37:24 -0400 Subject: [PATCH] SWDEV-293583 - correct a typo in hipStreamAttachMemAsync Change-Id: Ib9c634053a152353ae657a00fea4b072a824c5ba [ROCm/hip commit: a20ad647eab1fc25a296f0c8424b72ef100a87ab] --- projects/hip/include/hip/hip_runtime_api.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/hip/include/hip/hip_runtime_api.h b/projects/hip/include/hip/hip_runtime_api.h index 19bb2ede59..f8ba5655e9 100644 --- a/projects/hip/include/hip/hip_runtime_api.h +++ b/projects/hip/include/hip/hip_runtime_api.h @@ -2170,7 +2170,7 @@ hipError_t hipMemRangeGetAttributes(void** data, * @returns #hipSuccess, #hipErrorInvalidValue */ hipError_t hipStreamAttachMemAsync(hipStream_t stream, - hipDeviceptr_t* dev_ptr, + void* dev_ptr, size_t length __dparm(0), unsigned int flags __dparm(hipMemAttachSingle)); // end doxygen Managed Memory