From 5b26ad3bbfefc30256f68d35e07c5893ba139797 Mon Sep 17 00:00:00 2001 From: mtgu0705 Date: Tue, 13 May 2025 02:19:13 -0500 Subject: [PATCH] update CE elementOP --- example/67_gemm_microscaling/moe_gemm2_xdl_mx_fp4.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/example/67_gemm_microscaling/moe_gemm2_xdl_mx_fp4.cpp b/example/67_gemm_microscaling/moe_gemm2_xdl_mx_fp4.cpp index ac9f7daad4..59e623151a 100644 --- a/example/67_gemm_microscaling/moe_gemm2_xdl_mx_fp4.cpp +++ b/example/67_gemm_microscaling/moe_gemm2_xdl_mx_fp4.cpp @@ -68,11 +68,7 @@ struct MulABScaleExpertWeight (void)d1; (void)d2; -#if CK_USE_PK4_LAYOUT_SHUFFLE e = ck::type_convert(c); -#else - e = ck::type_convert(c); -#endif } // for reference cpu template <> @@ -80,11 +76,7 @@ struct MulABScaleExpertWeight float& e, const float& c, const float& d0, const float& d1, const float& d2) const { // for reference cpu -#if CK_USE_PK4_LAYOUT_SHUFFLE e = ck::type_convert(c * d0 * d1 * d2); -#else - e = ck::type_convert(c * d0 * d1 * d2); -#endif } };