Skip to main content

vLLM Ascend KV Compression

English | 简体中文

An independently packaged TriAttention KV-cache compression plugin for the upstream-aligned vLLM-HUST and vLLM-Ascend-HUST stacks. Version 0.5 generates model-matched calibration artifacts itself and adapts the current hosts and Extension Manager without changing either host repository.

Status: experimental release candidate. Package lifecycle, Ascend kernel smoke, three cold 16K engineering-control pairs, and bounded public LongBench-v2/LongBench quality checks pass. The full V4.6 official baseline, production-corpus calibration, repeated public performance runs, and stability matrix remain release gates. See Validation.

Ownership and maintenance

  • School: Huazhong University of Science and Technology (HUST)
  • Group: CGCL
  • Advisor: Prof. Yao Wan (万瑶)
  • Project lead: Sichen Liu (刘思辰), @Seas0
  • Maintainers: Jiawan Zhang (张家万), @Jiawan23; Ruohao Wei (韦若皓), @kotoriqaq0; and @Seas0

The team agrees to maintain compatibility with vLLM-HUST and vLLM-Ascend-HUST and to publish this work through the vLLM-HUST Extension Manager. This is a CGCL-maintained plugin, not code built into either host.

Source and redistribution scope

The scoring method adapts TriAttention commit a4bc3c8f and the paper TriAttention: Efficient Long Reasoning with Trigonometric KV Compression. The Ascend paged-KV runtime was rewritten and does not copy the reference CUDA kernels.

Repository code and documentation are Apache-2.0. Model weights, datasets, raw logs, and calibration statistics are not included in the wheel or sdist. The development-only committed statistics have incomplete model/data provenance and must not be redistributed merely under this repository's license. See NOTICE, ownership and licensing, and calibration artifacts.

Compatibility

Component Supported line Validated snapshot
vLLM-HUST / vllm >=0.28.1.post1.dev0,<0.29 6cdc0304a8 (0.28.1.post1.dev260)
vLLM-Ascend-HUST / vllm-ascend >=0.25.1rc2.dev0,<0.26 5901bedbb7 (0.25.1rc2.dev232+hust.20260903.4.g5901bedbb)
Extension Manager >=0.2.0.dev0,<0.3 cf1ea71e3e
Python >=3.10,<3.15 3.11.16

The supported topology is one Ascend NPU, the v1 scheduler and NPUModelRunner, one full-attention KV group, block size 128, and dense BF16/FP16 K/V. Unsupported combinations fail during startup. The manifest uses the stable vllm.general_plugins discovery entry point; current hosts do not expose a frozen native KV-lifecycle API, so the narrow host range and contract tests intentionally guard the internal integration seams.

Install, enable, disable, and uninstall

Install the host stack first, then the released wheel:

python -m pip install 'vllm-ascend-kvcompress-hust[manager]==0.5.0'

Copy examples/triattention.json and set stats_path to the artifact location. If it does not exist, the enabled plugin generates model-matched statistics before vLLM loads its serving weights, atomically saves them, releases the temporary model, and continues startup. For production, set calibration_input_path to a licensed representative UTF-8 corpus; the bundled text is a bootstrap default. Then run:

vllm-hust-ext extension validate org.vllm-hust.ascend-kvcompress
vllm-hust-ext extension configure org.vllm-hust.ascend-kvcompress \
  --file /absolute/path/triattention.json
vllm-hust-ext extension enable org.vllm-hust.ascend-kvcompress
vllm-hust-ext extension status org.vllm-hust.ascend-kvcompress

export VLLM_PLUGINS=ascend,ascend_kvcompress
vllm-hust-ext run -- vllm serve /path/to/model \
  --block-size 128 --no-enable-prefix-caching --no-async-scheduling

If VLLM_PLUGINS is unset, vLLM discovers all installed plugins. The package remains inert unless the manager or direct enable flag activates it. Stop all host processes before changing state:

vllm-hust-ext extension disable org.vllm-hust.ascend-kvcompress
vllm-hust-ext extension forget org.vllm-hust.ascend-kvcompress
python -m pip uninstall vllm-ascend-kvcompress-hust

These operations only change the plugin package and manager state. Detailed source/environment instructions are in the installation guide, and the isolated wheel workflow is in packaging and release.

For development without Extension Manager:

export VLLM_PLUGINS=ascend,ascend_kvcompress
export VLLM_ASCEND_KVCOMPRESS_ENABLED=1
export VLLM_ASCEND_KVCOMPRESS_CONFIG=/absolute/path/triattention.json
vllm serve /path/to/model --block-size 128 --no-enable-prefix-caching

Unset both VLLM_ASCEND_KVCOMPRESS_* variables and restart to disable it.

Runtime and long-context optimization

After explicit activation, the adapter validates and hooks the current scheduler, KV-cache manager, concrete Ascend block table, and NPUModelRunner. Compression is committed only after a synchronous model step: semantic RoPE positions stay unchanged, physical attention/slot indices use a per-request offset, and old blocks are released at the next scheduler barrier.

Version 0.5 retains the version 0.4 direct paged-K scoring, persistent workspaces, fused NPU normalization/head/layer aggregation, dynamic JIT lengths, layer-stride sampling, device-resident offsets, and a configurable requested-output gate that skips scoring/copy when generation is too short to amortize it. The public quality sweep rejected the aggressive 4,096-token budget and recommends an 8,192-token physical budget; 4K remains only a workload-specific option requiring separate quality checks. The final 910B2 kernel benchmark measured 1.82x paged-copy, 2.81x direct-score, and 1.34x aggregate speedups against generic references; offset update was 0.83x and is not claimed as an improvement.

In three cold engineering-control pairs on Qwen2.5-14B, each with four fixed 16,384+1,024 requests at 0.4 RPS/concurrency 4, all 24 requests completed with the expected output length. Compression retained 32/128 blocks per request (75% physical KV reduction). Median total throughput was 1431.3 versus 1129.5 tok/s (+26.7%); mean TPOT was 39.16 versus 52.43 ms (-25.3%); mean E2E was 44.37 versus 57.81 s (-23.2%). This is engineering evidence against a same-host compatibility control, not the required official V4.6 B0 claim.

A separate public A3 sweep used all eligible non-truncated cases from LongBench-v2 (116), LongBench passage_retrieval_en (200), and LongBench qasper (93). With an 8K budget, LongBench-v2 accuracy was unchanged and request throughput improved 2.13%; retrieval stayed at 100% and deliberately bypassed compression because its output cap is 32 tokens, with request throughput changing -0.04%; Qasper F1 changed by -0.48 percentage points and request throughput by -0.11%. B1 recorded 127/127 scheduler/worker commits and reduced physical blocks 60.67% over compressed cases. See the full public benchmark record, including the rejected 4K Qasper result and single-run limitations.

Conflict matrix

Feature 0.5 status Behavior
Prefix cache Conflict Rejected; must be disabled
Speculative decoding Conflict Rejected
KV transfer / disaggregated P/D Conflict Rejected
Quantized KV Conflict Rejected; dense BF16/FP16 only
Hybrid/MLA/sliding/local attention Conflict Rejected
Async scheduling Conflict Rejected
TP/PP/DP/DCP/PCP > 1 Conflict Rejected
BidKV or another scheduler Conflict Standard v1 scheduler required; active balance scheduling rejected
Removed Prefix Router, KV Tiering, KNorm, PyramidKV Ascend, SliceGPT Not integrated No imports or assumptions about former host code
Other general plugins Unverified Use an explicit allowlist and test the combination

Configuration and validation

The example uses an 8192-token budget, 1024-token recompute window, 512-token protected recent window, 8192-token scoring chunks, and every fourth scoring layer. It bypasses compression below 64 requested output tokens. KV-related token counts must be positive multiples of block size 128.

VLLM_PLUGINS='' TORCH_DEVICE_BACKEND_AUTOLOAD=0 python -m pytest -q
python -m ruff check src tests scripts
python -m ruff format --check src tests scripts

An NPU release candidate must also pass numerical kernel smoke and the declared long-context quality/performance/HBM matrix on the exact host stack.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

vllm_ascend_kvcompress_hust-0.5.0.tar.gz (167.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

vllm_ascend_kvcompress_hust-0.5.0-py3-none-any.whl (52.8 kB view details)

Uploaded Python 3

File details

Details for the file vllm_ascend_kvcompress_hust-0.5.0.tar.gz.

File metadata

File hashes

Hashes for vllm_ascend_kvcompress_hust-0.5.0.tar.gz
Algorithm Hash digest
SHA256 513998646728b6dfe9460ced9e3a7d913fb65e4eeee5038fd9b3e5a2c86085d2
MD5 cba26eb888bba5262126f336ce924f52
BLAKE2b-256 d89fe6d63b6f5652cc9a0aed40e993147bd8460f88b89871460d750ce52d88c1

See more details on using hashes here.

File details

Details for the file vllm_ascend_kvcompress_hust-0.5.0-py3-none-any.whl.

File metadata

File hashes

Hashes for vllm_ascend_kvcompress_hust-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 9d00a0dd426c36463fd9b5de08267d783b29c68525ef4325f9847110c48fa9a2
MD5 47a932667db1fd6175099aa46059f303
BLAKE2b-256 dd4dbb637039dedf9535315c6a30a0d405c22a2596219d9146f2545101731f34

See more details on using hashes here.

Release history Release notifications | RSS feed

0.6.0

2 files

This release

0.5.0 This release

2 files

0.4.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page