mirror of
https://github.com/kvcache-ai/sglang.git
synced 2026-07-07 15:57:17 +00:00
Co-authored-by: Kangyan Zhou <zky314343421@gmail.com> Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com> Co-authored-by: Alison Shao <a.shao@wustl.edu> Co-authored-by: Mick <mickjagger19@icloud.com>
45 lines
2.2 KiB
Bash
Executable File
45 lines
2.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Cache and pre-install nvidia wheels that torch pins.
|
|
#
|
|
# pypi.nvidia.com returns Cache-Control: no-store, so pip re-downloads
|
|
# ~2 GB of NVIDIA wheels on every CI run. This script:
|
|
# 1. Caches cudnn + nvshmem wheels locally and pre-installs them
|
|
# 2. Points pip at a local wheel directory via PIP_FIND_LINKS so that
|
|
# all NVIDIA torch dependencies (cublas, cufft, nvrtc, etc.) are
|
|
# installed from local files instead of re-downloading.
|
|
#
|
|
# Pre-cache the wheels on the host at /opt/ci-cache/nvidia-pip-wheels/
|
|
# (mounted as /root/.cache/nvidia-pip-wheels inside containers).
|
|
# See the 5090 ops guide post-reboot checklist for how to populate this.
|
|
#
|
|
# Integrity: uses `unzip -t` to detect partial/corrupt downloads.
|
|
#
|
|
# Usage: source scripts/ci/cuda/cache_nvidia_wheels.sh
|
|
|
|
NVIDIA_WHEEL_CACHE="/root/.cache/nvidia-wheels"
|
|
NVIDIA_PIP_WHEELS="/root/.cache/nvidia-pip-wheels"
|
|
mkdir -p "$NVIDIA_WHEEL_CACHE"
|
|
|
|
for url in \
|
|
"https://pypi.nvidia.com/nvidia-cudnn-cu13/nvidia_cudnn_cu13-9.16.0.29-py3-none-manylinux_2_27_x86_64.whl" \
|
|
"https://pypi.nvidia.com/nvidia-nvshmem-cu13/nvidia_nvshmem_cu13-3.3.20-py3-none-manylinux2014_x86_64.manylinux_2_17_x86_64.whl"; do
|
|
whl="$NVIDIA_WHEEL_CACHE/$(basename "$url")"
|
|
[ -f "$whl" ] && unzip -tq "$whl" &>/dev/null || curl -fL -o "$whl" "$url"
|
|
done
|
|
|
|
# Caller (ci_install_dependency.sh) sets $PIP_CMD/$PIP_INSTALL_SUFFIX to route
|
|
# installs into the active environment (venv or system). The `:-pip` fallback
|
|
# keeps the file runnable ad-hoc for debugging; in CI the caller always sets
|
|
# these. Silent failure here is deliberate — the pinned cudnn/nvshmem installs
|
|
# later in ci_install_dependency.sh are the source of truth; this is only a
|
|
# download optimization.
|
|
${PIP_CMD:-pip} install --no-deps "$NVIDIA_WHEEL_CACHE"/nvidia_cudnn_cu13-*.whl \
|
|
"$NVIDIA_WHEEL_CACHE"/nvidia_nvshmem_cu13-*.whl ${PIP_INSTALL_SUFFIX:-} 2>/dev/null || true
|
|
|
|
# If pre-cached NVIDIA pip wheels exist, tell pip to check there first.
|
|
# This avoids re-downloading ~2 GB of cublas/cufft/nvrtc/etc. every run
|
|
# (pypi.nvidia.com sends Cache-Control: no-store).
|
|
if [ -d "$NVIDIA_PIP_WHEELS" ] && ls "$NVIDIA_PIP_WHEELS"/*.whl &>/dev/null; then
|
|
export PIP_FIND_LINKS="${PIP_FIND_LINKS:+$PIP_FIND_LINKS }$NVIDIA_PIP_WHEELS"
|
|
fi
|