File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 1+ 2024-01-12: Texel 1.11 (ELO: +63)
2+ Neural network improvements:
3+ - Fewer non-incremental updates of the first layer state.
4+ - Implement quantization aware training.
5+ - Better GPU utilization by using separate data loading threads.
6+ - Efficiently handle training data that is too large to fit in RAM.
7+ - Train a new network based on new training data evaluated by Texel 1.10.
8+ - Optionally use AVX-512 instructions.
9+ Other:
10+ - Re-calibrate UCI_Elo for NNUE.
11+ - Fix a null-move verification problem.
12+ - Update GoogleTest code to version 1.14 to fix warnings when using new CMake
13+ versions.
14+ - Add state to the Square class, i.e. make it contain the square number.
15+
1162023-09-25: Texel 1.10 (ELO: +173)
217Speed up evaluation:
318- More handwritten code using compiler intrinsics.
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ static StaticInitializer<ComputerPlayer> cpInit;
4141
4242void
4343ComputerPlayer::staticInitialize () {
44- std::string name = " Texel 1.11a8 " ;
44+ std::string name = " Texel 1.11 " ;
4545 if (sizeof (char *) == 4 )
4646 name += " 32-bit" ;
4747 engineName = name;
You can’t perform that action at this time.
0 commit comments