(self)
| 583 | return torch.device("cpu") |
| 584 | |
| 585 | def __enter__(self) -> "StatefulCodecDecoder": |
| 586 | self._ctx = self.audio_tokenizer.streaming(batch_size=1) |
| 587 | self._ctx.__enter__() |
| 588 | return self |
| 589 | |
| 590 | def __exit__(self, exc_type, exc, tb) -> None: |
| 591 | if self._ctx is not None: |
nothing calls this directly
no outgoing calls
no test coverage detected