Run Qwen3.6-35B locally on an RTX 5090 with faster prefill and decode than llama.cpp.
Benchmark and validate LLM inference speed and accuracy on Blackwell GPUs.
Serve Qwen3.6 through an OpenAI-compatible API for existing tools to connect to.
| ambud/q36 | yassa9/dvlt.cu | stablemarkk/hash256_miner | |
|---|---|---|---|
| Stars | 31 | 31 | 20 |
| Language | Cuda | Cuda | Cuda |
| Setup difficulty | hard | hard | moderate |
| Complexity | 5/5 | 5/5 | 4/5 |
| Audience | researcher | researcher | developer |
Figures from each repo's GitHub metadata at analysis time.
Requires an RTX 5090 or similar Blackwell GPU, a specific CUDA Toolkit version, and manually downloaded model weights.
q36 is a specialized inference engine built to run one specific large language model, Qwen3.6-35B, as fast as possible on one specific graphics card, the NVIDIA RTX 5090. Instead of trying to support many different models and GPUs the way general purpose tools like llama.cpp or vLLM do, q36 is written entirely in C and CUDA and optimized narrowly for this one pairing, on the idea that a purpose built engine can outperform general tools on the cases they were not specifically tuned for. According to benchmarks in the project, q36 processes prompts faster than llama.cpp at every context length tested, and generates new text faster in nearly every case as well, with one exception at very long context depths. It achieves this partly through custom CUDA code for both the attention layers and the recurrent memory layers the model uses, and through techniques like shrinking the memory used to store conversation context and instantly saving and restoring conversation state from system memory in a few milliseconds. It ships with a command line chat interface, a server that speaks the same protocol as OpenAI's API so existing tools can connect to it, a benchmarking tool, and a way to measure how accurate the model's outputs are compared to llama.cpp on a standard test set. Using q36 requires specific hardware, an RTX 5090 or a similar Blackwell generation NVIDIA GPU, plus a specific CUDA toolkit version installed on Linux, and downloading the Qwen3.6 model weights separately from Hugging Face. This is not a general purpose tool for casual users. It is aimed at people already running large language models locally who have the exact hardware it targets and want the fastest possible performance from it. The project has 31 stars on GitHub, and its license is not stated in the material reviewed.
q36 is a hand-tuned CUDA inference engine that runs the Qwen3.6-35B model faster than llama.cpp, but only on RTX 5090 GPUs.
Mainly Cuda. The stack also includes C, CUDA, Qwen3.6.
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.