[NeurIPS 2025] Accelerating Parallel Diffusion Model Serving with Residual Compression
Python
44
703 commits
updated Oct 17, 2025
TL;DR: Diffusion models exhibit heavy temporal redundancy, yet we transmit full activations step after step.
Why are we sending near-duplicated data across GPUs?
CompactFusion transmits only the compressed residuals — the real information change — to drastically reduce bandwidth with minimal quality loss.

We owe special thanks to the xDiT team—without their excellent open-source framework, this project would simply not exist.
Their work laid the foundation for everything we've built.
We thank the DistriFusion authors for sharing their code and system.
We also thank common_metrics_on_video_quality for their excellent video quality evaluation tools.
CompactFusion is a residual compression framework for parallel diffusion model serving.
It compresses only the change (residual) between activations across steps — and adds optional error feedback to maintain reconstruction quality.
✅ CompactFusion only targets communication, making it:

Residual Compression Principle![]() | System Architecture![]() |
CompactFusion supports out-of-the-box compression for:
xDiTxDiTWe build CompactFusion on top of the excellent xDiT framework.
You may simply use the pre-built Docker image from xDiT:
docker pull thufeifeibear/xdit-dev
Example usages are provided in:
examples/cogvideox_example.py
examples/flux_example.py
We do not modify the setup of xDiT. You can refer directly to xDiT documentation for usage details.
If you use this code for your research, please cite our paper.
@article{luo2025accelerating,
title={Accelerating Parallel Diffusion Model Serving with Residual Compression},
author={Luo, Jiajun and Xiao, Yicheng and Xu, Jianru and You, Yangxiu and Lu, Rongwei and Tang, Chen and Jiang, Jingyan and Wang, Zhi},
journal={arXiv preprint arXiv:2507.17511},
year={2025}
}
(top 30 of 36)
Python
57.4%
Jupyter Notebook
42.0%
[NeurIPS 2025] Accelerating Parallel Diffusion Model Serving with Residual Compression
Python
44
703 commits
updated Oct 17, 2025
TL;DR: Diffusion models exhibit heavy temporal redundancy, yet we transmit full activations step after step.
Why are we sending near-duplicated data across GPUs?
CompactFusion transmits only the compressed residuals — the real information change — to drastically reduce bandwidth with minimal quality loss.

We owe special thanks to the xDiT team—without their excellent open-source framework, this project would simply not exist.
Their work laid the foundation for everything we've built.
We thank the DistriFusion authors for sharing their code and system.
We also thank common_metrics_on_video_quality for their excellent video quality evaluation tools.
CompactFusion is a residual compression framework for parallel diffusion model serving.
It compresses only the change (residual) between activations across steps — and adds optional error feedback to maintain reconstruction quality.
✅ CompactFusion only targets communication, making it:

Residual Compression Principle![]() | System Architecture![]() |
CompactFusion supports out-of-the-box compression for:
xDiTxDiTWe build CompactFusion on top of the excellent xDiT framework.
You may simply use the pre-built Docker image from xDiT:
docker pull thufeifeibear/xdit-dev
Example usages are provided in:
examples/cogvideox_example.py
examples/flux_example.py
We do not modify the setup of xDiT. You can refer directly to xDiT documentation for usage details.
If you use this code for your research, please cite our paper.
@article{luo2025accelerating,
title={Accelerating Parallel Diffusion Model Serving with Residual Compression},
author={Luo, Jiajun and Xiao, Yicheng and Xu, Jianru and You, Yangxiu and Lu, Rongwei and Tang, Chen and Jiang, Jingyan and Wang, Zhi},
journal={arXiv preprint arXiv:2507.17511},
year={2025}
}
(top 30 of 36)
Python
57.4%
Jupyter Notebook
42.0%