The AI Inference Revolution Is Here AI inference has become the dominant focus of the AI industry in 2026, with Nvidia CEO Jensen Huang calling it the "inflection point of inference" at the company's GTC 2026 conference, according to Moor Insights & Strategy principal data-center analyst Matt Kimball, who said "all that any chief information officer wants to talk about is inference." The shift is driven by reasoning models that can generate up to 20 times as much text as low-effort models and by agentic AI running inference around the clock, prompting OpenAI and Amazon to deploy Cerebras chips, Nvidia to acquire Groq talent and IP for about $20 billion, and Anthropic to pay SpaceXAI over $1 billion per month to lease spare compute. GPT-4o reached 88.7 percent on a popular knowledge-and-reasoning benchmark, up from GPT-3's 43.9 percent in 2020. Since about 2020, AI has largely focused on training bigger and better models. Large language models LLMs ballooned from millions of parameters to trillions. This proved effective: The largest version of OpenAI’s GPT-3, released in 2020, correctly answered https://arxiv.org/pdf/2009.03300 just 43.9 percent of questions on a popular knowledge-and-reasoning benchmark. Just four years later, GPT-4o reached https://openai.com/index/gpt-4o-mini-advancing-cost-efficient-intelligence/ a score of 88.7 percent on the same exam, effectively matching those of human experts. Advanced AI labs are still training ever larger models, but that training has somewhat receded to the background of the AI conversation. In 2026, inference—the use of trained models to produce code, write essays, or make images of ourselves as elves—has come to the forefront. “It’s like training is yesterday’s news,” says Matt Kimball https://moorinsightsstrategy.com/team/matt-kimball/ , principal data-center analyst at Moor Insights & Strategy. “All that any chief information officer wants to talk about is inference.” Nvidia CEO Jensen Huang, speaking at the company’s GTC 2026 conference, touted this change as the “ inflection point of inference https://www.youtube.com/watch?v=jw o0xr8MWU .” Part of what’s caused the shift is very simple: LLMs are becoming useful, so people are using them. On top of that, many models on the market today are reasoning models. In response to a user’s query, they run inference not just once but multiple times, reprompting themselves in a process called chain of thought https://arxiv.org/pdf/2201.11903 . Reasoning models generate longer outputs, and models with high reasoning effort can produce up to 20 times https://www.linkedin.com/posts/artificial-analysis how-many-tokens-do-reasoning-models-use-vs-activity-7318302119206289408-3mt1/ as much text as those with low or no effort. Adding even more to the world’s inference workload, the rise of agentic AI https://spectrum.ieee.org/ai-agents has resulted in inference running not just as a real-time response to a user’s query but also around the clock, working autonomously toward a user-defined goal. Amazon’s Trainium chip was originally designed for AI training. However, Amazon Web Services chose to break up AI inference into two parts, with Trainium running the more computationally complex portion and Cerebras’s wafer-scale engine taking on the more memory-intensive portion.Amazon The resulting explosion in inference demand has led to unexpected alliances among tech giants. OpenAI https://openai.com/index/cerebras-partnership/ and Amazon https://www.reuters.com/business/retail-consumer/cerebras-systems-amazon-strike-deal-offer-cerebras-ai-chips-amazons-cloud-2026-03-13/ have deployed chips the size of a dinner plate https://spectrum.ieee.org/cerebrass-giant-chip-will-smash-deep-learnings-speed-barrier designed by Cerebras https://www.cerebras.ai/ , despite Amazon having its own Trainium https://aws.amazon.com/ai/machine-learning/trainium/ chips. Nvidia bought https://www.cnbc.com/2025/12/24/nvidia-buying-ai-chip-startup-groq-for-about-20-billion-biggest-deal.html key talent and intellectual property from AI-inference startup Groq https://groq.com/ in a controversial deal worth US $20 billion. And Anthropic https://www.anthropic.com/ is paying https://x.ai/news/anthropic-compute-partnership LLM competitor SpaceXAI https://x.ai/ over a billion dollars per month to lease spare compute. Although they might seem similar, AI training and AI inference are computationally different. These big moves from tech giants signal that in order to support the inference demand, we’re going to need a very different mix of hardware than experts may have expected even a couple of years ago. An untrained LLM is like a jumble of Scrabble tiles on a table. Instead of single letters, though, the tiles show fragments of words, called tokens. Everything you’d need to write almost anything is present, but nothing makes sense. Training a model organizes this jumble using a guessing game played at scale. The model is shown real text with the next token hidden and asked to predict what comes next. After each guess, the correct token is revealed and then compared to the prediction, and the difference is used to calculate the model’s accuracy. The game is played not with a single sentence but over billions of passages. While a real game of Scrabble can be played over a bag of chips and a few drinks, AI training is computationally intense. The model updates its parameters through backpropagation https://spectrum.ieee.org/what-is-deep-learning/backpropagation , a process that repeatedly calculates how each of a model’s billions or trillions of parameters should shift to make the next prediction better. This is why tech giants are building https://spectrum.ieee.org/5gw-data-center larger data centers than ever before. Eventually the model’s creator decides further training isn’t worth the cost, and the guessing game stops. Backpropagation ends, the parameters are frozen, and the LLM becomes a pretrained model. Fine-tuning—a short training run on smaller, more specialized data—adds final tweaks, and the model is deployed. Next comes inference. This is the process of using the deployed model, which, now that it’s been trained, has learned to spit out Scrabble tiles—tokens—in a sensible order. You might think that AI inference is less computationally demanding because the backpropagation calculations used to update parameters are eliminated. But Sudeep Bhoja https://www.linkedin.com/in/sudeep-bhoja-070a111/ , founder and CTO of the inference-hardware company d-Matrix https://www.d-matrix.ai/ , explains that inference adds new challenges. The models are “autoregressive” in nature. That is, the next output depends on the previous one. “So to generate the next token, you have to read all of the weights and all of the context from the previous token,” explains Bhoja. The context includes all of your prompts, all of the LLM’s replies, and all of the files you upload. It’s a lot of data and a lot of processing. An LLM generates its reply in two phases: prefill and decode. Prefill is the model reading a prompt. It processes every token at once, computing how each token relates to all the others. This operation is called attention