(self, x, *args, **kwargs)
| 211 | return x |
| 212 | |
| 213 | def quantize(self, x, *args, **kwargs): |
| 214 | if self.vq_interface: |
| 215 | return x, None, [None, None, None] |
| 216 | return x |
| 217 | |
| 218 | def forward(self, x, *args, **kwargs): |
| 219 | return x |
no outgoing calls
no test coverage detected