ggml-cpu: missing s = sumf

Signed-off-by: Aaron Teo <aaron.teo1@ibm.com>
This commit is contained in:
Aaron Teo 2025-09-23 02:53:59 +08:00
parent 618ef4679a
commit 6549e3bcb7
No known key found for this signature in database
1 changed files with 2 additions and 0 deletions

View File

@ -333,6 +333,8 @@ void ggml_vec_dot_mxfp4_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const vo
sumf += GGML_E8M0_TO_FP32(x0->e) * GGML_CPU_FP16_TO_FP32(y0->d) * vec_hsum_i32x4(v_xy);
}
*s = sumf;
#else
UNUSED(x);
UNUSED(y);