Views
No views yet
1# NVIDIA GPU (CUDA 12.9)
2pip install "paroquant[vllm]"
3
4# NVIDIA GPU (CUDA 13.0)
5pip install "paroquant[vllm]" "vllm==0.19.1" \
6 --extra-index-url https://wheels.vllm.ai/0.19.1/cu130 \
7 --extra-index-url https://download.pytorch.org/whl/cu130
8
9# Apple Silicon
10pip install "paroquant[mlx]"python -m paroquant.cli.chat --model z-lab/gemma-4-26B-A4B-it-PAROvllm serve to serve ParoQuant models:vllm serve z-lab/gemma-4-26B-A4B-it-PARO --port 8000python -m paroquant.cli.serve --model z-lab/gemma-4-26B-A4B-it-PARO --port 8000--vlm if you wish to load the VLM components and use the model's multimodal features. For vLLM, VLM components are loaded by default and can be skipped with the server argument --language-model-only.[!NOTE] The visual components in this checkpoint is stored in original precision, and only the language components are quantized to 4 bits; as a result, the model size is larger than a fully-quantized model. Avoid loading the VLM components if you are not using the multimodal features for the best efficiency.
[!NOTE] The following commands map the local cache directory to the container in order to persist kernel cache across runs. Remove-v ...to disable this behavior.
1# Interactive chat
2docker run --pull=always --rm -it --gpus all --ipc=host \
3 -v $HOME/.cache/paroquant:/root/.cache/paroquant \
4 ghcr.io/z-lab/paroquant:chat --model z-lab/gemma-4-26B-A4B-it-PARO
5
6# API server (port 8000)
7docker run --pull=always --rm -it --gpus all --ipc=host -p 8000:8000 \
8 -v $HOME/.cache/paroquant:/root/.cache/paroquant \
9 ghcr.io/z-lab/paroquant:serve --model z-lab/gemma-4-26B-A4B-it-PARO1@inproceedings{liang2026paroquant,
2 title = {{ParoQuant: Pairwise Rotation Quantization for Efficient Reasoning LLM Inference}},
3 author = {Liang, Yesheng and Chen, Haisheng and Zhang, Zihan and Han, Song and Liu, Zhijian},
4 booktitle = {International Conference on Learning Representations (ICLR)},
5 year = {2026}
6}