From 8941fec7ca03755372d8464cf513bd9843e75411 Mon Sep 17 00:00:00 2001 From: qazal Date: Mon, 15 Jun 2026 16:24:49 +0800 Subject: [PATCH] c --- extra/thunder/amd/gemm_fp8.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/thunder/amd/gemm_fp8.cpp b/extra/thunder/amd/gemm_fp8.cpp index 99e58118a7..e5c9282a70 100644 --- a/extra/thunder/amd/gemm_fp8.cpp +++ b/extra/thunder/amd/gemm_fp8.cpp @@ -359,7 +359,7 @@ __global__ __launch_bounds__(512, 2) void hk_fp8_gemm(bf16 *C_ptr, fp8e4m3 *A_pt #endif #if SCALE_MODE & 4 float g_scale = (*g_scale_ptr + 1e-08f) * (1.0f / 448.0f); - scale *= *g_scale; + scale *= g_scale; #endif mul(cA, cA, scale);