(
X: T.Buffer([T.int64(2), T.int64(4)], "float32"),
Y: T.Buffer((), "float32"),
Z: T.Buffer([T.int64(2), T.int64(4)], "float32"),
)
| 1834 | class Module: |
| 1835 | @T.prim_func(s_tir=True) |
| 1836 | def add( |
| 1837 | X: T.Buffer([T.int64(2), T.int64(4)], "float32"), |
| 1838 | Y: T.Buffer((), "float32"), |
| 1839 | Z: T.Buffer([T.int64(2), T.int64(4)], "float32"), |
| 1840 | ): |
| 1841 | T.evaluate(0) |
| 1842 | |
| 1843 | @R.function |
| 1844 | def main(x: R.Tensor((2, 4), dtype="float32")) -> R.Tensor((10,), dtype="float32"): |
no test coverage detected