(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32"))
| 1032 | class Equal: |
| 1033 | @R.function |
| 1034 | def main(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32")) -> R.Tensor((4, 3, 2, 3), "bool"): |
| 1035 | gv: R.Tensor((4, 3, 2, 3), "bool") = R.equal(x, y) |
| 1036 | return gv |
| 1037 | |
| 1038 | @tvm.script.ir_module |
| 1039 | class Expected: |