Update ggml-quants.c

This commit is contained in:
bobqianic 2024-03-05 22:21:29 +00:00 committed by GitHub
parent 8a16be0fd3
commit 304b9b7732
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -465,7 +465,7 @@ inline static int8x16_t ggml_vqtbl1q_s8(int8x16_t a, uint8x16_t b) {
// NOTE: not tested // NOTE: not tested
inline static uint8x16_t ggml_vqtbl1q_u8(uint8x16_t a, uint8x16_t b) { 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[ 0] = a[b[ 0]];
res[ 1] = a[b[ 1]]; res[ 1] = a[b[ 1]];