From 84093a6be6dfc16aab9a351084e69e398e267dab Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Sat, 23 Mar 2024 16:27:11 +0000 Subject: [PATCH] promote aux16 into a vector. (part three) --- ggml-phi-knc-dot_q5_K_q8_K.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml-phi-knc-dot_q5_K_q8_K.c b/ggml-phi-knc-dot_q5_K_q8_K.c index 7e149f34d..acb965c95 100644 --- a/ggml-phi-knc-dot_q5_K_q8_K.c +++ b/ggml-phi-knc-dot_q5_K_q8_K.c @@ -22,7 +22,7 @@ #define GGML_F32_EPR 16 typedef float float32x8_t __attribute__((vector_size (64))); -typedef int16 int16x16_t __attribute__((vector_size (64))); +typedef int16_t int16x16_t __attribute__((vector_size (64))); /* A forward declaration, to keep GCC happy. */ void ggml_vec_dot_q5_K_q8_K(int n, float * restrict s, size_t bs, const void * restrict vx, size_t bx, const void * restrict vy, size_t by, int nrc);