Skip to content

Commit

Permalink
update stockfish
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasf committed Jul 28, 2024
1 parent b7d0b37 commit eaa8df8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Stockfish
Submodule Stockfish updated 56 files
+1 −0 .github/ci/libcxx17.imp
+5 −1 .github/workflows/arm_compilation.yml
+9 −3 .github/workflows/clang-format.yml
+2 −0 .github/workflows/codeql.yml
+6 −1 .github/workflows/compilation.yml
+43 −0 .github/workflows/games.yml
+2 −0 .github/workflows/iwyu.yml
+54 −0 .github/workflows/matetrack.yml
+2 −0 .github/workflows/sanitizers.yml
+18 −0 .github/workflows/stockfish.yml
+1 −0 .github/workflows/tests.yml
+7 −0 .github/workflows/upload_binaries.yml
+4 −0 AUTHORS
+1 −1 CONTRIBUTING.md
+9 −9 src/Makefile
+7 −1 src/bitboard.cpp
+167 −20 src/engine.cpp
+27 −9 src/engine.h
+36 −34 src/evaluate.cpp
+3 −4 src/evaluate.h
+237 −0 src/memory.cpp
+216 −0 src/memory.h
+70 −339 src/misc.cpp
+46 −51 src/misc.h
+15 −39 src/movegen.cpp
+0 −1 src/movegen.h
+17 −83 src/movepick.cpp
+5 −18 src/movepick.h
+22 −26 src/nnue/layers/clipped_relu.h
+0 −33 src/nnue/layers/simd.h
+57 −53 src/nnue/network.cpp
+14 −10 src/nnue/network.h
+0 −2 src/nnue/nnue_accumulator.h
+225 −232 src/nnue/nnue_feature_transformer.h
+18 −22 src/nnue/nnue_misc.cpp
+1,219 −0 src/numa.h
+16 −22 src/position.cpp
+3 −3 src/position.h
+637 −488 src/search.cpp
+59 −32 src/search.h
+41 −16 src/syzygy/tbprobe.cpp
+5 −2 src/syzygy/tbprobe.h
+158 −71 src/thread.cpp
+73 −18 src/thread.h
+33 −22 src/timeman.cpp
+8 −3 src/timeman.h
+135 −40 src/tt.cpp
+47 −70 src/tt.h
+14 −12 src/tune.cpp
+2 −0 src/tune.h
+22 −12 src/types.h
+39 −48 src/uci.cpp
+3 −1 src/uci.h
+35 −9 src/ucioption.cpp
+48 −25 src/ucioption.h
+6 −6 tests/instrumented.sh
4 changes: 2 additions & 2 deletions build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use std::{env, fs, fs::File, io::Write, path::Path, process::Command};
use glob::glob;
use zstd::stream::write::Encoder as ZstdEncoder;

const EVAL_FILE: &str = "nn-ae6a388e4a1a.nnue";
const EVAL_FILE_SMALL: &str = "nn-baff1ede1f90.nnue";
const EVAL_FILE: &str = "nn-31337bea577c.nnue";
const EVAL_FILE_SMALL: &str = "nn-37f18f62d772.nnue";

fn main() {
println!(
Expand Down

0 comments on commit eaa8df8

Please sign in to comment.