DeepSeek-V3/R1 MoE load balance deployment and inference using EPLB#5270
Closed
feliang-git wants to merge 7 commits intosgl-project:mainfrom
Closed
DeepSeek-V3/R1 MoE load balance deployment and inference using EPLB#5270feliang-git wants to merge 7 commits intosgl-project:mainfrom
feliang-git wants to merge 7 commits intosgl-project:mainfrom
Conversation
liz-badada
reviewed
Apr 11, 2025
| for _ in range(61) | ||
| ], dim=0) | ||
|
|
||
| EP_BACK_MAPPING_TENSOR = torch.zeros((61, 256), dtype=torch.long) |
Collaborator
There was a problem hiding this comment.
Better pass the num_layers info as well as num_experts.
Contributor
|
Hi, any progress on this PR? Does it work on |
Author
|
Author
Hi @jokerwyt, there is another pr working on implementing EPLB. Please refer to pr#5295 for more detail. Thanks! |
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.
Motivation
To achieve load balance during inference, a crucial feature is to load expert by a given combination, instead of loading them sequentially. Given that the load traffic monitor tool and DeepSeek EPLB algorithm are ready, this functionality would be the next step in achieving MoE expert load balance.
Modifications
--enable-eplb-moeto turn on MoE expert load balance.Checklist