(self, input_x)
| 137 | |
| 138 | class GeluModel(torch.nn.Module): |
| 139 | def forward(self, input_x): |
| 140 | return torch.ops.aten.gelu(input_x) |
| 141 | |
| 142 | |
| 143 | # Create a namespace for the custom operator using ONNX Script |
nothing calls this directly
no outgoing calls
no test coverage detected