-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
[BACKEND][NVIDIA] Add DotOp Hoisting Pass for WGMMA and Add Lowering for SMEM-to-MMAv3 DotOp Copy #5003
Merged
Merged
[BACKEND][NVIDIA] Add DotOp Hoisting Pass for WGMMA and Add Lowering for SMEM-to-MMAv3 DotOp Copy #5003
Changes from 17 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
f0fe49d
Add preliminary logic to hoist elt-wise ops for MMAv3
ggengnv d2fff26
Lower shared > v3 dotOp & improve hoisting logic
ggengnv 7308447
Fix test regressions
ggengnv 8aef99b
Rewrite OptimizeDotOperands logic and add tests
ggengnv 32651e9
Improve comments
ggengnv 25fc6be
Improve documentation and refactor
ggengnv 27b2333
Rename SharedToDotOperandMMAv2 -> ...v2OrV3
ggengnv d5932b2
Remove debug flags in test_core.py
ggengnv 26e7407
Address even more comments
ggengnv a40e519
Add pipelining and tests
ggengnv 73363cf
Fix bug in MMAv2OrV3 lowering for transposed case
ggengnv b3dc4f0
Tighten pipeline properlyAsync check for DotOp in registers
ggengnv c1272f1
Fix test regressions related to properlyAsync logic
ggengnv 5ce5628
Fix rebase: use getMMALoadType in LoopScheduling as well
ggengnv 20f9ba0
Clang format
ggengnv 882aefc
Fix Hopper path in composeValues...
ggengnv 83a1bde
Address PR comments
ggengnv d1543e8
Format
ggengnv 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 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 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 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.
should the clone op be inserted right before the old op?
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.
do you mean that I should use
setInsertionPoint
before theclone
s?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.
yeah? To avoid pulling all the operations down to the dot