惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Martin Fowler
Martin Fowler
D
DataBreaches.Net
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
The GitHub Blog
The GitHub Blog
Blog — PlanetScale
Blog — PlanetScale
Microsoft Security Blog
Microsoft Security Blog
A
About on SuperTechFans
Vercel News
Vercel News
L
LangChain Blog
B
Blog RSS Feed
Y
Y Combinator Blog
IT之家
IT之家
H
Hackread – Cybersecurity News, Data Breaches, AI and More
GbyAI
GbyAI
V
V2EX
博客园 - 三生石上(FineUI控件)
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
有赞技术团队
有赞技术团队
D
Docker
V
Visual Studio Blog
aimingoo的专栏
aimingoo的专栏
Last Week in AI
Last Week in AI
月光博客
月光博客

Hacker News - Newest: "LLM"

GitHub - lechmazur/position_bias: A benchmark for testing whether LLM judges keep the same preference when two lightly edited versions of the same story are shown in opposite orders. Flex routing (EU and EFTA) Dark Factories: Retooling for LLM Velocity Ask HN: What would be the impact of a LLM output injection attack? GitHub - Oaklight/llm-rosetta: Production-ready LLM API translation layer for Python — bidirectional conversion between OpenAI, Anthropic & Google formats via hub-and-spoke IR. Optional API gateway. Streaming & non-streaming. Zero core deps. Contributions welcome! GitHub - browser-use/browser-harness: Self-healing browser harness that enables LLMs to complete any task. GitHub - moeen-mahmud/remen: Remen turns thoughts into something you can return to Analyzing 156 LLM Launch Posts on Hacker News ChatGPT vs Gemini vs Claude: The Best LLM Subscription You Should Buy GitHub - salaamalykum/quran-semantic-search: High-density RAG Semantic Search Engine & Quran Corpus (GEO/SEO Architecture) GitHub - NVIDIA/TensorRT-LLM: TensorRT LLM provides users with an easy-to-use Python API to define Large Language Models (LLMs) and supports state-of-the-art optimizations to perform inference efficiently on NVIDIA GPUs. TensorRT LLM also contains components to create Python and C++ runtimes that orchestrate the inference execution in a performant way. The State of LLM Bug Bounties in 2026 Operational Readiness Criteria for Tool-Using LLM Agents Meshcore: Architecture for a Decentralized P2P LLM Inference Network How an LLM becomes more coherent as we train it GitHub - seetrex-ai/laimark GitHub - Jossifresben/BibCrit: AI-assited biblical textual criticism GitHub - wastedcode/memex: File system based wiki, maintained by Claude 99helpers.com GitHub - cliver-project/AITrigram GitHub - unbody-io/adapt: A self-evolving memory layer for AI agents. GitHub - hb20007/awesome-gen-ai-fails: A list of incidents where reliance on generative AI and LLMs resulted in harm to companies, individuals, or society GitHub - nevenkordic/localmind: Run any local LLM with persistent memory and context. CLI agent over Ollama with SQLite-backed hybrid recall. No cloud. Ask HN: What are the machine requirements for a LLM like Llama-3.1-8B? Faster LLM Inference via Sequential Monte Carlo grpo explained: group relative policy optimization for llm finetuning - cgft Stop comparing price per million tokens: the hidden LLM API costs · TensorZero Andrej Karpathy's LLM Wiki Is a Bad Idea GitHub - GG-QandV/mnemostroma: Offline RAM-first cognitive leer/coprocessor for AI agents and robotics. Solves "Context Abandonment" with 20-80ms latency using a dual-thread biomimetic memory architecture (ONNX + SQLite WAL). mempalace/agent at agent · skorotkiewicz/mempalace
VoltanaLLM: Feedback-Driven Frequency Control and State-S...
Jiahuan Yu1, · 2026-06-24 · via Hacker News - Newest: "LLM"

1University of Illinois Urbana-Champaign 2Tsinghua University

Modern Large Language Model (LLM) serving systems increasingly support interactive applications such as real-time chat assistants, code generation tools, and agentic workflows. However, the soaring energy cost of LLM inference presents a growing challenge for sustainable and cost-effective deployment.

We introduce VoltanaLLM, a system for SLO-aware, energy-efficient LLM serving, designed from a control theory perspective. VoltanaLLM co-designs frequency scaling and request routing in emerging prefill/decode disaggregated architectures, leveraging their decoupled execution to enable fine-grained, phase-specific control. It consists of (1) a feedback-driven frequency controller that dynamically adapts GPU frequency for prefill and decode phases, and (2) a state-space router that explores routing decisions across frequency-scaled instances to minimize energy under latency constraints.

We implement VoltanaLLM in SGLang and evaluate its performance across multiple state-of-the-art LLMs and real-world datasets. Our results show that VoltanaLLM achieves up to 36.3% energy savings while maintaining a near-perfect SLO attainment rate, paving the way for sustainable and intelligent LLM serving.

LLMs are deployed at unprecedented scale, making inference a major driver of energy consumption and total cost of ownership (TOC). Recent studies show inference can account for 90% of AI infrastructure utilization, pushing datacenter power and thermal limits. Large datacenters today can consume electricity equivalent to millions of households.

At the same time, latency-sensitive applications like chat assistants and agent pipelines rely on strict Service Level Objectives (SLOs), such as Time-To-First-Token (TTFT) and Inter-Token Latency (ITL). Violating these SLOs degrades user experience and downstream responsiveness.

The central challenge: how can we serve LLMs under tight SLOs while reducing their energy footprint?

key-observation

Our empirical profiling of LLM inference reveals a non-monotonic energy–frequency relationship . As shown above, while reducing GPU frequency from 1410 MHz to 1005 MHz (by ~28.7%) does increase execution time, the increase is sub-linear. Consequently, the total energy follows a U-shaped curve with respect to GPU frequency. This trend indicates that at low frequencies, execution time dominates energy , whereas at high frequencies, power dominates ; in the middle lies an energy sweet point .

Numerous systems have been proposed to improve LLM serving efficiency. These include advanced batching strategies for throughput optimization, memory management techniques like PagedAttention, CPU offloading, and GPU kernel-level optimizations (e.g., FlashAttention). Parallelism frameworks and parameter-sharing mechanisms further reduce bottlenecks, while speculative decoding and preemptive scheduling improve tail latency and job completion times.

  • Batching & Memory Optimizations – PagedAttention, CPU offloading, and GPU kernel improvements.
  • Parallelism & Sharing – model parallelism, pipelining, and parameter reuse.
  • Latency Techniques – speculative decoding and preemptive scheduling for multi-tenant settings.

Several recent efforts have also begun addressing energy-efficient LLM serving. For instance, DynamoLLM explores GPU frequency control based on request characteristics, while μ-Serve optimizes power by co-serving multiple models. EcoServe considers operational and embodied carbon emissions, TAPAS exploits datacenter thermal slack, and Heron places GPUs closer to renewable sources.

To better manage compute heterogeneity, recent systems have introduced prefill/decode (P/D) disaggregation, separating the two phases across GPU nodes. Projects like SplitWise, TetriInfer, Llumnix, and DistServe show improvements in goodput, time-to-first-token, and SLO attainment. Popular inference libraries such as vLLM and SGLang have also added runtime support.

These efforts primarily optimize latency and throughput, but overlook the energy implications. P/D disaggregation creates unique opportunities for phase-specific frequency scaling and energy-aware routing—opportunities that VoltanaLLM systematically exploits.

These works highlight early signals for sustainable AI. However, they focus on coarse-grained control. VoltanaLLM is the first system to explore fine-grained frequency and routing control in prefill/decode disaggregated serving, with SLO-aware feedback loops.

EcoInfer overall architecture: prefill→decode disaggregation with Governor, Router, and Predictor.

VoltanaLLM runs on a Prefill/Decode (P/D) disaggregated serving stack and couples feedback-driven frequency control with state-space routing, steered by a lightweight latency predictor for SLO-aware, energy-efficient inference.

EcoFreq Governor — Feedback-based, Phase-Specific Frequency Control

A per-iteration controller that scales GPU frequency to the lowest level meeting SLOs. It runs as a separate process and communicates with the engine; decisions are made in <1 ms and applied via pyNVML (≈3 ms), keeping the full control loop <4 ms well below typical prefill and decode iteration SLOs.

EcoRouter — State-Space Navigation for Decode Routing

Instead of naive round-robin, the router performs “what-if” analysis in the decode state space (requests × KV tokens, with frequency contours) to avoid "batch-size boundaries" that force higher frequencies. It selects asymmetric placement of requests when helpful, preferring assignments that keep a GPU instance below a batch-size boundary and thus at a lower frequency.

EcoPred — Load-Aware Latency Predictor

A lightweight model that predicts TTFT/ITL from frequency and load metrics: prefill uses batched tokens; decode uses (#requests, KV tokens). These models capture the compute vs. memory regimes and the staircase effects at batch boundaries enabling millisecond, transparent decisions without heavy online profiling.

Main Results for VoltanaLLM

We evaluate VoltanaLLM on three models (Ministral-3B, LLaMA-3.1-8B, Qwen3-32B) and two real-world datasets under a 2P2D serving setup on NVIDIA A100 GPUs. Our results show that VoltanaLLM achieves energy savings without sacrificing latency SLO attainment:

📉 Energy Savings: Reduces GPU energy consumption by up to 36.3% while preserving SLOs for requests.

⚡ Latency SLOs: Maintains comparable TTFT/ITL SLO attainment to GPU serving set at maximum frequency (in this case 1410 MHz).

🔄 Adaptivity: Operates at low frequency when load permits, scaling up dynamically at higher request rates to sustain SLOs in near real-time with negligible overhead.

✅ Key Takeaway: VoltanaLLM enables SLO-aware, energy-efficient LLM inference, improving sustainability without compromising user experience.


  @misc{yu2025voltanallmfeedbackdrivenfrequencycontrol,
      title={VoltanaLLM: Feedback-Driven Frequency Control and State-Space Routing for Energy-Efficient LLM Serving}, 
      author={Jiahuan Yu and Aryan Taneja and Junfeng Lin and Minjia Zhang},
      year={2025},
      eprint={2509.04827},
      archivePrefix={arXiv},
      primaryClass={cs.DC},
      url={https://arxiv.org/abs/2509.04827}, 
}