gitextract_iuycd67k/ ├── .clang-format ├── .git-blame-ignore-revs ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── BUG-REPORT.yml │ │ └── config.yml │ ├── ci/ │ │ ├── arm_matrix.json │ │ ├── libcxx17.imp │ │ └── matrix.json │ └── workflows/ │ ├── arm_compilation.yml │ ├── avx2_compilers.yml │ ├── clang-format.yml │ ├── codeql.yml │ ├── compilation.yml │ ├── games.yml │ ├── iwyu.yml │ ├── matetrack.yml │ ├── sanitizers.yml │ ├── stockfish.yml │ ├── tests.yml │ └── upload_binaries.yml ├── .gitignore ├── AUTHORS ├── CITATION.cff ├── CONTRIBUTING.md ├── Copying.txt ├── README.md ├── Top CPU Contributors.txt ├── scripts/ │ ├── .gitattributes │ ├── get_native_properties.sh │ └── net.sh ├── src/ │ ├── Makefile │ ├── benchmark.cpp │ ├── benchmark.h │ ├── bitboard.cpp │ ├── bitboard.h │ ├── engine.cpp │ ├── engine.h │ ├── evaluate.cpp │ ├── evaluate.h │ ├── history.h │ ├── incbin/ │ │ ├── UNLICENCE │ │ └── incbin.h │ ├── main.cpp │ ├── memory.cpp │ ├── memory.h │ ├── misc.cpp │ ├── misc.h │ ├── movegen.cpp │ ├── movegen.h │ ├── movepick.cpp │ ├── movepick.h │ ├── nnue/ │ │ ├── features/ │ │ │ ├── full_threats.cpp │ │ │ ├── full_threats.h │ │ │ ├── half_ka_v2_hm.cpp │ │ │ └── half_ka_v2_hm.h │ │ ├── layers/ │ │ │ ├── affine_transform.h │ │ │ ├── affine_transform_sparse_input.h │ │ │ ├── clipped_relu.h │ │ │ └── sqr_clipped_relu.h │ │ ├── network.cpp │ │ ├── network.h │ │ ├── nnue_accumulator.cpp │ │ ├── nnue_accumulator.h │ │ ├── nnue_architecture.h │ │ ├── nnue_common.h │ │ ├── nnue_feature_transformer.h │ │ ├── nnue_misc.cpp │ │ ├── nnue_misc.h │ │ └── simd.h │ ├── numa.h │ ├── perft.h │ ├── position.cpp │ ├── position.h │ ├── score.cpp │ ├── score.h │ ├── search.cpp │ ├── search.h │ ├── shm.h │ ├── shm_linux.h │ ├── syzygy/ │ │ ├── tbprobe.cpp │ │ └── tbprobe.h │ ├── thread.cpp │ ├── thread.h │ ├── thread_win32_osx.h │ ├── timeman.cpp │ ├── timeman.h │ ├── tt.cpp │ ├── tt.h │ ├── tune.cpp │ ├── tune.h │ ├── types.h │ ├── uci.cpp │ ├── uci.h │ ├── ucioption.cpp │ └── ucioption.h └── tests/ ├── .gitattributes ├── instrumented.py ├── perft.sh ├── reprosearch.sh ├── signature.sh └── testing.py