From ca0a3e78d9345b3ecaedf757e70ee3810b6776a9 Mon Sep 17 00:00:00 2001 From: Ron Jailall Date: Wed, 3 May 2023 17:40:33 -0400 Subject: [PATCH] change immintrin.h to intrin.h for compatibility Building on windows11 arm throws an error on this line. Seems like using intrin.h covers x86 and and arm --- ggml.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ggml.c b/ggml.c index 0bcb5f617..107236bf6 100644 --- a/ggml.c +++ b/ggml.c @@ -180,7 +180,7 @@ typedef double ggml_float; #undef bool #define bool _Bool #else -#include +#include #endif #endif