[llvm-branch-commits] [clang] [llvm] [Offload][Lang] Add blocking to LaunchKernel and Memcpy (PR #218049)
Kevin Sala Penades via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Thu Aug 27 12:03:16 PDT 2026
================
@@ -44,33 +45,32 @@ Error_t Free(void *DevPtr) {
}
Error_t Memcpy(void *Dst, const void *Src, size_t Size, MemcpyKind Kind) {
+ if (Kind != MemcpyHostToHost) {
----------------
kevinsala wrote:
What is the reason to skip synchronization for host-to-host?
https://github.com/llvm/llvm-project/pull/218049
More information about the llvm-branch-commits
mailing list