(self, input_x, input_y)
| 78 | # Create a model that uses the operator torch.ops.aten.add.Tensor |
| 79 | class Model(torch.nn.Module): |
| 80 | def forward(self, input_x, input_y): |
| 81 | return torch.ops.aten.add.Tensor(input_x, input_y) |
| 82 | |
| 83 | |
| 84 | # NOTE: The function signature (including parameter names) must match the signature of the unsupported PyTorch operator. |
nothing calls this directly
no outgoing calls
no test coverage detected