Robots Atlas>ROBOTS ATLAS
Artificial Intelligence

The CPU comeback: agentic AI chokes on processors, not GPUs

Sir Robot27 August 2026 · 3 min read
The CPU comeback: agentic AI chokes on processors, not GPUs

Agentic AI systems have shifted the performance bottleneck from GPUs back to CPUs, according to an August 2026 IEEE Spectrum analysis. Most stages of an agent's work — from tool calls to tokenization and safety checks — run on processors rather than accelerators, catching data center operators off guard.

Key takeaways

  • In AMD's testing, seven of eight stages of the agentic pipeline run entirely on the CPU.
  • Adding CPU cores cuts time-to-first-token by 1.5x to 7x at long sequence lengths.
  • For a Llama-8B model, going from 5 to 32 cores improved latency 4.45x.
  • Intel sold out server CPUs through year-end, and AMD doubled its server CPU sales forecast.
  • Agentic sequences reach 500,000 to 1 million tokens and require re-tokenizing on every tool call.

Why CPUs are back in the game

During the AI boom, GPUs took over as the main accelerator and processors faded into the background. Agentic AI reversed that. While the model inference itself runs on the GPU, most other stages — tool calls (file operations, API calls, code execution), orchestration, tokenization and safety checks — run on the CPU. In AMD's testing, seven of eight agentic pipeline stages ran entirely on the processor, which often sits idle during GPU inference, and vice versa.

The biggest brake is tokenization itself — turning text into token IDs is branchy, data-dependent, sequential string manipulation that does not lend itself to the GPU's massive parallelism. On top of that, small safety models under 1 billion parameters stay on the CPU to minimize latency.

7 of 8agentic pipeline stages run on the CPUAMD testing

The scale of the problem

Agents multiply the load. A single agent spawns sub-agents and many tool calls at machine speed. During one Hugging Face incident, an OpenAI model fired roughly 300 actions per hour. Amazon Web Services internally mandated conserving CPU cycles because of capacity wait times. Since sequences reach 500,000 to 1 million tokens and every tool call re-tokenizes the whole sequence, CPU cost grows sharply with conversation length.

The market response

Vendors reacted. Intel sold out server CPUs through year-end, and AMD doubled its forecast. Arm and Qualcomm are positioning for agentic workloads, and NVIDIA prioritized its Vera CPU. Scheduling optimizations can cut latency up to 1.8x, and adding cores speeds time-to-first-token: the delay between sending a request and the model producing its first output token by 1.5x to 7x at long sequences. For a Llama-8B model, raising cores from 5 to 32 delivered a 4.45x latency gain.

Why it matters

The AI industry budgeted its infrastructure around accelerators, treating processors as cheap background. Agentic workloads expose the flaw: the CPU now determines real latency and throughput across the whole chain. For companies that means rebalancing servers, and for CPU vendors an unexpected demand window nobody promised them a year ago.

What's next

  • CPU-aware scheduling work (up to 1.8x latency cuts) points to the direction of optimizing agents for processors.
  • NVIDIA's prioritization of the Vera CPU signals that even a GPU maker is shifting attention toward CPUs for agentic workloads.
  • Intel's sellout and AMD's doubled forecast foreshadow tight server-CPU availability through the end of 2026.

Sources

Share this article