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