Skip to content

Commit f7e7539

Browse files
committed
ggml-cpu: fix typo for vec_splats
Signed-off-by: Aaron Teo <[email protected]>
1 parent ae718c7 commit f7e7539

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml/src/ggml-cpu/arch/s390/quants.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ void ggml_vec_dot_mxfp4_q8_0(int n, float * GGML_RESTRICT s, size_t bs, const vo
300300

301301
const int32x4_t v_xy = ggml_vec_dot(ggml_vec_dot(vec_splats(0), v_xl, v_yl), v_xh, v_yh);
302302
const float32x4_t v_xyf = vec_float(v_xy);
303-
const float32x4_t v_d = vec_splats(0, GGML_E8M0_TO_FP32_HALF(x0->e) * GGML_CPU_FP16_TO_FP32(y0->d));
303+
const float32x4_t v_d = vec_splats(GGML_E8M0_TO_FP32_HALF(x0->e) * GGML_CPU_FP16_TO_FP32(y0->d));
304304

305305
v_acc = vec_madd(v_xyf, v_d, v_acc);
306306
}

0 commit comments

Comments
 (0)