This repository hosts the
W8A8 FP8 quantized version of
Fast_dVLM_3B, produced via SmoothQuant offline calibration.
Load this checkpoint with the customized SGLang shipped in the
Fast-dLLM repo:
1# Install the customized SGLang (one-time)
2git clone https://github.com/NVlabs/Fast-dLLM
3cd Fast-dLLM/fast_dvlm/sglang/python
4pip install -e .
5
6# Run the chatbot with FP8 quantization
7cd ../..
8python run_chatbot_sglang.py \
9 --algorithm spec \
10 --model-path Sensen02/Fast_dVLM_3B_W8A8_FP8 \
11 --quantization w8a8_fp8 \
12 --prompt "Describe this image." \
13 --image path/to/image.jpg
1"quantization_config": {
2 "quant_method": "w8a8_fp8",
3 "is_dynamic": false,
4 "ignore": []
5}
1@misc{wu2026fastdvlmefficientblockdiffusionvlm,
2 title={Fast-dVLM: Efficient Block-Diffusion VLM via Direct Conversion from Autoregressive VLM},
3 author={Chengyue Wu and Shiyi Lan and Yonggan Fu and Sensen Gao and Jin Wang and Jincheng Yu and Jose M. Alvarez and Pavlo Molchanov and Ping Luo and Song Han and Ligeng Zhu and Enze Xie},
4 year={2026},
5 eprint={2604.06832},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2604.06832},
9}