(T_full: T.Buffer((T.int64(4),), "float32"))
| 368 | class TestKillObject: |
| 369 | @T.prim_func(s_tir=True) |
| 370 | def full(T_full: T.Buffer((T.int64(4),), "float32")): |
| 371 | T.func_attr({"global_symbol": "full", "tirx.noalias": True}) |
| 372 | for ax0 in range(T.int64(4)): |
| 373 | with T.sblock("T_full"): |
| 374 | v_ax0 = T.axis.spatial(T.int64(4), ax0) |
| 375 | T.reads() |
| 376 | T.writes(T_full[v_ax0]) |
| 377 | T_full[v_ax0] = T.float32(0) |
| 378 | |
| 379 | @T.prim_func(s_tir=True) |
| 380 | def full1(T_full: T.Buffer((T.int64(4),), "float32")): |
no test coverage detected