(x: R.Tensor((1, 10), dtype="float32"), _io: R.Object)
| 41 | # fmt: off |
| 42 | @R.function |
| 43 | def test(x: R.Tensor((1, 10), dtype="float32"), _io: R.Object): |
| 44 | R.func_attr({"num_input": 2}) |
| 45 | with R.dataflow(): |
| 46 | square: R.Tensor((1, 10), dtype="float32") = R.square(x) |
| 47 | sqrt: R.Tensor((1, 10), dtype="float32") = R.sqrt(x) |
| 48 | gv1 = (square, sqrt), (_io,) |
| 49 | R.output(gv1) |
| 50 | return gv1 |
| 51 | # fmt: on |
| 52 | |
| 53 | m = Model() |
nothing calls this directly
no test coverage detected
searching dependent graphs…