SiFAR: Synchronization-Free All-Reduce for Low-Latency LLM Inference

📅 2026-07-09
📈 Citations: 0
Influential: 0
📄 PDF
🤖 AI Summary
This work addresses the scalability bottleneck in large language model inference caused by the growing All-Reduce communication overhead as GPU count increases, which significantly elevates end-to-end response latency. The authors propose a synchronization-free All-Reduce mechanism that co-designs communication and computation through dual buffering, in-switch reduction via smart network switches, and speculative reduction coupled with lightweight verification. This approach entirely eliminates the traditional synchronous barriers inherent in conventional All-Reduce implementations. Experimental results demonstrate substantial improvements in both scalability and throughput: on Llama-3.1-8B, All-Reduce latency is reduced by 52% and end-to-end throughput increases by 18.6%; on Qwen3.5-397B-17B with tensor parallelism of 8, throughput improves by 13.1%.
📝 Abstract
The rise of reasoning models and agentic systems has made LLM token-generation latency a key bottleneck. Unlike chatbots, whose latency gains saturate at human reading speed, these systems generate intermediate reasoning tokens not consumed by humans. Thus, per-token latency directly determines end-to-end response time. Low-latency inference uses minimal batching, making token generation bandwidth-bound. Tensor Parallelism addresses this by sharding model weights across GPUs and loading them in parallel. However, scaling to more GPUs introduces All-Reduce overheads that grow with GPU count. Removing All-Reduce improves token throughput by 43% for Llama-3.1-8B on 8 H200 GPUs. We propose Synchronization-Free All-Reduce (SiFAR), which reduces synchronization overhead during low-latency inference. Existing oneshot and twoshot algorithms incur overheads from barriers before and after communication. First, we find that the bottom barrier in oneshot enforces a WAW dependency and eliminate it by co-designing communication and model execution to enable dual buffering. However, oneshot scales poorly with GPU count. Twoshot performs better at higher TP degrees but incurs an unavoidable bottom barrier. To overcome this, we leverage in-switch reduction in modern switches. We propose redundant pull, where each GPU reduces the full All-Reduce payload at the switch. This improves oneshot scalability while retaining its no-bottom-barrier advantage. Finally, to reduce top-barrier overhead, we observe that each decode step issues multiple All-Reduce operations, keeping GPUs tightly synchronized after the first. We therefore propose speculative reduction, which initiates data transfer before the top barrier and ensures correctness via lightweight validation. SiFAR reduces All-Reduce latency by up to 52% and improves end-to-end throughput by 18.6% for Llama-3.1-8B and 13.1% for Qwen3.5-397B-17B at TP=8.
Problem

Research questions and friction points this paper is trying to address.

Low-Latency LLM Inference
All-Reduce
Synchronization Overhead
Tensor Parallelism
Token Generation Latency
Innovation

Methods, ideas, or system contributions that make the work stand out.

Synchronization-Free All-Reduce
in-switch reduction
speculative reduction
tensor parallelism
low-latency LLM inference
🔎 Similar Papers
No similar papers found.