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>
27 lines
641 B
YAML
27 lines
641 B
YAML
BasedOnStyle: Google
|
|
UseTab: Never
|
|
IndentWidth: 2
|
|
ColumnLimit: 80
|
|
|
|
# Force pointers to the type for C++.
|
|
DerivePointerAlignment: false
|
|
PointerAlignment: Left
|
|
|
|
# Reordering #include statements can (and currently will) introduce errors
|
|
SortIncludes: false
|
|
|
|
# Style choices
|
|
AlignConsecutiveAssignments: false
|
|
AlignConsecutiveDeclarations: false
|
|
IndentPPDirectives: BeforeHash
|
|
|
|
IncludeCategories:
|
|
- Regex: '^<'
|
|
Priority: 4
|
|
- Regex: '^"(llvm|llvm-c|clang|clang-c|mlir|mlir-c)/'
|
|
Priority: 3
|
|
- Regex: '^"(qoda|\.\.)/'
|
|
Priority: 2
|
|
- Regex: '.*'
|
|
Priority: 1
|