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
DeepEP
Commits
ea76f44e
Commit
ea76f44e
authored
Mar 23, 2026
by
lijian6
Browse files
Add message for das release1.8 and update rocshmem for xdp.
Signed-off-by:
lijian
<
lijian6@sugon.com
>
parent
1110ef9d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
4 deletions
+6
-4
build.sh
build.sh
+3
-2
setup.py
setup.py
+2
-1
third-party/rocshmem
third-party/rocshmem
+1
-1
No files found.
build.sh
View file @
ea76f44e
#!/bin/bash
#
set -eux
set
-eux
export
amd_comgr_DIR
=
${
ROCM_PATH
}
/lib64/cmake
llvm15_path
=
${
ROCM_PATH
}
/llvm/lib/clang/15.0.0
...
...
@@ -184,7 +184,8 @@ for src in "${SOURCES[@]}"; do
done
# 链接阶段
OUTPUT
=
"deep_ep/deep_ep_cpp.cpython-310-x86_64-linux-gnu.so"
ext_suffix
=
$(
python3
-c
'import sysconfig; print(sysconfig.get_config_var("EXT_SUFFIX"))'
)
OUTPUT
=
"deep_ep/deep_ep_cpp
$ext_suffix
"
# 检查是否需要重新链接
need_link
=
false
...
...
setup.py
View file @
ea76f44e
...
...
@@ -2,6 +2,7 @@ import os, sys
import
subprocess
import
setuptools
import
subprocess
import
sysconfig
from
typing
import
Optional
import
subprocess
...
...
@@ -110,6 +111,6 @@ if __name__ == '__main__':
version
=
get_deepep_version
(),
packages
=
setuptools
.
find_packages
(
include
=
[
'deep_ep'
]),
include_package_data
=
True
,
package_data
=
{
"deep_ep"
:
[
"deep_ep_cpp
.cpython-310-x86_64-linux-gnu.so
"
]},
package_data
=
{
"deep_ep"
:
[
f
"deep_ep_cpp
{
sysconfig
.
get_config_var
(
'EXT_SUFFIX'
)
}
"
]},
zip_safe
=
False
,
)
rocshmem
@
d8a4cb56
Subproject commit
9735e605803e3c238805c103a7d3dfa8da4c4ca2
Subproject commit
d8a4cb56d62694d1ac624f36a3db4325dd7c4d89
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