localweights/vllm-gguf-plugin — explained in plain English
Analysis updated 2026-05-18
Run large Qwen3.5 or Qwen3.6 AI models locally on a single consumer GPU at higher speed.
Benchmark quantized model inference speed against upstream and other optimized tools.
Serve a compressed GGUF model file directly through vLLM without converting it first.
| localweights/vllm-gguf-plugin | aclark4life/home-depot-crawl | ashishdevasia/ha-proton-drive-backup | |
|---|---|---|---|
| Stars | 6 | 6 | 6 |
| Language | Python | Python | Python |
| Last pushed | — | 2014-08-10 | — |
| Maintenance | — | Dormant | — |
| Setup difficulty | hard | moderate | moderate |
| Complexity | 5/5 | 2/5 | 2/5 |
| Audience | researcher | developer | ops devops |
Figures from each repo's GitHub metadata at analysis time.
Requires a CUDA capable GPU, building a custom extension, and downloading large GGUF model files.
This project is a modified version of an existing tool called vllm-gguf-plugin, which lets a popular AI serving system called vLLM run large language models stored in a compressed file format called GGUF. This fork adds support for running two specific newer AI models, called Qwen3.5 and Qwen3.6, which use a mix of two different internal designs, and it makes them run noticeably faster on a single consumer graphics card. The author rewrote several low level pieces of code that run on the graphics card so that these compressed models load and process faster, squeezing more speed out of the same hardware without changing the model's answers, since the outputs are confirmed to stay identical after the changes. One key addition is support for a speed up technique built into the model files themselves, which lets the AI draft several words ahead and verify them together instead of generating one word at a time, similar to how a fast typist might guess the next few words of a sentence before confirming them. The README includes measured speed test results on a single RTX 3090 Ti graphics card, showing the modified version running noticeably faster than the original plugin, and getting close to the speed of another well known optimized tool built for this purpose. The author also ran quality checks after each change, comparing answers against a reference version of the model and testing long documents to make sure the AI still remembered information correctly. To use this fork, you install it with a Python package command that builds a custom extension, then run vLLM's serve command pointing at your GGUF model file, with several configuration flags controlling memory usage, context length, and the speed up feature. The author specifically warns against using one particular flag that disables a performance feature, since it slows things down significantly on these particular models. For installation, development setup, and anything not specific to these new models, the fork follows the same instructions as the original upstream project, and existing users of that project can continue using it unchanged.
A modified plugin that lets vLLM run compressed Qwen3.5 and Qwen3.6 AI models much faster on a single consumer GPU, using custom speed optimizations.
Mainly Python. The stack also includes Python, vLLM, CUDA.
Setup difficulty is rated hard, with roughly 1h+ to a first successful run.
Mainly researcher.
This repo across BitVibe Labs
Verify against the repo before relying on details.