(self, lhs: torch.Tensor, rhs: torch.Tensor)
| 6687 | def test_dtypes(torch_dtype, relax_dtype): |
| 6688 | class Model(Module): |
| 6689 | def forward(self, lhs: torch.Tensor, rhs: torch.Tensor): |
| 6690 | return torch.ops.aten.add(lhs, rhs) |
| 6691 | |
| 6692 | @tvm.script.ir_module |
| 6693 | class Expected: |