Author: Ivan Maklyakov Rating CCRL=3606
UCI-compatible chess engine using Alpha-beta search and NNUE-like neural network.
The engine implements:
Basic control options (search to depth, time per move, time per game, time per N moves).
Support for Syzygy endgame tables.
Multithreading.
Builds for different processor extensions (SSE, AVX2, AVX512) and operating systems (Windows, Linux).
Engine architecture (everything is like most engines of this level):
Position representation and move generation - magic beatboards.
Sorting moves: moves from the transposition table, good captures by SEE, killer moves, quiet moves by history, bad captures by SEE.
Search - PVS, Aspiration search, Quiescence Search. And all possible abbreviations and cuts in the search (Null move, Static null move, abbreviations for quiet moves, Futility pruning, SEE prunung, LMR for quiet moves).
Transposition table for sorting moves, cuttings and for evaluation caching.
Multithreading - Lazy SMP.
Evaluation - a neural network similar to NNUE of the first versions with HalfKP. Network architecture: (2x(12288x1024))x6. Input layer: KingAreaPieceColorPieceSquare 166264. Trained using the frameworks Keras (early versions) and PyTorch (latest versions) on data generated in games of the engine against itself (with added positions from games against other engines) with ultra-short control (8-9 half-moves). Implementation of inference in the engine using the accumulator principle and vector instructions (SSE, AVX).
HCE (not used now) - material, PSQT, king's pawn shield, attacks on the king, pawn structure, piece mobility. The weights were selected using the Texel engine method.
Uralochka 3.41 dev1 - results:
Obsidian 10.0 | 20.5/48 | -7 | 48 Games |
RubiChess 20240112 | 25/46 | +4 | 46 Games |
Caissa 1.16 | 21/46 | -4 | 46 Games |
Stormphrax 4.0.0 | 25.5/40 | +11 | 40 Games |
Seer 2.8.0 | 19/40 | -2 | 40 Games |
Minic 3.41 | 25/38 | +12 | 38 Games |
Texel 1.11 | 22.5/34 | +11 | 34 Games |
Chess-System-Tal-2 | 14.5/34 | -5 | 34 Games |
Clover 6.1 | 17/32 | +2 | 32 Games |
Ethereal 14.25 | 14.5/30 | -1 | 30 Games |
Berserk 12.1 | 10.5/30 | -9 | 30 Games |
Pawn 3.0 | 20/28 | +12 | 28 Games |
Arasan 24.1 | 13.5/26 | +1 | 26 Games |
RofChade 3.1 | 12.5/26 | -1 | 26 Games |
Booot 7.3 | 14/24 | +4 | 24 Games |
Alexandria 6.0 | 10.5/22 | -1 | 22 Games |
Revenge 3.0 | 10/20 | +0 | 20 Games |
Avalanche 2.1.0 | 14.5/18 | +11 | 18 Games |
Willow 4.0 | 10.5/16 | +5 | 16 Games |
Counter 5.5 | 12.5/14 | +11 | 14 Games |
Minic 3.40 | 9/14 | +4 | 14 Games |
Uralochka 3.41 dev1 - tournament results:
2024.01.15.F15.Lenovo.AmateurTournament | 28/32 | +24 | Ranking 1 |
2024.01.20.AcerArenaTournament | 32/50 | +14 | |
2024.01.20.New.AmateurEnginesTest | 38/46 | +30 | Ranking 2 |
2024.01.24.FritzNewEnginesTest | 30/42 | +18 | |
2024.01.28.New.AmateurEnginesTest | 29/32 | +26 | |
2024.02.03.LucasLenovo | 28/46 | +10 | |
Big Engines | 59/112 | +6 |
Comments
Post a Comment