(self)
| 654 | def alloc_on_cuda(size: int, alignment: int, stream: int | None): |
| 655 | return torch.empty(size, device="cuda", dtype=torch.int8) |
| 656 | |
| 657 | |
| 658 | class Sampler(Protocol): |
| 659 | def prepare(self) -> "Sampler": |
| 660 | raise NotImplementedError() |
nothing calls this directly
no outgoing calls
no test coverage detected