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