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

推荐订阅源

WordPress大学
WordPress大学
MyScale Blog
MyScale Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
人人都是产品经理
人人都是产品经理
C
Check Point Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
量子位
Martin Fowler
Martin Fowler
酷 壳 – CoolShell
酷 壳 – CoolShell
Jina AI
Jina AI
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
J
Java Code Geeks
The Cloudflare Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
P
Proofpoint News Feed
美团技术团队
H
Help Net Security
B
Blog
博客园_首页

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
Google's 2x Energy Efficiency Claim Is Real — But Here's ...
mikebains41- · 2026-05-24 · via DEV Community

This is a submission for the Google I/O Writing Challenge

What I Found Building a Real Benchmark

My project — the AI GPU Energy Optimizer — measures something the industry largely ignores: what GPUs consume when they're doing nothing. We call it ghost power.

On an NVIDIA A100 SXM running on RunPod infrastructure, I measured:

  • Idle floor: 67W — the baseline you pay for just having the GPU allocated
  • Ghost power: up to 146W at 0% compute utilization — power draw with no workload running
  • FP16 vs FP32 delta: 483W vs 302W — a 60% power spike just from switching precision

That 146W ghost power figure isn't a bug. It's the cost of persistence mode, memory controller activity, and thermal management keeping the chip "ready." On a single GPU it's noise. At a million‑unit scale, it's infrastructure.

The Gap in Google's Story

Google's 2x performance‑per‑watt claim almost certainly measures peak compute throughput under load. That's the right number for training benchmarks. But it doesn't capture:

  • Idle energy floor — what you pay between inference requests
  • Ghost power — the overhead of allocation without utilization
  • Precision‑mode energy delta — the cost of switching between FP8, FP16, FP32
  • Per‑request energy amortization — especially relevant for real‑time inference at low batch sizes

For batch training at scale, Google's metric is exactly right. But for inference serving — the workload that's actually growing fastest — idle behavior dominates total cost. A model serving 10 requests per second on a 300W GPU is spending most of its energy budget on ghost power, not compute.

What This Means for Developers

If you're building on Google Cloud GPU infrastructure — or any cloud GPU provider — three things from I/O 2026 matter for your energy costs:

  1. Performance‑per‑watt is now a first‑class metric. Google made it explicit in the keynote. That means cloud providers will start surfacing it, and you should be asking for it in your SLAs.

  2. Batch size is your energy lever. At low utilization, ghost power dominates. The single highest‑impact thing you can do is increase batch size to push utilization above idle thresholds. This is true on TPUs, A100s, and H100s.

  3. Precision choice has a power cost. My benchmarks showed FP16 drawing 60% more power than FP32 on the same hardware. FP8 is even more aggressive. Before you optimize for speed with lower precision, measure whether your infrastructure can absorb the power delta.

The Bigger Picture

Google's I/O 2026 TPU announcement signals that the industry is finally treating energy efficiency as a first‑order constraint, not an afterthought. The move from "faster is better" to "more compute per watt" is the right framing for where AI infrastructure is heading.

But the measurement frameworks haven't caught up. Performance‑per‑watt at peak load is a starting point. What the field needs is a complete picture: idle floor, ghost power, precision‑mode deltas, and per‑request amortization — especially as inference workloads diversify across real‑time and batch use cases.

That's what I've been building toward. And Google I/O 2026 just made the conversation mainstream.


The AI GPU Energy Optimizer is open‑source and available on GitHub. It includes 75 validated tests across A100 and H100 hardware, with the Morpheus test suite covering ghost detection, CEI scoring, multi‑GPU scaling, and production infrastructure validation.

📄 White paper: WHITEPAPER.md

Live API: ai-gpu-brain-v3.onrender.com/docs

AI tools were used in drafting and refining this article.