From a8521b73d7fcd90ff417102cdfb5df9b7cc537bf Mon Sep 17 00:00:00 2001 From: Kawrakow Date: Mon, 17 Jun 2024 19:19:25 +0300 Subject: [PATCH] Removed extra column --- iqk_mul_mat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iqk_mul_mat.cpp b/iqk_mul_mat.cpp index a264ba94..eaa263aa 100644 --- a/iqk_mul_mat.cpp +++ b/iqk_mul_mat.cpp @@ -874,7 +874,7 @@ struct Q4Bits { const __m128i aux128 = _mm_loadu_si128((const __m128i *)qs); const __m256i aux256 = MM256_SET_M128I(_mm_srli_epi16(aux128, 4), aux128); return _mm256_and_si256(ml, aux256); - }; + } __m256i values[4]; const __m256i ml = _mm256_set1_epi8(0xf); };