(self, input: Tensor)
| 32 | self.bias = bias |
| 33 | |
| 34 | def forward(self, input: Tensor) -> Tensor: |
| 35 | weight = decompress(self.weight, default_compression_config) |
| 36 | return F.linear(input, weight, self.bias) |
| 37 | |
| 38 | |
| 39 | def compress_module(module, target_device): |
nothing calls this directly
no test coverage detected