Skip to content

Commit bd166f7

Browse files
unboundedggerganov
authored andcommitted
Fix type error in quantize_row_q4_1 for Arm NEON
1 parent 4282f9b commit bd166f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ggml.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -800,7 +800,7 @@ static void quantize_row_q4_0(const float * restrict x, void * restrict vy, int
800800
const float32x4_t v = vmulq_n_f32(srcv[l], id);
801801
const float32x4_t vf = vaddq_f32(v, vdupq_n_f32(8.5f));
802802
const int32x4_t vi = vcvtq_s32_f32(vf);
803-
const int32x4 vc = vminq_u32(vi, vdupq_n_u32(15));
803+
const int32x4_t vc = vminq_s32(vi, vdupq_n_s32(15));
804804

805805
y[i].qs[2*l + 0] = vgetq_lane_s32(vc, 0) | (vgetq_lane_s32(vc, 1) << 4);
806806
y[i].qs[2*l + 1] = vgetq_lane_s32(vc, 2) | (vgetq_lane_s32(vc, 3) << 4);

0 commit comments

Comments
 (0)