From 7edc3a4a84fbdb1f0c31bfa9879d6c8ac79d2ff7 Mon Sep 17 00:00:00 2001 From: Iwan Kawrakow Date: Fri, 6 Dec 2024 09:27:14 +0200 Subject: [PATCH] iq2_bn_r4: fix AVX2 after breaking it two commits ago --- ggml/src/iqk/iqk_mul_mat.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/ggml/src/iqk/iqk_mul_mat.cpp b/ggml/src/iqk/iqk_mul_mat.cpp index 968d1e06..c8721a8b 100644 --- a/ggml/src/iqk/iqk_mul_mat.cpp +++ b/ggml/src/iqk/iqk_mul_mat.cpp @@ -2274,6 +2274,7 @@ static void mul_mat_iq2_bn_r4_q8_k16(int n, const void * vx, size_t bx, const Da } } #else +template static void mul_mat_iq2_bn_r4_q8_k16(int n, const void * vx, size_t bx, const DataInfo& info, int nrc_x) { if (nrc_x%4) { printf("%s: %d is not a multiple of 4\n", __func__, nrc_x);