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/Qwen3-0.6B-PAROvllm serve to serve ParoQuant models:vllm serve z-lab/Qwen3-0.6B-PARO --port 8000python -m paroquant.cli.serve --model z-lab/Qwen3-0.6B-PARO --port 8000[!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/Qwen3-0.6B-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/Qwen3-0.6B-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}