-
Notifications
You must be signed in to change notification settings - Fork 3.9k
perf(kernel): optimize Blackwell grouped GEMM primitives #19988
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
Draft
spectrometerHBH
wants to merge
21
commits into
apache:main
Choose a base branch
from
spectrometerHBH:group_fp8
base: main
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.
Draft
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
9c60a30
refactor(infra): remove tir-bench agent skill (#2)
spectrometerHBH a42ad16
feat(lower-tirx): vector PTX ld/st and remove copy_xxb (#6)
spectrometerHBH cd0c540
fix(arith): add overflow-free uint32/uint64 floormod/floordiv rewrite…
spectrometerHBH 6d10284
feat(infra): tir-bench helper, rounds, and microsecond timings (#8)
spectrometerHBH ef79330
feat(infra): TFLOAT32 descriptor support for copy_async(tma) (#9)
spectrometerHBH 91e1506
feat(infra): plumb TVM_CUDA_PTXAS_EXTRA_OPTS through nvcc and nvrtc (…
spectrometerHBH 3d46bf8
feat(op-dispatch): add dense fp8 and tf32 tcgen05 gemm_async paths (#11)
spectrometerHBH 0235be7
fix(infra): reg-copy R2S/S2R for tcgen05 split-laneid atom layouts (#12)
spectrometerHBH 9453a29
feat(op): add CUDA elementwise dispatch for maximum tile op (#13)
spectrometerHBH a96c6bf
fix(lower-tirx): elementwise reg slice under sctx.target (B00011) (#14)
spectrometerHBH 84de3d9
refactor(op-dispatch): drop redundant pre-slice canonicalize in ld_st…
spectrometerHBH 6f6af76
fix(op-dispatch): cache one tcgen05.cp descriptor, patch SMEM addr pe…
spectrometerHBH b310ba2
feat(op-dispatch): support uint32 shape extents in TMA copy (#17)
spectrometerHBH 5cf4d40
perf(op-dispatch): direct ld/st.shared for shared->shared warp permut…
spectrometerHBH 4a5b5ba
perf(op-dispatch): per-MMA SMEM descriptor with hoist/recompute in ge…
spectrometerHBH 3f9ce07
fix(lower-tirx): support PrimType dtype handling (#21)
spectrometerHBH c732226
feat(infra): Triton-standard bench harness with proton default timer …
spectrometerHBH 515d858
refactor(infra): always build and run all reference impls (#27)
spectrometerHBH cf11478
Remove dead async_structs, merge tile-primitive headers, rename Predi…
spectrometerHBH d6ef5bc
feat(layout): buffer dim-surgery views (unflatten/flatten/select/narr…
spectrometerHBH 0f3c9d6
perf(kernel): optimize Blackwell grouped GEMM primitives
spectrometerHBH 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 was deleted.
Oops, something went wrong.
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 was deleted.
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.
Hardcoding line numbers like
'2,12p'insedis extremely fragile because any change to the top of the script (such as adding comments, changing imports, or adding license headers) will break the help output. Keeping the heredoccat <<'EOF'is much more robust and standard.