(self, x, *args, **kwargs)
| 437 | return x |
| 438 | |
| 439 | def quantize(self, x, *args, **kwargs): |
| 440 | if self.vq_interface: |
| 441 | return x, None, [None, None, None] |
| 442 | return x |
| 443 | |
| 444 | def forward(self, x, *args, **kwargs): |
| 445 | return x |
no outgoing calls
no test coverage detected