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
af7b73c0
Unverified
Commit
af7b73c0
authored
Oct 20, 2025
by
Michael Feil
Committed by
GitHub
Oct 20, 2025
Browse files
feat: python package build with abi (cross py3.10+) (#3571)
Signed-off-by:
michaelfeil
<
me@michaelfeil.eu
>
parent
abbbc187
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
21 deletions
+5
-21
container/Dockerfile
container/Dockerfile
+1
-7
container/Dockerfile.sglang
container/Dockerfile.sglang
+1
-2
container/Dockerfile.trtllm
container/Dockerfile.trtllm
+1
-2
container/Dockerfile.vllm
container/Dockerfile.vllm
+1
-2
container/build.sh
container/build.sh
+0
-7
lib/bindings/python/Cargo.toml
lib/bindings/python/Cargo.toml
+1
-1
No files found.
container/Dockerfile
View file @
af7b73c0
...
@@ -15,7 +15,6 @@ ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
...
@@ -15,7 +15,6 @@ ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
ARG
BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
ARG
BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
# Build configuration
# Build configuration
ARG
RELEASE_BUILD=false
ARG
ENABLE_KVBM=false
ARG
ENABLE_KVBM=false
ARG
CARGO_BUILD_JOBS
ARG
CARGO_BUILD_JOBS
...
@@ -280,7 +279,6 @@ FROM quay.io/pypa/manylinux_2_28_${ARCH_ALT} AS wheel_builder
...
@@ -280,7 +279,6 @@ FROM quay.io/pypa/manylinux_2_28_${ARCH_ALT} AS wheel_builder
ARG
ARCH
ARG
ARCH
ARG
ARCH_ALT
ARG
ARCH_ALT
ARG
CARGO_BUILD_JOBS
ARG
CARGO_BUILD_JOBS
ARG
RELEASE_BUILD
ARG
ENABLE_KVBM
ARG
ENABLE_KVBM
ARG
USE_SCCACHE
ARG
USE_SCCACHE
ARG
SCCACHE_BUCKET
ARG
SCCACHE_BUCKET
...
@@ -356,10 +354,6 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
...
@@ -356,10 +354,6 @@ RUN --mount=type=secret,id=aws-key-id,env=AWS_ACCESS_KEY_ID \
else
\
else
\
maturin build
--release
--out
/opt/dynamo/dist
;
\
maturin build
--release
--out
/opt/dynamo/dist
;
\
fi
&&
\
fi
&&
\
if
[
"
$RELEASE_BUILD
"
=
"true"
]
;
then
\
uv run
--python
3.11 maturin build
--release
--out
/opt/dynamo/dist
&&
\
uv run
--python
3.10 maturin build
--release
--out
/opt/dynamo/dist
;
\
fi
&&
\
/tmp/use-sccache.sh show-stats
"Dynamo"
/tmp/use-sccache.sh show-stats
"Dynamo"
##############################################
##############################################
...
@@ -382,7 +376,7 @@ COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
...
@@ -382,7 +376,7 @@ COPY --from=wheel_builder $CARGO_HOME $CARGO_HOME
# Install Python packages
# Install Python packages
COPY
benchmarks/ /opt/dynamo/benchmarks/
COPY
benchmarks/ /opt/dynamo/benchmarks/
RUN
uv pip
install
\
RUN
uv pip
install
\
/opt/dynamo/wheelhouse/ai_dynamo_runtime
*
cp312
*
.whl
\
/opt/dynamo/wheelhouse/ai_dynamo_runtime
*
.whl
\
/opt/dynamo/wheelhouse/ai_dynamo
*
any.whl
\
/opt/dynamo/wheelhouse/ai_dynamo
*
any.whl
\
/opt/dynamo/wheelhouse/nixl/nixl
*
.whl
\
/opt/dynamo/wheelhouse/nixl/nixl
*
.whl
\
&&
cd
/opt/dynamo/benchmarks
\
&&
cd
/opt/dynamo/benchmarks
\
...
...
container/Dockerfile.sglang
View file @
af7b73c0
...
@@ -9,7 +9,6 @@ ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
...
@@ -9,7 +9,6 @@ ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
# for details and reproducer to manually test if the image
# for details and reproducer to manually test if the image
# can be updated to later versions.
# can be updated to later versions.
ARG BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
ARG BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
ARG RELEASE_BUILD
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE_TAG="12.8.1-runtime-ubuntu24.04"
ARG RUNTIME_IMAGE_TAG="12.8.1-runtime-ubuntu24.04"
...
@@ -204,7 +203,7 @@ COPY --from=framework ${VIRTUAL_ENV} ${VIRTUAL_ENV}
...
@@ -204,7 +203,7 @@ COPY --from=framework ${VIRTUAL_ENV} ${VIRTUAL_ENV}
COPY benchmarks/ /opt/dynamo/benchmarks/
COPY benchmarks/ /opt/dynamo/benchmarks/
COPY --from=dynamo_base /opt/dynamo/wheelhouse/ /opt/dynamo/wheelhouse/
COPY --from=dynamo_base /opt/dynamo/wheelhouse/ /opt/dynamo/wheelhouse/
RUN uv pip install \
RUN uv pip install \
/opt/dynamo/wheelhouse/ai_dynamo_runtime*
cp312*
.whl \
/opt/dynamo/wheelhouse/ai_dynamo_runtime*.whl \
/opt/dynamo/wheelhouse/ai_dynamo*any.whl \
/opt/dynamo/wheelhouse/ai_dynamo*any.whl \
/opt/dynamo/wheelhouse/nixl/nixl*.whl \
/opt/dynamo/wheelhouse/nixl/nixl*.whl \
&& cd /opt/dynamo/benchmarks \
&& cd /opt/dynamo/benchmarks \
...
...
container/Dockerfile.trtllm
View file @
af7b73c0
...
@@ -3,7 +3,6 @@
...
@@ -3,7 +3,6 @@
ARG BASE_IMAGE="nvcr.io/nvidia/pytorch"
ARG BASE_IMAGE="nvcr.io/nvidia/pytorch"
ARG BASE_IMAGE_TAG="25.06-py3"
ARG BASE_IMAGE_TAG="25.06-py3"
ARG RELEASE_BUILD
ARG ENABLE_KVBM=false
ARG ENABLE_KVBM=false
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE_TAG="12.9.1-runtime-ubuntu24.04"
ARG RUNTIME_IMAGE_TAG="12.9.1-runtime-ubuntu24.04"
...
@@ -242,7 +241,7 @@ ENV LD_LIBRARY_PATH=${TENSORRT_LIB_DIR}:${LD_LIBRARY_PATH}
...
@@ -242,7 +241,7 @@ ENV LD_LIBRARY_PATH=${TENSORRT_LIB_DIR}:${LD_LIBRARY_PATH}
COPY benchmarks/ /opt/dynamo/benchmarks/
COPY benchmarks/ /opt/dynamo/benchmarks/
COPY --from=dynamo_base /opt/dynamo/wheelhouse/ /opt/dynamo/wheelhouse/
COPY --from=dynamo_base /opt/dynamo/wheelhouse/ /opt/dynamo/wheelhouse/
RUN uv pip install \
RUN uv pip install \
/opt/dynamo/wheelhouse/ai_dynamo_runtime*
cp312*
.whl \
/opt/dynamo/wheelhouse/ai_dynamo_runtime*.whl \
/opt/dynamo/wheelhouse/ai_dynamo*any.whl \
/opt/dynamo/wheelhouse/ai_dynamo*any.whl \
/opt/dynamo/wheelhouse/nixl/nixl*.whl \
/opt/dynamo/wheelhouse/nixl/nixl*.whl \
&& cd /opt/dynamo/benchmarks \
&& cd /opt/dynamo/benchmarks \
...
...
container/Dockerfile.vllm
View file @
af7b73c0
...
@@ -8,7 +8,6 @@ ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
...
@@ -8,7 +8,6 @@ ARG BASE_IMAGE="nvcr.io/nvidia/cuda-dl-base"
# for details and reproducer to manually test if the image
# for details and reproducer to manually test if the image
# can be updated to later versions.
# can be updated to later versions.
ARG BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
ARG BASE_IMAGE_TAG="25.01-cuda12.8-devel-ubuntu24.04"
ARG RELEASE_BUILD
ARG ENABLE_KVBM=false
ARG ENABLE_KVBM=false
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE="nvcr.io/nvidia/cuda"
ARG RUNTIME_IMAGE_TAG="12.8.1-runtime-ubuntu24.04"
ARG RUNTIME_IMAGE_TAG="12.8.1-runtime-ubuntu24.04"
...
@@ -254,7 +253,7 @@ COPY --from=framework ${VIRTUAL_ENV} ${VIRTUAL_ENV}
...
@@ -254,7 +253,7 @@ COPY --from=framework ${VIRTUAL_ENV} ${VIRTUAL_ENV}
COPY benchmarks/ /opt/dynamo/benchmarks/
COPY benchmarks/ /opt/dynamo/benchmarks/
COPY --from=dynamo_base /opt/dynamo/wheelhouse/ /opt/dynamo/wheelhouse/
COPY --from=dynamo_base /opt/dynamo/wheelhouse/ /opt/dynamo/wheelhouse/
RUN uv pip install \
RUN uv pip install \
/opt/dynamo/wheelhouse/ai_dynamo_runtime*
cp312*
.whl \
/opt/dynamo/wheelhouse/ai_dynamo_runtime*.whl \
/opt/dynamo/wheelhouse/ai_dynamo*any.whl \
/opt/dynamo/wheelhouse/ai_dynamo*any.whl \
/opt/dynamo/wheelhouse/nixl/nixl*.whl \
/opt/dynamo/wheelhouse/nixl/nixl*.whl \
&& cd /opt/dynamo/benchmarks \
&& cd /opt/dynamo/benchmarks \
...
...
container/build.sh
View file @
af7b73c0
...
@@ -303,9 +303,6 @@ get_options() {
...
@@ -303,9 +303,6 @@ get_options() {
missing_requirement
"
$1
"
missing_requirement
"
$1
"
fi
fi
;;
;;
--release-build
)
RELEASE_BUILD
=
true
;;
--enable-kvbm
)
--enable-kvbm
)
ENABLE_KVBM
=
true
ENABLE_KVBM
=
true
;;
;;
...
@@ -705,10 +702,6 @@ fi
...
@@ -705,10 +702,6 @@ fi
if
[
-n
"
${
HF_TOKEN
}
"
]
;
then
if
[
-n
"
${
HF_TOKEN
}
"
]
;
then
BUILD_ARGS+
=
" --build-arg HF_TOKEN=
${
HF_TOKEN
}
"
BUILD_ARGS+
=
" --build-arg HF_TOKEN=
${
HF_TOKEN
}
"
fi
fi
if
[
!
-z
${
RELEASE_BUILD
}
]
;
then
echo
"Performing a release build!"
BUILD_ARGS+
=
" --build-arg RELEASE_BUILD=
${
RELEASE_BUILD
}
"
fi
if
[[
$FRAMEWORK
==
"VLLM"
]]
||
[[
$FRAMEWORK
==
"TRTLLM"
]]
;
then
if
[[
$FRAMEWORK
==
"VLLM"
]]
||
[[
$FRAMEWORK
==
"TRTLLM"
]]
;
then
echo
"Forcing enable_kvbm to true in
${
FRAMEWORK
}
image build"
echo
"Forcing enable_kvbm to true in
${
FRAMEWORK
}
image build"
...
...
lib/bindings/python/Cargo.toml
View file @
af7b73c0
...
@@ -60,7 +60,7 @@ pyo3 = { version = "0.23.4", default-features = false, features = [
...
@@ -60,7 +60,7 @@ pyo3 = { version = "0.23.4", default-features = false, features = [
"experimental-inspect"
,
"experimental-inspect"
,
"extension-module"
,
"extension-module"
,
"py-clone"
,
"py-clone"
,
#
"abi3-py310"
# TODO: Add abi feature in follow-up, since docker build can be simplified.
"abi3-py310"
]
}
]
}
pyo3-async-runtimes
=
{
version
=
"0.23.0"
,
default-features
=
false
,
features
=
[
pyo3-async-runtimes
=
{
version
=
"0.23.0"
,
default-features
=
false
,
features
=
[
...
...
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