Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion MathLib.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@
#include <x86intrin.h>
#elif( defined(__arm__) || defined(__aarch64__) || defined(_M_ARM64) || defined(_M_ARM) )
#include "External/sse2neon/sse2neon.h"
#define __NEON__
#else
#include <intrin.h>
#endif
Expand Down Expand Up @@ -131,7 +132,7 @@
#define ML_INTRINSIC_LEVEL ML_INTRINSIC_AVX2
#elif defined ( __AVX__ )
#define ML_INTRINSIC_LEVEL ML_INTRINSIC_AVX1
#elif defined ( __SSE4_2__ ) || defined ( __SSE4_1__ )
#elif defined ( __SSE4_2__ ) || defined ( __SSE4_1__ ) || defined ( __NEON__ )
#define ML_INTRINSIC_LEVEL ML_INTRINSIC_SSE4
#else
#define ML_INTRINSIC_LEVEL ML_INTRINSIC_SSE3
Expand Down