(inp_0: R.Tensor((1, 8, 10, 15), dtype="float32"))
| 619 | class expected: |
| 620 | @R.function |
| 621 | def main(inp_0: R.Tensor((1, 8, 10, 15), dtype="float32")) -> R.Tensor( |
| 622 | (1, 2, 20, 30), dtype="float32" |
| 623 | ): |
| 624 | with R.dataflow(): |
| 625 | lv: R.Tensor((1, 2, 20, 30), dtype="float32") = R.nn.pixel_shuffle( |
| 626 | inp_0, upscale_factor=2 |
| 627 | ) |
| 628 | gv: R.Tensor((1, 2, 20, 30), dtype="float32") = lv |
| 629 | R.output(gv) |
| 630 | return gv |
| 631 | |
| 632 | input_infos = [([1, 8, 10, 15], "float32")] |
| 633 | verify_model(PixelShuffle1(2), input_infos, {}, expected) |
no test coverage detected