From ae718c7d8c95131052ed092fd8d74e30f828b8b8 Mon Sep 17 00:00:00 2001 From: Aaron Teo Date: Tue, 23 Sep 2025 14:26:48 +0800 Subject: [PATCH] ggml-cpu: fix typo Signed-off-by: Aaron Teo --- ggml/src/ggml-cpu/arch/s390/quants.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml/src/ggml-cpu/arch/s390/quants.c b/ggml/src/ggml-cpu/arch/s390/quants.c index 2eb75d76eb..f05d7fd905 100644 --- a/ggml/src/ggml-cpu/arch/s390/quants.c +++ b/ggml/src/ggml-cpu/arch/s390/quants.c @@ -302,7 +302,7 @@ void ggml_vec_dot_mxfp4_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const vo const float32x4_t v_xyf = vec_float(v_xy); const float32x4_t v_d = vec_splats(0, GGML_E8M0_TO_FP32_HALF(x0->e) * GGML_CPU_FP16_TO_FP32(y0->d)); - acc = vec_madd(v_xyf, v_d, acc); + v_acc = vec_madd(v_xyf, v_d, v_acc); } sumf = vec_hsum_f32x4(v_acc);