(self, x, *args, **kwargs)
| 459 | return x |
| 460 | |
| 461 | def quantize(self, x, *args, **kwargs): |
| 462 | if self.vq_interface: |
| 463 | return x, None, [None, None, None] |
| 464 | return x |
| 465 | |
| 466 | def forward(self, x, *args, **kwargs): |
| 467 | return x |
no outgoing calls
no test coverage detected