| 703 | Status CudaContext::Close() { return impl_->Close(); } |
| 704 | |
| 705 | Status CudaContext::Free(void* device_ptr, int64_t nbytes) { |
| 706 | return impl_->Free(device_ptr, nbytes); |
| 707 | } |
| 708 | |
| 709 | Result<std::shared_ptr<CudaBuffer>> CudaContext::OpenIpcBuffer( |
| 710 | const CudaIpcMemHandle& ipc_handle) { |
no outgoing calls