(self, input)
| 32 | self.bias = bias |
| 33 | |
| 34 | def forward(self, input): |
| 35 | return F.linear(input.to(self.weight.dtype), self.weight, self.bias) |
| 36 | |
| 37 | |
| 38 | def compress_module(module, target_device): |
nothing calls this directly
no outgoing calls
no test coverage detected