(self, input: torch.Tensor)
| 144 | self.weight = QuantizedParameter(self.weight.data, quantization_config=quantization_config) |
| 145 | |
| 146 | def forward(self, input: torch.Tensor) -> torch.Tensor: |
| 147 | return F.linear(input, self.weight.dequantized(), self.bias) |
nothing calls this directly
no test coverage detected