Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions include/hip/hip_runtime_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -4453,6 +4453,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
Expand Down
Loading