(self, x, weight, bias)
| 66 | init.zeros_(self.bias) |
| 67 | |
| 68 | def calc_linear(self, x, weight, bias): |
| 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) |
no test coverage detected