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

推荐订阅源

V
Visual Studio Blog
I
InfoQ
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
B
Blog RSS Feed
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
Engineering at Meta
Engineering at Meta
人人都是产品经理
人人都是产品经理
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
H
Help Net Security
爱范儿
爱范儿
云风的 BLOG
云风的 BLOG
博客园 - 司徒正美
Y
Y Combinator Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
WordPress大学
WordPress大学
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
腾讯CDC

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Physics‑based adaptation slashes edge LLM energy
Papers Mache · 2026-05-08 · via DEV Community

Papers Mache

The conventional view holds that edge‑LLM runtimes are limited by static, rule‑of‑thumb scaling of compute and memory, leaving most of the device’s power budget unused. QEIL v2 overturns that assumption by grounding its resource allocator in a physics‑derived energy model and steering the search with simulated‑annealing, delivering a dramatic cut in inference energy.

Earlier work, such as QEIL v1, relied on fixed efficiency factors and greedy heuristics, which yielded modest speedups but still depended on hand‑tuned knobs that ignored the chip’s actual power‑flow dynamics. The new system replaces every static heuristic with runtime‑adaptable metrics that trace back to semiconductor physics—compute utilization from roofline analysis, memory pressure from allocation theory, and thermal yield from CMOS leakage—while a Pareto‑guided simulated‑annealing engine explores the joint space of energy, latency, and device utilisation [1].

The results are striking. QEIL v2 delivers “75.7% pass@k at 63.8W (IPW 0.9749), a 2.86 × improvement over standard inference” [1] and, more dramatically, “Total energy drops 75.6% vs. standard with 38.3% latency reduction, zero thermal throttling, and 100% fault recovery across all benchmarks and model families” [1]. In practice this means that, for the evaluated 4‑bit Llama‑3.1‑8B model, the system can substantially extend runtime on a handheld device while staying within thermal envelopes and preserving inference quality.

The paper notes that the gains stem from workload‑adaptive device allocation on models with reduced memory‑bandwidth requirements, which hints at two open questions. First, the evaluation focuses on models up to 8 B parameters; it remains unclear how the physics‑based routing scales to larger transformers that stress both compute and bandwidth. Second, the metrics assume accurate roofline and leakage models for the target silicon; devices without such profiling infrastructure may not reap the full benefit. Extending the approach to heterogeneous clusters or to GPUs with dynamic voltage scaling would also test the robustness of the energy equation.

For engineers building on‑device AI, the takeaway is concrete: replace static scaling rules with runtime measurements of compute utilisation, memory pressure, and thermal yield, then feed those signals into a multi‑objective optimizer such as simulated annealing. Before committing to a new quantisation scheme, benchmark the edge system with QEIL v2’s Pareto‑guided search and verify that energy drops and latency improvements hold on the actual workload distribution. A modest investment in physics‑aware profiling could translate into hours of extra battery life for every deployed LLM.

References

  1. QEIL v2: Heterogeneous Computing for Edge Intelligence via Roofline-Derived Pareto-Optimal Energy Modeling and Multi-Objective Orchestration