Skip to content

docs(TRI-NET): cross-line package -- P0 NMSE / P1 API+whitepaper / P2 22FDX + Zenodo#697

Merged
gHashTag merged 2 commits into
masterfrom
docs/tri-net-cross-line-package-696
May 18, 2026
Merged

docs(TRI-NET): cross-line package -- P0 NMSE / P1 API+whitepaper / P2 22FDX + Zenodo#697
gHashTag merged 2 commits into
masterfrom
docs/tri-net-cross-line-package-696

Conversation

@gHashTag
Copy link
Copy Markdown
Owner

Summary

Cross-line TRI-NET package -- P0 NMSE protocol, P1 TRI-NET API and
whitepaper, P2 22FDX TOPS/W projection methodology and Zenodo bundles plan.
Docs-and-specs only in t27; the chip-side D2D protocol and Triple-Deck
implementation live in tt-trinity-euler / tt-trinity-gamma and are
cross-linked, not duplicated.

Five new docs, two new .t27 specs (each with test + invariant +
bench per L4 TESTABILITY), and two new draft-07 JSON schemas. R5-HONEST
posture preserved throughout: every 22FDX number is labelled
projection, not measured silicon; no DOI is quoted for v1/v2/v3
before upload; no parity claim is made against any commercial NPU.

Deliverables

P0 -- GF16 vs bfloat16 NMSE protocol

  • docs/GF16_BFLOAT16_NMSE_PROTOCOL.md
  • specs/benchmarks/gf16_bfloat16_nmse.t27
  • schemas/nmse-protocol-v1.json

Distribution-explicit (D_NORM / D_LOG / D_RELU / D_PHI / D_DEEP). L5
IDENTITY witness (|phi^2 + 1/phi^2 - 3| < 1e-15 in f64) gates every
run. BF16 subnormal policy must be declared in the manifest. Seal hash
must match bootstrap/stage0/FROZEN_HASH or the manifest is informational
only.

P1 -- TRI-NET API for external integration

  • docs/TRI_NET_API.md
  • specs/api/tri_net_api.t27
  • schemas/tri-net-api-v1.json

File-based, read-only contract over the JSON artefacts this repo (and the
sibling chip repos) emit. Explicitly NOT a hosted endpoint. Fail-closed
validation. Extensions confined to a reserved x_extension namespace.
Schema fragments: RepoIdentity, Readiness, ArtefactIndex.

P1 -- Whitepaper

  • docs/TRI_NET_WHITEPAPER.md

Position paper. Frames TRI-NET as open high-assurance ternary AI
silicon substrate
, not a TOPS race. Every silicon-readiness statement
mirrors STATUS.md; nothing outruns the ladder. Cross-links the four
products (t27 + the three chip repos tt-trinity-phi,
tt-trinity-euler, tt-trinity-gamma).

P2 -- 22FDX TOPS/W projection methodology

  • docs/22FDX_TOPS_W_PROJECTION.md

Every row tagged with a confidence band C1..C5. C1 rows trace to
existing Coq lemmas in trios-coq/Physics/ (W34..W49 ledger). No
measured silicon number appears. A falsification policy is enumerated so
that, when 22FDX silicon eventually exists, the table can be falsified
line-by-line.

P2 -- Zenodo bundles plan v1/v2/v3

  • docs/ZENODO_BUNDLES.md

Three role-based bundles: v1 toolchain, v2 silicon substrate, v3 proofs +
conformance. No DOI is quoted before upload. Existing canonical
B001..B007 + v5.0 parent records (in docs/ZENODO.md) are predecessor
records, not the v1/v2/v3 line.

Cross-links to chip repos

  • D2D protocol spec lives in tt-trinity-euler / tt-trinity-gamma; t27
    surfaces only the toolchain-side hooks via the file-based API.
  • Triple-Deck (W47 RBB + W48 FBB-active + W49 CapBoost) Coq lemmas already
    in trios-coq/Physics/ (existing NOW entries). Chip-side implementation
    lives in the chip repos and is referenced, not duplicated, here.

Law compliance

  • L1 TRACEABILITY: this PR cites Closes #696.
  • L2 GENERATION: zero edits under gen/, coq/, trios-coq/,
    proofs/, bootstrap/.
  • L3 PURITY: all new files are pure ASCII / English;
    scripts/check_first_party_doc_language.py PASS.
  • L4 TESTABILITY: each new .t27 spec contains test + invariant +
    bench blocks.
  • L5 IDENTITY: phi^2 + 1/phi^2 = 3 cited verbatim in every new doc
    and witnessed at the NMSE protocol boundary.
  • L6 CEILING: conformance/FORMAT-SPEC-001.json + specs/numeric/gf16.t27
    referenced as numeric SSOT; no kernel changes.
  • L7 UNITY: zero new *.sh.

Test plan

  • scripts/check_first_party_doc_language.py -- exit 0
  • JSON sanity on all schemas + FORMAT-SPEC-001.json -- PASS
  • Draft-07 schema validity via jsonschema.Draft7Validator.check_schema
    on schemas/nmse-protocol-v1.json and schemas/tri-net-api-v1.json -- PASS
  • Golden-instance round-trip: minimal valid RepoIdentity and
    minimal valid NMSE manifest both validate against their schemas -- PASS
  • Mutation negative test: removing bf16_subnormal_policy from the
    NMSE manifest correctly fails validation -- PASS
  • ASCII purity verified on all new files (L3 PURITY)
  • ./scripts/tri test (full t27c suite) -- not run locally (no
    cargo in env). CI is authoritative.
  • Repo gates (CI) -- to be observed on this PR

Non-claims (R5-HONEST)

  • No silicon NMSE number is asserted.
  • No 22FDX silicon measurement is claimed.
  • No tape-out date is named.
  • No v1/v2/v3 DOI is quoted (Zenodo issues those at upload).
  • No TOPS/W or NPU parity is claimed against any commercial product.

Caveats

  • ./scripts/tri test was not run locally because the environment lacks
    cargo; CI must verify.
  • Repository conventions allow non-ASCII (Greek letters, em-dashes,
    arrows) in existing NOW.md ledger entries; this PR keeps the
    existing entries verbatim and only writes pure-ASCII content in the
    new entries and new files, matching the strictly-ASCII profile of
    STATUS.md, LINEUP.md, FORMAT_REGISTRY.md, COMPETITORS.md,
    BENCHMARKS.md, and CLARA_TRACEABILITY.md.

Closes #696

… 22FDX + Zenodo

Adds the TRI-NET cross-line package documents and machine-readable
specs/schemas, plus traceability updates. Docs-only; no gen/, coq/,
bootstrap/ edits; no new *.sh; R5-HONEST preserved.

NEW docs:
- docs/GF16_BFLOAT16_NMSE_PROTOCOL.md (P0)
- docs/TRI_NET_API.md (P1)
- docs/TRI_NET_WHITEPAPER.md (P1)
- docs/22FDX_TOPS_W_PROJECTION.md (P2)
- docs/ZENODO_BUNDLES.md (P2)

NEW specs (L4 TESTABILITY: test + invariant + bench):
- specs/benchmarks/gf16_bfloat16_nmse.t27
- specs/api/tri_net_api.t27

NEW JSON schemas (draft-07):
- schemas/nmse-protocol-v1.json
- schemas/tri-net-api-v1.json

Law compliance: L1 Closes #696, L2 no gen/ edits, L3 pure ASCII/English,
L4 specs have test+invariant+bench, L5 phi^2 + 1/phi^2 = 3 verbatim,
L6 FORMAT-SPEC-001.json + gf16.t27 referenced as SSOT, L7 zero new *.sh.

Validation: scripts/check_first_party_doc_language.py PASS; JSON sanity
PASS; draft-07 schema validity PASS; golden round-trip + mutation
negative test PASS. ./scripts/tri test not run locally (no cargo in env)
-- CI is authoritative.

Closes #696
@github-actions
Copy link
Copy Markdown

PR Dashboard

Generated at: 2026-05-18 05:17:28 UTC

Summary

Status Count
Total Open PRs 15
PRs with Failing Checks 13
PRs with All Checks Green 2
READY 1
FAILING 13
PENDING 0

@github-actions
Copy link
Copy Markdown

📓 NotebookLM Notebook linked to this PR

This notebook contains session context, decisions, and artifacts for this work.

…map)

t27-side projection of the TRI-NET 2026 scientific improvement plan.
Toolchain-only deliverables: NMSE harness, Python SDK (read-only), Coq
export, Zenodo manifests, conformance contribution path. R5-HONEST.

NEW: docs/SCIENTIFIC_IMPROVEMENT_PLAN.md
- CL-01..CL-04 DARPA CLARA alignment (technical only; no funding claim)
- EN-01..EN-03 energy efficiency (Triple-Deck Coq lemmas + 22FDX
  projection; no `1000x` / `4000 TOPS/W` claim restated)
- SN-01..SN-03 SNN-TRI fusion (NMSE distributions, theta gate, INT2
  codebook; no `Delta_dB` quoted before manifest lands)
- PUB-01..PUB-03 publication path (draft-and-submit; no acceptance
  claim)
- OS-01..OS-03 open-source community (Python SDK target, Coq export
  target, contribution path)
- Section 7 timeline: Q2..Q4 2026 + open rows for silicon / paper
  acceptance / Zenodo upload
- Section 8 success metrics: only CI-green workflows and committed
  artefact counts -- no silicon-bound metric
- Section 9 references: in-repo (authoritative) + external (VERIFY)
- Section 10 anti-claims: no funding, no tape-out date, no paper
  acceptance, no 1000x / 4000 TOPS/W claim, no new DOI, no hosted
  service, no NPU parity

Every row in every table labelled `VERIFY`, `projection`, or `target`.

Cross-links added in:
- docs/TRI_NET_WHITEPAPER.md (Cross-links section)
- docs/TRI_NET_API.md (Cross-links section -- OS-01 SDK target)
- docs/22FDX_TOPS_W_PROJECTION.md (Cross-links section -- EN-02)
- docs/GF16_BFLOAT16_NMSE_PROTOCOL.md (Cross-links section -- PUB-02)
- docs/ZENODO_BUNDLES.md (Cross-links section -- OS-02 / PUB-02)
- docs/README.md (new "TRI-NET cross-line package" table including
  the SIP entry)
- docs/NOW.md (extended package entry)
- NOW.md (extended package entry)

Law compliance:
- L1: still Closes #696 (same PR)
- L2: zero gen/ / coq/ / bootstrap/ edits
- L3: new doc is pure ASCII; pre-existing non-ASCII in docs/README.md
  / docs/NOW.md / NOW.md left untouched
- L4: no new .t27 specs in this commit
- L5: phi^2 + 1/phi^2 = 3 cited verbatim
- L6: numeric SSOT unchanged
- L7: zero new *.sh

Validation: scripts/check_first_party_doc_language.py PASS; ASCII
purity verified on docs/SCIENTIFIC_IMPROVEMENT_PLAN.md and on every
new cross-link line.

Refs #696
@github-actions
Copy link
Copy Markdown

📓 NotebookLM Notebook linked to this PR

This notebook contains session context, decisions, and artifacts for this work.

@github-actions
Copy link
Copy Markdown

PR Dashboard

Generated at: 2026-05-18 05:28:04 UTC

Summary

Status Count
Total Open PRs 15
PRs with Failing Checks 13
PRs with All Checks Green 2
READY 1
FAILING 13
PENDING 0

@gHashTag
Copy link
Copy Markdown
Owner Author

Follow-up commit 7cbb0096: add docs/SCIENTIFIC_IMPROVEMENT_PLAN.md

t27-side projection of the TRI-NET 2026 scientific improvement plan.
Toolchain-only deliverables; R5-honest gating throughout.

New file

  • docs/SCIENTIFIC_IMPROVEMENT_PLAN.md (260 lines, pure ASCII)

Sections

Section IDs Content
2 CL-01..CL-04 DARPA CLARA alignment (technical, NOT funding)
3 EN-01..EN-03 Energy efficiency (Triple-Deck Coq + 22FDX projection)
4 SN-01..SN-03 SNN-TRI fusion surface (NMSE / theta / INT2)
5 PUB-01..PUB-03 Publication path (draft and submit)
6 OS-01..OS-03 Open-source SDK / Coq export / contribution path
7 -- Timeline (Q2..Q4 2026 + open rows for silicon / paper / DOI)
8 -- Success metrics (CI-green workflows + committed artefacts only)
9 -- References (in-repo authoritative + external VERIFY)
10 -- What this is NOT (explicit anti-claims)

R5-honest gating. Every row carries one of three labels:

  • VERIFY -- external claim; integrator must verify source.
  • projection -- architecture estimate, not measured silicon.
  • target -- programmatic goal, not achieved outcome.

Explicit anti-claims in the doc:

  • No funding claim. CL-01..CL-04 are technical alignment, not funding.
  • No silicon arrival date. Timeline marks silicon as open.
  • No paper acceptance. PUB-01..PUB-03 are draft-and-submit.
  • No 1000x or 4000 TOPS/W claim restated. Such figures are
    VERIFY external press only.
  • Existing 28-120 TOPS/W band restated as projection, with
    back-links to BENCHMARKS.md and docs/22FDX_TOPS_W_PROJECTION.md.
  • No new DOI minted. Only existing 10.5281/zenodo.19227877 is
    referenced (per docs/ZENODO.md).
  • No Delta_dB introduced before a sealed bench/results/nmse-*.json
    manifest lands.

Cross-links added in (+1 line each, ASCII):

  • docs/TRI_NET_WHITEPAPER.md (Cross-links section)
  • docs/TRI_NET_API.md (Cross-links section -- OS-01 SDK target)
  • docs/22FDX_TOPS_W_PROJECTION.md (Cross-links section -- EN-02)
  • docs/GF16_BFLOAT16_NMSE_PROTOCOL.md (Cross-links section -- PUB-02)
  • docs/ZENODO_BUNDLES.md (Cross-links section -- OS-02 / PUB-02)
  • docs/README.md (new "TRI-NET cross-line package" index table)
  • docs/NOW.md (extended package entry)
  • NOW.md (extended package entry)

Law compliance preserved. L1 (still Closes #696), L2 (zero gen/ /
coq/ / bootstrap/ edits), L3 (new file pure ASCII; gate exit 0),
L5 (phi^2 + 1/phi^2 = 3 verbatim), L6 (numeric SSOT untouched), L7
(zero new *.sh).

Validation. scripts/check_first_party_doc_language.py PASS (exit
0); ASCII purity verified on the new file and every cross-link
addition.

PR remains open, unmerged, as instructed.

@gHashTag gHashTag merged commit ce815a6 into master May 18, 2026
16 checks passed
@gHashTag gHashTag deleted the docs/tri-net-cross-line-package-696 branch May 18, 2026 06:00
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

TRI-NET cross-line package: P0 NMSE / P1 API+whitepaper / P2 22FDX projection + Zenodo bundles

2 participants