use uint8x16_t

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

View file

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