(self, **kwargs)
| 684 | self.device = device |
| 685 | |
| 686 | def generate(self, **kwargs): |
| 687 | if self.device == "cuda": |
| 688 | raise RuntimeError("CUDA out of memory. Tried to allocate 38.00 MiB.") |
| 689 | return FakeOutputs() |
| 690 | |
| 691 | backends = { |
| 692 | "cuda": { |
nothing calls this directly
no test coverage detected