We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f678c83 commit ef01952Copy full SHA for ef01952
ggml/src/ggml-cpu/arch/arm/repack.cpp
@@ -633,12 +633,12 @@ void ggml_gemv_q4_K_8x8_q8_K(int n,
633
// cols 0-3 bias
634
bias_acc[0] =
635
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
640
641
vmlal_s16(bias_acc[0], bsums_vec_hi, vget_low_s16(q4sb_mins[1]));
+
+ // cols 4-7 bias
+ bias_acc[1] = vmlal_s16(bias_acc[1], bsums_vec_lo,
+ vget_high_s16(q4sb_mins[0]));
642
bias_acc[1] = vmlal_s16(bias_acc[1], bsums_vec_hi,
643
vget_high_s16(q4sb_mins[1]));
644
} // for sb
0 commit comments