| 686 | } |
| 687 | |
| 688 | Status CudaContext::CopyDeviceToAnotherDevice(const std::shared_ptr<CudaContext>& dst_ctx, |
| 689 | uintptr_t dst, uintptr_t src, |
| 690 | int64_t nbytes) { |
| 691 | return impl_->CopyDeviceToAnotherDevice(dst_ctx, dst, src, nbytes); |
| 692 | } |
| 693 | |
| 694 | Status CudaContext::CopyDeviceToAnotherDevice(const std::shared_ptr<CudaContext>& dst_ctx, |
| 695 | void* dst, const void* src, |
no outgoing calls
no test coverage detected