()
| 140 | |
| 141 | |
| 142 | def test_factor_case3_fails(): |
| 143 | # RFC §8.6: warpid[2:6] crosses wg boundary unaligned |
| 144 | A = initial_A(warp_ext=16) |
| 145 | A = filter_narrow(A, WARP_FLAT, 2, 6) |
| 146 | assert A.warpid == AxisRange(4, 2) |
| 147 | with pytest.raises(ExecContextError, match="crosses warpgroup boundary"): |
| 148 | scope_switch(A, WARPGROUP) |
| 149 | |
| 150 | |
| 151 | # --------------------------------------------------------------------------- |
nothing calls this directly
no test coverage detected
searching dependent graphs…