Skip to content

Commit ef01952

Browse files
committed
Fixed wrong comment in GEMV
1 parent f678c83 commit ef01952

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

ggml/src/ggml-cpu/arch/arm/repack.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -633,12 +633,12 @@ void ggml_gemv_q4_K_8x8_q8_K(int n,
633633
// cols 0-3 bias
634634
bias_acc[0] =
635635
vmlal_s16(bias_acc[0], bsums_vec_lo, vget_low_s16(q4sb_mins[0]));
636-
bias_acc[1] = vmlal_s16(bias_acc[1], bsums_vec_lo,
637-
vget_high_s16(q4sb_mins[0]));
638-
639-
// cols 4-7 bias
640636
bias_acc[0] =
641637
vmlal_s16(bias_acc[0], bsums_vec_hi, vget_low_s16(q4sb_mins[1]));
638+
639+
// cols 4-7 bias
640+
bias_acc[1] = vmlal_s16(bias_acc[1], bsums_vec_lo,
641+
vget_high_s16(q4sb_mins[0]));
642642
bias_acc[1] = vmlal_s16(bias_acc[1], bsums_vec_hi,
643643
vget_high_s16(q4sb_mins[1]));
644644
} // for sb

0 commit comments

Comments
 (0)