(x1: R.Tensor((10, 5), "float32"), y1: R.Tensor((10, 5), "float32"))
| 67 | class Before: |
| 68 | @R.function |
| 69 | def main(x1: R.Tensor((10, 5), "float32"), y1: R.Tensor((10, 5), "float32")) -> R.Tensor( |
| 70 | (10, 5), "float32" |
| 71 | ): |
| 72 | @R.function |
| 73 | def inner( |
| 74 | x2: R.Tensor((10, 5), "float32"), y2: R.Tensor((10, 5), "float32") |
| 75 | ) -> R.Tensor((10, 5), "float32"): |
| 76 | s: R.Tensor((10, 5), "float32") = R.add(x2, y2) |
| 77 | return s |
| 78 | |
| 79 | gv1: R.Tensor((10, 5), "float32") = inner(x1, y1) |
| 80 | return gv1 |
| 81 | |
| 82 | before = Before |
| 83 | expected = Expected |
no test coverage detected