From e216a2f133a3d2583e8dc426d50e2d8e66e4b5c3 Mon Sep 17 00:00:00 2001 From: Julia Longtin Date: Sat, 16 Mar 2024 14:15:51 +0000 Subject: [PATCH] Update ggml.c --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 223dfcda1..76530be9f 100644 --- a/ggml.c +++ b/ggml.c @@ -1342,7 +1342,7 @@ static void ggml_vec_dot_f32(int n, float * restrict s, size_t bs, const float * UNUSED(by); UNUSED(bs); -#if defined(GGML_SIMD) +#ifdef GGML_SIMD float sumf = 0.0f; const int np = (n & ~(GGML_F32_STEP - 1));