From 0b6102649552ac34764d74bc35c36a5ece49fc7d Mon Sep 17 00:00:00 2001 From: "systems-assistant[bot]" <221163467+systems-assistant[bot]@users.noreply.github.com> Date: Fri, 5 Dec 2025 13:15:52 +0000 Subject: [PATCH] SWDEV-543350 - Add graph capture limitation for hipMemcpyWithStream (#462) --- projects/hip/include/hip/hip_runtime_api.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/projects/hip/include/hip/hip_runtime_api.h b/projects/hip/include/hip/hip_runtime_api.h index b2b4dc3e93..5df9f4d080 100644 --- a/projects/hip/include/hip/hip_runtime_api.h +++ b/projects/hip/include/hip/hip_runtime_api.h @@ -4652,6 +4652,8 @@ hipError_t hipMemcpy(void* dst, const void* src, size_t sizeBytes, hipMemcpyKind /** * @brief Memory copy on the stream. * It allows single or multiple devices to do memory copy on single or multiple streams. + * The operation is akin to hipMemcpyAsync + hipStreamSynchronize. + * Since it is a sync API, it is not allowed during graph capture. * * @param[out] dst Data being copy to * @param[in] src Data being copy from