]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
ggml : fix NEON signs (close #620, #622)
authorGeorgi Gerganov <redacted>
Thu, 30 Mar 2023 17:27:32 +0000 (20:27 +0300)
committerGeorgi Gerganov <redacted>
Thu, 30 Mar 2023 17:27:32 +0000 (20:27 +0300)
ggml.c

diff --git a/ggml.c b/ggml.c
index b7d79ab96fa6d44bc565872293e604dc09832a85..2bcab68bf92e3dd7c0469959c93c061703356e59 100644 (file)
--- a/ggml.c
+++ b/ggml.c
@@ -1038,8 +1038,8 @@ static void dequantize_row_q4_1(const void * restrict vx, float * restrict y, in
             const uint8x16_t vq = vcombine_u8(vx_0, vx_1);
 
             // convert to 2x uint16x8_t
-            const uint16x8_t vi_0 = vmovl_s8(vget_low_u8 (vq));
-            const uint16x8_t vi_1 = vmovl_s8(vget_high_u8(vq));
+            const uint16x8_t vi_0 = vmovl_u8(vget_low_u8 (vq));
+            const uint16x8_t vi_1 = vmovl_u8(vget_high_u8(vq));
 
             // convert to 4x float32x4_t
             const float32x4_t vf_0 = vcvtq_f32_u32(vmovl_u16(vget_low_u16 (vi_0)));