Skip to content

Commit 8116399

Browse files
jeejeeleeyewentao256
authored andcommitted
[Kernel] Update DeepGEMM to latest commit (vllm-project#23915)
Signed-off-by: Jee Jee Li <[email protected]> Co-authored-by: Wentao Ye <[email protected]>
1 parent de3cb37 commit 8116399

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

docker/Dockerfile

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -432,11 +432,10 @@ RUN --mount=type=cache,target=/root/.cache/uv \
432432
--extra-index-url ${PYTORCH_CUDA_INDEX_BASE_URL}/cu$(echo $CUDA_VERSION | cut -d. -f1,2 | tr -d '.')
433433

434434
# Install DeepGEMM from source
435-
ARG DEEPGEMM_GIT_REF="7b6b5563b9d4c1ae07ffbce7f78ad3ac9204827c"
435+
ARG DEEPGEMM_GIT_REF
436436
COPY tools/install_deepgemm.sh /tmp/install_deepgemm.sh
437437
RUN --mount=type=cache,target=/root/.cache/uv \
438-
VLLM_DOCKER_BUILD_CONTEXT=1 /tmp/install_deepgemm.sh --cuda-version "${CUDA_VERSION}" --ref "${DEEPGEMM_GIT_REF}" \
439-
&& rm /tmp/install_deepgemm.sh
438+
VLLM_DOCKER_BUILD_CONTEXT=1 /tmp/install_deepgemm.sh --cuda-version "${CUDA_VERSION}" ${DEEPGEMM_GIT_REF:+--ref "$DEEPGEMM_GIT_REF"}
440439

441440
# Install EP kernels(pplx-kernels and DeepEP), NixL
442441
COPY tools/ep_kernels/install_python_libraries.sh install_python_libraries.sh

tools/install_deepgemm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -e
66

77
# Default values
88
DEEPGEMM_GIT_REPO="https://github.com/deepseek-ai/DeepGEMM.git"
9-
DEEPGEMM_GIT_REF="7b6b5563b9d4c1ae07ffbce7f78ad3ac9204827c"
9+
DEEPGEMM_GIT_REF="ea9c5d9270226c5dd7a577c212e9ea385f6ef048"
1010

1111
# Parse command line arguments
1212
while [[ $# -gt 0 ]]; do

0 commit comments

Comments
 (0)