-
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
Open
TheTom
wants to merge
15
commits into
dev
Choose a base branch
from
tom/feat/tq-plus-port-aura
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
2006195
feat(quality): TQ+ port P2 — KLD-vs-baseline harness for AURA quality…
TheTom 728721c
test(quality): characterize AURA quality curve across bit-widths
TheTom 0af5844
feat(aura): auto-asymmetric K-precision policy + aura8v4 / aura8v2 pr…
TheTom 039b830
test(aura): pin matched-norm L2 correction across bit-widths + dynami…
TheTom 6e1d7bf
feat(ops): Ops.auraFlashSdpa + supportsAuraFlashSdpa wrappers (model-…
TheTom 4ca88cd
fix(ops): plumb kvStride through Ops.auraFlashSdpa
TheTom a0eb292
feat(aura): wire compressed flash decode in Qwen3Layer + Q pre-scale
TheTom 66a1238
review(pr-15): credit Tom Turney on new files + auto-asym opt-in default
TheTom 6f6e15d
telemetry: per-mixer Profile.signpost wrappers for decode/prefill att…
TheTom 6a9817f
perf(aura): unify cache to activation dtype + wire 2-pass FA decode (…
TheTom dc767bf
perf(aura): default 2-pass blockSize 64 → 32 (sweep-validated +2-4% o…
TheTom 3649f96
chore(aura): sync to metaltile #226 — rotation/boundaries → Tensor<T>
TheTom e88aec2
test(aura): drop hardcoded model path — env-driven FFAI_AURA_BENCH_MO…
TheTom 9fb7625
test(aura): blockSize sweep — side-channel log + per-cell wall time
TheTom 2b82ecc
refactor(aura): move quality helpers to Telemetry/ + scrub external-r…
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.
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.