Skip to content

ci(conformance): wp18 gate Check B third kind bitexact_selfconsistent. Closes #1182#1183

Merged
gHashTag merged 2 commits into
masterfrom
wp33-gate-selfconsistent-tier
Jun 18, 2026
Merged

ci(conformance): wp18 gate Check B third kind bitexact_selfconsistent. Closes #1182#1183
gHashTag merged 2 commits into
masterfrom
wp33-gate-selfconsistent-tier

Conversation

@gHashTag

Copy link
Copy Markdown
Owner

Summary

tools/wp18_conformance_gate.py Check B re-derived the INDEX pack counts with a
BINARY model (a pack is counted bitexact unless kind == "structural"). This PR
makes Check B TRI-STATE: it counts bitexact, bitexact_selfconsistent, and
structural separately. The INDEX summary key selfconsistent_packs is OPTIONAL and
defaults to 0, so a legacy 2-kind INDEX recounts unchanged (backward compatible). An
unknown kind is flagged as drift and is never folded into bitexact.

conformance/vectors/gen_all_formats.py gains a SELFCONSISTENT registry (mirrors
the EXISTING pattern) that keeps the affected packs verbatim under the new kind and
emits the selfconsistent_packs summary key.

Motivation

The wide GoldenFloat rungs (gf48/gf96/gf128/gf512/gf1024) are bit-exact by
construction (dyadic, single decode law) but only gf16 has an INDEPENDENT second
witness (the Corona ROM silicon oracle). Under the binary model the only way to add
their vectors to the INDEX is to label them bitexact, which overstates their
evidence by placing them in the same tier as silicon-validated gf16. The third kind
bitexact_selfconsistent records the honest, strictly-weaker status. This is the
gate-side prerequisite for the INDEX-sync that promotes the n_vectors:0 stubs
(companion to #1146).

Verification

  • New self-test tools/wp18_gate_selfconsistent_selftest.py: 13 checks, 6
    FAIL-reachable negative controls (mislabel sc-as-bitexact -> drift; legacy-no-key ->
    clean; stale counts -> drift; unknown kind -> drift; restore -> clean; corrupted
    abs_error in a sc pack -> caught by Check D).
  • Patched gate on the UNCHANGED tree: exit 0, recount [83, 55, 0, 28] (backward
    compatible -- the absent selfconsistent_packs key defaults to 0).
  • catalog stays 83; ASCII-only added lines; no gen//coq//bootstrap/ edits.

Closes #1182

@github-actions

Copy link
Copy Markdown
Contributor

📓 NotebookLM Notebook linked to this PR

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

@github-actions

Copy link
Copy Markdown
Contributor

PR Dashboard

Generated at: 2026-06-16 16:57:00 UTC

Summary

Status Count
Total Open PRs 8
PRs with Failing Checks 4
PRs with All Checks Green 4
READY 3
FAILING 4
PENDING 0

Seal Status

  • ⚠️ STALE -- sha256(compiler.rs)=1953ec73601f != manifest seal=49e55df6d444.
    The committed NMSE numbers were certified against an older compiler.rs.
    Run scripts/reseal-check.sh locally for the two-step reseal command (advisory; not a merge gate).

gHashTag pushed a commit that referenced this pull request Jun 17, 2026
Closes #1146

gf14/gf48/gf96/gf128/gf512/gf1024 move from structural (n_vectors:0 stubs) to the
bitexact_selfconsistent kind with their bit-exact vector packs (gf14 14 vectors, the
others 15 each; abs_error "0" by construction; dyadic, single decode law).

INDEX summary: total 83, bitexact 55 (UNCHANGED -- no false promotion),
selfconsistent 6, structural 22 (28-6).

Requires the tri-state Check B from #1182 (PR #1183), which must merge first.
These rungs are bitexact_selfconsistent, NOT bitexact: only gf16 has an independent
silicon oracle (Corona ROM); gf48 is cross-checked vs GF14; gf96/128/512/1024 have
no second witness. With the patched gate the conformance gate is CLEAN, Check B
recount [83, 55, 6, 22].

docs/NOW.md updated (now-sync-gate); catalog stays 83; ASCII-only.
…Closes #1182

Check B recount changed from a binary model (bitexact unless structural) to a
tri-state recount that counts bitexact / bitexact_selfconsistent / structural
separately. The INDEX summary key selfconsistent_packs is OPTIONAL and defaults
to 0, so a legacy 2-kind INDEX recounts unchanged (backward compatible). An
unknown kind is flagged as drift and is never folded into bitexact.

gen_all_formats.py gains a SELFCONSISTENT registry (mirrors the EXISTING pattern)
that keeps the affected packs verbatim under the new kind and emits the
selfconsistent_packs summary key.

New self-test tools/wp18_gate_selfconsistent_selftest.py: 13 checks, 6
FAIL-reachable negative controls. Patched gate on the UNCHANGED tree exits 0 with
recount [83, 55, 0, 28].

catalog stays 83; ASCII-only; gate-side prerequisite for the INDEX-sync (#1146).
@gHashTag
gHashTag force-pushed the wp33-gate-selfconsistent-tier branch from 493770a to 344ac12 Compare June 17, 2026 12:58
@github-actions

Copy link
Copy Markdown
Contributor

📓 NotebookLM Notebook linked to this PR

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

@github-actions

Copy link
Copy Markdown
Contributor

PR Dashboard

Generated at: 2026-06-17 12:58:56 UTC

Summary

Status Count
Total Open PRs 8
PRs with Failing Checks 5
PRs with All Checks Green 3
READY 2
FAILING 5
PENDING 0

Seal Status

  • ⚠️ STALE -- sha256(compiler.rs)=1953ec73601f != manifest seal=49e55df6d444.
    The committed NMSE numbers were certified against an older compiler.rs.
    Run scripts/reseal-check.sh locally for the two-step reseal command (advisory; not a merge gate).

@gHashTag
gHashTag force-pushed the wp33-gate-selfconsistent-tier branch from 344ac12 to e68275b Compare June 18, 2026 08:27
@github-actions

Copy link
Copy Markdown
Contributor

📓 NotebookLM Notebook linked to this PR

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

@github-actions

Copy link
Copy Markdown
Contributor

PR Dashboard

Generated at: 2026-06-18 08:27:37 UTC

Summary

Status Count
Total Open PRs 8
PRs with Failing Checks 5
PRs with All Checks Green 3
READY 2
FAILING 5
PENDING 0

Seal Status

  • ⚠️ STALE -- sha256(compiler.rs)=1953ec73601f != manifest seal=49e55df6d444.
    The committed NMSE numbers were certified against an older compiler.rs.
    Run scripts/reseal-check.sh locally for the two-step reseal command (advisory; not a merge gate).

@gHashTag
gHashTag merged commit 3d925d6 into master Jun 18, 2026
18 checks passed
@gHashTag
gHashTag deleted the wp33-gate-selfconsistent-tier branch June 18, 2026 08:42
gHashTag pushed a commit that referenced this pull request Jun 18, 2026
Closes #1146

gf14/gf48/gf96/gf128/gf512/gf1024 move from structural (n_vectors:0 stubs) to the
bitexact_selfconsistent kind with their bit-exact vector packs (gf14 14 vectors, the
others 15 each; abs_error "0" by construction; dyadic, single decode law).

INDEX summary: total 83, bitexact 55 (UNCHANGED -- no false promotion),
selfconsistent 6, structural 22 (28-6).

Requires the tri-state Check B from #1182 (PR #1183), which must merge first.
These rungs are bitexact_selfconsistent, NOT bitexact: only gf16 has an independent
silicon oracle (Corona ROM); gf48 is cross-checked vs GF14; gf96/128/512/1024 have
no second witness. With the patched gate the conformance gate is CLEAN, Check B
recount [83, 55, 6, 22].

docs/NOW.md updated (now-sync-gate); catalog stays 83; ASCII-only.
gHashTag added a commit that referenced this pull request Jun 18, 2026
Closes #1146 (#1184)

gf14/gf48/gf96/gf128/gf512/gf1024 move from structural (n_vectors:0 stubs) to the
bitexact_selfconsistent kind with their bit-exact vector packs (gf14 14 vectors, the
others 15 each; abs_error "0" by construction; dyadic, single decode law).

INDEX summary: total 83, bitexact 55 (UNCHANGED -- no false promotion),
selfconsistent 6, structural 22 (28-6).

Requires the tri-state Check B from #1182 (PR #1183), which must merge first.
These rungs are bitexact_selfconsistent, NOT bitexact: only gf16 has an independent
silicon oracle (Corona ROM); gf48 is cross-checked vs GF14; gf96/128/512/1024 have
no second witness. With the patched gate the conformance gate is CLEAN, Check B
recount [83, 55, 6, 22].

docs/NOW.md updated (now-sync-gate); catalog stays 83; ASCII-only.

Co-authored-by: gHashTag <admin@t27.ai>
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.

ci(conformance): wp18 gate Check B needs a third kind bitexact_selfconsistent

1 participant