MCPcopy Create free account
hub / github.com/apache/arrow / CopyDeviceToDevice

Method CopyDeviceToDevice

cpp/src/arrow/gpu/cuda_context.cc:679–681  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

677}
678
679Status CudaContext::CopyDeviceToDevice(uintptr_t dst, uintptr_t src, int64_t nbytes) {
680 return impl_->CopyDeviceToDevice(dst, src, nbytes);
681}
682
683Status CudaContext::CopyDeviceToDevice(void* dst, const void* src, int64_t nbytes) {
684 return impl_->CopyDeviceToDevice(reinterpret_cast<uintptr_t>(dst),

Callers 2

CopyFromDeviceMethod · 0.45
CopyNonOwnedFromMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected