Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenDAS
dynamo
Commits
e06fd7d2
Unverified
Commit
e06fd7d2
authored
May 13, 2025
by
GuanLuo
Committed by
GitHub
May 13, 2025
Browse files
fix: downgrade CUDA image use to work around PyNccl timeout in vLLM Ray use case (#1065)
parent
b43c72a5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
container/Dockerfile.vllm
container/Dockerfile.vllm
+5
-1
container/build.sh
container/build.sh
+5
-1
No files found.
container/Dockerfile.vllm
View file @
e06fd7d2
...
...
@@ -2,7 +2,11 @@
# SPDX-License-Identifier: Apache-2.0
ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
ARG BASE_IMAGE_TAG="25.03-cuda12.8-devel-ubuntu24.04"
# FIXME: NCCL will hang with 25.03, so use 25.01 for now
# Please check https://github.com/ai-dynamo/dynamo/pull/1065
# for details and reproducer to manually test if the image
# can be updated to later versions.
ARG BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
ARG RELEASE_BUILD
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE_TAG="12.8.1-runtime-ubuntu24.04"
...
...
container/build.sh
View file @
e06fd7d2
...
...
@@ -97,7 +97,11 @@ TENSORRTLLM_PIP_WHEEL=""
VLLM_BASE_IMAGE
=
"nvcr.io/nvidia/cuda-dl-base"
VLLM_BASE_IMAGE_TAG
=
"25.03-cuda12.8-devel-ubuntu24.04"
# FIXME: NCCL will hang with 25.03, so use 25.01 for now
# Please check https://github.com/ai-dynamo/dynamo/pull/1065
# for details and reproducer to manually test if the image
# can be updated to later versions.
VLLM_BASE_IMAGE_TAG
=
"25.01-cuda12.8-devel-ubuntu24.04"
NONE_BASE_IMAGE
=
"ubuntu"
NONE_BASE_IMAGE_TAG
=
"24.04"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment