How can I compile the latest Stockfish from its source codes without embedded NNUE? #3319
-
000 |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
Stockfish offers UCI option for you not to use NNUE. |
Beta Was this translation helpful? Give feedback.
-
You need to enable Lines 46 to 47 in 77eeea4 -DNNUE_EMBEDDING_OFF to the CXXFLAGS.
|
Beta Was this translation helpful? Give feedback.
-
It's been a while but I just want to also share this. When using make to build stockfish and if you want to keep the original values of the So it would be something like this: make -j4 build ARCH=x86-64 COMP=clang COMPCXX=clang++ CXXFLAGS+=-DNNUE_EMBEDDING_OFF |
Beta Was this translation helpful? Give feedback.
You need to enable
NNUE_EMBEDDING_OFF
, seeStockfish/src/evaluate.cpp
Lines 46 to 47 in 77eeea4
-DNNUE_EMBEDDING_OFF
to the CXXFLAGS.