NeurIPS 2026 โ frozen submission archive¶
This page links to the frozen, immutable version of the Sutra paper as submitted to NeurIPS 2026. Use these artifacts when you want the camera-ready record of what was actually submitted, not the live revision-in-progress.
The live paper/paper.md in the repository may evolve toward the
next venue or other revisions. The archive linked here stays
permanent.
The exact commit the NeurIPS submission was based on¶
The paper, supplementary, and all reproduction scripts were frozen
at the repository state recorded by commit ea6f8a01 on
2026-05-07:
ea6f8a01โ CLAUDE.md: freeze the entire paper, not just title + abstract
The paper/paper.md content immediately before that commit was
unchanged for several days; the last edit to the paper text itself
was ed56d8e3
("drop tensor normal form โ undefined term"). Either commit is a
valid anchor for "what the NeurIPS reviewers actually saw," with
ea6f8a01 being the canonical pin because that's where the freeze
was declared.
You can browse the entire repository at that exact state via:
This is the canonical reference for verifying that any later repository change has or has not affected the NeurIPS-cited paths. It's worth keeping this anchor visible because the project is vibe-coded โ surface changes between sessions can break paper reproducibility silently, and the right way to check is to diff the current state against this commit.
Downloads¶
The PDFs and the supplementary zip are built by the
paper-pdf.yml
GitHub Actions workflow on every change to paper/neurips/ and on
manual dispatch. Download the latest from the workflow's
paper-neurips-frozen artifact:
The artifact bundle contains:
| File | What it is |
|---|---|
paper-neurips-named.pdf |
Author-named camera-ready PDF, as distributed after the rebuttal phase |
paper-neurips-anonymized.pdf |
Double-blind reviewer version (Anonymous Authors, line numbers, same content) |
sutra-neurips-supplementary.zip |
The reproduction archive uploaded to OpenReview |
Source files (browsable)¶
| File | Link |
|---|---|
| Paper source markdown | paper/neurips/paper.md |
| LaTeX wrapper | paper/neurips/paper.tex |
| NeurIPS style file | paper/neurips/neurips_2026.sty |
| Supplementary docs | paper/neurips/supplementary/ |
| In-repo README | paper/neurips/README.md |
The supplementary archive itself is not committed โ it is a
build artifact regenerated by scripts/build_supplementary_zip.py.
Reviewers verifying the archive byte-for-byte should re-run the
script against the repo state at the submission tag.
What's in the supplementary archive (preview)¶
| File | Purpose |
|---|---|
README.md |
Reviewer-facing overview of the archive's layout |
SKILL.md |
Agent-runnable replication recipe (the entry point for AI reviewers) |
REPRODUCE.md |
Human-facing step-by-step reproduction instructions |
SYNTAX.md |
Surface-syntax reference for the .su programs cited in the paper |
sdk/sutra-compiler/ |
Python compiler (lexer, parser, codegen, runtime) |
examples/ |
The .su programs and _smoke_test.py driver ยง5 cites |
experiments/ |
The ยง3 reproduction scripts plus reference output JSONs |
sutraDB/ |
Rust FFI for the embedded triplestore tests |
Why this archive exists¶
NeurIPS does not accept post-deadline edits. The repository's main
paper/paper.md may evolve toward future revisions, but the version
that was actually submitted to NeurIPS 2026 is preserved here as a
permanent snapshot for citation, audit, and reviewer-trail purposes.
In-repo notes:
- paper/neurips/README.md โ what's in the frozen archive and why
- The freeze rule in CLAUDE.md (ยง "๐ NeurIPS submission is FROZEN") โ the policy that the contents of paper/neurips/ are never edited
- paper-pdf.yml โ CI that builds the PDFs
Errata¶
Errata to the frozen submission archive. None of these change the empirical results or the paper's headline claims; they're corrections to descriptions in the supplementary material plus one known spec-vs-code drift discovered after the freeze.
map<K, V> vs dict<K, V> description (supplementary SYNTAX.md)¶
Discovered: 2026-05-09 (commit
061eb974).
The supplementary's SYNTAX.md ยง "Maps and codebooks" described
map<K, V> as "a literal rotation-hashmap" with "single unbind"
lookup. The compiler actually emits a static codebook with
cosine-argmax retrieval for map<K, V>; the real rotation-hashmap
lives under a separate dict<K, V> type that the original SYNTAX.md
did not document.
What this means for reproducibility: all 27 example programs
the paper cites still pass the supplementary smoke test, including
the ones that use map<K, V> for codebooks. The reproduction is
unaffected โ only the description of what map<K, V> does was
imprecise. The live paper/supplementary/SYNTAX.md (outside the
frozen archive) now matches the compiler. The frozen
paper/neurips/supplementary/SYNTAX.md retains the original
imprecise description for the historical record.
Host-Python-string emission at non-codebook string boundaries¶
Discovered: 2026-05-10 (commit
895e7a78),
fix committed same day.
After the freeze, a second string model (codepoint-array via
make_string + AXIS_STRING_FLAG) was added to the spec
(2026-05-08 strings.md). The new model wasn't wired into the
codegen's literal-emission path, so string literals at
string-typed function parameters / variable declarations were
flowing as host Python str values rather than substrate-encoded
Strings.
What this means for reproducibility: the NeurIPS paper
describes a codebook + nearest-string string model (basis-
vector embeddings + _vector_map_lookup at the boundary). That
model was correct throughout and is what hello_world.su (the
supplementary smoke check) uses. The bug was on a parallel
code path that the paper does not describe and does not depend
on. examples/hello_world.su still prints exactly "hello world"
post-fix.
Detailed impact assessment:
planning/findings/2026-05-10-host-string-bug-neurips-impact-assessment.md.
What we know is NOT broken¶
- The four-substrate width-k experiment (ยง5.1 / Table 1 / Figure 2) โ runs unchanged against the frozen reproduction scripts.
- The trainable-from-random-init fuzzy-rule program (ยง5.2 / Figure 4) โ runs unchanged.
- The single-cycle bind / unbind round-trip precision claim (โ 1.5e-15) โ unchanged.
- The 27-program smoke test driver โ green at master HEAD as of this errata page's last update.
Errata to this page itself will be added in chronological order as anything else surfaces.
Reviews from clawRxiv (separate from NeurIPS)¶
Sutra has been auto-submitted to clawRxiv (an AI peer-review
platform) on every paper revision. The archived AI reviews live
under paper/reviews/
in the repository. These are not part of the NeurIPS submission
record โ they're an orthogonal feedback channel.