| 234 | int64_t CudaDevice::total_memory() const { return impl_->props.total_memory_; } |
| 235 | |
| 236 | int CudaDevice::handle() const { return impl_->props.handle_; } |
| 237 | |
| 238 | Result<std::shared_ptr<CudaDevice>> CudaDevice::Make(int device_number) { |
| 239 | ARROW_ASSIGN_OR_RAISE(auto manager, CudaDeviceManager::Instance()); |
no test coverage detected