(self, x)
| 158 | self.out_features = out_features |
| 159 | |
| 160 | def forward(self, x): |
| 161 | flops.op(flops.op_linear, x.shape, self.weight.shape) |
| 162 | return linear_geglu(x, self.weight, self.bias) |
| 163 | |
| 164 | |
| 165 | class RMSNorm(nn.Module): |
nothing calls this directly
no test coverage detected