(A, idx)
| 644 | def test_tir_macro_block_name_suffix(): |
| 645 | @T.inline |
| 646 | def operation(A, idx): |
| 647 | with T.sblock("op"): |
| 648 | v = T.axis.remap("S", [idx]) |
| 649 | A[v] = A[v] * T.float32(2) |
| 650 | |
| 651 | @T.prim_func(private=True, s_tir=True) |
| 652 | def func_w_macro(a: T.handle) -> None: |
no test coverage detected
searching dependent graphs…