FastFLUX: Pruning FLUX with Block-wise Replacement and Sandwich Training
Fuhan Cai, Yong Guo, Jie Li, Wenbo Li, Jian Chen, Xiangzhong Fang
TL;DR
The paper addresses the high computational cost of diffusion transformers by introducing FastFLUX, an architecture-level pruning framework that combines Block-wise Replacement with Linear Layers (BRLL) and Sandwich Training (ST) to preserve generation quality. BRLL replaces heavy residual branches with linear layers, initialized via a closed-form least-squares solution, while ST provides LoRA-based localized fine-tuning around replaced blocks to mitigate degradation. The approach maintains performance with significant inference speedups at modest pruning ratios (e.g., 20%), and demonstrates generalization to architectures beyond FLUX, including Stable Diffusion v3.0. Overall, FastFLUX offers a scalable, low-training-cost path to deployable diffusion models with competitive quality.
Abstract
Recent advancements in text-to-image (T2I) generation have led to the emergence of highly expressive models such as diffusion transformers (DiTs), exemplified by FLUX. However, their massive parameter sizes lead to slow inference, high memory usage, and poor deployability. Existing acceleration methods (e.g., single-step distillation and attention pruning) often suffer from significant performance degradation and incur substantial training costs. To address these limitations, we propose FastFLUX, an architecture-level pruning framework designed to enhance the inference efficiency of FLUX. At its core is the Block-wise Replacement with Linear Layers (BRLL) method, which replaces structurally complex residual branches in ResBlocks with lightweight linear layers while preserving the original shortcut connections for stability. Furthermore, we introduce Sandwich Training (ST), a localized fine-tuning strategy that leverages LoRA to supervise neighboring blocks, mitigating performance drops caused by structural replacement. Experiments show that our FastFLUX maintains high image quality under both qualitative and quantitative evaluations, while significantly improving inference speed, even with 20\% of the hierarchy pruned. Our code will be available soon.
