From 6ab328d88c0bb17c7ce8589d98e5a46594f073f9 Mon Sep 17 00:00:00 2001 From: slaren <2141330+slaren@users.noreply.github.com> Date: Tue, 28 Mar 2023 20:05:37 +0200 Subject: [PATCH] Make quantize_row_q4_1 static Co-authored-by: Georgi Gerganov --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index aa91511fa..222d199be 100644 --- a/ggml.c +++ b/ggml.c @@ -729,7 +729,7 @@ static void quantize_row_q4_1_reference(const float * restrict x, void * restric } } -void quantize_row_q4_1(const float * restrict x, void * restrict vy, int k) { +static void quantize_row_q4_1(const float * restrict x, void * restrict vy, int k) { assert(k % QK == 0); #if defined(__AVX2__)