(
x: R.Tensor([64, 32, 16], "float32"),
y: R.Prim("float32"),
)
| 171 | class Before: |
| 172 | @R.function |
| 173 | def main( |
| 174 | x: R.Tensor([64, 32, 16], "float32"), |
| 175 | y: R.Prim("float32"), |
| 176 | ): |
| 177 | gv = R.add(x, y) |
| 178 | return gv |
| 179 | |
| 180 | @I.ir_module(s_tir=True) |
| 181 | class Expected: |
nothing calls this directly
no test coverage detected