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
vllm_cscc
Commits
45870632
Unverified
Commit
45870632
authored
Nov 22, 2025
by
Qidong Su
Committed by
GitHub
Nov 22, 2025
Browse files
Patch DeepEP when building docker image with CUDA 13 (#29154)
Signed-off-by:
Qidong Su
<
soodoshll@gmail.com
>
parent
472fdee9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
tools/ep_kernels/install_python_libraries.sh
tools/ep_kernels/install_python_libraries.sh
+11
-0
No files found.
tools/ep_kernels/install_python_libraries.sh
View file @
45870632
...
...
@@ -96,6 +96,13 @@ clone_repo() {
fi
}
deepep_cuda13_patch
()
{
cuda_version_major
=
$(
${
CUDA_HOME
}
/bin/nvcc
--version
| egrep
-o
"release [0-9]+"
|
cut
-d
' '
-f
2
)
if
[
${
cuda_version_major
}
-ge
13
]
;
then
sed
-i
"s|f'{nvshmem_dir}/include']|f'{nvshmem_dir}/include', '
${
CUDA_HOME
}
/include/cccl']|"
"setup.py"
fi
}
do_build
()
{
local
repo
=
$1
local
name
=
$2
...
...
@@ -107,6 +114,10 @@ do_build() {
clone_repo
"
$repo
"
"
$name
"
"
$key
"
"
$commit
"
cd
"
$name
"
if
[
"
$name
"
==
"DeepEP"
]
;
then
deepep_cuda13_patch
fi
if
[
"
$MODE
"
=
"install"
]
;
then
echo
"Installing
$name
into environment"
eval
"
$extra_env
"
uv pip
install
--no-build-isolation
-vvv
.
...
...
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