From 304b9b7732d9727da5fab4a7624473ec0235f698 Mon Sep 17 00:00:00 2001 From: bobqianic <129547291+bobqianic@users.noreply.github.com> Date: Tue, 5 Mar 2024 22:21:29 +0000 Subject: [PATCH] Update ggml-quants.c --- ggml-quants.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-quants.c b/ggml-quants.c index 4dbae9099..9dcb76def 100644 --- a/ggml-quants.c +++ b/ggml-quants.c @@ -465,7 +465,7 @@ inline static int8x16_t ggml_vqtbl1q_s8(int8x16_t a, uint8x16_t b) { // NOTE: not tested inline static uint8x16_t ggml_vqtbl1q_u8(uint8x16_t a, uint8x16_t b) { - int8x16_t res; + uint8x16_t res; res[ 0] = a[b[ 0]]; res[ 1] = a[b[ 1]];