(self, calibration_samples=None)
| 29 | |
| 30 | class CortexMQuantize(Quantize): |
| 31 | def __init__(self, calibration_samples=None): |
| 32 | quantizer = CortexMQuantizer() |
| 33 | super().__init__(quantizer, calibration_samples=calibration_samples) |
| 34 | |
| 35 | |
| 36 | class CortexMToEdge(ToEdge): |
nothing calls this directly
no test coverage detected