AI News HubLIVE
In-site rewrite5 min read

The CPU Comeback Is Upon Us

Agentic AI is driving a surge in CPU demand, as tool use, tokenization, and safety guardrails increasingly run on CPUs rather than GPUs. AWS has reportedly told engineers to conserve CPU cycles, Intel has sold out of server CPUs, and AMD, Arm, Qualcomm, and Nvidia are all pushing CPU-focused AI hardware.

SourceIEEE Spectrum AIAuthor: Matthew S. Smith

-->

Raven.config('https://[email protected]/147999').install();

Agentic AI Crunch Creates CPU Comeback - IEEE Spectrum

Sign InJoin IEEE

The CPU Comeback Is Upon Us

Share

FOR THE TECHNOLOGY INSIDER

Enjoy more free content and benefits by creating an account

Saving articles to read later requires an IEEE Spectrum account

The Institute content is only available for members

Downloading full PDF issues is exclusive for IEEE Members

Downloading this e-book is exclusive for IEEE Members

Access to Spectrum 's Digital Edition is exclusive for IEEE Members

Following topics is a feature exclusive for IEEE Members

Adding your response to an article requires an IEEE Spectrum account

Create an account to access more content and features on IEEE Spectrum , including the ability to save articles to read later, download Spectrum Collections, and participate in conversations with readers and editors. For more exclusive content and features, consider Joining IEEE .

Join the world’s largest professional organization devoted to engineering and applied sciences and get access to all of Spectrum’s articles, archives, PDF downloads, and other benefits. Learn more about IEEE →

Join the world’s largest professional organization devoted to engineering and applied sciences and get access to this e-book plus all of IEEE Spectrum’s articles, archives, PDF downloads, and other benefits. Learn more about IEEE →

Close

Access Thousands of Articles — Completely Free

Create an account and get exclusive content and features: Save articles, download collections, and post comments — all free! For full access and benefits,

subscribe

to Spectrum.

CREATE AN ACCOUNTSIGN IN

The CPU Comeback Is Upon Us

Matthew S. Smith

20s

5 min read

Earlier this year, leaders at Amazon Web Services delivered a new mandate to their engineers: they need to conserve CPU cycles at all costs. AWS has reportedly experienced an explosion in wait times for CPU server capacity as AI workloads strain the company’s cloud infrastructure.

The issue seemingly took AWS off-guard, and for good reason. The AI boom led to a surge in demand for GPUs and, later, memory. CPUs were mostly left out of the story, as their relative lack of parallelization made them a poor fit for AI model inference, the process of running and serving large language models (LLM) to users.

But the rise of agentic AI systems, which allow AI models to operate autonomously and call on sub-agents, is changing the narrative.

Matt Kimball, vice president and principal datacenter analyst at Moor Insights & Strategy, says 2026 has brought a spike in CPU demand, much of it due to agentic AI. “It’s one thing to have this agentic workload, and let’s say, it spawns 100 agents. If I’m going to roll this out across my enterprise, those 100 become tens of thousands, hundreds of thousands, or millions of agents,” says Kimball. “You have agents spawning sub-agents, making [application programming interface (API)] calls, and talking to more agents through [Anthropic’s] model context protocol.”

AI agents need to use computers, and computers need CPUs

Kimball’s comments refer in part to “tool use,” which is shorthand for an LLM’s ability to access the internet, open files on a desktop, and generally use a variety of software to accomplish its task.

LLMs trained for tool use learn how to call on other software. While the LLM’s inference is still primarily executed on a GPU or similar AI accelerator, the tool calls the LLM makes are typically pushed to the CPU.

“Many components of an agentic AI task are inherently CPU based jobs,” explains Souvik Kundu, senior staff research scientist at Intel. “The CPU does the job of parsing output, figuring out which tool to invoke, making the API call or running the code, collecting the result, and feeding it back.” Madhu Rangarajan, vice president of compute and enterprise AI at AMD, makes a similar claim, saying “in our testing, seven of the eight stages in realistic agentic AI pipelines run entirely on the CPU.”

An LLM tasked with programming software, for example, will likely make tool calls to write code to files, move or replace files, download required packages, and build the software once the LLM believes it’s complete.

Kundu co-authored a paper on agentic AI optimization alongside researchers from the Georgia Institute of Technology. They found the CPU is often idle while LLM inference is executed on a GPU and that, conversely, the GPU is often idle when tool calls are executed on the CPU. To optimize this, Kundu and his colleagues propose scheduling optimizations that can cut end-to-end latency (the time between the start and finish of the agentic workload) by up to 1.8x under sustained load.

It’s a start, but the gains chase a moving target. Agentic systems generate work at machine speed and multiply it as they go. OpenAI’s inadvertent hack of Hugging Face saw its model fire off as many as 300 actions an hour, and a single agent can spawn sub-agents that make tool calls of their own.

And there’s one more important complication that may increase the workload on a CPU as models become more complex: safety guardrails.

Safety and policy checks on an agent’s actions are often specific rules that inspect syntax and log files, Kundu says. Guardrails may also use small models (under a billion parameters) to analyze task complexity or intent. Though they could be executed on a GPU, they often aren’t, because their small size and the need to minimize latency keeps the work on the CPU.

Increasing the number of CPUs available significantly decreases the latency for Llama-8B responses over longer sequence lengths.Source: Euijun Chung, Yuxiao Jia, et al.

Tokenization adds to bottlenecks

Euijun Chung, a PhD student at the Georgia Institute of Technology, recently co-authored another paper, with findings that complement Kundu’s work. Chung and his co-authors found that when a server has too few CPU cores, it falls behind on dispatching work to the GPUs. That causes the GPUs to stall as they wait for instructions.

In addition to that, the paper touches on another key element of LLM workloads: tokenization.

Tokenization is a key first step in LLM inference. It converts text into integer token IDs that can be processed by the model. Unlike the matrix math required for most LLM inference, tokenization is branchy, data-dependent sequential string manipulation. Though it can be parallelized by chunking text, it’s not massively parallel in the same way as the bulk of LLM inference is.

Tokenization of small prompts is a relatively trivial task and won’t tax even an entry-level CPU. However, an agentic model that makes tool calls must parse and tokenize the results of the call.

“If you have an ongoing sequence of, say, 100,000 tokens, and you have a tool result of a 1,000 tokens, the tokenizer will have to tokenize the whole sequence again. And you have to do tokenization at every agentic tool call,” says Chung. This both increases the frequency of tokenization and increases the number of tokens involved. It’s conceivable that future tokenizers will find ways to mitigate this, Chung says, but it remains a problem for modern LLM inference.

The paper finds that time-to-first-token latency (the time required for the model to produce the first word of its reply) can increase dramatically as the sequence length grows. CPUs with more cores can reduce the problem. In test runs at longer sequence lengths, increasing CPU core counts can reduce time-to-first-token latency by roughly 1.5x to 7x.

Chung and his colleagues were only able to test smaller models, such as Alibaba’s Qwen 3-30B and Meta’s Llama 3.1-70B, due to limitations of the hardware available for testing. He speculates that larger models will experience less dramatic bottlenecks due to their higher overall GPU demand, but also expects agentic AI will push token lengths far beyond the longest he and his co-authors tested.

“If you think about something like Anthropic’s Claude, you can easily hit 500,000, even a million tokens,” says Chung. “In the world of agentic AI, the average sequence length will grow and grow, so I’m expecting this problem to get worse in future workloads.”

Is a CPU crunch just getting started?

Amazon’s crackdown on use of CPU resources is one of several indicators that Kundu and Chung have identified issues with real-world relevance.

Intel has sold out of server CPUs through at least the end of the year. AMD has doubled its server CPU forecast. Arm and Qualcomm have both announced new CPUs designed to accelerate agentic AI. Even Nvidia has prioritized Vera, its Arm-based CPU for agentic AI, which is part of Nvidia’s Vera Rubin platform.

Kimball says these developments make it clear that the AI industry is placing more emphasis on CPU performance. He sees the surge in demand as an “absolute tell” that CPUs are now considered a key part of an agentic AI system.

Unfortunately, this may translate to broader CPU shortages and increased prices, much as has already occurred with GPUs and memory.

“You’re already seeing a CPU crunch to some degree. When you look at the constraints in the market, it even trickles down into the consumer space,” says Kimball. He adds that Intel has cut production of client CPUs in favor of server CPUs even as Intel’s new 18A production process has grown the company’s sales in the client segment. Kimball sees that as a sign that CPU makers will follow the money.

From Your Site Articles

A Peek at Intel’s Future Foundry Tech ›

Startup Says It Can Make a 100x Faster CPU ›

Related Articles Around the Web

The CPU Wars are Back! - by Yousaf Babur and Saqib Tahir ›

How Intel is riding the ‘CPU comeback’ as AI shifts - and where China stands | South China Morning Post ›

Matthew S. Smith

Common Earth Project Aims to End Chip Supply Chain Bottlenecks

15 Aug 2026

5 min read

Identifying the Root Cause of Electronics Failures With Simulation Apps

03 Aug 2026

6 min read

AI Can Now Design Functional Viruses. Should We Worry?

12 Aug 2026

4 min read

Startup Says It Can Make a 100x Faster CPU

Crooks Are Learning to Love AI Hallucinations

Pakistani Judges Give Their Verdict on JudgeGPT