(self, x, *args, **kwargs)
| 557 | return x |
| 558 | |
| 559 | def quantize(self, x, *args, **kwargs): |
| 560 | if self.vq_interface: |
| 561 | return x, None, [None, None, None] |
| 562 | return x |
| 563 | |
| 564 | def forward(self, x, *args, **kwargs): |
| 565 | return x |
no outgoing calls
no test coverage detected