(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32"))
| 797 | class Atan2: |
| 798 | @R.function |
| 799 | def main(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32")) -> R.Tensor((4, 3, 2, 3), "float32"): |
| 800 | gv: R.Tensor((4, 3, 2, 3), "float32") = R.atan2(x, y) |
| 801 | return gv |
| 802 | |
| 803 | @tvm.script.ir_module |
| 804 | class Expected: |