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