From ced082c9dd2bd55905c6c627fdb8d1d36cd9362a Mon Sep 17 00:00:00 2001 From: Eve <139727413+netrunnereve@users.noreply.github.com> Date: Fri, 21 Jun 2024 03:30:16 +0000 Subject: [PATCH] Update sgemm.cpp --- sgemm.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/sgemm.cpp b/sgemm.cpp index f8dba5bd8..1c5e769f5 100644 --- a/sgemm.cpp +++ b/sgemm.cpp @@ -237,6 +237,7 @@ template <> inline __m512 load(const ggml_fp16_t *p) { //////////////////////////////////////////////////////////////////////////////////////////////////// // CONSTANTS + static const int8_t kvalues_iq4nl[16] = {-127, -104, -83, -65, -49, -35, -22, -10, 1, 13, 25, 38, 53, 69, 89, 113}; static const __m128i iq4nlt = _mm_loadu_si128((const __m128i*)kvalues_iq4nl);