(x: R.Tensor((2, 2), dtype="float32"))
| 145 | class Expected: |
| 146 | @R.function |
| 147 | def main(x: R.Tensor((2, 2), dtype="float32")) -> R.Tensor((2, 2), dtype="float32"): |
| 148 | R.func_attr({"num_input": 1}) |
| 149 | with R.dataflow(): |
| 150 | gv: R.Tensor((2, 2), dtype="float32") = R.add(x, R.const(1.0, "float32")) |
| 151 | R.output(gv) |
| 152 | return gv |
| 153 | |
| 154 | verify(AddOne2D, Expected) |
| 155 |
no test coverage detected