· via Hacker News – Front Page (hnrss.org)
Why 2026 became the year AI hardware pivoted from training to inference
IEEE Spectrum charts how reasoning models and always-on AI agents pushed inference demand past training, straining GPU memory bandwidth and reshuffling chip alliances around parts like Tensordyne's Napier.

The defining story in AI hardware this year is no longer who can train the biggest model. According to IEEE Spectrum, the industry's center of gravity has swung from training silicon to inference — the act of running trained models to produce code, essays and images — and chips purpose-built for that job, exemplified by Tensordyne's Napier, have become the symbol of the shift.
Training moved to the background
For roughly the past six years, AI progress meant scale: large language models grew from millions of parameters to trillions, and the results were measurable. IEEE Spectrum notes that the largest version of OpenAI's GPT-3, released in 2020, answered 43.9 percent of questions correctly on a widely used knowledge-and-reasoning benchmark; four years later, GPT-4o scored 88.7 percent on the same exam, effectively matching human experts.
Advanced labs are still training larger models, the outlet reports, but the conversation has moved on. Nvidia CEO Jensen Huang described the moment as the "inflection point of inference" at the company's GTC 2026 conference, and Matt Kimball, principal data-center analyst at Moor Insights & Strategy, told IEEE Spectrum that training is effectively old news — the only thing chief information officers want to discuss is inference.
Three forces are driving the surge. LLMs have become genuinely useful, so usage keeps climbing. Reasoning models run inference multiple times for a single query, reprompting themselves through chain-of-thought steps, and IEEE Spectrum reports that high reasoning effort can yield up to 20 times as much text as a low-effort response. And agentic AI runs inference around the clock, autonomously working toward user-defined goals rather than only reacting to a prompt.
Inference is a different computational problem
IEEE Spectrum illustrates the divide simply: an untrained model is a jumble of word-fragment tiles, and training — a next-token guessing game played across billions of passages, with parameters tuned through backpropagation — is what brings order. That process is compute-hungry, which is why giants keep building ever-larger data centers.
Inference freezes the parameters but creates its own bottleneck. Sudeep Bhoja, founder and CTO of d-Matrix, told IEEE Spectrum that because models are autoregressive, producing each new token requires reading all of the model's weights plus all accumulated context — every prompt, every reply and every uploaded file.
The work splits into two phases. During prefill, the model reads the entire prompt at once, computing attention between all tokens and storing key-and-value vectors in a KV cache that can eventually swell to dozens of gigabytes. Prefill parallelizes well, which is why GPUs became the dominant AI accelerator as LLMs took off. Decode is the hard part: the model emits tokens one at a time, and every step requires streaming the full parameter set — tens to hundreds of gigabytes — plus the KV cache through memory. Bandwidth frequently falls short, and researchers cited by IEEE Spectrum found that Nvidia H100 GPUs running open-source LLMs sit idle 50 to 80 percent of the time while waiting for data.
That idle time explains the new design logic. Cerebras's wafer-scale engine keeps memory and compute side by side on a dinner-plate-sized chip to maximize bandwidth. Nvidia's Groq 3 language-processing unit, built on talent and intellectual property the company acquired from startup Groq in a controversial deal worth US $20 billion, arranges on-chip SRAM and compute blocks in the order the workload needs them, minimizing data movement.
Strange alliances in the silicon market
Inference demand is also scrambling corporate loyalties. OpenAI and Amazon are deploying Cerebras chips despite Amazon having its own Trainium silicon; Amazon Web Services splits inference in two, with Trainium handling the computationally complex portion and the Cerebras engine taking the memory-intensive part. Anthropic, meanwhile, pays rival model developer SpaceXAI more than a billion dollars per month to lease spare compute, according to IEEE Spectrum.
Why it matters
If GPUs running inference sit idle between half and four-fifths of the time, then raw compute — the metric that defined the training era — measures the wrong thing, and a large share of the installed accelerator base is underused. The binding constraint is memory bandwidth, which favors architectures designed around data movement rather than peak throughput. It also explains why the competitive map is being redrawn: companies will deploy rivals' chips and rent rivals' capacity when the economics demand it. Training has not stopped, but the money, the engineering effort and the alliances of 2026 now follow inference, and dedicated silicon such as Tensordyne's Napier marks where the market is heading.
- #ai-hardware
- #inference
- #llm
- #chips
- #data-centers