-
-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update to stockfish with finny tables
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule Stockfish
updated
26 files
+11 −0 | .github/workflows/sanitizers.yml | |
+1 −1 | src/benchmark.cpp | |
+1 −1 | src/benchmark.h | |
+8 −6 | src/engine.cpp | |
+4 −0 | src/engine.h | |
+20 −13 | src/evaluate.cpp | |
+5 −3 | src/evaluate.h | |
+5 −5 | src/movepick.cpp | |
+3 −1 | src/nnue/features/half_ka_v2_hm.cpp | |
+4 −4 | src/nnue/features/half_ka_v2_hm.h | |
+25 −20 | src/nnue/network.cpp | |
+16 −8 | src/nnue/network.h | |
+66 −4 | src/nnue/nnue_accumulator.h | |
+181 −17 | src/nnue/nnue_feature_transformer.h | |
+10 −7 | src/nnue/nnue_misc.cpp | |
+5 −4 | src/nnue/nnue_misc.h | |
+3 −4 | src/perft.h | |
+0 −1 | src/position.cpp | |
+61 −51 | src/search.cpp | |
+8 −1 | src/search.h | |
+0 −3 | src/timeman.cpp | |
+4 −2 | src/timeman.h | |
+4 −9 | src/tt.cpp | |
+24 −6 | src/uci.cpp | |
+6 −4 | src/uci.h | |
+109 −14 | tests/instrumented.sh |