diff options
author | Kawrakow <48489457+ikawrakow@users.noreply.github.com> | 2024-02-27 19:16:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-27 19:16:49 +0200 |
commit | cb49e0f8c906e5da49e9f6d64a57742a9a241c6a (patch) | |
tree | b66bdae09744cde47038cf8714b8ec2a6ebc4ca2 | |
parent | 0becb22ac05b6542bd9d5f2235691aa1d3d4d307 (diff) |
Attempt to fix android build (#5752)
Co-authored-by: Iwan Kawrakow <iwan.kawrakow@gmail.com>
-rw-r--r-- | ggml-quants.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ggml-quants.c b/ggml-quants.c index 607d5092..f73d17ce 100644 --- a/ggml-quants.c +++ b/ggml-quants.c @@ -10464,9 +10464,9 @@ void ggml_vec_dot_iq4_xs_q8_K(int n, float * restrict s, size_t bs, const void * #if defined __ARM_NEON const int8x16_t values = vld1q_s8(kvalues_iq4nl); const uint8x16_t m4b = vdupq_n_u8(0x0f); - uint8x16x2_t q4bits; - int8x16x4_t q4b; - int8x16x4_t q8b; + ggml_uint8x16x2_t q4bits; + ggml_int8x16x4_t q4b; + ggml_int8x16x4_t q8b; int32x4_t prod_1, prod_2; float sumf = 0; |