This repository was archived by the owner on Apr 7, 2026. It is now read-only.
ci: replace CI with sovereign-ci.yml caller#205
Open
noahgift wants to merge 6 commits into
Open
Conversation
…200, #203) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…203) Add provable contract (dimension-independent-kernels-v1.yaml) with 6 FALSIFY test IDs and implement them as Rust tests. Audit result: - 10 kernels PASS (already dimension-independent) - 20 kernels documented as #[ignore] (bake dimensions, need refactor) Key findings: - Activation backward + naive GEMM backward + cross-entropy + optimizer kernels already pass dimensions as runtime .param - RoPE, layout transforms, batched softmax/RMSNorm bake ALL dims - Several kernels declare .param but never ld.param them (phantom params) Refs trueno#200 (Blackwell JIT), trueno#203 (dim-independent arch) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Refactor 7 training-critical kernels to use runtime .param instead of baked immediates. This eliminates JIT compilation when new dimensions are encountered during training on Blackwell. Fixed kernels (FALSIFY-DIM-004): - InterleavedToBatchedKernel: seq_len/n_heads/head_dim now runtime params - BatchedToInterleavedKernel: same - TransposeKernel: rows/cols/total_elems now runtime params - BatchedTransposeKernel: rows/cols/total_per_batch now runtime params - BatchedSoftmaxKernel: total_rows/row_size now loaded from params - BatchedScaleKernel: n now loaded from param (was baked immediate) PTX builder additions: - div_u32_reg(): register-register integer division - rem_u32_reg(): register-register integer remainder Test results: 18 PASS, 12 still ignored (backward/RoPE kernels) Refs trueno#200, trueno#203 Contract: dimension-independent-kernels-v1.yaml Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…203) Refactor to load num_rows, hidden_dim, eps from runtime .param instead of baked immediates. This was the last kernel seen JIT-compiling in Run 12 training logs. All 5 Run 12 JIT offenders now fixed: - interleaved_to_batched ✓ - batched_transpose ✓ - batched_softmax ✓ - batched_to_interleaved ✓ - batched_rms_norm_backward ✓ (this commit) FALSIFY tests: 20 PASS, 10 ignored (RoPE + tiled GEMM + warp-shuffle kernels that structurally depend on hidden_dim for shuffle unrolling) Refs trueno#200, trueno#203 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Single source of truth for CI. No more unified gate in badge workflow. test/lint/coverage/security/gate all in reusable workflow. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
paiml/.github/.github/workflows/sovereign-ci.ymlTest plan
🤖 Generated with Claude Code