| 33 | Stream() = default; |
| 34 | |
| 35 | static Stream Current() |
| 36 | { |
| 37 | py::object temp = py::reinterpret_borrow<py::object>(capi().Stream_GetCurrent()); |
| 38 | CheckCAPIError(); |
| 39 | NVCV_ASSERT(temp.is_none() == false); |
| 40 | return Stream(temp); |
| 41 | } |
| 42 | |
| 43 | cudaStream_t cudaHandle() const |
| 44 | { |
nothing calls this directly
no test coverage detected