From 77499511aff73748ccb26efc3088aab4c4cf84f3 Mon Sep 17 00:00:00 2001 From: joyeamd Date: Sat, 27 Dec 2025 16:21:56 +0800 Subject: [PATCH] enable f8 tests (#3488) [ROCm/composable_kernel commit: a3916a8d16d6e8d676b890ea3f242a180aeef61b] --- .../test_gemm_pipeline_ut_cases.inc | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/test/ck_tile/gemm_weight_preshuffle/test_gemm_pipeline_ut_cases.inc b/test/ck_tile/gemm_weight_preshuffle/test_gemm_pipeline_ut_cases.inc index a6defa8ccd..005d0ba083 100644 --- a/test/ck_tile/gemm_weight_preshuffle/test_gemm_pipeline_ut_cases.inc +++ b/test/ck_tile/gemm_weight_preshuffle/test_gemm_pipeline_ut_cases.inc @@ -20,10 +20,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle) TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x128x128) { - if constexpr(std::is_same_v, F8>) - { - GTEST_SKIP() << "Skipping this test due to failures with F8"; - } constexpr int M = 128; constexpr int N = 128; constexpr int K = 128; @@ -48,11 +44,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x128x4096) TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x2048x128) { - if constexpr(std::is_same_v, F8>) - { - GTEST_SKIP() << "Skipping this test due to failures with F8"; - } - constexpr int M = 128; constexpr int N = 2048; constexpr int K = 128; @@ -77,11 +68,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_128x2048x4096) TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_1024x128x128) { - if constexpr(std::is_same_v, F8>) - { - GTEST_SKIP() << "Skipping this test due to failures with F8"; - } - constexpr int M = 1024; constexpr int N = 128; constexpr int K = 128; @@ -106,11 +92,6 @@ TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_1024x128x4096) TYPED_TEST(TEST_SUITE_NAME, GemmPreshuffle_1024x2048x128) { - if constexpr(std::is_same_v, F8>) - { - GTEST_SKIP() << "Skipping this test due to failures with F8"; - } - constexpr int M = 1024; constexpr int N = 2048; constexpr int K = 128;