Apply vLLM PR 35568

This commit is contained in:
Eugene Rakhmatulin
2026-04-02 17:13:54 -07:00
parent 12caec228e
commit 44808f7018

View File

@@ -204,15 +204,15 @@ RUN if [ -n "$VLLM_PRS" ]; then \
done; \ done; \
fi fi
# TEMPORARY PATCH for broken compilation # TEMPORARY PATCH for broken FP8 kernels
# RUN curl -fsL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/38423.diff -o pr38423.diff \ RUN curl -fsL https://patch-diff.githubusercontent.com/raw/vllm-project/vllm/pull/35568.diff -o pr35568.diff \
# && if git apply --reverse --check pr38423.diff 2>/dev/null; then \ && if git apply --reverse --check pr35568.diff 2>/dev/null; then \
# echo "Patch already applied, skipping."; \ echo "PR 35568 already applied, skipping."; \
# else \ else \
# echo "Applying patch..."; \ echo "Applying PR 35568..."; \
# git apply -v pr38423.diff; \ git apply -v pr35568.diff; \
# fi \ fi \
# && rm pr38423.diff && rm pr35568.diff
# Prepare build requirements # Prepare build requirements
RUN --mount=type=cache,id=uv-cache,target=/root/.cache/uv \ RUN --mount=type=cache,id=uv-cache,target=/root/.cache/uv \