From fcbadc6f59c925f16a3b56bfef59dd3de38c746c Mon Sep 17 00:00:00 2001 From: Georgi Gerganov Date: Tue, 14 Mar 2023 21:34:12 +0200 Subject: [PATCH] Update ggml.c --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index c954b0257..42621267b 100644 --- a/ggml.c +++ b/ggml.c @@ -1376,7 +1376,7 @@ inline static void ggml_vec_dot_q4_0(const int n, float * restrict s, const void sum1 += d0_1*d1_1*(vgetq_lane_s32(p_1, 0) + vgetq_lane_s32(p_1, 1) + vgetq_lane_s32(p_1, 2) + vgetq_lane_s32(p_1, 3)); #endif #else - const int16x8_t pl0l = vmull_s8(vget_low_s8 (v0_0ls), vget_low_s8 (v1_0ls)); + const int16x8_t pl0l = vmull_s8(vget_low_s8 (v0_0ls), vget_low_s8 (v1_0ls)); const int16x8_t pl0h = vmull_s8(vget_high_s8(v0_0ls), vget_high_s8(v1_0ls)); const int16x8_t ph0l = vmull_s8(vget_low_s8 (v0_0hs), vget_low_s8 (v1_0hs));