(c0: R.Tensor((16, 16), "float32"))
| 70 | |
| 71 | @R.function |
| 72 | def before(c0: R.Tensor((16, 16), "float32")): |
| 73 | cls = Module |
| 74 | lv0 = relax.call_tir(cls.addone, (c0,), R.Tensor((16, 16), dtype="float32")) |
| 75 | return lv0 |
| 76 | |
| 77 | @R.function |
| 78 | def expected(c1: R.Tensor((16, 16), "float32")): |
nothing calls this directly
no test coverage detected