From 2bffcb666f9e95381aad6c12898e4c6078a39a92 Mon Sep 17 00:00:00 2001 From: RuibinCheung Date: Sat, 9 May 2026 06:16:34 +0000 Subject: [PATCH] chore: remove ck tensorwise pytest skip --- tests/pytorch/ops/test_grouped_gemm_fp8.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tests/pytorch/ops/test_grouped_gemm_fp8.py b/tests/pytorch/ops/test_grouped_gemm_fp8.py index 64d54f12f..c25b56966 100644 --- a/tests/pytorch/ops/test_grouped_gemm_fp8.py +++ b/tests/pytorch/ops/test_grouped_gemm_fp8.py @@ -395,10 +395,6 @@ def test_grouped_gemm_fp8_blockwise_triton_deterministic( @pytest.mark.parametrize("backend", [None, BackendType.CK, BackendType.HIPBLASLT, BackendType.TRITON]) @pytest.mark.parametrize("auto_tune", [False, True]) def test_grouped_gemm_fp8_tensorwise(B, M, NK, ori_dtype, format, trans_b, balance, backend, auto_tune): - # FIXME(ruibin): CK backend has numerical issues. - if backend == BackendType.CK or backend == None: - pytest.skip("CK backend has numerical issues currently") - if backend == BackendType.TRITON and format == Format.HYBRID: pytest.skip("TRITON backend not support HYBRID format currently")