ggml : fix compiling when SSE3 is available but not SSSE3 (#1210)

It got broken in commit 3998465721.
pull/1216/head
Przemysław Pawełczyk 2023-08-27 20:37:31 +02:00 committed by GitHub
parent 601c2d2181
commit 25466aa1c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
ggml.c
View File

@ -292,7 +292,7 @@ typedef double ggml_float;
#if defined(_MSC_VER) || defined(__MINGW32__)
#include <intrin.h>
#else
#if defined(__AVX__) || defined(__AVX2__) || defined(__AVX512F__) || defined(__SSSE3__)
#if defined(__AVX__) || defined(__AVX2__) || defined(__AVX512F__) || defined(__SSSE3__) || defined(__SSE3__)
#include <immintrin.h>
#endif
#endif