Skip to content

Commit 1d56af1

Browse files
author
David Ventura
committed
add missing imcludes for x86
1 parent 0336251 commit 1d56af1

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/3rd_party/faiss/VectorTransform.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@
2121
#if defined(__APPLE__) && !defined(__arm64__)
2222
#include <x86intrin.h>
2323
#endif
24+
#if defined(__x86_64__) || defined(_M_X64)
25+
#include <xmmintrin.h>
26+
#include <emmintrin.h>
27+
#include <pmmintrin.h>
28+
#endif
29+
2430

2531

2632
namespace faiss {

0 commit comments

Comments
 (0)