ARCH=x86-64-avx2を指定できるようにした

This commit is contained in:
nodchip
2020-06-24 00:27:45 +09:00
parent 76b0de40a1
commit 43e78187d7
2 changed files with 34 additions and 8 deletions

View File

@@ -5,6 +5,12 @@
#if defined(EVAL_NNUE)
#if defined(USE_AVX2)
#include <immintrin.h>
#elif defined(USE_SSE2)
#include <emmintrin.h>
#endif
namespace Eval {
namespace NNUE {