27 lines
963 B
Bash
27 lines
963 B
Bash
#!/bin/bash
|
|
# Install the dependency in CI.
|
|
set -euxo pipefail
|
|
|
|
# Use repo from environment variables, passed from GitHub Actions
|
|
FLASHINFER_REPO="${FLASHINFER_REPO:-https://flashinfer.ai/whl/cu124/torch2.5/flashinfer-python}"
|
|
|
|
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
bash "${SCRIPT_DIR}/killall_sglang.sh"
|
|
|
|
pip install --upgrade pip
|
|
pip uninstall flashinfer -y
|
|
pip install -e "python[all]" --find-links https://flashinfer.ai/whl/cu124/torch2.5/flashinfer-python
|
|
|
|
rm -rf /root/.cache/flashinfer
|
|
# Force reinstall flashinfer and torch_memory_saver
|
|
pip install flashinfer_python==0.2.3 --find-links ${FLASHINFER_REPO} --force-reinstall --no-deps
|
|
pip install sgl-kernel==0.0.5.post4 --force-reinstall
|
|
|
|
pip install torch_memory_saver
|
|
pip install transformers==4.50.0 sentence_transformers accelerate==1.4.0 peft pandas datasets timm
|
|
|
|
# For compling xgrammar kernels
|
|
pip install cuda-python nvidia-cuda-nvrtc-cu12
|
|
|
|
pip uninstall vllm -y || true
|