(self, x)
| 69 | return linear(x, weight, bias, compute_mode=self.compute_mode) |
| 70 | |
| 71 | def forward(self, x): |
| 72 | return self.calc_linear(x, self.weight, self.bias) |
| 73 | |
| 74 | def _module_info_string(self) -> str: |
| 75 | return "in_features={}, out_features={}, bias={}".format( |
nothing calls this directly
no test coverage detected