(a: T.float32, b: T.float32)
| 105 | def test_control_flow_jump(): |
| 106 | @T.prim_func(s_tir=True) |
| 107 | def func(a: T.float32, b: T.float32): |
| 108 | if True: |
| 109 | T.evaluate(T.ret(a)) |
| 110 | T.evaluate(T.ret(b)) |
| 111 | |
| 112 | func = build_tir_func(func) |
| 113 | out = func(1.0, 2.0) |
no test coverage detected
searching dependent graphs…