Overview
Running large language model inference on edge devices usually means choosing between two extremes: full local execution (strong privacy but limited compute) or full cloud delegation (ample compute but high latency). PipeSD takes a middle path: a small model drafts tokens on the edge, while a larger model verifies them in batch on the cloud. The paper has been accepted at ICML 2026.
Two Core Innovations
1. Dynamic-programming-optimized token-batch pipeline scheduling — generation and communication are overlapped so neither side waits on the other. 2. Dual-threshold Bayesian auto-tuning verification trigger — automatically decides when the verifier should be invoked, avoiding wasted round-trips.
Results
- Speedup: 1.16x – 2.16x
- Energy reduction: 14.3% – 25.3%
- Title: PipeSD: Cloud-Edge Collaborative Pipeline Inference with Speculative Decoding
- Authors: Yunhe Han, Yunqi Gao, et al.
- Venue: ICML 2026
- Preprint: arXiv:2605.13319 (cs.DC)
- Link: https://arxiv.org/abs/2605.13319
Why It Matters
> Extending speculative decoding from a single machine to a cloud-edge setting introduces stacked communication and compute latency as the central difficulty. Pipeline scheduling is the key mechanism for resolving it.