Support async scheduling for MoE and expert parallelism - #18
Closed
lmcafee-nvidia wants to merge 2 commits into
Closed
Support async scheduling for MoE and expert parallelism#18lmcafee-nvidia wants to merge 2 commits into
lmcafee-nvidia wants to merge 2 commits into
Conversation
lmcafee-nvidia
force-pushed
the
defer-req-res-moe
branch
2 times, most recently
from
July 14, 2026 17:01
f23c25a to
ffc7459
Compare
lmcafee-nvidia
force-pushed
the
defer-req-res-mamba
branch
from
July 14, 2026 17:02
691e576 to
ff10d3a
Compare
lmcafee-nvidia
force-pushed
the
defer-req-res-moe
branch
from
July 14, 2026 21:03
ffc7459 to
c6eaed5
Compare
lmcafee-nvidia
changed the base branch from
defer-req-res-mamba
to
defer-req-res-mamba-single-bank
July 14, 2026 21:04
lmcafee-nvidia
force-pushed
the
defer-req-res-mamba-single-bank
branch
from
July 14, 2026 21:23
d326910 to
ee6de13
Compare
lmcafee-nvidia
force-pushed
the
defer-req-res-moe
branch
from
July 14, 2026 21:23
c6eaed5 to
7ad1545
Compare
Signed-off-by: Lawrence McAfee <lmcafee@nvidia.com>
Signed-off-by: Lawrence McAfee <lmcafee@nvidia.com>
lmcafee-nvidia
force-pushed
the
defer-req-res-mamba-single-bank
branch
from
July 17, 2026 18:34
ee6de13 to
f89da81
Compare
lmcafee-nvidia
force-pushed
the
defer-req-res-moe
branch
from
July 17, 2026 18:34
7ad1545 to
7ee1980
Compare
Owner
Author
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Enable serial and overlap async scheduling for MoE models and expert-parallel execution.
Architecture
This PR contains only the MoE/EP integration that remains after the generic one-forward-per-step behavior was moved into the single-forward parent. A primer still returns from the controller and immediately continues without normal engine bookkeeping. When expert parallelism is active, the engine accounts for that continuation in the same consensus cadence used by ordinary coordinator iterations, keeping all participating ranks on the same forward slot.
The model, controller scheduling flow, and token dispatcher are otherwise unchanged.