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

Method CopyHostToDevice

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

Source from the content-addressed store, hash-verified

661}
662
663Status CudaContext::CopyHostToDevice(uintptr_t dst, const void* src, int64_t nbytes) {
664 return impl_->CopyHostToDevice(dst, src, nbytes);
665}
666
667Status CudaContext::CopyHostToDevice(void* dst, const void* src, int64_t nbytes) {
668 return impl_->CopyHostToDevice(reinterpret_cast<uintptr_t>(dst), src, nbytes);

Callers 4

CopyFromHostMethod · 0.45
FlushInternalMethod · 0.45
WriteMethod · 0.45
CopyNonOwnedFromMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected