From a063f2e4d3744432e8e367c40110a415fa21733d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marvin=20Gie=C3=9Fing?= Date: Tue, 2 May 2023 18:02:42 +0200 Subject: [PATCH] Fix ppc64le build issue --- ggml.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ggml.c b/ggml.c index 6a9695e23..91b3053dd 100644 --- a/ggml.c +++ b/ggml.c @@ -826,6 +826,7 @@ static void quantize_row_q4_0(const float * restrict x, void * restrict vy, int float max = 0.0f; float min = 0.0f; + vector float asrcv [8]; vector float srcv [8]; vector float maxv[8]; vector float minv[8];