-
Notifications
You must be signed in to change notification settings - Fork 0
board: record PR #1241 post-merge (arc entry + LATEST_STATE) #1242
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,15 @@ | ||
| ## 2026-09-16 — PR #1241 merged (`d5d3f7ab`): the facet's per-axis LCP is one masked register readout — NO contract inventory delta | ||
|
|
||
| `FacetCascade::hi_distance` / `lo_distance` now read `tz((a ^ b) & AXIS_BYTES) | ||
| / 16` off the `u128` instead of gathering a six-byte chain and walking it: | ||
| 12.5 → 5.8 ns for both axes, bit-identical over 64K pairs, disable-verified. | ||
| No public type added or removed; two private consts + one private `const fn`. | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The merged Useful? React with 👍 / 👎.
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct — two private Generated by Claude Code |
||
| Arc entry in `PR_ARC_INVENTORY.md`; the fold-once epiphany | ||
| (`E-FORMAT-SLOT-FOLD-IS-THE-SAME-OP-AS-THE-VL-DESCENT-1`) landed with the PR. | ||
| Sibling measurements the same day: ndarray #311 (ternlogq tail descent 5–8×; | ||
| 64×2 re-apply on a full-width mask NO; GEMM block-stop tail inert) and | ||
| lance-graph-java #79 (cached hop tile breaks even at hop two). | ||
|
|
||
| ## 2026-09-15 (10) — D-HXP-8 arm 1 RAN: tic-tac-toe is F0-degenerate (rails reach the whole board → the stack is a census), not a KILL; the early-exit meter presumes non-negative stacking | ||
|
|
||
| - **State consumers should know:** the Raumgewinn falsifier's first arm is | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,32 @@ | ||
| ## 2026-09-16 — lance-graph PR #1241 (merged `d5d3f7ab`, branch `claude/c64-6502-falsifier-shztkk`) — the facet's per-axis LCP reads the single register; the `"{0}{1}" -f` fold is done ONCE at mint | ||
|
|
||
| - **Added:** `FacetCascade::{HI_BYTES, LO_BYTES}` (const byte masks over the | ||
| tier bytes of the LE `u128`, computed by a `const fn`, never typed) and | ||
| `shared_axis(xor, mask)`; `hi_distance` / `lo_distance` now route through it. | ||
| `shared6` (the six-byte loop over a gathered chain) is gone. One falsifier | ||
| (`folded_axis_prefix_matches_the_loop_at_every_position`) compares against | ||
| the loop it replaced at every divergence tier on both axes plus the | ||
| identical case. Board: `E-FORMAT-SLOT-FOLD-IS-THE-SAME-OP-AS-THE-VL-DESCENT-1`. | ||
| 2 files, 3 commits (the first cut re-folded the gathered chain into a | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
The local first-parent range Useful? React with 👍 / 👎.
Owner
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct — Generated by Claude Code |
||
| `u64` — 1.5×; the operator's *"fold the PowerShell logic once"* replaced it). | ||
| - **Locked:** *the register is already the formatted form; never un-format it | ||
| to compute on it.* An axis prefix is `tz((a ^ b) & AXIS_BYTES) / 16` past | ||
| the classid — the same op as the whole-facet `prefix_distance`. | ||
| - **Measured (64K random facet pairs, release, best of 7):** byte loop | ||
| 12.5–14.0 ns → gathered-chain fold 8.3–9.3 → masked readout **5.8 ns for | ||
| both axes** (2.9 each; whole-facet `prefix_distance` 2.6–3.1). 0 mismatches | ||
| at every step. Disable-run (swap `HI_BYTES`/`LO_BYTES`) fails at tier 0. | ||
| - **Deferred / named:** the same fold across a COLUMN of facets — a | ||
| `u128`-lane / `u16`-tile compare family in `ndarray::simd` | ||
| (`lcp_u128_to_mask`, `eq_u16_to_mask`) so HHTL `heel_search`, the CAM-PQ | ||
| 6×256 path distance and the rail compare stop gathering; the truth | ||
| `(f:c)` tile as the same `u8:u8` unit. Not built. | ||
| - **Review:** CodeRabbit (no actionable comments, minimal risk); Codex | ||
| reacted without findings. Docstring-coverage warning (77.8 %) on the two | ||
| private `const fn`s — not addressed, private helpers. | ||
| - **Confidence:** HIGH on the numbers (two scratch-bench runs, identical | ||
| ordering); the "column of facets" door is the operator's framing, unmeasured. | ||
|
|
||
| ## 2026-09-15 (3) — lance-graph PR #1235 (merged `e8d3c19`, branch `claude/clone-repositories-71a5sw`) — `lance-graph-quack`: the DuckDB-shaped surface whose operators ARE masking ops, and A1's falsifier run | ||
|
|
||
| - **Added:** the workspace member `crates/lance-graph-quack` (builds mask-risc | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When a state consumer implements the formula recorded here, a difference in tier 0 has 32 trailing zero bits, so the documented division returns 2 rather than a shared-axis prefix of 0. The merged implementation correctly uses
(trailing_zeros() - 32) / 16; record that subtraction (or an equivalent right shift past the classid) so this mandatory state summary does not prescribe the wrong distance calculation.Useful? React with 👍 / 👎.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct — the summary dropped the
− 32that the mergedshared_axishas ((x.trailing_zeros() - 32) / 16); as written it would prescribe prefix 2 for a tier-0 divergence. Fixed in the follow-up hygiene PR:LATEST_STATEnow records(tz((a ^ b) & AXIS_BYTES) − 32) / 16and says why the offset is load-bearing.Generated by Claude Code