paper-with-me

Papers

Understanding Efficiency: Quantization, Batching, and Serving Strategies in LLM Energy Use

2026-01-29 · Julien Delavande, Regis Pierrard, Sasha Luccioni arxiv

Large Language Models (LLMs) are increasingly deployed in production, contributing towards shifting the burden in terms of computational resources and energy demands from training to inference. While prior work has examined the energy cost of inference per prompt or per token, we highlight how \emph{system-level design choices} - such as numerical precision, batching strategy, and request scheduling - can lead to orders-of-magnitude differences in energy consumption for the same model. We perform a detailed empirical study of LLM inference energy and latency on NVIDIA H100 GPUs, analyzing the impact of quantization, batch size, and serving configuration (e.g., with Hugging Face's Text Generation Inference server). Our results reveal that lower-precision formats only yield energy gains in compute-bound regimes; that batching improves energy efficiency, especially in memory-bound phases like decoding; and that structured request timing (arrival shaping) can reduce per-request energy by up to 100 times. We argue that sustainable LLM deployment depends not only on model internals, but also on the orchestration of the serving stack. Our findings motivate phase-aware energy profiling and system-level optimizations for greener AI services.

📄 PDF Abstract BibTeX arXiv:2601.22362

Code (0)

등록된 구현이 없습니다.

Tasks

Text Generation

Similar Papers 제목 키워드 기반

Atom: Low-bit Quantization for Efficient and Accurate LLM Serving

2023-10-29 · Yilong Zhao, Chien-Yu Lin, Kan Zhu, Zihao Ye 외

The growing demand for Large Language Models (LLMs) in applications such as content generation, intelligent chatbots, and sentiment analysis poses considerable challenges for LLM service providers. To efficiently use GPU…

GPUQuantizationSentiment Analysis

Efficient Interactive LLM Serving with Proxy Model-based Sequence Length Prediction

2024-04-12 · Haoran Qiu, Weichao Mao, Archit Patke, Shengkun Cui 외

Large language models (LLMs) have been driving a new wave of interactive AI applications across numerous domains. However, efficiently serving LLM inference requests is challenging due to their unpredictable execution ti…

BlockingManagementScheduling

Understanding and Optimizing Multi-Stage AI Inference Pipelines

2025-04-14 · Abhimanyu Rajeshkumar Bambhaniya, Hanjiang Wu, Suvinay Subramanian, Sudarshan Srinivasan 외

The rapid evolution of Large Language Models (LLMs) has driven the need for increasingly sophisticated inference pipelines and hardware platforms. Modern LLM serving extends beyond traditional prefill-decode workflows, i…

CPUNavigateRAGRetrieval+1

Understanding INT4 Quantization for Transformer Models: Latency Speedup, Composability, and Failure Cases

2023-01-27 · Xiaoxia Wu, Cheng Li, Reza Yazdani Aminabadi, Zhewei Yao 외

Improving the deployment efficiency of transformer-based language models has been challenging given their high computation and memory cost. While INT8 quantization has recently been shown to be effective in reducing both…

DecoderQuantization

Are Optimal Algorithms Still Optimal? Rethinking Sorting in LLM-Based Pairwise Ranking with Batching and Caching

2025-05-30 · Juan Wisznia, Cecilia Bolaños, Juan Tollo, Giovanni Marraffini 외

We introduce a novel framework for analyzing sorting algorithms in pairwise ranking prompting (PRP), re-centering the cost model around LLM inferences rather than traditional pairwise comparisons. While classical metrics…