From 9e91fd71d3965932711397c5eaa581ff7ffddf04 Mon Sep 17 00:00:00 2001 From: Ilya Panfilov Date: Fri, 21 Nov 2025 12:48:44 -0500 Subject: [PATCH] Re-enable supported GEMM configs --- tests/cpp/operator/test_cublaslt_gemm.cu | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/tests/cpp/operator/test_cublaslt_gemm.cu b/tests/cpp/operator/test_cublaslt_gemm.cu index 071470bdf..09d879efc 100644 --- a/tests/cpp/operator/test_cublaslt_gemm.cu +++ b/tests/cpp/operator/test_cublaslt_gemm.cu @@ -287,11 +287,15 @@ void performTest(const TestParams& params) { } if (prop.major == 9 && prop.minor == 4) //gfx942 specific hipblasLt limitations { +#if HIP_VERSION < 70100000 if (params.use_gelu && dtype == DType::kBFloat16 && !params.transa) { GTEST_SKIP() << "BF16 GEMM with GELU is not supported in current config"; } - if (has_fp8 && params.use_bias && dtype == DType::kFloat8E4M3 && !fp8_gelu_fusion_config) { - GTEST_SKIP() << "FP8 GEMM with bias and FP8 output is not supported in current config"; +#endif + if constexpr (std::is_same::value && std::is_same::value) { + if (params.use_bias && !fp8_gelu_fusion_config) { + GTEST_SKIP() << "GEMM with BF16 bias and FP8 output is not supported in current config"; + } } } #endif