Merge branch 'main' into pytorch-base

This commit is contained in:
Eugene Rakhmatulin
2026-01-30 13:37:03 -08:00
2 changed files with 4 additions and 2 deletions

View File

@@ -175,7 +175,9 @@ RUN --mount=type=cache,id=repo-cache,target=/repo-cache \
# 2. Logic: Clone if missing, otherwise Fetch & Reset # 2. Logic: Clone if missing, otherwise Fetch & Reset
if [ ! -d "vllm-mxfp4" ]; then \ if [ ! -d "vllm-mxfp4" ]; then \
echo "Cache miss: Cloning vLLM from scratch..." && \ echo "Cache miss: Cloning vLLM from scratch..." && \
git clone --recursive ${VLLM_REPO} vllm-mxfp4; \ git clone --recursive ${VLLM_REPO} vllm-mxfp4 && \
cd vllm-mxfp4 && \
git checkout ${VLLM_SHA} ; \
else \ else \
echo "Cache hit: Fetching updates..." && \ echo "Cache hit: Fetching updates..." && \
cd vllm-mxfp4 && \ cd vllm-mxfp4 && \

View File

@@ -11,7 +11,7 @@ REBUILD_VLLM=false
COPY_HOSTS=() COPY_HOSTS=()
SSH_USER="$USER" SSH_USER="$USER"
NO_BUILD=false NO_BUILD=false
TRITON_REF="v3.6.0" TRITON_REF="v3.5.1"
VLLM_REF="main" VLLM_REF="main"
TMP_IMAGE="" TMP_IMAGE=""
PARALLEL_COPY=false PARALLEL_COPY=false