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>
15 lines
336 B
Bash
Executable File
15 lines
336 B
Bash
Executable File
#!/bin/bash
|
|
# Checks whether the repo is clean and whether tags are available (necessary to correctly produce vllm version at build time)
|
|
|
|
if ! git diff --quiet; then
|
|
echo "Repo is dirty" >&2
|
|
|
|
exit 1
|
|
fi
|
|
|
|
if ! git describe --tags; then
|
|
echo "No tags are present. Is this a shallow clone? git fetch --unshallow --tags" >&2
|
|
|
|
exit 1
|
|
fi
|