Analysis updated 2026-05-18
Run the 159B-parameter DeepSeek-V4-Flash model locally on a single high-end consumer GPU.
Serve the GLM-5.2 model across two GPUs using the same compression technique.
Study how 2-bit weight compression with FP4 recovery preserves model quality.
Build a Docker image with the patched vLLM to serve large models on Blackwell hardware.
| sapid-labs/vllm-moet | 0petru/sentimo | alingalingling/akasha-wechat | |
|---|---|---|---|
| Stars | 17 | 17 | 17 |
| Language | Python | Python | Python |
| Setup difficulty | hard | moderate | hard |
| Complexity | 5/5 | 3/5 | 4/5 |
| Audience | researcher | developer | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires NVIDIA Blackwell GPUs, Docker, and large model checkpoint downloads to get running.
This project is a patched version of vLLM, a popular tool for running large language models, aimed at making a very large AI model called DeepSeek-V4-Flash work on NVIDIA's newer Blackwell graphics cards. According to the README, the official vLLM release is broken for this model on this hardware, so the maintainers wrote a large patch, over 5,600 lines, to fix it and also to shrink the model so it fits on cards that would otherwise not have enough memory. DeepSeek-V4-Flash is a 159 billion parameter model, and the trick used here is compressing most of its internal building blocks down to 2 bits instead of the usual higher precision, while keeping accuracy close to a 4-bit version through a recovery technique. The README explains that a naive version of this compression breaks the model, producing repetitive nonsense, and traces the cause to an imbalance in how positive and negative values were represented. Fixing that imbalance restores quality while keeping the smaller size. The README reports specific performance numbers on different graphics card setups, including running the full 159 billion parameter model on a single high-end consumer card by treating the GPU's memory as a cache for the most frequently used parts of the model, while the bulk of the compressed model sits in regular system memory. It also describes applying the same technique to an even larger model, GLM-5.2, across two cards. The repository includes hand-written low-level GPU kernels, a Docker build for quick setup, and a runbook document referenced for a specific hardware variant, alongside detailed documentation of the underlying fixes to the base vLLM release. This is deeply technical, research-grade software intended for people already comfortable running large AI models on specialized hardware, rather than a beginner tool.
A patched vLLM build that compresses a 159B-parameter AI model to run on NVIDIA Blackwell GPUs that normally could not fit it.
Mainly Python. The stack also includes Python, vLLM, CUDA.
Setup difficulty is rated hard, with roughly 1day+ to a first successful run.
Mainly researcher.
This repo across BitVibe Labs
Verify against the repo before relying on details.