From 7e60462c08a1e94345f17992c4f75eaeaf44998e Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Tue, 3 Dec 2024 15:43:11 +0200 Subject: [PATCH] Fix AVX2 --- ggml/src/iqk/iqk_mul_mat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ggml/src/iqk/iqk_mul_mat.cpp b/ggml/src/iqk/iqk_mul_mat.cpp index 3a509ca5..f827e460 100644 --- a/ggml/src/iqk/iqk_mul_mat.cpp +++ b/ggml/src/iqk/iqk_mul_mat.cpp @@ -2517,8 +2517,8 @@ static void mul_mat_q6_0_r4_q8_1(int n, const void * vx, size_t bx, const DataIn } #else template -static void mul_mat_q5_0_r4_q8_1(int n, const void * vx, size_t bx, const DataInfo& info, int nrc_x) { - mul_mat_q5_0_r4_q8_1_avx2(n, vx, bx, info, nrc_x); +static void mul_mat_q6_0_r4_q8_1(int n, const void * vx, size_t bx, const DataInfo& info, int nrc_x) { + mul_mat_q6_0_r4_q8_1_avx2(n, vx, bx, info, nrc_x); } #endif