(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32"))
| 387 | class FloorDivide: |
| 388 | @R.function |
| 389 | def main(x: R.Tensor((1, 2, 3), "float32"), y: R.Tensor((4, 3, 2, 1), "float32")) -> R.Tensor((4, 3, 2, 3), "float32"): |
| 390 | gv: R.Tensor((4, 3, 2, 3), "float32") = R.floor_divide(x, y) |
| 391 | return gv |
| 392 | |
| 393 | @tvm.script.ir_module |
| 394 | class Expected: |
nothing calls this directly
no test coverage detected