Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
392de007
Unverified
Commit
392de007
authored
Aug 15, 2025
by
fzyzcjy
Committed by
GitHub
Aug 14, 2025
Browse files
Minor fix docker container DeepEP on multi platforms (#9205)
parent
004f7f19
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
1 deletion
+12
-1
docker/Dockerfile
docker/Dockerfile
+12
-1
No files found.
docker/Dockerfile
View file @
392de007
...
...
@@ -102,7 +102,18 @@ RUN cd /sgl-workspace/nvshmem && \
# Install DeepEP
RUN
cd
/sgl-workspace/DeepEP
&&
\
TORCH_CUDA_ARCH_LIST
=
'9.0;10.0'
NVSHMEM_DIR
=
${
NVSHMEM_DIR
}
pip
install
.
case
"
$CUDA_VERSION
"
in
\
12.6.1
)
\
CHOSEN_TORCH_CUDA_ARCH_LIST
=
'9.0'
\
;;
\
12.8.1|12.9.1
)
\
CHOSEN_TORCH_CUDA_ARCH_LIST
=
'9.0;10.0'
\
;;
\
*
)
\
echo
"Unsupported CUDA version:
$CUDA_VERSION
"
&&
exit
1
\
;;
\
esac
&&
\
NVSHMEM_DIR
=
${
NVSHMEM_DIR
}
TORCH_CUDA_ARCH_LIST
=
"
${
CHOSEN_TORCH_CUDA_ARCH_LIST
}
"
pip
install
.
# Python tools
RUN
python3
-m
pip
install
--no-cache-dir
\
...
...
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