(self, inp)
| 21 | return linear |
| 22 | |
| 23 | def forward(self, inp): |
| 24 | w_qat = self.apply_quant_weight(self.weight) |
| 25 | b_qat = self.apply_quant_bias(self.bias, inp, w_qat) |
| 26 | return self.apply_quant_activation(self.calc_linear(inp, w_qat, b_qat)) |
| 27 | |
| 28 | @classmethod |
| 29 | def from_float_module(cls, float_module: Float.Linear): |
nothing calls this directly
no test coverage detected