(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32"))
| 1209 | class Greater: |
| 1210 | @R.function |
| 1211 | def main(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32")) -> R.Tensor((4, 3, 2, 3), "bool"): |
| 1212 | gv: R.Tensor((4, 3, 2, 3), "bool") = R.greater(x, y) |
| 1213 | return gv |
| 1214 | |
| 1215 | @tvm.script.ir_module |
| 1216 | class Expected: |