paper-with-me

Papers

Decode-Branch Transformers: Decoupling the Primary Prefill Path from Additional Decode Computation

2026-07-31 · Liming Liu, Mingze Wang, Tuo Zhao arxiv

As large language models serve ever more requests, cumulative inference cost is growing relative to the one-time cost of training. In typical serving, prompt prefill runs in parallel and is compute-bound, whereas autoregressive decode is sequential and memory-traffic-bound. Conventional width or depth scaling raises both costs together, since every added layer is evaluated in both phases and enlarges the weights read at each decode step. We instead ask whether additional learned computation can be allocated to continuation prediction while preserving prompt-wide primary computation and a single KV cache. We realize this with the Decode-Branch Transformer. Its primary path alone processes the prompt and writes the KV cache; the decode branch is omitted during prefill and activated only from the final prompt position onward, adding continuation computation without writing state or affecting the primary path. The paths share attention, MLP, and output matrices, using separate token embeddings with lightweight coupling. Grouped decode reuses loaded weight tiles and the primary KV cache across both paths, so the added arithmetic does not proportionally increase dominant memory traffic or decode latency. Across matched-token comparisons, Decode-Branch achieves lower validation loss across architectures and data settings. In MoE models, the primary and branch expert fan-outs become independent knobs for trading prompt cost, decode cost, and predictive quality. We study two expert-allocation regimes, holding prefill or decode computation fixed, and expose a prefill-decode-quality trade-off enabled by phase-specific expert allocation.

📄 PDF Abstract BibTeX arXiv:2608.12385

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

From Tokens to Layers: Redefining Stall-Free Scheduling for MoE Serving with Layered Prefill

2025-10-09 · Gunjun Lee, Jiwon Kim, Jaiyoung Park, Younjoo Lee 외 arxiv

Large Language Model (LLM) inference in production must meet stringent service-level objectives for both time-to-first-token (TTFT) and time-between-token (TBT) while maximizing throughput under fixed compute, memory, an…

Resolving Representation Ambiguity in Feedforward Novel View Synthesis Transformer via Semantic-Spatial Decoupling

2026-05-18 · Yihang Wu, Yihang Sun, Shaofeng Zhang, Zuxuan Wu 외 arxiv

Transformer-based models have advanced feedforward novel view synthesis (NVS). Current architectures such as GS-LRM and LVSM mix semantic information (e.g., RGB) and spatial information (e.g., Plücker rays) into a shared…

Novel View Synthesis

Towards Load-Aware Prefill Deflection for Disaggregated LLM Serving

2026-07-02 · Shrikara Arun, Anjaly Parayil, Srikant Bharadwaj, Renee St. Amant 외 arxiv

Disaggregated LLM serving runs prefill and decode on separate GPU pools to keep the two phases from interfering. In practice, this creates a new asymmetry: under bursty, heavy-tailed workloads prefill nodes saturate whil…

SARATHI: Efficient LLM Inference by Piggybacking Decodes with Chunked Prefills

2023-08-31 · Amey Agrawal, Ashish Panwar, Jayashree Mohan, Nipun Kwatra 외

Large Language Model (LLM) inference consists of two distinct phases - prefill phase which processes the input prompt and decode phase which generates output tokens autoregressively. While the prefill phase effectively s…

GPULanguage ModellingLarge Language Model

Sangam: Efficiently Serving Diffusion LLMs with the AR Stack

2026-07-05 · Nitin Kedia, Saurabh Agarwal, Myungjin Lee, Aditya Akella arxiv

Diffusion language models (dLLMs) generate text by iteratively denoising a masked response and can commit multiple output positions per model invocation. Their bidirectional attention prevents exact autoregressive-style …