Dev Builds » 20260824-1627

You are viewing an old NCM Stockfish dev build test. You may find the most recent dev build tests using Stockfish 15 as the baseline here.

Use this dev build

NCM plays each Stockfish dev build 20,000 times against Stockfish 14. This yields an approximate Elo difference and establishes confidence in the strength of the dev builds.

Summary

Host Duration Avg Base NPS Games WLD Standard Elo Ptnml(0-2) Gamepair Elo

Test Detail

ID Host Base NPS Games WLD Standard Elo Ptnml(0-2) Gamepair Elo CLI PGN

Commit

Commit ID bd85fb7fa3fc2225e72b7317f0ca822703180543
Author mstembera
Date 2026-08-24 16:27:54 UTC
Fix MSVC warning C4141 ('inline' used more than once) Bug: On MSVC sf_always_inline expands to ```__forceinline```, which already implies ```inline```, so definitions writing both triggered "warning C4141 ('inline' used more than once)". Fix: Moved ```inline``` into the macro and removed it from all definition sites. GCC/Clang still get ```inline __attribute__((always_inline))```. ```inline``` is in the macro since the attribute alone would not set linkage. [Edit] Also adds MSVC coverage to CI as requested. closes https://github.com/official-stockfish/Stockfish/pull/7078 No functional change
Copyright 2011–2026 Next Chess Move LLC