mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
[BACKEND] Handle repetitive threads in scan op when the tensor dim is small (#2345)
https://github.com/openai/triton/issues/2298
This commit is contained in:
@@ -156,7 +156,7 @@ def test_avg_pool_bw():
|
||||
torch.testing.assert_close(out, out_ref)
|
||||
|
||||
|
||||
@pytest.mark.parametrize("RBLOCK", [32, 64, 128])
|
||||
@pytest.mark.parametrize("RBLOCK", [1, 16, 32, 64, 128])
|
||||
@pytest.mark.parametrize("num_warps", [1, 4])
|
||||
def test_scan2d_broadcast(RBLOCK, num_warps):
|
||||
@triton.jit(debug=True)
|
||||
|
||||
Reference in New Issue
Block a user