Groq 3 LPX: NVIDIA's low-latency inference accelerator, explained

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited August 29, 2026

Expert Verified
NVIDIA Groq 3 LPX rack-scale inference accelerator banner

What Groq 3 LPX actually is

NVIDIA describes Groq 3 LPX as "the interactive AI inference accelerator for NVIDIA Vera Rubin." In plainer terms: it is a full rack of specialized chips whose one job is generating tokens fast, and it slots into NVIDIA's newest data-center platform alongside the general-purpose GPUs.

Render of the NVIDIA Groq 3 LPX rack, as shown on NVIDIA's product page
Render of the NVIDIA Groq 3 LPX rack, as shown on NVIDIA's product page

The framing NVIDIA uses is a classic three-way tradeoff. For years, inference hardware gave you two of three properties at once: intelligence plus throughput, or intelligence plus interactivity, but never all three cheaply. Big models are slow to talk to; fast models are small. Groq 3 LPX is pitched as the piece that lets a big model stay responsive, by handing the latency-sensitive part of each token to a chip built for exactly that.

It is worth being precise about what it is not. It is not a standalone product you drop into any server, and it is not a replacement for the GPU. It is a codesigned extension of Vera Rubin NVL72 that runs next to Rubin GPUs, with the two jointly computing every layer of the model for every output token. NVIDIA even calls the LPU "the seventh chip" of the Vera Rubin platform.

Wait, is this Groq the startup?

This is the single most common reaction I've seen, and it's a fair one. Groq spent years as the scrappy inference startup whose LPU was the counterexample to "just use more GPUs." Now "Groq 3 LPX" is an NVIDIA product line. One person on X summed up the mood well:

"so groq the company is now also an nvidia product line, that's going to confuse people for months"

Here's the accurate version, straight from the primary sources. Groq entered a non-exclusive licensing agreement with NVIDIA for its inference technology, the same tech behind GroqCloud's pricing and its lineup of Groq alternatives. As part of it, founder Jonathan Ross and other Groq team members joined NVIDIA to help scale the licensed design. Groq stays independent under a new CEO, Simon Edwards, and GroqCloud keeps operating. NVIDIA's own press page carries the footer line that "Groq and LPU are used under license from Groq, Inc."

How the Groq and NVIDIA deal is structured: a non-exclusive license plus a team move, not a buyout
How the Groq and NVIDIA deal is structured: a non-exclusive license plus a team move, not a buyout

So when you read "NVIDIA Groq 3 LPX," picture a license and a team hire, not a clean acquisition. There are big dollar figures floating around in the press for the deal, but those numbers don't appear in either company's own statements, so I'm leaving them out. What the primary record supports is the structure above, and that's the part that actually matters for understanding the product.

The whole thing, in one rack

The specs are the fun part, because they are genuinely unusual. Here is what NVIDIA lists for a single Groq 3 LPX rack.

NVIDIA Groq 3 LPX rack-scale system with its headline specifications, as taken from NVIDIA
NVIDIA Groq 3 LPX rack-scale system with its headline specifications, as taken from NVIDIA
Rack-level specNVIDIA Groq 3 LPX
Chips per rack256 Groq 3 LPU accelerators
AI inference compute315 PFLOPS (FP8)
Total SRAM capacity128 GB
On-chip SRAM bandwidth40 PB/s
Scale-up bandwidth640 TB/s
Build32 liquid-cooled 1U compute trays, 8 LPUs each

The number that jumps out is 40 petabytes per second of on-chip SRAM bandwidth. That is not a typo, and it's the whole design thesis in one figure. Instead of feeding chips from slower external memory, the LPU keeps the working data on-chip and moves it at a bandwidth a conventional memory setup can't touch. The tradeoff is capacity: 128 GB of SRAM across a rack is tiny next to the terabytes of HBM a GPU rack carries, which is exactly why the LPUs need the GPUs beside them.

Why build a whole new chip?

To see why NVIDIA bothered, it helps to put the two chips side by side. NVIDIA's own diagram does this cleanly.

NVIDIA Rubin GPU versus Groq 3 LPU: extreme FLOPS and HBM against extreme SRAM bandwidth, as taken from NVIDIA
NVIDIA Rubin GPU versus Groq 3 LPU: extreme FLOPS and HBM against extreme SRAM bandwidth, as taken from NVIDIA

A Rubin GPU brings roughly 288 GB of HBM4, about 22 TB/s of memory bandwidth, and around 50 PFLOPs of compute. A single Groq 3 LPU brings 500 MB of SRAM, but at 150 TB/s of bandwidth, with 1.2 PFLOPs of FP8 compute. The GPU is a workhorse optimized for peak throughput and big memory. The LPU is optimized for one thing: keeping a stream of tokens flowing with predictable, low latency.

The NVIDIA Groq 3 LPU accelerator, the chip inside the LPX rack, as taken from NVIDIA
The NVIDIA Groq 3 LPU accelerator, the chip inside the LPX rack, as taken from NVIDIA

The design choices under the hood are what make the LPU different from a GPU, and I find them genuinely interesting because they invert some things GPU programmers take for granted:

  • SRAM is the main memory, not a cache. There is 500 MB of on-chip SRAM per LPU, and it holds the active weights, activations, and KV state directly. There is no HBM on the chip at all.
  • No hardware-managed caches. The compiler and runtime explicitly place data and move it, rather than relying on cache heuristics. That's what cuts unpredictable stalls and keeps latency stable.
  • Deterministic, compiler-scheduled execution. The chip builds on Groq's spatial execution model, where compute, data movement, and synchronization are scheduled ahead of time. NVIDIA describes a hardware protocol that cancels clock drift so hundreds of LPUs act as one coordinated system.
  • Explicit, tensor-first data movement. Everything operates on fixed 320-byte vectors through dedicated matrix, vector, and switch units, so scheduling stays predictable.

If you've spent time thinking about why LLM inference costs are so sensitive to latency, this is the hardware answer to it: build a chip where the timing is knowable, then wire hundreds of them together without losing that property.

How it actually works: a two-engine loop

Here is where it clicks. NVIDIA's insight is that inference isn't one uniform workload. A request has two very different phases, and they want different hardware.

The first phase, prefill, ingests your prompt and builds the KV cache. That is dense, parallel, memory-hungry work, and it's a great fit for the GPU. The second phase, decode, generates the answer one token at a time in a loop. NVIDIA splits that loop across both chips, in a technique it calls attention-FFN disaggregation: the Rubin GPUs run attention over the accumulated context, and the Groq 3 LPX handles the feed-forward and mixture-of-experts math that's most latency-sensitive. For every single token, the two exchange intermediate activations.

How one token gets generated: prefill on the GPU, then a repeating decode loop that swaps activations between the Rubin GPU and Groq 3 LPX every token
How one token gets generated: prefill on the GPU, then a repeating decode loop that swaps activations between the Rubin GPU and Groq 3 LPX every token

The traffic cop for all of this is NVIDIA Dynamo, the orchestration layer that routes prefill to GPU workers, moves the per-token activations between engines, and schedules everything against latency targets so an interactive session doesn't get stuck behind a batch job.

NVIDIA Dynamo coordinating prefill and disaggregated decode across Vera Rubin GPUs and Groq 3 LPX, as taken from NVIDIA
NVIDIA Dynamo coordinating prefill and disaggregated decode across Vera Rubin GPUs and Groq 3 LPX, as taken from NVIDIA

LPX plays one more role worth knowing: it acts as the draft engine for speculative decoding. Its deterministic execution and huge SRAM bandwidth let it churn out draft tokens fast, running ahead of the GPU, which verifies them. That's another way the two chips divide labor instead of duplicating it.

Which engine handles your workload?
Pick a workload to see where the heavy lifting lands in a Vera Rubin + Groq 3 LPX rack.
Mostly the GPU. Batch and offline jobs are throughput-bound, not latency-bound. The Rubin GPUs do the bulk of the work here, and the LPX low-latency path barely moves the needle.
GPU does prefill, then the loop starts. Ingesting a huge prompt and building the KV cache is dense GPU work. Once the model starts answering, the decode loop kicks in and LPX starts earning its keep.
This is LPX's home turf. Tight tool-calling loops with lots of short back-and-forth turns are pure decode latency. Every token shaved compounds across the chain, which is exactly what the LPU is built for.
LPX, badly needed. Real-time voice lives or dies on time-to-first-token and steady per-token latency at small batch sizes. That is the deterministic, low-jitter behaviour the LPU was designed around.

Inside the rack

If you like seeing where the parts physically live, NVIDIA's compute-tray diagram is the clearest look. A rack is 32 of these 1U liquid-cooled trays, and each tray holds eight LPUs.

A 1U NVIDIA Groq 3 LPX compute tray with eight Groq 3 LPUs, a host CPU, a BlueField-4 DPU, and C2C spine connectors, as taken from NVIDIA
A 1U NVIDIA Groq 3 LPX compute tray with eight Groq 3 LPUs, a host CPU, a BlueField-4 DPU, and C2C spine connectors, as taken from NVIDIA

A few things stand out in that layout. Each LPU connects through 96 chip-to-chip links at 112 Gbps, adding up to 2.5 TB/s of scale-up bandwidth per chip, which is how 256 of them behave like one machine. Each tray also carries a BlueField-4 DPU and a host CPU, and the whole thing is cableless and liquid-cooled. It rides NVIDIA's MGX rack architecture, so a data center can plan for one common rack design across its Vera Rubin deployment rather than a bespoke setup for the inference path.

The performance claims, and how to read them

Now for the numbers everyone quotes. NVIDIA's headline is up to 35x higher throughput per megawatt for trillion-parameter models when Vera Rubin NVL72 is paired with LPX, versus its previous GB200 generation, measured at 400 tokens per second per user. It also projects up to 10x more revenue per watt for the most latency-sensitive workloads. The clearest picture is NVIDIA's own Pareto chart.

NVIDIA's chart plotting AI factory throughput against per-user interactivity, showing Rubin NVL72 + LPX holding a 35x edge at 400 tokens per second per user, as taken from NVIDIA
NVIDIA's chart plotting AI factory throughput against per-user interactivity, showing Rubin NVL72 + LPX holding a 35x edge at 400 tokens per second per user, as taken from NVIDIA

Read the chart honestly and it says something real: the gap between the green line (Rubin plus LPX) and the older systems opens up dramatically on the right side, where each user is getting tokens fast. At low interactivity everyone looks similar; at high interactivity, the LPX path stays high while the GPU-only lines fall off a cliff. That's the actual claim, and it's a coherent one.

The honest caveat is who measured it. These are NVIDIA's figures against NVIDIA's own baselines, and the modeled "premium" scenario is a specific 2-trillion-parameter model at a 400K context. The one independent-flavored data point I could find is a NVIDIA-cited Artificial Analysis benchmark of 3,400 tokens per second on Gemma 4 31B at 100K context. It's a strong number, but almost all the public conversation so far is still echoing NVIDIA's slides rather than testing the hardware, because Nebius is only the first cloud to deploy it. On Hacker News, one of the few substantive takes read it against Groq's track record rather than the marketing:

Hacker News

"Gemma 31B dense at 3k TPS seems like a pretty big deal. Groq has always been more efficient than Cerebras at running very small models and this release seems to be no exception."

So my read: the architecture is legitimately clever, the benchmark is promising, and the 35x figure is a best-case marketing number you should hold loosely until third parties run it.

Why now: inference became the expensive part

The reason a chip like this exists is that the shape of AI workloads has changed. When most inference was a single chatbot reply, decode latency barely mattered. Agentic systems broke that. They generate tokens across hundreds or thousands of steps, and NVIDIA cites data showing agentic workloads consume roughly 15x more tokens than a simple chat request. Every small per-token delay now multiplies across a long chain.

NVIDIA's chart showing compute and interactivity demands rising from offline inference through chatbots and reasoning to autonomous agents, as taken from NVIDIA
NVIDIA's chart showing compute and interactivity demands rising from offline inference through chatbots and reasoning to autonomous agents, as taken from NVIDIA

You can see the same shift in where the market's money is going. NVIDIA's data-center business is riding this wave hard: the company reported $96.2 billion in revenue for its quarter ending in late July 2026, up 106% year over year. Inference, not training, is now the growth engine, and a chip built specifically for low-latency, multi-step generation is a direct bet on that. One analyst take on X put the strategic angle cleanly:

"Nvidia moving its Groq 3 LPX inference accelerator into full production signals a key shift from model training to continuous agentic AI workloads."

The mental model that helps here: the further your workload sits toward "many fast turns," the more a dedicated low-latency engine matters. Batch jobs don't care. Coding assistants, agent swarms, and voice care a lot.

Where Groq 3 LPX earns its place: the more a workload needs both fast replies and heavy compute, the more the low-latency path matters
Where Groq 3 LPX earns its place: the more a workload needs both fast replies and heavy compute, the more the low-latency path matters

What this means if you build with AI

Here's the part I want to be straight about, because it's easy to get swept up in the spec sheet. Unless you run a cloud or a very large AI platform, you are not going to buy a Groq 3 LPX rack. This is infrastructure that sits several layers below where most teams work. You'll feel it as faster, cheaper tokens showing up in the model APIs and clouds you already use, the same way you never bought a GPU to use an AI agent.

And that's the useful reframe. The chip is the engine; the thing you actually deploy is the worker that rides on top of it. Faster inference makes agents snappier and cheaper to run, which lowers the bar for putting real automation into production and shifts the cost math against a human agent, whether that's a coding agent, a research agent, or an AI helpdesk agent working your support queue. The hardware race is about making that layer viable at scale. The value still lives in the layer.

Where eesel fits

Chips like Groq 3 LPX are the plumbing. eesel is what you hire to do the job on top of it. eesel is an AI teammate platform: you don't provision inference or wire up a pipeline, you bring on a ready-to-work teammate for a specific role and plug it into your apps. The current roster is an AI helpdesk teammate that joins your support queue as more than a basic support chatbot, and an AI blog writer that produces content like this piece.

Getting an eesel AI teammate ready to work: teach it, chat with it, then put it to work across your helpdesk, Slack, or a shareable link
Getting an eesel AI teammate ready to work: teach it, chat with it, then put it to work across your helpdesk, Slack, or a shareable link

The concrete difference is where the fast tokens land. A support teammate that answers in one second instead of eight is the whole experience for the person waiting on it, and the years we've spent running AI on live support queues taught us the un-glamorous half: speed only helps if the answer is right, which is why eesel simulates a rollout against your past tickets before it ever replies to a live customer. All the silicon in the world doesn't fix a confident wrong answer. If you want to see the teammate rather than the rack, you can try eesel for free.

Frequently Asked Questions

What is NVIDIA Groq 3 LPX?
Groq 3 LPX is NVIDIA's rack-scale, low-latency inference accelerator for the Vera Rubin platform. Each rack packs 256 Groq 3 LPU chips and works alongside Vera Rubin NVL72 GPUs, splitting the work of generating tokens so that responses come back faster. It went into full production in August 2026.
Is Groq 3 LPX the same as Groq the startup?
Not exactly. NVIDIA licensed Groq's LPU technology on a non-exclusive basis and hired Groq's founder and part of the team, then branded its own accelerator "NVIDIA Groq 3 LPX." Groq itself stays independent and GroqCloud keeps running, so both the standalone Groq and the NVIDIA product now share the name.
How fast is Groq 3 LPX?
NVIDIA cites an Artificial Analysis benchmark of 3,400 output tokens per second running Gemma 4 31B at a 100,000-token context, which it calls the fastest recorded for that model. Paired with Vera Rubin NVL72, NVIDIA also projects up to 35x higher throughput per megawatt for trillion-parameter models versus its previous GB200 generation. Those are vendor figures, so treat them as a ceiling until independent tests land.
How is an LPU different from a GPU?
A GPU chases peak arithmetic throughput and carries large high-bandwidth memory (HBM). An LPU flips that: it puts 500 MB of fast on-chip SRAM per chip as the main working memory, drops hardware-managed caches, and lets the compiler place data explicitly for deterministic, low-jitter token generation. In Groq 3 LPX the two run together, with GPUs doing context-heavy work and LPUs doing latency-sensitive decode.
Do I need Groq 3 LPX to run an AI agent?
No. Groq 3 LPX is data-center infrastructure that clouds like Nebius deploy; most teams consume fast inference through a model API, not by buying a rack. What you actually deploy is the layer on top, an AI helpdesk agent or an AI blog writer. That is where eesel lives: the teammate that does the job, running on whatever inference sits underneath.

Share this article

Alicia Kirana Utomo

Article by

Alicia Kirana Utomo

Kira is a writer at eesel AI with a Computer Science background and over a year of hands-on experience evaluating AI-powered customer service tools. She focuses on breaking down how helpdesk platforms and AI agents actually work so that support teams can make better buying decisions.

Related Posts

All posts →
Illustrated lineup of AI inference chips and data-center racks as Groq 3 LPX alternatives
Trending

The 8 best Groq 3 LPX alternatives in 2026

The best Groq 3 LPX alternatives for fast AI inference in 2026, from Cerebras and SambaNova to Google TPU, AWS Trainium, AMD, and more.

Rama Adi NugrahaRama Adi NugrahaAug 29, 2026
Illustration of a compact model chip routing a token down two lit expert paths out of many dim ones, for an Inkling-Small explainer
Trending

Inkling-Small explained: a 276B model with 12B doing the work

What Inkling-Small actually is: a 276B/12B open-weights MoE from Thinking Machines, the context window the docs and the providers disagree on, what a million tokens really costs, and where it belongs in a support stack.

Rama Adi NugrahaRama Adi NugrahaAug 4, 2026
Skywork AI super-agent workspace illustration
Trending

What is Skywork AI? The super-agent workspace, explained

Skywork AI is a general-purpose AI super-agent that builds slides, docs, sheets, sites and videos. Here's what it does, how it works, and what it costs.

Alicia Kirana UtomoAlicia Kirana UtomoJul 20, 2026
Illustration of Inkling, Thinking Machines Lab's open-weights AI model
Trending

Inkling explained: Thinking Machines' open-weights AI model

What Inkling actually is: Thinking Machines Lab's first open-weights model, its real benchmarks, what it costs to run, and whether it belongs anywhere near a support queue.

Alicia Kirana UtomoAlicia Kirana UtomoJul 20, 2026
Illustration comparing a small ordered model core against a much larger tangled one, for an Inkling-Small review
Trending

Inkling-Small review: a quarter the size, and mostly as smart

A hands-on Inkling-Small review: it out-codes its own 975B parent at a quarter the size and a quarter the price, and then falls off a cliff on factuality. Here's what that trade actually costs you.

Alicia Kirana UtomoAlicia Kirana UtomoAug 4, 2026
Illustration of one model producing image, video and audio panels, representing FLUX 3 from Black Forest Labs
Trending

FLUX 3: what Black Forest Labs actually shipped

FLUX 3 is one model for image, video, audio and robot actions. It also has no API, no price and no open weights yet. Here is what you can and cannot get.

Rama Adi NugrahaRama Adi NugrahaAug 4, 2026
Illustration of a humanoid robot control model, representing Gemini Robotics 2
Trending

Gemini Robotics 2: what DeepMind's own numbers show

Gemini Robotics 2 ships three models and a per-task success table where most scores sit under 80%. That table is the most useful thing in the release.

Alicia Kirana UtomoAlicia Kirana UtomoAug 4, 2026
Illustration of image, video and document panels feeding a vision-language model, with the Qwen logo
Trending

Qwen 3.7 Flash: specs, pricing, and what it actually does

Qwen 3.7 Flash shipped with no blog post, no benchmarks and no weights. Here is the full spec sheet, the tiered pricing, and what Qwen never claimed.

Alicia Kirana UtomoAlicia Kirana UtomoJul 31, 2026
Skywork AI pricing breakdown illustration
Trending

Skywork AI pricing: what it really costs in 2026

A plain-English breakdown of Skywork AI pricing: the $1 trial, the credit system, the $19.99 Pro plan, and the billing gotchas to watch before you pay.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieJul 20, 2026

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free