reduce cpu host overhead when using moe#5578
Merged
tohtana merged 3 commits intodeepspeedai:masterfrom Aug 21, 2024
ranzhejiang:zhejiang/reduce_host_overhead_moe
Merged
reduce cpu host overhead when using moe#5578tohtana merged 3 commits intodeepspeedai:masterfrom ranzhejiang:zhejiang/reduce_host_overhead_moe
tohtana merged 3 commits intodeepspeedai:masterfrom
ranzhejiang:zhejiang/reduce_host_overhead_moe
Conversation
tohtana
reviewed
May 31, 2024
tohtana
reviewed
May 31, 2024
Collaborator
tohtana
left a comment
There was a problem hiding this comment.
@ranzhejiang Thank you for your contribution! I have a few questions about your changes. Can you clarify them?
Contributor
Author
|
Hi, @tohtana I have clarified the modifications you mentioned and retest this PR with Megatron-Deepspeed on GPU platform(8xA800). It runs well and loss remains consistent with the original method, Could you please help review it again? Thanks! |
Contributor
Author
|
#5881 also adopts this plan to reduce cpu time |
tohtana
approved these changes
Aug 21, 2024
23 tasks
mauryaavinash95
pushed a commit
to DataStates/DeepSpeed
that referenced
this pull request
Mar 20, 2025
The operation `.to('cpu') `is not necessary for exp_counts, and it will
cause device to host synchronization which damage performance.
Co-authored-by: Olatunji Ruwase <olruwase@microsoft.com>
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.
The operation
.to('cpu')is not necessary for exp_counts, and it will cause device to host synchronization which damage performance.