Skip to content

Commit 627ebbb

Browse files
authored
[AMD] Disable overflow check while fixing issues (#5078)
These two tests causes significant CI runtime increase (10x) so disabling them to unblock while figuring out issues.
1 parent 053ced9 commit 627ebbb

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

python/test/unit/language/test_core.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2547,6 +2547,8 @@ def kernel(X, Y, N, BLOCK_M: tl.constexpr, BLOCK_N: tl.constexpr, NUM_PID_N: tl.
25472547
@pytest.mark.parametrize("axis", [0, 1])
25482548
@pytest.mark.parametrize("add_overflow_check", [False, True])
25492549
def test_scan_layouts(M, N, src_layout, axis, add_overflow_check, device, tmp_path: pathlib.Path):
2550+
if add_overflow_check is True and is_hip():
2551+
pytest.skip("overflow check disabled on HIP while fixing issues")
25502552

25512553
overflow_check = """
25522554
%17 = arith.extsi %arg2 : i32 to i64
@@ -2650,6 +2652,8 @@ def test_reduce_layouts(M, N, src_layout, axis, epilogue_kind, dtype_str, add_ov
26502652
pytest.skip("Skipping because tensor shape is smaller than M(f)maLayout instr_shape")
26512653
if is_hip() and isinstance(src_layout, MfmaLayout) and ((M, N) == (128, 128)):
26522654
pytest.skip("Skipping test because it runs out of shared memory")
2655+
if add_overflow_check is True and is_hip():
2656+
pytest.skip("overflow check disabled on HIP while fixing issues")
26532657
if reduce_op == "sum" and dtype_str == "float16" and M * N > 1024:
26542658
pytest.skip("Skipping sum reduction on float16 due to accuracy issues")
26552659

0 commit comments

Comments
 (0)