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

Method CopyDeviceToHost

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

Source from the content-addressed store, hash-verified

669}
670
671Status CudaContext::CopyDeviceToHost(void* dst, uintptr_t src, int64_t nbytes) {
672 return impl_->CopyDeviceToHost(dst, src, nbytes);
673}
674
675Status CudaContext::CopyDeviceToHost(void* dst, const void* src, int64_t nbytes) {
676 return impl_->CopyDeviceToHost(dst, reinterpret_cast<uintptr_t>(src), nbytes);

Callers 3

CopyToHostMethod · 0.45
DoReadAtMethod · 0.45
CopyNonOwnedToMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected