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

推荐订阅源

阮一峰的网络日志
阮一峰的网络日志
J
Java Code Geeks
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
V
Visual Studio Blog
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
M
MIT News - Artificial intelligence
U
Unit 42
博客园 - 三生石上(FineUI控件)
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
I
InfoQ
WordPress大学
WordPress大学
H
Help Net Security
D
Docker
B
Blog
腾讯CDC
A
About on SuperTechFans
Recent Announcements
Recent Announcements
雷峰网
雷峰网
有赞技术团队
有赞技术团队
C
Check Point Blog
Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC

IEEE Spectrum

Responsible AI for Higher Education How OpenAI Used Its Own LLMs to Design Its Jalapeño Chip Adversarial Fashion Makes a Statement on AI Surveillance AI Agents Run Real Shops to Expose Their Hidden Failure Modes AI Text Watermarks Will Rewrite Models' Language China’s Regulators Take Aim at "AI Boyfriends" Will Junior Engineers Learn Enough in an AI-First Coding World? DeepMind's AI Just Mapped 9 Billion Possible DNA Variants AI Efficiency Could Cost Us the Next Generation of Experts Cash in on the AI Boom by Renting Out Your Spare Compute Inside Silico’s AI Microscope That Makes Black Boxes Make More Sense AI Companion Robots Are Closing the Human Connection in Modern Homes Self-driving Cars Could Someday Take Requests What Adaptability Actually Means in Tech Jobs This IEEE Senior Member Develops AI Tools for E-Commerce Sites Stop Hunting, Start Solving: Accelerating Root Cause Analysis with Agentic AI How AMD’s AI Swarms Are Rewriting the Software Development Playbook AI-Generated Math Proof Hints at a Path to Safer Automated Code Roll Over GPUs, CPUs Are Back In the Spotlight 2026 State of Visual and Physical AI: A Survey of 700+ Practitioners - Wiley Science and Engineering Content Hub Can Careful Training Make AI a Trusted Partner for Judges Worldwide? Runaway OpenAI Agent Hits Hugging Face and Exposes AI Guardrail Gaps IEEE Course Teaches How to Use AI to Modernize Power Grids Should Researchers Write Papers for AI Instead of People? The 2026 R&D Benchmark Report: Waste, AI and the Race to Market - Wiley Science and Engineering Content Hub Fridays With Bob Can Weightless Neural Nets Make Chatbots Lean and Fast? Siobahn Day Grady Wants Everyone to Be AI Literate When AI Literacy Becomes the New Fault Line In Global Inequality Improving the Capabilities of Cognitive Radar and Electronic Warfare Systems - Wiley Science and Engineering Content Hub
Save 14 Percent of Energy Used in LLM Training With This ...
https://www.facebook.com/48576411181 · 2026-06-10 · via IEEE Spectrum

OpenAI’s fourth large language model (LLM), GPT-4, took an estimated 50 gigawatt-hours to train, or the equivalent of 5,000 American homes’ yearly power consumption. That was in 2023. Since then, the computational resources used to train frontier LLMs have only increased, though direct power usage numbers are hard to come by.

Now, a research group at the University of Twente in the Netherlands has shown that you can save up to 14 percent of the energy used in LLM training without sacrificing speed by cleverly adjusting the clock frequency of the GPU during computation. Jeffrey Spaan, Ph.D. candidate at University of Twente and lead author on the article, presented the results at the Computing Frontiers conference in Catania, Sicily, last month.

“My research is about finding computing waste,” Spaan says. “It’s similar to underutilization of the hardware, but instead of optimizing the software for the hardware, we try to optimize the hardware for the software.”

Making the GPU tick

Spaan and his collaborators accomplished this by using a technique known as dynamic voltage and frequency scaling (DVFS). Every chip—including the GPUs commonly used for training frontier models—uses at least one clock to orchestrate computations. Each operation in the chip is triggered by a clock pulse. The frequency with which that clock ticks controls how fast the chip operates and how much power it draws.

Modern GPUs have two clocks, one for the computational core and one for the memory. When the core is hard at work crunching numbers, the clock frequency is kept high to ensure speedy calculation. However, with DVFS, the memory clock can slow down in that time, allowing for less power draw. In principle, it’s possible to just turn off the memory part of the chip, but GPUs designs don’t enable software control for that off switch, and it would take too long to turn back on mid-calculation anyway. Similarly, when the core is waiting for data to be loaded from memory, the core clocking frequency can be slowed to a crawl while the memory clock frequency ramps up.

DVFS has been a well-known technique that goes back to at least the 1990s. But Spaan says other researchers haven’t been able to usefully apply it to LLM training because their methods either slowed down calculations too much or were not fine-grained enough to improve energy usage.

Previous DVFS attempts adjusted the frequency at each iteration of the training process. In LLM training, each iteration consists of two parts: the forward pass, in which data is run forward through the layers of the model with the weights as they are; and backpropagation, in which the weights are adjusted layer by layer based on the results of the forward pass. So prior work kept one value of the frequency for the forward pass and adjusted to another for backpropagation.

Spaan and coworkers tuned the clock frequencies on a shorter timescale. GPU workloads are broken down into tiny computational nuggets known as kernels. For example, a single vector-vector multiplication can make up a single kernel. The kernels are fed to the GPU to be processed many times in parallel. In Spaan’s implementation, the computation of a single layer of a deep neural network is broken up into approximately 40 kernels. By adjusting the clocking frequencies on a per-kernel level, the team was able to find much greater energy savings.

The GPU also does DVFS automatically when the chip’s internal systems detect higher or lower demand, Spaan notes. “Some people might therefore think: We’ll just let the GPU handle it,” he says. “However, because the GPU doesn’t have the foresight we have of what kernels will run, it has to work with an on-the-fly best-effort guess and can therefore never attain the same savings.” That’s where the manual adjustments come in.

Less energy, same time

The team performed their experiment by training GPT-3-XL, a 1.3 billion parameter model, on an Nvidia RTX 3080 Ti GPU. To save time, they focused on training a single layer of the model. In this setting, they found a set of frequency adjustments that gave them 14 percent energy savings while slowing the training time by only 0.6 percent. Performance of the model depends on both computing speed and energy usage.

There is one challenge: Ramping down the clock frequency is much faster than turning a core off and on, but it’s still not instantaneous. In their experiment, the researchers evaluated one kernel at a time, not taking into account the frequency switching speed. So 14 percent energy savings is a best-case scenario. How much of an issue it would be in practice, Spaan says, depends heavily on the GPU being used. Newer hardware, like the Blackwell GPUs, have much faster switching speeds than older versions and should be able to harness the full energy savings.

Now, the team is developing a tool that would be able to implement optimal frequency scaling automatically for a particular workload. Spaan hopes their method will be attractive enough to industry leaders to merit adoption. “We optimize for saving energy without losing performance,” Spaan says. “In the real world, performance is the holy grail.”