(self, input)
| 1951 | self.bias = None |
| 1952 | |
| 1953 | def forward(self, input): |
| 1954 | return torch.nn.functional.layer_norm(input, self.shape, self.weight, self.bias, 1e-5) |
| 1955 | |
| 1956 | @tvm.script.ir_module |
| 1957 | class expected2: |
nothing calls this directly
no test coverage detected