(
input_1: R.Tensor((4, 128, 256), dtype="float32"),
input_2: R.Tensor((4, 256, 512), dtype="float32"),
)
| 2632 | class Expected: |
| 2633 | @R.function |
| 2634 | def main( |
| 2635 | input_1: R.Tensor((4, 128, 256), dtype="float32"), |
| 2636 | input_2: R.Tensor((4, 256, 512), dtype="float32"), |
| 2637 | ) -> R.Tuple(R.Tensor((4, 128, 512), dtype="float32")): |
| 2638 | # block 0 |
| 2639 | with R.dataflow(): |
| 2640 | lv: R.Tensor((4, 128, 512), dtype="float32") = R.matmul( |
| 2641 | input_1, input_2, out_dtype="float32" |
| 2642 | ) |
| 2643 | gv: R.Tuple(R.Tensor((4, 128, 512), dtype="float32")) = (lv,) |
| 2644 | R.output(gv) |
| 2645 | return gv |
| 2646 | |
| 2647 | example_args = ( |
| 2648 | torch.randn(4, 128, 256, dtype=torch.float32), |
nothing calls this directly
no test coverage detected