(self, input)
| 212 | |
| 213 | class AddAndRoundModel(torch.nn.Module): |
| 214 | def forward(self, input): |
| 215 | return add_and_round_op(input) |
| 216 | |
| 217 | |
| 218 | # Implement the custom operator in ONNX using ONNX Script |
nothing calls this directly
no test coverage detected