temporary patch for PR38126

This commit is contained in:
Eugene Rakhmatulin
2026-03-26 08:58:04 -07:00
parent 83a74bccec
commit 174de6f0a8

View File

@@ -201,6 +201,10 @@ RUN --mount=type=cache,id=uv-cache,target=/root/.cache/uv \
# TEMPORARY PATCH for broken vLLM build (unguarded Hopper code) - reverting PR #34758 and #34302 # TEMPORARY PATCH for broken vLLM build (unguarded Hopper code) - reverting PR #34758 and #34302
RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34758.diff | patch -p1 -R || echo "Cannot revert PR #34758, skipping" RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34758.diff | patch -p1 -R || echo "Cannot revert PR #34758, skipping"
RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34302.diff | patch -p1 -R || echo "Cannot revert PR #34302, skipping" RUN curl -L https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/34302.diff | patch -p1 -R || echo "Cannot revert PR #34302, skipping"
# TEMPORARY PATCH for broken NVFP4 quants
RUN curl -sSL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/38126.diff -o pr38126.diff \
&& (git apply --reverse --check pr38126.diff || git apply pr38126.diff) \
&& rm pr38126.diff
# Final Compilation # Final Compilation
RUN --mount=type=cache,id=ccache,target=/root/.ccache \ RUN --mount=type=cache,id=ccache,target=/root/.ccache \