-
Notifications
You must be signed in to change notification settings - Fork 438
fix: Dockerfile.sglang-deepep, sglang 0.4.7 compatible with sgl-kernel <= 0.1.8 #1595
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
base: main
Are you sure you want to change the base?
Conversation
…kernel<=0.1.8 Signed-off-by: Zac <ZacWang@users.noreply.github.com>
👋 Hi ZacWang! Thank you for contributing to ai-dynamo/dynamo. Just a reminder: The 🚀 |
WalkthroughThe Dockerfile for the sglang-deepep container has been updated to install the "sgl-kernel" Python package version 0.1.8 in addition to "sglang" version 0.4.7, following the removal of any pre-existing "sglang" installation. No other logic or control flow changes are present. Changes
Poem
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
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.
Actionable comments posted: 0
🧹 Nitpick comments (1)
container/Dockerfile.sglang-deepep (1)
48-48
: Pin sgl-kernel to 0.1.8 to maintain compatibility
Constrainingsgl-kernel==0.1.8
alongsidesglang==0.4.7
prevents the runtimeTypeError
caused by the missingscale_ue8m0
argument in v0.1.9.Consider merging the uninstall (
pip uninstall
), removal (rm -rf sglang
), and install (pip install …
) into a singleRUN
directive and adding--no-cache-dir
to pip installs to streamline layers and reduce image size.
📜 Review details
Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (1)
container/Dockerfile.sglang-deepep
(1 hunks)
⏰ Context from checks skipped due to timeout of 90000ms (2)
- GitHub Check: Build and Test - vllm
- GitHub Check: pre-commit
Overview:
fix dockerfile for sglang deepep, should use sgl-kernel <=0.1.8 for sglang 0.4.7
Details:
when using current sglang main branch to build base image, it will install sgl-kernel==0.1.9.
this will cause the following error when launch decode nodes:
Where should the reviewer start?
container/Dockerfile.sglang-deepep
Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)
Summary by CodeRabbit