-
Notifications
You must be signed in to change notification settings - Fork 5.4k
update deepep version for qwen3-next deepep moe #10624
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -58,7 +58,7 @@ cd build | |||||
| make -j$(nproc) install | ||||||
|
|
||||||
| # Install DeepEP | ||||||
| rm -rf /root/.cache/deepep && git clone https://github.com/deepseek-ai/DeepEP.git /root/.cache/deepep && cd /root/.cache/deepep && git checkout b92d0d4860ce6866cd6d31bfbae937f9a7a3772b | ||||||
| rm -rf /root/.cache/deepep && git clone https://github.com/deepseek-ai/DeepEP.git /root/.cache/deepep && cd /root/.cache/deepep && git checkout 9af0e0d0e74f3577af1979c9b9e1ac2cad0104ee | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The DeepEP commit hash is hardcoded here, and it's also present in
Suggested change
|
||||||
| cd /root/.cache/deepep && python3 setup.py install | ||||||
|
|
||||||
| # Verify configuration | ||||||
|
|
||||||
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.
This
DEEPEP_COMMITvalue is also hardcoded inscripts/ci/ci_install_deepep.sh. To improve maintainability and prevent potential inconsistencies during future updates, it would be beneficial to establish a single source of truth for this commit hash. For instance, you could define it in a CI/CD environment variable and pass it as a--build-argto Docker and export it for the shell script.