third_party/vllm/ now tracked in git for direct patch management.
Based on vLLM v0.18.1 release with one patch applied:
vllm/v1/core/sched/scheduler.py:
Replace fatal assert with graceful skip when KV transfer callback
arrives for an already-aborted request during PD disaggregated serving.
Future vLLM modifications should be made directly in third_party/vllm/
and committed normally. The patches/ directory is kept as documentation
of what changed from upstream.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
23 lines
569 B
Bash
23 lines
569 B
Bash
#!/bin/bash
|
|
set -eux
|
|
|
|
python_executable=python$1
|
|
cuda_home=/usr/local/cuda-$2
|
|
|
|
# Update paths
|
|
PATH=${cuda_home}/bin:$PATH
|
|
LD_LIBRARY_PATH=${cuda_home}/lib64:$LD_LIBRARY_PATH
|
|
|
|
# Install requirements
|
|
$python_executable -m pip install -r requirements/build.txt -r requirements/cuda.txt
|
|
|
|
# Limit the number of parallel jobs to avoid OOM
|
|
export MAX_JOBS=1
|
|
# Make sure release wheels are built for the following architectures
|
|
export TORCH_CUDA_ARCH_LIST="7.0 7.5 8.0 8.6 8.9 9.0+PTX"
|
|
|
|
bash tools/check_repo.sh
|
|
|
|
# Build
|
|
$python_executable setup.py bdist_wheel --dist-dir=dist
|