-
Notifications
You must be signed in to change notification settings - Fork 2k
[TritonNVIDIAGPU] Add dependency tokens to TMEM ops #6520
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
25 commits
Select commit
Hold shift + click to select a range
7fc06c0
start introducing tokens
Mogball 4023111
hoist tmem alloc
Mogball 56e1c8c
cleanup
Mogball 225f241
add test for sinking into conditional
Mogball 94d991c
fix tests and some bugs
Mogball 9b742a0
fix repl token
Mogball 720a700
fix aws test
Mogball 107daf0
fix test
Mogball 19e37d4
fixing tests, remove TMEM tokens
Mogball c09d3c5
separate pass for removing TMEM tokens
Mogball d2acd19
fix tests
Mogball 8521ccf
schedule loops
Mogball db65c51
bench
Mogball 4a9a5ed
fix compile only test
Mogball c7cd1c4
delete dead code
Mogball ad6d7de
unused forward decl
Mogball 303df26
Merge remote-tracking branch 'origin/main' into mogball/tmem_toks
Mogball 0dffe75
hoisttmemalloc checks that tokens are present
Mogball 8aa9165
add doc about tokens to op definitions
Mogball 695eb2a
Merge branch 'main' into mogball/tmem_toks
Mogball d63cb82
fix
Mogball e8f28b4
Merge branch 'main' into mogball/tmem_toks
Mogball fa8b255
Merge branch 'main' into mogball/tmem_toks
Mogball 2af0311
Merge remote-tracking branch 'origin/main' into mogball/tmem_toks
Mogball 084ed45
Merge branch 'main' into mogball/tmem_toks
Mogball 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
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.
why does load returns a token even though it doesn't modify TMem?
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.
The idea is that if the ops have tokens, they could be marked Pure and the IR will still be semantically correct. This means that WAR dependencies have to be represented by passing the result token from the load as an operand to the next store.
For example, this token is how the load-store forwarding pattern in HoistTMEMAlloc is implemented: pattern matching
tmem_store(tmem_load)
where the compiler knows the store modifies the memory after the load due to the token.