(self, x, *args, **kwargs)
| 218 | return x |
| 219 | |
| 220 | def quantize(self, x, *args, **kwargs): |
| 221 | if self.vq_interface: |
| 222 | return x, None, [None, None, None] |
| 223 | return x |
| 224 | |
| 225 | def forward(self, x, *args, **kwargs): |
| 226 | return x |
no outgoing calls
no test coverage detected