(self, stream: int)
| 120 | def test_cuda_stream_handling() -> None: |
| 121 | class MyDummyStream: |
| 122 | def __init__(self, stream: int) -> None: |
| 123 | self.stream = stream |
| 124 | |
| 125 | def __cuda_stream__(self) -> tuple[str, int]: |
| 126 | return ("cuda", self.stream) |
nothing calls this directly
no outgoing calls
no test coverage detected