Skip to content

Commit

Permalink
Last changes and fixes for release of 20240817
Browse files Browse the repository at this point in the history
Bench: 5273886
  • Loading branch information
Matthies committed Aug 17, 2024
1 parent b63a04d commit 3e56589
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
ChangeLog
=========

20240817 (release 2024-08-17) :
- Another improvement for search parameters with OpenBench's spsa tuner
- New network nn-bc638d5ec9-20240730.nnue
- Introduce correction history for better static eval
- Introduce cache (Finny tables) for faster accumulator updates
- Double extensions for very singukar moves
- Some fixes

20240112 (release 2024-01-12) :
- Improved search parameters with OpenBench's spsa tuner
- Various speed improvements by fixing and refining accumulator updates
Expand Down
10 changes: 5 additions & 5 deletions src/cputest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,14 +145,14 @@ void compilerinfo::GetSystemInfo()
#else
void compilerinfo::GetSystemInfo()
{
#if defined(__ARM_ARCH)
#if __ARM_ARCH <= 6
system = "ArmV6 or older platform not supporting any SIMD";
#if defined(__ARM_ARCH) || defined(_M_ARM64) || defined(_M_ARM)
#if __ARM_ARCH == 6
system = "ArmV6 platform not supporting any SIMD";
machineSupports = 0;
#elif __ARM_ARCH == 7
#elif __ARM_ARCH == 7 || defined(_M_ARM)
system = "ArmV7 platform supporting NEON";
machineSupports = CPUNEON;
#elif defined(__aarch64__)
#elif defined(__aarch64__) || defined(_M_ARM64)
#ifdef __ARM_FEATURE_DOTPROD
system = "ArmV8.2+DotProd (AArch64) platform supporting NEON";
machineSupports = CPUNEON | CPUARM64 | CPUDOTPROD;
Expand Down

0 comments on commit 3e56589

Please sign in to comment.