Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/vllm-benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -293,10 +293,10 @@ jobs:
env:
SCCACHE_BUCKET: ossci-compiler-cache-circleci-v2
SCCACHE_REGION: us-east-1
FLASHINFER_WORKSPACE_BASE: /mnt/hf_cache
HF_TOKEN: ${{ secrets.HF_TOKEN }}
HF_HOME: /mnt/hf_cache
FLASHINFER_WORKSPACE_BASE: /mnt/hf_cache
TRANSFORMERS_OFFLINE: 1
TRANSFORMERS_OFFLINE: 0
DOCKER_IMAGE: ${{ env.DOCKER_IMAGE_PREFIX }}:${{ env.HEAD_SHA }}${{ env.DOCKER_IMAGE_SUFFIX }}
# vLLM-related environment variables
ENGINE_VERSION: v1
Expand Down Expand Up @@ -347,7 +347,8 @@ jobs:
)
if [[ "${DEVICE_NAME}" == "cuda" ]]; then
docker exec -t "${container_name}" bash -c "
pip install torchao==0.16.0 fbgemm-gpu-genai==1.5.0
# Put fbgemm-gpu-genai back once it has a version working with 2.11
pip install torchao==0.15.0 --extra-index-url https://download.pytorch.org/whl/cu130

# A quick mitigation for https://github.com/vllm-project/vllm/issues/32373
rm /etc/ld.so.conf.d/cuda-compat.conf || true
Expand Down
Loading