-
Notifications
You must be signed in to change notification settings - Fork 0
feat(aura): TQ+ port — KLD harness + 2-pass compressed flash + unified-dtype cache #15
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
Merged
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
a93ddb2
feat(quality): TQ+ port P2 — KLD-vs-baseline harness for AURA quality…
TheTom 0406e75
test(quality): characterize AURA quality curve across bit-widths
TheTom 5c9933c
feat(aura): auto-asymmetric K-precision policy + aura8v4 / aura8v2 pr…
TheTom 302e82d
test(aura): pin matched-norm L2 correction across bit-widths + dynami…
TheTom 9fcc506
feat(ops): Ops.auraFlashSdpa + supportsAuraFlashSdpa wrappers (model-…
TheTom 7aa0413
fix(ops): plumb kvStride through Ops.auraFlashSdpa
TheTom 740cebb
feat(aura): wire compressed flash decode in Qwen3Layer + Q pre-scale
TheTom 0669a68
review(pr-15): credit Tom Turney on new files + auto-asym opt-in default
TheTom 6e77c7a
telemetry: per-mixer Profile.signpost wrappers for decode/prefill att…
TheTom c9c2077
perf(aura): unify cache to activation dtype + wire 2-pass FA decode (…
TheTom 2b9b1a3
perf(aura): default 2-pass blockSize 64 → 32 (sweep-validated +2-4% o…
TheTom 87a1833
chore(aura): sync to metaltile #226 — rotation/boundaries → Tensor<T>
TheTom 3ddd0f0
test(aura): drop hardcoded model path — env-driven FFAI_AURA_BENCH_MO…
TheTom b7a14be
test(aura): blockSize sweep — side-channel log + per-cell wall time
TheTom b12da1e
refactor(aura): move quality helpers to Telemetry/ + scrub external-r…
TheTom 9834715
test(aura): drop hardcoded model path from KLD gate — use FFAI_AURA_K…
TheTom e592bde
sync aura kernel call-sites to the metaltile reorg
TheTom File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
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.
I don't think we should do auto asymmetric by default. I think the caller should explicitly declare what they want and opt-in to automatic switching.
My stance in general is make things clear what they do. No/minimal magic. If you want magic, opt-in because you know how it works.
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.
Done (66a1238) — auto-asymmetric is opt-in: default OFF, requires
FFAI_AURA_AUTO_ASYM=1(gated byAURAScheme.autoAsymmetricOptedIn; theautoAsymmetric(...)policy fn only runs when the caller opts in). No magic by default, per your stance.