From 19afe73e037450c89443aa47dde2db781c610387 Mon Sep 17 00:00:00 2001 From: Thomas Wang Date: Fri, 8 May 2026 14:49:39 +0800 Subject: [PATCH] [AMD] Cherry-pick aiter commit for mhc_pre fix (#24665) --- docker/rocm.Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docker/rocm.Dockerfile b/docker/rocm.Dockerfile index 52451682e..f19f11e57 100644 --- a/docker/rocm.Dockerfile +++ b/docker/rocm.Dockerfile @@ -199,11 +199,14 @@ RUN if [ "$BUILD_LLVM" = "1" ]; then \ # Unset setuptools_scm override so AITER gets its own version (AITER_COMMIT), not SGLang's # (SETUPTOOLS_SCM_PRETEND_VERSION is set later for SGLang nightly builds and would otherwise # leak into AITER's version when AITER uses setuptools_scm) + +# cherry pick b639cb6 commit for aiter_mhc_pre fix, may be removed in next aiter upgrade ENV SETUPTOOLS_SCM_PRETEND_VERSION= RUN pip uninstall -y aiter RUN git clone ${AITER_REPO} \ && cd aiter \ && git checkout ${AITER_COMMIT} \ + && git cherry-pick --no-commit b639cb63bcac4672dce33a731fad042a65cb3649 \ && git submodule update --init --recursive \ && pip install -r requirements.txt