fix(docs): point the landing page at the real 8192 reference regime (Fixes #248)#249
Merged
zeokin merged 1 commit intoJul 15, 2026
Conversation
index/index.html named N = 12,000 as CCO's reference regime and shipped a copy-pasteable 'python -m eval --n 12000 --pairs 3' quickstart, but the engines and every other surface moved to 8192: strategy/matmul --n default is 8192, and README.md / BENCHMARKS.md both state 'Reference setup: 8192 x 8192'. The KPI beside it (3.5 TFLOP) was right only for the stale N -- 2*12000**3 = 3.456e12 -- so at the real default it must read 2*8192**3 = 1.0995e12 -> 1.1 TFLOP. The neighbouring 1,000 -> 2 GFLOP and 128,000 -> 4.2 PFLOP cards already use decimal N and stay as they are. Re-derive the three stale claims from the shipped default and add a CPU test that pins the page's advertised N, quickstart and KPI to strategy/matmul's --n default so the front page cannot drift away from the engines again.
zeokin
approved these changes
Jul 15, 2026
zeokin
left a comment
Owner
There was a problem hiding this comment.
Approved. The landing page had stale 12000 reference-regime claims despite the shipped 8192 default. This corrects the associated FLOP display and pins the page to both CLI defaults with regression tests. Merged-state tests, strategy smoke, and the full CPU-safe suite pass; required GitHub checks are green.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #248.
PR kind
Summary
index/index.htmlstill advertised the pre-8192 reference regime. The enginesand every other surface say 8192, so the project's front door disagreed with the
code it describes:
strategy/cli.py/matmul/cli.py--ndefault 8192README.md:33,BENCHMARKS.md:38192 × 8192"README.md:37,BENCHMARKS.md:58python -m eval --n 8192 --pairs 3index/index.html(before)N = 12,000 — CCO's reference regime, tagN=12000,python -m eval --n 12000 --pairs 3Three stale claims, all re-derived from the shipped default:
3.5 TFLOP(2·12000³ = 3.456e12)1.1 TFLOP(2·8192³ = 1.0995e12)N = 12,000 — CCO's reference regimeN = 8,192 — …N=12000N=8192python -m eval --n 12000 --pairs 3--n 8192The KPI was right for the stale N, which is exactly why it had to move with it.
The neighbouring
N=1,000 → 2 GFLOPandN=128,000 → 4.2 PFLOPcards are alreadycorrect decimal-
N(the #102/#230 convention) and are untouched.Same class as the landing-page repair in #128.
Changes
index/index.html— the three stale claims above (+4/−4).tests/test_landing_page_reference_regime.py(new) — CPU-only: re-derives thepage's advertised N, quickstart command and KPI from
strategy/matmul's--ndefault (asserting both engines agree), so the front page cannot silently drift
from the shipped default again.
Validation
No protected paths touched —
index/is outside the guard regex / CODEOWNERS set(
eval/,docs/,.github/,dashboard/).Result
Documentation-consistency fix on the landing page; no code path changed, so no
accuracy / latency / VRAM delta.