(x: R.Tensor((2, 3), "float32"))
| 695 | class Module: |
| 696 | @R.function |
| 697 | def main(x: R.Tensor((2, 3), "float32")): |
| 698 | with R.dataflow(): |
| 699 | y = R.call_dps_packed("func_packed_dps", x, R.Tensor((2, 3), "float32")) |
| 700 | R.output(y) |
| 701 | return y |
| 702 | |
| 703 | # FuseTIR should do no change to it. |
| 704 | _check(Module, Module) |
nothing calls this directly
no test coverage detected