feat: trinity_constants.zig — IGLA-GF16 Module 1 (Fibonacci arch, φ constants)#52
Closed
gHashTag wants to merge 1 commit into
Closed
feat: trinity_constants.zig — IGLA-GF16 Module 1 (Fibonacci arch, φ constants)#52gHashTag wants to merge 1 commit into
gHashTag wants to merge 1 commit into
Conversation
Defines all φ-derived constants and architecture dimensions: - PHI, PHI_SQ, PHI_INV_SQ, TRINITY identity - ALPHA_PHI = PHI^(-3)/2 ≈ 0.118034 (matches α_s coupling) - GF16 mant/exp ratio proof: 9/6 = 1.5, deviation = α_φ - Fibonacci sequence array + architecture: d_model=144, d_ffn=233 - 4 weight-init sector constants (gauge/higgs/lepton/cosmology) - Compile-time Trinity identity verification - 8 unit tests Closes #4, references #3 (Module 1 complete)
This was referenced Apr 29, 2026
Closed
Closed
Closed
Closed
Closed
Closed
Closed
Owner
Author
|
Trinity constants now covered by PR #58 (more complete implementation with φ-LR schedule). |
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.
Summary
Implements Module 1 from issue #3 (IGLA-GF16 architecture):
New file:
src/trinity_constants.zigPHI,PHI_SQ,PHI_INV,PHI_INV_SQ,TRINITYidentity constantsALPHA_PHI = φ⁻³/2 ≈ 0.118034— matches PDG2024 strong coupling α_s(mZ)mant/exp = 9/6 = 1.5, deviationφ - 1.5 = α_φd_model=144,n_heads=8,d_ffn=233,d_head=18Also registered in
build.zig(trinity-tests step) androot.zig(pub const trinity).Closes #4 (FMA constants base), references #3 (Module 1/7 complete).