From 56ee3f4f8d0bfaf2d8e60e5f13a286ecc851aceb Mon Sep 17 00:00:00 2001 From: Lei Zhang Date: Fri, 22 Nov 2024 17:49:05 +0000 Subject: [PATCH] [AMD] Re-enable overflow test in test_reduce_layouts --- python/test/unit/language/test_core.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/test/unit/language/test_core.py b/python/test/unit/language/test_core.py index e62373d6fb25..b2e0fa59a8d4 100644 --- a/python/test/unit/language/test_core.py +++ b/python/test/unit/language/test_core.py @@ -2666,8 +2666,6 @@ def test_reduce_layouts(M, N, src_layout, axis, epilogue_kind, dtype_str, add_ov pytest.skip("Skipping because tensor shape is smaller than M(f)maLayout instr_shape") if is_hip() and isinstance(src_layout, MfmaLayout) and ((M, N) == (128, 128)): pytest.skip("Skipping test because it runs out of shared memory") - if add_overflow_check is True and is_hip(): - pytest.skip("overflow check disabled on HIP while fixing issues") if reduce_op == "sum" and dtype_str == "float16" and M * N > 1024: pytest.skip("Skipping sum reduction on float16 due to accuracy issues")