| 168 | friend class CudaDevice; |
| 169 | |
| 170 | explicit Stream(std::shared_ptr<CudaContext> ctx, CUstream* st, |
| 171 | Device::Stream::release_fn_t release_fn) |
| 172 | : Device::Stream(reinterpret_cast<void*>(st), release_fn), |
| 173 | context_{std::move(ctx)} {} |
| 174 | |
| 175 | // disable construction from literal 0 |
| 176 | explicit Stream(std::shared_ptr<CudaContext>, int, |
no outgoing calls
no test coverage detected