feat(hpc): Session C — bgz17 dual-path integration bridge#22
Merged
Conversation
Add four new modules implementing the bgz17 Base17 encoding pipeline directly in ndarray for interoperability without external crate deps: - bgz17_bridge: Base17/SpoBase17/PaletteEdge types with golden-step octave encoding, L1/weighted-L1 distance, XOR bind, bundle, permute. Matches lance-graph bgz17 crate encoding exactly. - palette_distance: k-means palette builder (farthest-first init), nearest-codebook lookup, precomputed k×k distance matrices for O(1) SPO distance. 128KB matrix fits L1 cache. - layered_distance: Container W125 palette-edge read/write, W4-W5 truth-value read/write, TruthGate evidence filter with NARS-style expectation (confidence * (frequency - 0.5) + 0.5). - parallel_search: Dual-path HHTL + CLAM search with archetype-based pruning, merge-and-rerank deduplication, TruthGate filtering, and local fractal dimension estimation from palette distances. All modules have comprehensive tests (880 total tests pass). https://claude.ai/code/session_01CdqyUTUfjKZuk8YGJzv6LB
6 tasks
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.
feat(hpc): Session C — bgz17 dual-path integration bridge
Add four new modules implementing the bgz17 Base17 encoding pipeline
directly in ndarray for interoperability without external crate deps:
bgz17_bridge: Base17/SpoBase17/PaletteEdge types with golden-step
octave encoding, L1/weighted-L1 distance, XOR bind, bundle, permute.
Matches lance-graph bgz17 crate encoding exactly.
palette_distance: k-means palette builder (farthest-first init),
nearest-codebook lookup, precomputed k×k distance matrices for O(1)
SPO distance. 128KB matrix fits L1 cache.
layered_distance: Container W125 palette-edge read/write, W4-W5
truth-value read/write, TruthGate evidence filter with NARS-style
expectation (confidence * (frequency - 0.5) + 0.5).
parallel_search: Dual-path HHTL + CLAM search with archetype-based
pruning, merge-and-rerank deduplication, TruthGate filtering, and
local fractal dimension estimation from palette distances.
All modules have comprehensive tests (880 total tests pass).
https://claude.ai/code/session_01CdqyUTUfjKZuk8YGJzv6LB