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
This commit is contained in:
Ron Jailall 2023-05-03 17:40:33 -04:00 committed by GitHub
parent 799fdc1b5d
commit ca0a3e78d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
ggml.c
View file

@ -180,7 +180,7 @@ typedef double ggml_float;
#undef bool #undef bool
#define bool _Bool #define bool _Bool
#else #else
#include <immintrin.h> #include <intrin.h>
#endif #endif
#endif #endif