Linking-ai/Awesome-Efficient-Inference-LLM-RL-Agent

🚀 First survey bridging LLM, RL, and Agentic Eras — 100+ papers on efficient inference from static generation to systematic reasoning and action.

13

2 commits

updated May 13, 2026

See the code

README

🚀 From Static to Systematic:
A Survey on Efficient Inference Across LLM, RL, and Agentic Eras

PDF GitHub stars

⭐ If you find this repository helpful, please consider giving it a star.

📚 Table of Contents


🔥 Latest News

  • [2026-05-12] 🚀 Repository launched to track efficient inference techniques across the LLM, RL, and Agentic eras.
  • [2026-05-12] 🎉 Our survey paper "From Static to Systematic: A Survey on Efficient Inference Across LLM, RL, and Agentic Eras" is now available.

📖 Overview

This repository accompanies our COLM 2026 survey, which takes an evolutionary perspective on efficient LLM inference: rather than cataloguing techniques in isolation, we trace how each technique class transfers, adapts, or breaks as the computational paradigm shifts from single-pass generation, to reasoning-time rollouts, to persistent agentic loops.

Three Eras Overview
Figure 1: Inference paradigms across the three eras. LLM Era – single-pass generation from prompt x to response y. RL Era – inference-time reasoning with extended CoT, and training-time rollout generating G trajectories. Agentic Era – a persistent loop of tool calls, observations, and context accumulation.

Three Eras of Inference

① LLM EraSingle-pass, open-loop generation.

Given a prompt x, the model autoregressively produces y token by token. Prefill caches KV in one forward pass; decode attends to all cached tokens, making it memory-bandwidth-bound.

② RL EraInference-time reasoning + training-time rollout.

Large Reasoning Models (e.g., DeepSeek-R1, Qwen3) emit thousands of CoT tokens before answering. RL algorithms like GRPO/DAPO require G on-policy trajectories per gradient step, making rollout the dominant pipeline cost — subject to policy non-stationarity, trajectory length heterogeneity, and synchronization barriers.

③ Agentic EraPersistent multi-step decision loops.

Systems like Claude Code and OpenClaw place the LLM in a loop of generate → tool call → observe → append. Context grows cumulatively; tool latency is unpredictable; KV state may be shared across model instances.

The Three-Tax View

We introduce the Three-Tax view as a unified lens for the cumulative efficiency burden each era introduces:

TaxEra IntroducedDescription
🟦 KV TaxLLMMaterialized KV vectors dominate GPU memory and restrict throughput in long-context decoding.
🟩 Thinking TaxRLReasoning tokens are highly redundant — reflection, self-verification, and dead-end branches inflate output length without proportional quality gain.
🟥 Action TaxAgenticContext grows cumulatively with agent steps; unpredictable tool latency invalidates standard batching assumptions.

The eras are cumulative: each inherits prior taxes and introduces new ones.

Cross-Era Roadmap

Roadmap of optimization techniques
Figure 2: Roadmap of optimization techniques across model, algorithm, and system levels. Red nodes indicate the RL/Agentic era. Labels K, T, and A denote the primary inference taxes (KV, Thinking, and Action) addressed by each technique node.

📑 Paper List

Tables follow the paper's three-level taxonomy: Model-Level → Algorithm-Level → System-Level. Within each technique node we further split papers into the LLM Era (foundational methods) and the RL/Agentic Era (era-specific adaptations or newly emerged methods). The Tax label per node indicates which inference tax(es) the technique primarily addresses (🟦 K = KV Tax, 🟩 T = Thinking Tax, 🟥 A = Action Tax).


🧱 Model-Level

Model-level methods target the static structure of the deployed model — its parameters, precision, and architectural connectivity. They produce a smaller or sparser artifact that downstream serving stacks consume directly.

Model Compression

Tax addressed: 🟦 K (LLM Era), 🟩 T (RL/Agentic Era)

LLM Era methods reduce parameter count or numerical precision without retraining (Pruning, Quantization, Knowledge Distillation). RL/Agentic Era shifts to training-aware co-evolution: quantization noise is repurposed as policy-gradient regularizer, and full CoT traces become the distillation supervision signal.

LLM Era

PaperYearVenueLink
LLM-Pruner: On the Structural Pruning of Large Language Models2023NeurIPSLink
SliceGPT: Compress Large Language Models by Deleting Rows and Columns2024ICLRLink
SparseGPT: Massive Language Models Can Be Accurately Pruned in One-Shot2023ICMLLink
ShortGPT: Layers in Large Language Models Are More Redundant Than You Expect2025ACL FindingsLink
FLAP: Fluctuation-based Adaptive Structured Pruning for Large Language Models2024AAAILink
GPTQ: Accurate Post-Training Quantization for Generative Pre-trained Transformers2022arXivLink
AWQ: Activation-aware Weight Quantization for On-Device LLM Compression and Acceleration2024MLSysLink
SmoothQuant: Accurate and Efficient Post-Training Quantization for Large Language Models2023ICMLLink
QuIP#: Even Better LLM Quantization with Hadamard Incoherence and Lattice Codebooks2024ICMLLink
MiniLLM: Knowledge Distillation of Large Language Models2024ICLRLink
DistiLLM: Towards Streamlined Distillation for Large Language Models2024ICMLLink

RL / Agentic Era

PaperYearVenueLink
DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning2025NatureLink
s1: Simple Test-Time Scaling2025EMNLPLink
QeRL: Beyond Efficiency — Quantization-Enhanced Reinforcement Learning for LLMs2025arXivLink
QuRL: Efficient Reinforcement Learning with Quantized Rollout2026arXivLink

Structural Optimization

Tax addressed: 🟦 K (LLM Era); 🟦 K + 🟩 T (Natively Trainable Sparse Attention); 🟦 K + 🟩 T + 🟥 A (Hybrid Architectures)

LLM Era methods redesign architectures for sparse or sub-linear execution (MoE, low-rank KV, sparse attention). RL/Agentic Era shifts focus from external context to self-generated reasoning steps: natively trainable sparse attention reduces the KV footprint of long CoT, and hybrid linear/full-attention architectures balance global modeling with per-step throughput for long-horizon rollouts.

LLM Era

PaperYearVenueLink
Mixtral of Experts2024arXivLink
DeepSeek-V2: A Strong, Economical, and Efficient Mixture-of-Experts Language Model (MLA)2024arXivLink
Longformer: The Long-Document Transformer2020arXivLink
SeerAttention: Learning Intrinsic Sparse Attention in Your LLMs2024arXivLink

RL / Agentic Era

PaperYearVenueLink
Native Sparse Attention: Hardware-Aligned and Natively Trainable Sparse Attention (NSA)2025ACLLink
DeepSeek-V3.2-Exp: Boosting Long-Context Efficiency with DeepSeek Sparse Attention (DSA)2025arXivLink
MoBA: Mixture of Block Attention for Long-Context LLMs2025NeurIPSLink
Kimi Linear: An Expressive, Efficient Attention Architecture (KDA)2025arXivLink
MiniMax-M1: Scaling Test-Time Compute Efficiently with Lightning Attention2025arXivLink

⚙️ Algorithm-Level

Algorithm-level methods modify what and how much the model computes per token / per turn / per agent step — without changing model weights.

KV Cache Management

Tax addressed: 🟦 K (LLM Era); 🟦 K + 🟩 T (RL-guided Compression); 🟦 K + 🟥 A (Cross-turn Persistent Reuse, Cross-agent KV Sharing)

LLM Era focuses on cache reduction (eviction, sparse selection, quantization) and prefix-sharing for local reuse. RL/Agentic Era redefines KV as a long-lived state spanning rollouts and multi-agent interactions: reward-guided compression replaces heuristic eviction, and KV becomes a transferable, persistent asset across turns and across model instances.

LLM Era

PaperYearVenueLink
H2O: Heavy-Hitter Oracle for Efficient Generative Inference of Large Language Models2023NeurIPSLink
Efficient Streaming Language Models with Attention Sinks (StreamingLLM)2024ICLRLink
PyramidKV: Dynamic KV Cache Compression based on Pyramidal Information Funneling2025COLMLink
SCOPE: Optimizing Key-Value Cache Compression in Long-Context Generation2025ACLLink
MInference 1.0: Accelerating Pre-filling for Long-Context LLMs via Dynamic Sparse Attention2024NeurIPSLink
InfLLM: Training-Free Long-Context Extrapolation for LLMs with an Efficient Context Memory2024NeurIPSLink
CacheBlend: Fast Large Language Model Serving for RAG with Cached Knowledge Fusion2025EuroSysLink
EPIC: Efficient Position-Independent Caching for Serving Large Language Models2025ICMLLink
KVLink: Accelerating Large Language Models via Efficient KV Cache Reuse2025NeurIPSLink
KIVI: A Tuning-Free Asymmetric 2-bit Quantization for KV Cache2024ICMLLink
KVQuant: Towards 10 Million Context Length LLM Inference with KV Cache Quantization2024NeurIPSLink
ZipCache: Accurate and Efficient KV Cache Quantization with Salient Token Identification2024NeurIPSLink
TurboQuant: Online Vector Quantization with Near-optimal Distortion Rate2026ICLRLink

RL / Agentic Era

PaperYearVenueLink
Which Heads Matter for Reasoning? RL-Guided KV Cache Compression (RLKV)2025arXivLink
R-KV: Redundancy-Aware KV Cache Compression for Reasoning Models2025NeurIPSLink
KVFlow: Efficient Prefix Caching for Accelerating LLM-Based Multi-Agent Workflows2025NeurIPSLink
Cache-to-Cache: Direct Semantic Communication Between Large Language Models (C2C)2026ICLRLink
Continuum: Efficient and Robust Multi-Turn LLM Agent Scheduling with KV Cache Time-to-Live2025arXivLink
DroidSpeak: KV Cache Sharing for Cross-LLM Communication and Multi-LLM Serving2024arXivLink
KVCOMM: Online Cross-Context KV-Cache Communication for Efficient LLM-based Multi-Agent Systems2025NeurIPSLink
PAL-KV: When KV Cache Reuse Fails in Multi-Agent Systems — Cross-Candidate Interaction is Crucial for LLM Judges2026arXivLink
Query as Anchor: Scenario-Adaptive User Representation via Large Language Model2026arXivLink

Speculative Decoding

Tax addressed: 🟦 K + 🟩 T (token-level SD, accelerates CoT generation); 🟩 T (Trajectory-level Epoch Reuse, exploits policy laziness); 🟥 A (Action-space Speculation, exploits tool latency)

The SD paradigm preserves its draft-and-verify skeleton across all three eras, but the exploited form of redundancy changes fundamentally each time: token locality (LLM) → policy laziness (RL) → tool-latency gaps (Agentic).

LLM Era

PaperYearVenueLink
Fast Inference from Transformers via Speculative Decoding2023ICMLLink
Multi-Candidate Speculative Decoding (MCSD)2025NLPCCLink
SEED: Accelerating Reasoning Tree Construction via Scheduled Speculative Decoding2025COLINGLink
EAGLE: Speculative Sampling Requires Rethinking Feature Uncertainty2024ICMLLink
Speculative Speculative Decoding (SSD)2026arXivLink

RL / Agentic Era

PaperYearVenueLink
SPEC-RL: Accelerating On-Policy Reinforcement Learning via Speculative Rollouts2025arXivLink
History Rhymes: Accelerating LLM Reinforcement Learning with RhymeRL2025arXivLink
ReSpec: Towards Optimizing Speculative Decoding in Reinforcement Learning Systems2025arXivLink
Speculative Actions: A Lossless Framework for Faster Agentic Systems2025arXivLink
Interactive Speculative Planning: Enhance Agent Efficiency through Co-design of System and User Interface (ISP)2024arXivLink
Dynamic Speculative Agent Planning (DSP)2025arXivLink
SpecEyes: Accelerating Agentic Multimodal LLMs via Speculative Perception and Planning2026arXivLink

Thinking & Reasoning Efficiency

Tax addressed: 🟦 K (Prompt Compression, SoT); 🟩 T (Test-Time Scaling, CoT Compression, Dynamic Compute, Latent CoT); 🟥 A (Agentic Plan Caching)

LLM Era methods target surface-level redundancy with task-agnostic heuristics on tokens (prompt compression, parallel decoding, search). RL/Agentic Era shifts to internalized adaptive control — the model learns to compress its own reasoning, allocate compute by difficulty, internalize CoT in latent space, or cache reusable sub-plans across tasks.

LLM Era

PaperYearVenueLink
Adapting Language Models to Compress Contexts (AutoCompressors)2023EMNLPLink
In-context Autoencoder for Context Compression in a Large Language Model (ICAE)2024ICLRLink
LLMLingua: Compressing Prompts for Accelerated Inference of Large Language Models2023EMNLPLink
LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt Compression2024ACL FindingsLink
Adaptive Skeleton Graph Decoding (ASGD)2024arXiv
LongLLMLingua: Accelerating and Enhancing LLMs in Long Context Scenarios via Prompt Compression2024ACLLink
Skeleton-of-Thought: Large Language Models Can Do Parallel Decoding (SoT)2023ENLSP@NeurIPSLink
Fast Best-of-N Decoding via Speculative Rejection2024NeurIPSLink
Make Every Penny Count: Difficulty-Adaptive Self-Consistency for Cost-Efficient Reasoning (DSC)2025NAACL FindingsLink
A*-Decoding: Token-efficient Inference Scaling2025arXivLink

RL / Agentic Era

PaperYearVenueLink
TokenSkip: Controllable Chain-of-Thought Compression in LLMs2025EMNLPLink
ThinkPrune: Pruning Long Chain-of-Thought of LLMs via Reinforcement Learning2025arXivLink
Can Pruning Improve Reasoning? Revisiting Long-CoT Compression with Capability in Mind for Better Reasoning (Prune-on-Logic)2025arXivLink
Qwen3 Technical Report2025arXivLink
BARD: Budget-Aware Reasoning Distillation2025arXivLink
Pruning Long Chain-of-Thought of Large Reasoning Models via Small-Scale Preference Optimization (LCPO)2025arXivLink
Adaptive Thinking: Large Language Models Know When to Think in Latent Space (Sonata)2026ICLRLink
Training Large Language Models to Reason in a Continuous Latent Space (COCONUT)2025COLMLink
CODI: Compressing Chain-of-Thought into Continuous Space via Self-Distillation2025EMNLPLink
Agentic Plan Caching: Test-Time Memory for Fast and Cost-Efficient LLM Agents (APC)2025arXivLink
Cost-Efficient Serving of LLM Agents via Test-Time Plan Caching2025ES-FoMoLink
Memory as Action: Autonomous Context Curation for Long-Horizon Agentic Tasks (MemAct)2025arXivLink
CATS: Category-Aware Token-level Steering for Training-Free Redundancy Reduction in Large Reasoning Models2026AAAI

Early Exit & Layer Skipping

Tax addressed: 🟦 K + 🟩 T (Early Exit); 🟦 K (Layer Skipping); 🟩 T (Training-free Intervention, Learnable Exit); 🟩 T + 🟥 A (Agentic Dynamic Compute)

LLM Era methods skip redundant computation at the token level — adaptive exit predictors and self-speculative drafters that reuse shallow layers. RL/Agentic Era shifts the target from physical layer traversal to cognitive trajectory truncation: detecting when CoT is sufficient, RL-trained brevity, and proactive termination of ineffective multi-step trajectories.

LLM Era

PaperYearVenueLink
LayerSkip: Enabling Early Exit Inference and Self-Speculative Decoding2024ACLLink
Not All Layers of LLMs Are Necessary During Inference (AdaInfer)2025IJCAILink
DASH: Input-Aware Dynamic Layer Skipping for Efficient LLM Inference with Markov Decision Policies2025arXivLink
HELIOS: Adaptive Model And Early-Exit Selection for Efficient LLM Inference Serving2025arXivLink
SpecEE: Accelerating Large Language Model Inference with Speculative Early Exiting2025ISCALink
AdaSkip: Adaptive Sublayer Skipping for Accelerating Long-Context LLM Inference2025AAAILink
DEL: Context-Aware Dynamic Exit Layer for Efficient Self-Speculative Decoding2025COLMLink

RL / Agentic Era

PaperYearVenueLink
S-GRPO: Early Exit via Reinforcement Learning in Reasoning Models2025NeurIPSLink
Stop When Enough: Adaptive Early-Stopping for Chain-of-Thought Reasoning (REFRAIN)2025arXivLink
Early Stopping Chain-of-Thoughts in Large Language Models (ES-CoT)2025arXivLink
TERMINATOR: Learning Optimal Exit Points for Early Stopping in Chain-of-Thought Reasoning2026arXivLink
NEAT: Neuron-Based Early Exit for Large Reasoning Models2026arXivLink
Runaway is Ashamed, But Helpful: On the Early-Exit Behavior of LLM-based Agents in Embodied Environments (AgentExit)2025EMNLP FindingsLink

🖥️ System-Level

System-level methods optimize how model executions are orchestrated across hardware — batching, memory placement, kernels, and distribution.

Batching & Scheduling

Tax addressed: 🟦 K (LLM Era iteration-level orchestration); 🟩 T (Long-tail Rollout, Async Decoupling); 🟥 A (Workflow-level Scheduling)

LLM Era targets iteration-level orchestration and KV-memory-aware batching (continuous batching, paged memory, SLO-aware scheduling). RL/Agentic Era introduces new scheduling units: long-tail rollout segmentation, async rollout-training decoupling, and DAG-based end-to-end agentic workflow scheduling.

LLM Era

PaperYearVenueLink
Orca: A Distributed Serving System for Transformer-Based Generative Models2022OSDILink
Efficient Memory Management for Large Language Model Serving with PagedAttention (vLLM)2023SOSPLink
Taming Throughput-Latency Tradeoff in LLM Inference with Sarathi-Serve2024OSDILink
POD-Attention: Unlocking Full Prefill-Decode Overlap for Faster LLM Inference2025ASPLOSLink
Optimal Scheduling Algorithms for LLM Inference: Theory and Practice (RAD)2025SIGMETRICSLink
FairBatching: Fairness-Aware Batch Formation for LLM Inference2025arXivLink

RL / Agentic Era

PaperYearVenueLink
Part II: ROLL Flash — Accelerating RLVR and Agentic Training with Asynchrony2025arXivLink
RollPacker: Mitigating Long-Tail Rollouts for Fast, Synchronous RL Post-Training2025arXivLink
APRIL: Active Partial Rollouts in Reinforcement Learning to Tame Long-tail Generation2025arXivLink
Act Only When It Pays: Efficient Reinforcement Learning for LLM Reasoning via Selective Rollouts (GRESO)2025NeurIPSLink
SkyRL-Agent: Efficient RL Training for Multi-turn LLM Agent2025arXivLink
Batch Query Processing and Optimization for Agentic Workflows (Halo)2025arXivLink
Astraea: A State-Aware Scheduling Engine for LLM-Powered Agents2025arXivLink
Efficient LLM Serving for Agentic Workflows: A Data Systems Perspective (Helium)2026arXivLink
AIOS: LLM Agent Operating System2024COLMLink
ThunderAgent: A Simple, Fast and Program-Aware Agentic Inference System2026arXivLink

Memory Management

Tax addressed: 🟦 K (Hierarchical Offloading, PD Disaggregation); 🟩 T (Parameter Reallocation, Rollout-aware Offloading); 🟦 K + 🟥 A (Memory-aware Orchestration)

LLM Era targets hierarchical offloading and PD disaggregation to handle contexts beyond accelerator capacity. RL/Agentic Era introduces pipeline-level pressure: dynamic parameter reallocation across Actor/Critic/Reference models, decoupled rollout infrastructure, and KV retention coupled with multi-agent workflow state persistence.

LLM Era

PaperYearVenueLink
FlexGen: High-Throughput Generative Inference of Large Language Models with a Single GPU2023ICMLLink
NEO: Saving GPU Memory Crisis with CPU Offloading for Online LLM Inference2025MLSysLink
Cost-Efficient Large Language Model Serving for Multi-Turn Conversations with CachedAttention2024USENIX ATCLink
LMCache: An Efficient KV Cache Layer for Enterprise-Scale LLM Inference2025arXivLink
DistServe: Disaggregating Prefill and Decoding for Goodput-Optimized Large Language Model Serving2024OSDILink
Mooncake: A KVCache-Centric Disaggregated Architecture for LLM Serving2024ACM TOSLink

RL / Agentic Era

PaperYearVenueLink
ReaLHF: Optimized RLHF Training for Large Language Models through Parameter Reallocation2024arXivLink
RollArt: Scaling Agentic RL Training via Disaggregated Infrastructure2025arXivLink
Optimizing RLHF Training for Large Language Models with Stage Fusion (RLHFuse)2025NSDILink
ProRL Agent: Rollout-as-a-Service for RL Training of Multi-Turn LLM Agents2026arXivLink
Kairos: Low-Latency Multi-Agent Serving with Shared LLMs and Excessive Loads in the Public Cloud2025arXivLink
TokenCake: A KV-Cache-centric Serving Framework for LLM-based Multi-Agent Applications2025arXivLink

Hardware & Distributed

Tax addressed: 🟦 K (LLM Era IO-aware kernels, tensor/pipeline parallelism); 🟩 T (Asynchronous Disaggregated Architectures); 🟩 T + 🟥 A (Heterogeneous Cluster Scheduling)

LLM Era breaks memory walls and communication bottlenecks (FlashAttention family, unified KV engines, tensor/pipeline parallelism). RL/Agentic Era faces pipeline bubbles between memory-bound rollouts and compute-bound training: asynchronous disaggregated stacks with interruptible rollouts and heterogeneous cluster scheduling.

LLM Era

PaperYearVenueLink
FlashInfer: Efficient and Customizable Attention Engine for LLM Inference Serving2025MLSysLink
SnapStream: Efficient Long Sequence Decoding on Dataflow Accelerators2025arXivLink
FlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness2022NeurIPSLink
FlashAttention-2: Faster Attention with Better Parallelism and Work Partitioning2024ICLRLink
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-Precision2024NeurIPSLink
Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism2019arXivLink
DeepSpeed-Inference: Enabling Efficient Inference of Transformer Models at Unprecedented Scale2022SCLink

RL / Agentic Era

PaperYearVenueLink
HybridFlow: A Flexible and Efficient RLHF Framework (verl)2025EuroSysLink
AReaL: A Large-Scale Asynchronous Reinforcement Learning System for Language Reasoning2025NeurIPSLink
StreamRL: Scalable, Heterogeneous, and Elastic RL for LLMs with Disaggregated Stream Generation2025arXivLink
HetRL: Efficient Reinforcement Learning for LLMs in Heterogeneous Environments2025arXivLink

🌟 Citation

If you find this survey or repository useful for your research, please cite:

@article{wangstatic,
  title={From Static to Systematic: A Survey on Efficient Inference Across LLM, RL, and Agentic Eras},
  author={Wang, Zhenglin and Li, Zhenyang and Wang, Zongwei and Liu, Tong and Wu, Jialong and Liang, Sichu and Zhang, Congzhi and Sun, Haowen and Ma, Ziyang and Lai, Yilong and others}
}

📧 Contact

We welcome contributions! If you would like to add a paper, fix a categorization, or report any issue:

  • Open a GitHub Issue or Pull Request, or
  • Email the corresponding author Zhenglin Wang at zhenglin@seu.edu.cn.

Tracing how efficient inference evolves across eras, and why.The spiral continues.

Contributors

Linking-ai

2 commits

Linking-ai/Awesome-Efficient-Inference-LLM-RL-Agent

🚀 First survey bridging LLM, RL, and Agentic Eras — 100+ papers on efficient inference from static generation to systematic reasoning and action.

13

2 commits

updated May 13, 2026

See the code

README

🚀 From Static to Systematic:
A Survey on Efficient Inference Across LLM, RL, and Agentic Eras

PDF GitHub stars

⭐ If you find this repository helpful, please consider giving it a star.

📚 Table of Contents


🔥 Latest News

  • [2026-05-12] 🚀 Repository launched to track efficient inference techniques across the LLM, RL, and Agentic eras.
  • [2026-05-12] 🎉 Our survey paper "From Static to Systematic: A Survey on Efficient Inference Across LLM, RL, and Agentic Eras" is now available.

📖 Overview

This repository accompanies our COLM 2026 survey, which takes an evolutionary perspective on efficient LLM inference: rather than cataloguing techniques in isolation, we trace how each technique class transfers, adapts, or breaks as the computational paradigm shifts from single-pass generation, to reasoning-time rollouts, to persistent agentic loops.

Three Eras Overview
Figure 1: Inference paradigms across the three eras. LLM Era – single-pass generation from prompt x to response y. RL Era – inference-time reasoning with extended CoT, and training-time rollout generating G trajectories. Agentic Era – a persistent loop of tool calls, observations, and context accumulation.

Three Eras of Inference

① LLM EraSingle-pass, open-loop generation.

Given a prompt x, the model autoregressively produces y token by token. Prefill caches KV in one forward pass; decode attends to all cached tokens, making it memory-bandwidth-bound.

② RL EraInference-time reasoning + training-time rollout.

Large Reasoning Models (e.g., DeepSeek-R1, Qwen3) emit thousands of CoT tokens before answering. RL algorithms like GRPO/DAPO require G on-policy trajectories per gradient step, making rollout the dominant pipeline cost — subject to policy non-stationarity, trajectory length heterogeneity, and synchronization barriers.

③ Agentic EraPersistent multi-step decision loops.

Systems like Claude Code and OpenClaw place the LLM in a loop of generate → tool call → observe → append. Context grows cumulatively; tool latency is unpredictable; KV state may be shared across model instances.

The Three-Tax View

We introduce the Three-Tax view as a unified lens for the cumulative efficiency burden each era introduces:

TaxEra IntroducedDescription
🟦 KV TaxLLMMaterialized KV vectors dominate GPU memory and restrict throughput in long-context decoding.
🟩 Thinking TaxRLReasoning tokens are highly redundant — reflection, self-verification, and dead-end branches inflate output length without proportional quality gain.
🟥 Action TaxAgenticContext grows cumulatively with agent steps; unpredictable tool latency invalidates standard batching assumptions.

The eras are cumulative: each inherits prior taxes and introduces new ones.

Cross-Era Roadmap

Roadmap of optimization techniques
Figure 2: Roadmap of optimization techniques across model, algorithm, and system levels. Red nodes indicate the RL/Agentic era. Labels K, T, and A denote the primary inference taxes (KV, Thinking, and Action) addressed by each technique node.

📑 Paper List

Tables follow the paper's three-level taxonomy: Model-Level → Algorithm-Level → System-Level. Within each technique node we further split papers into the LLM Era (foundational methods) and the RL/Agentic Era (era-specific adaptations or newly emerged methods). The Tax label per node indicates which inference tax(es) the technique primarily addresses (🟦 K = KV Tax, 🟩 T = Thinking Tax, 🟥 A = Action Tax).


🧱 Model-Level

Model-level methods target the static structure of the deployed model — its parameters, precision, and architectural connectivity. They produce a smaller or sparser artifact that downstream serving stacks consume directly.

Model Compression

Tax addressed: 🟦 K (LLM Era), 🟩 T (RL/Agentic Era)

LLM Era methods reduce parameter count or numerical precision without retraining (Pruning, Quantization, Knowledge Distillation). RL/Agentic Era shifts to training-aware co-evolution: quantization noise is repurposed as policy-gradient regularizer, and full CoT traces become the distillation supervision signal.

LLM Era

PaperYearVenueLink
LLM-Pruner: On the Structural Pruning of Large Language Models2023NeurIPSLink
SliceGPT: Compress Large Language Models by Deleting Rows and Columns2024ICLRLink
SparseGPT: Massive Language Models Can Be Accurately Pruned in One-Shot2023ICMLLink
ShortGPT: Layers in Large Language Models Are More Redundant Than You Expect2025ACL FindingsLink
FLAP: Fluctuation-based Adaptive Structured Pruning for Large Language Models2024AAAILink
GPTQ: Accurate Post-Training Quantization for Generative Pre-trained Transformers2022arXivLink
AWQ: Activation-aware Weight Quantization for On-Device LLM Compression and Acceleration2024MLSysLink
SmoothQuant: Accurate and Efficient Post-Training Quantization for Large Language Models2023ICMLLink
QuIP#: Even Better LLM Quantization with Hadamard Incoherence and Lattice Codebooks2024ICMLLink
MiniLLM: Knowledge Distillation of Large Language Models2024ICLRLink
DistiLLM: Towards Streamlined Distillation for Large Language Models2024ICMLLink

RL / Agentic Era

PaperYearVenueLink
DeepSeek-R1: Incentivizing Reasoning Capability in LLMs via Reinforcement Learning2025NatureLink
s1: Simple Test-Time Scaling2025EMNLPLink
QeRL: Beyond Efficiency — Quantization-Enhanced Reinforcement Learning for LLMs2025arXivLink
QuRL: Efficient Reinforcement Learning with Quantized Rollout2026arXivLink

Structural Optimization

Tax addressed: 🟦 K (LLM Era); 🟦 K + 🟩 T (Natively Trainable Sparse Attention); 🟦 K + 🟩 T + 🟥 A (Hybrid Architectures)

LLM Era methods redesign architectures for sparse or sub-linear execution (MoE, low-rank KV, sparse attention). RL/Agentic Era shifts focus from external context to self-generated reasoning steps: natively trainable sparse attention reduces the KV footprint of long CoT, and hybrid linear/full-attention architectures balance global modeling with per-step throughput for long-horizon rollouts.

LLM Era

PaperYearVenueLink
Mixtral of Experts2024arXivLink
DeepSeek-V2: A Strong, Economical, and Efficient Mixture-of-Experts Language Model (MLA)2024arXivLink
Longformer: The Long-Document Transformer2020arXivLink
SeerAttention: Learning Intrinsic Sparse Attention in Your LLMs2024arXivLink

RL / Agentic Era

PaperYearVenueLink
Native Sparse Attention: Hardware-Aligned and Natively Trainable Sparse Attention (NSA)2025ACLLink
DeepSeek-V3.2-Exp: Boosting Long-Context Efficiency with DeepSeek Sparse Attention (DSA)2025arXivLink
MoBA: Mixture of Block Attention for Long-Context LLMs2025NeurIPSLink
Kimi Linear: An Expressive, Efficient Attention Architecture (KDA)2025arXivLink
MiniMax-M1: Scaling Test-Time Compute Efficiently with Lightning Attention2025arXivLink

⚙️ Algorithm-Level

Algorithm-level methods modify what and how much the model computes per token / per turn / per agent step — without changing model weights.

KV Cache Management

Tax addressed: 🟦 K (LLM Era); 🟦 K + 🟩 T (RL-guided Compression); 🟦 K + 🟥 A (Cross-turn Persistent Reuse, Cross-agent KV Sharing)

LLM Era focuses on cache reduction (eviction, sparse selection, quantization) and prefix-sharing for local reuse. RL/Agentic Era redefines KV as a long-lived state spanning rollouts and multi-agent interactions: reward-guided compression replaces heuristic eviction, and KV becomes a transferable, persistent asset across turns and across model instances.

LLM Era

PaperYearVenueLink
H2O: Heavy-Hitter Oracle for Efficient Generative Inference of Large Language Models2023NeurIPSLink
Efficient Streaming Language Models with Attention Sinks (StreamingLLM)2024ICLRLink
PyramidKV: Dynamic KV Cache Compression based on Pyramidal Information Funneling2025COLMLink
SCOPE: Optimizing Key-Value Cache Compression in Long-Context Generation2025ACLLink
MInference 1.0: Accelerating Pre-filling for Long-Context LLMs via Dynamic Sparse Attention2024NeurIPSLink
InfLLM: Training-Free Long-Context Extrapolation for LLMs with an Efficient Context Memory2024NeurIPSLink
CacheBlend: Fast Large Language Model Serving for RAG with Cached Knowledge Fusion2025EuroSysLink
EPIC: Efficient Position-Independent Caching for Serving Large Language Models2025ICMLLink
KVLink: Accelerating Large Language Models via Efficient KV Cache Reuse2025NeurIPSLink
KIVI: A Tuning-Free Asymmetric 2-bit Quantization for KV Cache2024ICMLLink
KVQuant: Towards 10 Million Context Length LLM Inference with KV Cache Quantization2024NeurIPSLink
ZipCache: Accurate and Efficient KV Cache Quantization with Salient Token Identification2024NeurIPSLink
TurboQuant: Online Vector Quantization with Near-optimal Distortion Rate2026ICLRLink

RL / Agentic Era

PaperYearVenueLink
Which Heads Matter for Reasoning? RL-Guided KV Cache Compression (RLKV)2025arXivLink
R-KV: Redundancy-Aware KV Cache Compression for Reasoning Models2025NeurIPSLink
KVFlow: Efficient Prefix Caching for Accelerating LLM-Based Multi-Agent Workflows2025NeurIPSLink
Cache-to-Cache: Direct Semantic Communication Between Large Language Models (C2C)2026ICLRLink
Continuum: Efficient and Robust Multi-Turn LLM Agent Scheduling with KV Cache Time-to-Live2025arXivLink
DroidSpeak: KV Cache Sharing for Cross-LLM Communication and Multi-LLM Serving2024arXivLink
KVCOMM: Online Cross-Context KV-Cache Communication for Efficient LLM-based Multi-Agent Systems2025NeurIPSLink
PAL-KV: When KV Cache Reuse Fails in Multi-Agent Systems — Cross-Candidate Interaction is Crucial for LLM Judges2026arXivLink
Query as Anchor: Scenario-Adaptive User Representation via Large Language Model2026arXivLink

Speculative Decoding

Tax addressed: 🟦 K + 🟩 T (token-level SD, accelerates CoT generation); 🟩 T (Trajectory-level Epoch Reuse, exploits policy laziness); 🟥 A (Action-space Speculation, exploits tool latency)

The SD paradigm preserves its draft-and-verify skeleton across all three eras, but the exploited form of redundancy changes fundamentally each time: token locality (LLM) → policy laziness (RL) → tool-latency gaps (Agentic).

LLM Era

PaperYearVenueLink
Fast Inference from Transformers via Speculative Decoding2023ICMLLink
Multi-Candidate Speculative Decoding (MCSD)2025NLPCCLink
SEED: Accelerating Reasoning Tree Construction via Scheduled Speculative Decoding2025COLINGLink
EAGLE: Speculative Sampling Requires Rethinking Feature Uncertainty2024ICMLLink
Speculative Speculative Decoding (SSD)2026arXivLink

RL / Agentic Era

PaperYearVenueLink
SPEC-RL: Accelerating On-Policy Reinforcement Learning via Speculative Rollouts2025arXivLink
History Rhymes: Accelerating LLM Reinforcement Learning with RhymeRL2025arXivLink
ReSpec: Towards Optimizing Speculative Decoding in Reinforcement Learning Systems2025arXivLink
Speculative Actions: A Lossless Framework for Faster Agentic Systems2025arXivLink
Interactive Speculative Planning: Enhance Agent Efficiency through Co-design of System and User Interface (ISP)2024arXivLink
Dynamic Speculative Agent Planning (DSP)2025arXivLink
SpecEyes: Accelerating Agentic Multimodal LLMs via Speculative Perception and Planning2026arXivLink

Thinking & Reasoning Efficiency

Tax addressed: 🟦 K (Prompt Compression, SoT); 🟩 T (Test-Time Scaling, CoT Compression, Dynamic Compute, Latent CoT); 🟥 A (Agentic Plan Caching)

LLM Era methods target surface-level redundancy with task-agnostic heuristics on tokens (prompt compression, parallel decoding, search). RL/Agentic Era shifts to internalized adaptive control — the model learns to compress its own reasoning, allocate compute by difficulty, internalize CoT in latent space, or cache reusable sub-plans across tasks.

LLM Era

PaperYearVenueLink
Adapting Language Models to Compress Contexts (AutoCompressors)2023EMNLPLink
In-context Autoencoder for Context Compression in a Large Language Model (ICAE)2024ICLRLink
LLMLingua: Compressing Prompts for Accelerated Inference of Large Language Models2023EMNLPLink
LLMLingua-2: Data Distillation for Efficient and Faithful Task-Agnostic Prompt Compression2024ACL FindingsLink
Adaptive Skeleton Graph Decoding (ASGD)2024arXiv
LongLLMLingua: Accelerating and Enhancing LLMs in Long Context Scenarios via Prompt Compression2024ACLLink
Skeleton-of-Thought: Large Language Models Can Do Parallel Decoding (SoT)2023ENLSP@NeurIPSLink
Fast Best-of-N Decoding via Speculative Rejection2024NeurIPSLink
Make Every Penny Count: Difficulty-Adaptive Self-Consistency for Cost-Efficient Reasoning (DSC)2025NAACL FindingsLink
A*-Decoding: Token-efficient Inference Scaling2025arXivLink

RL / Agentic Era

PaperYearVenueLink
TokenSkip: Controllable Chain-of-Thought Compression in LLMs2025EMNLPLink
ThinkPrune: Pruning Long Chain-of-Thought of LLMs via Reinforcement Learning2025arXivLink
Can Pruning Improve Reasoning? Revisiting Long-CoT Compression with Capability in Mind for Better Reasoning (Prune-on-Logic)2025arXivLink
Qwen3 Technical Report2025arXivLink
BARD: Budget-Aware Reasoning Distillation2025arXivLink
Pruning Long Chain-of-Thought of Large Reasoning Models via Small-Scale Preference Optimization (LCPO)2025arXivLink
Adaptive Thinking: Large Language Models Know When to Think in Latent Space (Sonata)2026ICLRLink
Training Large Language Models to Reason in a Continuous Latent Space (COCONUT)2025COLMLink
CODI: Compressing Chain-of-Thought into Continuous Space via Self-Distillation2025EMNLPLink
Agentic Plan Caching: Test-Time Memory for Fast and Cost-Efficient LLM Agents (APC)2025arXivLink
Cost-Efficient Serving of LLM Agents via Test-Time Plan Caching2025ES-FoMoLink
Memory as Action: Autonomous Context Curation for Long-Horizon Agentic Tasks (MemAct)2025arXivLink
CATS: Category-Aware Token-level Steering for Training-Free Redundancy Reduction in Large Reasoning Models2026AAAI

Early Exit & Layer Skipping

Tax addressed: 🟦 K + 🟩 T (Early Exit); 🟦 K (Layer Skipping); 🟩 T (Training-free Intervention, Learnable Exit); 🟩 T + 🟥 A (Agentic Dynamic Compute)

LLM Era methods skip redundant computation at the token level — adaptive exit predictors and self-speculative drafters that reuse shallow layers. RL/Agentic Era shifts the target from physical layer traversal to cognitive trajectory truncation: detecting when CoT is sufficient, RL-trained brevity, and proactive termination of ineffective multi-step trajectories.

LLM Era

PaperYearVenueLink
LayerSkip: Enabling Early Exit Inference and Self-Speculative Decoding2024ACLLink
Not All Layers of LLMs Are Necessary During Inference (AdaInfer)2025IJCAILink
DASH: Input-Aware Dynamic Layer Skipping for Efficient LLM Inference with Markov Decision Policies2025arXivLink
HELIOS: Adaptive Model And Early-Exit Selection for Efficient LLM Inference Serving2025arXivLink
SpecEE: Accelerating Large Language Model Inference with Speculative Early Exiting2025ISCALink
AdaSkip: Adaptive Sublayer Skipping for Accelerating Long-Context LLM Inference2025AAAILink
DEL: Context-Aware Dynamic Exit Layer for Efficient Self-Speculative Decoding2025COLMLink

RL / Agentic Era

PaperYearVenueLink
S-GRPO: Early Exit via Reinforcement Learning in Reasoning Models2025NeurIPSLink
Stop When Enough: Adaptive Early-Stopping for Chain-of-Thought Reasoning (REFRAIN)2025arXivLink
Early Stopping Chain-of-Thoughts in Large Language Models (ES-CoT)2025arXivLink
TERMINATOR: Learning Optimal Exit Points for Early Stopping in Chain-of-Thought Reasoning2026arXivLink
NEAT: Neuron-Based Early Exit for Large Reasoning Models2026arXivLink
Runaway is Ashamed, But Helpful: On the Early-Exit Behavior of LLM-based Agents in Embodied Environments (AgentExit)2025EMNLP FindingsLink

🖥️ System-Level

System-level methods optimize how model executions are orchestrated across hardware — batching, memory placement, kernels, and distribution.

Batching & Scheduling

Tax addressed: 🟦 K (LLM Era iteration-level orchestration); 🟩 T (Long-tail Rollout, Async Decoupling); 🟥 A (Workflow-level Scheduling)

LLM Era targets iteration-level orchestration and KV-memory-aware batching (continuous batching, paged memory, SLO-aware scheduling). RL/Agentic Era introduces new scheduling units: long-tail rollout segmentation, async rollout-training decoupling, and DAG-based end-to-end agentic workflow scheduling.

LLM Era

PaperYearVenueLink
Orca: A Distributed Serving System for Transformer-Based Generative Models2022OSDILink
Efficient Memory Management for Large Language Model Serving with PagedAttention (vLLM)2023SOSPLink
Taming Throughput-Latency Tradeoff in LLM Inference with Sarathi-Serve2024OSDILink
POD-Attention: Unlocking Full Prefill-Decode Overlap for Faster LLM Inference2025ASPLOSLink
Optimal Scheduling Algorithms for LLM Inference: Theory and Practice (RAD)2025SIGMETRICSLink
FairBatching: Fairness-Aware Batch Formation for LLM Inference2025arXivLink

RL / Agentic Era

PaperYearVenueLink
Part II: ROLL Flash — Accelerating RLVR and Agentic Training with Asynchrony2025arXivLink
RollPacker: Mitigating Long-Tail Rollouts for Fast, Synchronous RL Post-Training2025arXivLink
APRIL: Active Partial Rollouts in Reinforcement Learning to Tame Long-tail Generation2025arXivLink
Act Only When It Pays: Efficient Reinforcement Learning for LLM Reasoning via Selective Rollouts (GRESO)2025NeurIPSLink
SkyRL-Agent: Efficient RL Training for Multi-turn LLM Agent2025arXivLink
Batch Query Processing and Optimization for Agentic Workflows (Halo)2025arXivLink
Astraea: A State-Aware Scheduling Engine for LLM-Powered Agents2025arXivLink
Efficient LLM Serving for Agentic Workflows: A Data Systems Perspective (Helium)2026arXivLink
AIOS: LLM Agent Operating System2024COLMLink
ThunderAgent: A Simple, Fast and Program-Aware Agentic Inference System2026arXivLink

Memory Management

Tax addressed: 🟦 K (Hierarchical Offloading, PD Disaggregation); 🟩 T (Parameter Reallocation, Rollout-aware Offloading); 🟦 K + 🟥 A (Memory-aware Orchestration)

LLM Era targets hierarchical offloading and PD disaggregation to handle contexts beyond accelerator capacity. RL/Agentic Era introduces pipeline-level pressure: dynamic parameter reallocation across Actor/Critic/Reference models, decoupled rollout infrastructure, and KV retention coupled with multi-agent workflow state persistence.

LLM Era

PaperYearVenueLink
FlexGen: High-Throughput Generative Inference of Large Language Models with a Single GPU2023ICMLLink
NEO: Saving GPU Memory Crisis with CPU Offloading for Online LLM Inference2025MLSysLink
Cost-Efficient Large Language Model Serving for Multi-Turn Conversations with CachedAttention2024USENIX ATCLink
LMCache: An Efficient KV Cache Layer for Enterprise-Scale LLM Inference2025arXivLink
DistServe: Disaggregating Prefill and Decoding for Goodput-Optimized Large Language Model Serving2024OSDILink
Mooncake: A KVCache-Centric Disaggregated Architecture for LLM Serving2024ACM TOSLink

RL / Agentic Era

PaperYearVenueLink
ReaLHF: Optimized RLHF Training for Large Language Models through Parameter Reallocation2024arXivLink
RollArt: Scaling Agentic RL Training via Disaggregated Infrastructure2025arXivLink
Optimizing RLHF Training for Large Language Models with Stage Fusion (RLHFuse)2025NSDILink
ProRL Agent: Rollout-as-a-Service for RL Training of Multi-Turn LLM Agents2026arXivLink
Kairos: Low-Latency Multi-Agent Serving with Shared LLMs and Excessive Loads in the Public Cloud2025arXivLink
TokenCake: A KV-Cache-centric Serving Framework for LLM-based Multi-Agent Applications2025arXivLink

Hardware & Distributed

Tax addressed: 🟦 K (LLM Era IO-aware kernels, tensor/pipeline parallelism); 🟩 T (Asynchronous Disaggregated Architectures); 🟩 T + 🟥 A (Heterogeneous Cluster Scheduling)

LLM Era breaks memory walls and communication bottlenecks (FlashAttention family, unified KV engines, tensor/pipeline parallelism). RL/Agentic Era faces pipeline bubbles between memory-bound rollouts and compute-bound training: asynchronous disaggregated stacks with interruptible rollouts and heterogeneous cluster scheduling.

LLM Era

PaperYearVenueLink
FlashInfer: Efficient and Customizable Attention Engine for LLM Inference Serving2025MLSysLink
SnapStream: Efficient Long Sequence Decoding on Dataflow Accelerators2025arXivLink
FlashAttention: Fast and Memory-Efficient Exact Attention with IO-Awareness2022NeurIPSLink
FlashAttention-2: Faster Attention with Better Parallelism and Work Partitioning2024ICLRLink
FlashAttention-3: Fast and Accurate Attention with Asynchrony and Low-Precision2024NeurIPSLink
Megatron-LM: Training Multi-Billion Parameter Language Models Using Model Parallelism2019arXivLink
DeepSpeed-Inference: Enabling Efficient Inference of Transformer Models at Unprecedented Scale2022SCLink

RL / Agentic Era

PaperYearVenueLink
HybridFlow: A Flexible and Efficient RLHF Framework (verl)2025EuroSysLink
AReaL: A Large-Scale Asynchronous Reinforcement Learning System for Language Reasoning2025NeurIPSLink
StreamRL: Scalable, Heterogeneous, and Elastic RL for LLMs with Disaggregated Stream Generation2025arXivLink
HetRL: Efficient Reinforcement Learning for LLMs in Heterogeneous Environments2025arXivLink

🌟 Citation

If you find this survey or repository useful for your research, please cite:

@article{wangstatic,
  title={From Static to Systematic: A Survey on Efficient Inference Across LLM, RL, and Agentic Eras},
  author={Wang, Zhenglin and Li, Zhenyang and Wang, Zongwei and Liu, Tong and Wu, Jialong and Liang, Sichu and Zhang, Congzhi and Sun, Haowen and Ma, Ziyang and Lai, Yilong and others}
}

📧 Contact

We welcome contributions! If you would like to add a paper, fix a categorization, or report any issue:

  • Open a GitHub Issue or Pull Request, or
  • Email the corresponding author Zhenglin Wang at zhenglin@seu.edu.cn.

Tracing how efficient inference evolves across eras, and why.The spiral continues.

Contributors

Linking-ai

2 commits