-
Notifications
You must be signed in to change notification settings - Fork 2.8k
[CuTe,Sm100] Varlen Dynamic Persistent scheduler and metadata #2559
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
reubenconducts
wants to merge
18
commits into
Dao-AILab:main
Choose a base branch
from
reubenconducts:dynamic_metadata
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.
+2,922
−488
Open
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
0ae26dd
add dynamicpersistentvarlenscheduler to flash_fwd_sm100 and prepare k…
reubenconducts e601530
mild refactor to tile scheduler protocol, guard num_m_blocks_ptr for …
reubenconducts 2c14ab7
rename varlen_batch_idx -> virtual_batch_idx, because it is relevant …
reubenconducts 79aea14
split out VarlenSchedulerBase to share code between SingleTile and Dy…
reubenconducts e4071c0
add benchmark script for varlen dynamic persistent scheduler
reubenconducts 70efc72
minor clean up
reubenconducts f5d0abd
updates to has_work logic, tile scheduler selection, and varlen test …
reubenconducts 2e9bc0f
fix tile scheduler dispatch logic
reubenconducts e76dde1
integrate binary batch search for single tile varlen
reubenconducts 83328ab
refactor tile scheduler for compositionality
reubenconducts 5a69571
work PR 2520 into interface and kernels
reubenconducts 9c68299
Merge branch 'main' into dynamic_metadata
reubenconducts 5b992d5
fix linter errors
reubenconducts e2f42e8
Merge branch 'dynamic_metadata' of https://github.com/reubenconducts/…
reubenconducts 5391f12
wip: modify scheduler metadata public api
reubenconducts 97b9640
[2026-06-01] pull origin main
reubenconducts 3416514
clean up scheduler metadata API; add docstrings; split out _get_fwd_c…
reubenconducts 3f1f217
address driss' comments
reubenconducts 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
Large diffs are not rendered by default.
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 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.
Uh oh!
There was an error while loading. Please reload this page.
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.
nit: can we turn this into a namedTuple for keepign them colocated?
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.
It's a bit tricky. This is what
SchedulerMetadataTensorsTorchis for, but this PR doesn't add general scheduler metadata to the non-sm100 kernels.