Data as of Sep 17, 2026 · Based on 50 AI responses from ChatGPT Search and Google AI Mode · See how Parse measures this
Your brand can be here too.
If by **“bursty agent workloads”** you mean inference with highly variable concurrency, lots of short agent turns/tool calls, fan-out/fan-in, and relatively expensive decode/KV-cache traffic, there’s a pretty clear emerging cluster of companies attacking it from different layers. ### The companies I’d put on the map -…
If by “bursty agent workloads” you mean inference with highly variable concurrency, lots of short agent turns/tool calls, fan-out/fan-in, and relatively expensive decode/KV-cache traffic, there’s a pretty clear emerging cluster of companies attacking it from different layers.
If your question is specifically “who is building the runtime/compiler that makes burstiness efficient?”, rather than just “who makes an inference chip?”, I'd separate the field into:
| Layer | Companies/projects to watch | What matters for agents |
|---|---|---|
| Chip + compiler | NVIDIA, Cerebras, SambaNova, Etched, d-Matrix | Scheduling, memory locality, KV cache, dynamic batching |
| Inference runtime | NVIDIA Dynamo, vLLM, SGLang, llm-d | Continuous batching, routing, KV-cache management, disaggregation |
| Disaggregated inference | Cerebras/AWS, NVIDIA/Groq, hyperscalers | Separate prefill from decode; absorb burstiness |
| Agent-oriented CPU/system | NVIDIA Vera, Qualcomm Dragonfly | Tool calls, orchestration, data processing around accelerator |
| Custom inference ASIC | OpenAI/Broadcom, Taalas | Maximize tokens/$ and tokens/W for known workload distributions |
Notably, the ecosystem is moving toward disaggregation: prefill and decode don't necessarily have to run on the same processor. Cerebras says the major serving frameworks—including Dynamo, SGLang, vLLM and llm-d—already support forms of this architecture.
The key architectural problem isn't simply “make inference faster.” For agents, it's closer to:
low average utilization + sudden fan-out + heterogeneous requests + long-lived KV state + stringent tail latency.
That favors systems with:
So I wouldn't view this as just an “AI chip startup” market. There is a potentially important agent inference runtime + scheduler + accelerator layer emerging between CUDA-style general-purpose compute and fully hardwired ASICs.
If you're evaluating this as a startup/market opportunity, I can also map the landscape by (a) burstiness handling, (b) compiler sophistication, (c) KV-cache architecture, (d) latency, (e) $/token, and (f) whether they're actually shipping vs. still in development.
vLLM
vllm.ai
Building a compiler or runtime tailored specifically for **bursty, multi-step agent workloads** (characterized by rapid loops, tool calling, branching, and persistent context switching) is the bleeding edge of AI infrastructure. Traditional GPUs often drop to 30%–40% utilization on these erratic workloads because they…
Building a compiler or runtime tailored specifically for bursty, multi-step agent workloads (characterized by rapid loops, tool calling, branching, and persistent context switching) is the bleeding edge of AI infrastructure. Traditional GPUs often drop to 30%–40% utilization on these erratic workloads because they are optimized for steady, massive parallel throughput rather than dynamic, stop-and-go agent execution.
While the major hyperscalers and specialized silicon startups are aggressively tackling LLM inference efficiency, solving the agent loop natively at the compiler/runtime level is split across a few key approaches and players:
Are you looking at this from a hardware/silicon design perspective (needing deterministic SRAM/context-switching features), or are you trying to optimize an orchestration runtime (like LangChain/LlamaIndex) over existing accelerators? Let me know so I can point you toward the right architectural stack.
SkillRT
Yes. If by **“bursty agent workloads”** you mean workloads with irregular fan-out, tool-call pauses, long contexts/KV-cache residency, and sudden bursts of decode rather than steady GPU utilization, there’s a fairly distinct emerging market. The companies I’d put on the shortlist are: Company | What they’re building |…
Yes. If by “bursty agent workloads” you mean workloads with irregular fan-out, tool-call pauses, long contexts/KV-cache residency, and sudden bursts of decode rather than steady GPU utilization, there’s a fairly distinct emerging market.
The companies I’d put on the shortlist are:
| Company | What they’re building | Fit for bursty agents |
|---|---|---|
| NVIDIA / Groq | GPUs + Groq LPUs + Dynamo runtime | Excellent |
| SambaNova | RDU chips + dataflow runtime | Excellent |
| d-Matrix | Inference ASIC with compute-in-memory | Excellent |
| Cerebras | Wafer-scale inference + disaggregated serving | Excellent |
| Positron | Memory-first inference accelerator | Very high |
| Etched | Transformer-specific ASIC | High, especially predictable transformer inference |
| Taalas | Hard-wired inference silicon | Very high throughput, less general |
| AMD | GPUs + PACE agentic runtime | High on the runtime/system side |
| TPUs + serving stack | High, particularly at hyperscaler scale | |
| Tenstorrent | RISC-V/AI accelerators + compiler stack | Interesting longer-term bet |
1. NVIDIA + Groq — probably the strongest overall answer
NVIDIA is explicitly targeting agentic inference now. Its stack combines Rubin GPUs, Groq 3 LPX for deterministic low-latency decode, and Dynamo for inference orchestration, KV-cache management, prefill/decode disaggregation and cache-aware routing. NVIDIA says Dynamo can raise GPU utilization on agentic fleets from roughly 40–55% to 75–85%.
The interesting part isn't just the chip. The runtime is becoming the product. An agent may disappear into a tool call for seconds and then suddenly generate hundreds of tokens; Dynamo is designed to deal with exactly that utilization problem.
Groq's architecture is particularly interesting because its compiler statically schedules execution and data movement, producing predictable latency rather than relying on a conventional GPU scheduler.
2. SambaNova — perhaps the purest “agent inference architecture” bet
SambaNova's SN50 RDU is explicitly designed around agentic inference. Its thesis is that decode is increasingly the bottleneck: SambaNova reports that decode accounts for 75–97% of inference time across several frontier-model configurations.
More importantly, they're building a heterogeneous runtime architecture: GPU for prefill, RDU for decode, with the system moving the KV cache between them. They have already demonstrated this with NVIDIA B200 + SN40 and report 2× the inference speed of B200-only configurations.
That's very close to what I'd expect an "agent-native" accelerator architecture to look like.
3. d-Matrix — particularly interesting if you want a new chip, not just a GPU alternative
d-Matrix is attacking inference with compute-in-memory technology. Its newer Raptor architecture is being designed to integrate directly into NVIDIA systems via NVLink Fusion, which is telling: the winning architecture may not be “replace NVIDIA,” but add specialized inference silicon alongside NVIDIA.
For bursty workloads, that combination of specialized inference + high-speed interconnect is compelling.
4. Cerebras — extreme token throughput
Cerebras takes a radically different approach with wafer-scale compute. It's especially compelling for workloads where the objective is finish an agentic chain as quickly as possible, rather than maximize conventional GPU utilization.
They're also pursuing disaggregated inference, separating prefill and decode onto different systems.
5. Positron — one I'd watch closely
Positron's Asimov is a memory-first inference processor, with up to 2.3 TB of memory per chip. That's directly attacking one of the nasty characteristics of agent workloads: huge and persistent KV caches rather than merely raw FLOPS.
This could be especially interesting for long-running agents.
This is arguably more important than the chip.
The fundamental problem with agents is that GPU utilization becomes temporally unpredictable:
agent → inference → tool call → idle → inference → parallel tool calls → burst → inference... NVIDIA describes this explicitly: conventional requests-per-second capacity planning breaks down because agents can make 50–500 sequential model calls, accumulate KV cache, and create irregular GPU idle periods.
So I'd separate the market into:
AMD is particularly worth watching on the software side: its PACE project has evolved from an inference engine into an agentic orchestrator, with LangGraph integration, deterministic agent execution and optimized tool operations.
If you're evaluating this as an investment / startup landscape, I'd focus less on “who makes an inference ASIC?” and more on:
Who is building the execution substrate for agents?
The really interesting architecture is likely:
agent scheduler → model router → prefill pool → decode pool → KV-cache tier → tool/CPU pool → network → accelerator compiler
rather than a single magical “agent chip.”
On that basis, my top five to diligence would be NVIDIA/Groq, SambaNova, d-Matrix, Cerebras, and Positron. The broader 2026 inference-chip field also includes Tenstorrent, MatX, Untether AI, Etched, Taalas, Axelera and FuriosaAI.
If you're asking because you're looking for a startup/company to build against or invest in, I can also map these into a 2×2 of “chip vs runtime” and “general-purpose vs agent-optimized,” including funding, customers, architecture, and likely competitive moat.
3. d-Matrix — particularly interesting if you want a new chip, not just a GPU alternative
d-Matrix is attacking inference with compute-in-memory technology. Its newer Raptor architecture is being designed to integrate directly into NVIDIA systems via NVLink Fusion, which is telling: the winning architecture may not be “replace NVIDIA,” but add specialized inference silicon alongside NVIDIA.
For bursty workloads, that combination of specialized inference + high-speed interconnect is compelling.
4. Cerebras — extreme token throughput
Cerebras takes a radically different approach with wafer-scale compute. It's especially compelling for workloads where the objective is finish an agentic chain as quickly as possible, rather than maximize conventional GPU utilization.
They're also pursuing disaggregated inference, separating prefill and decode onto different systems.
5. Positron — one I'd watch closely
Positron's Asimov is a memory-first inference processor, with up to 2.3 TB of memory per chip. That's directly attacking one of the nasty characteristics of agent workloads: huge and persistent KV caches rather than merely raw FLOPS.
This could be especially interesting for long-running agents.
This is arguably more important than the chip.
The fundamental problem with agents is that GPU utilization becomes temporally unpredictable:
agent → inference → tool call → idle → inference → parallel tool calls → burst → inference... NVIDIA describes this explicitly: conventional requests-per-second capacity planning breaks down because agents can make 50–500 sequential model calls, accumulate KV cache, and create irregular GPU idle periods.
So I'd separate the market into:
Building a chip compiler or runtime for **bursty agent workloads** —where AI agents unpredictably fire off tool calls, rapidly shift context windows, and create spiky, non-linear token generation patterns—is the bleeding edge of AI infrastructure. Traditional static graph compilers (like early versions of TensorRT or…
Building a chip compiler or runtime for bursty agent workloads —where AI agents unpredictably fire off tool calls, rapidly shift context windows, and create spiky, non-linear token generation patterns—is the bleeding edge of AI infrastructure. Traditional static graph compilers (like early versions of TensorRT or XLA) assume steady-state streaming, which leads to massive GPU underutilization and terrible KV-cache thrashing during agent loops.
The ecosystem tackling this problem spans dominant hardware giants, specialized inference engine developers, and agentic compiler startups.
Are you trying to optimize for edge devices (like robotics/local hardware) or a hyperscale cloud data center ? If you share the target model architecture (e.g., dense LLMs vs. Mixture-of-Experts), I can narrow down which of these runtime layers fits your exact stack.
Building a chip compiler or runtime optimized for **bursty agent workloads** addresses a fundamental mismatch in modern AI infrastructure: `traditional AI accelerators and serving stacks` are built for steady, high-throughput, massive-batch matrix multiplication (like serving a static LLM prompt to thousands of…
Building a chip compiler or runtime optimized for bursty agent workloads addresses a fundamental mismatch in modern AI infrastructure: traditional AI accelerators and serving stacks are built for steady, high-throughput, massive-batch matrix multiplication (like serving a static LLM prompt to thousands of concurrent users).
By contrast, multi-step agentic workflows (planning, tool-calling loops, reflection, and variable-length reasoning chains) generate volatile, square-spike demand, highly dynamic control flows, frequent context switching, and heavy reliance on structured outputs rather than pure token streaming.
Companies approaching this problem span software runtimes, compiler infrastructure, and specialized silicon architectures:
If you're targeting a specific deployment environment, let me know:
I can help narrow down whether a compiler-focused stack (like Modular MAX) or a stateful container runtime is your best fit.
Daytona
EdgeMatrix
Yes. If by **“bursty agent workloads”** you mean workloads with lots of short/irregular inference calls, tool-call pauses, long-lived KV cache, fan-out/fan-in, and sudden bursts rather than steady GPU saturation, there’s now a fairly clear set of companies attacking exactly that problem. My shortlist, roughly by…
Yes. If by “bursty agent workloads” you mean workloads with lots of short/irregular inference calls, tool-call pauses, long-lived KV cache, fan-out/fan-in, and sudden bursts rather than steady GPU saturation, there’s now a fairly clear set of companies attacking exactly that problem.
My shortlist, roughly by relevance:
| Company | What they're building | Why it fits agent workloads |
|---|---|---|
| NVIDIA | Vera CPU + Blackwell/Vera Rubin + Dynamo + Groq 3 LPX | Probably the most complete stack: CPU orchestration, GPU inference, KV-cache management, routing, and low-latency accelerators |
| Groq | LPU + compiler/runtime | Deterministic, compiler-scheduled inference with very high SRAM bandwidth; particularly attractive for latency-sensitive agent steps |
| SambaNova | SN50 RDU + dataflow runtime | Designed around memory movement/decode rather than peak FLOPs; explicitly positioning SN50 for agentic inference |
| d-Matrix | Corsair inference accelerator | Compute-in-memory architecture aimed at low-latency token generation alongside GPUs |
| Cerebras | WSE-3 / CS-3 + Cerebras inference | Huge on-chip memory/bandwidth and extremely fast generation; interesting when an agent repeatedly invokes the model |
| FuriosaAI | RNGD / next-gen TCP platform | Explicitly targeting the agentic inference market, with emphasis on scale-up and communication efficiency |
| Etched | Sohu Transformer ASIC | Very aggressive specialization for Transformer inference; potentially compelling if the model architecture stays stable |
| Tenstorrent | Wormhole/Blackhole + TT-Metal software stack | More general programmable accelerator approach; interesting if you want compiler/runtime control rather than a fixed inference ASIC |
| AMD | Instinct + PACE runtime | PACE has recently been extended from inference serving into an agentic orchestration/runtime layer |
| Intel | Xeon + Crescent Island + agentic stack | Intel is explicitly designing its 2026 architecture around agentic inference and orchestration |
1. NVIDIA — probably the strongest answer if you mean “runtime,” not just a chip.
NVIDIA is attacking the whole irregularity problem. Its Dynamo runtime can disaggregate prefill/decode, treat KV cache as a cluster resource, and route requests according to cache affinity. NVIDIA says this can raise GPU utilization for agentic fleets from roughly 40–55% to 75–85%.
The interesting hardware piece is Vera CPU: NVIDIA specifically describes its spatial multithreading as improving latency consistency for bursty, event-driven agent sandboxes.
And then there's Groq 3 LPX, now part of the Vera Rubin platform, which provides deterministic low-latency inference. NVIDIA says its compiler can partition large MoE models across a shared SRAM pool and maintain bounded latency under bursty multi-agent fan-out.
So NVIDIA's thesis is basically:
CPU orchestration → cache-aware runtime → GPU prefill/decode → specialized low-latency LPU.
That's unusually close to the workload you're describing.
2. Groq — the most interesting “chip + compiler” pure play.
Groq's fundamental bet is that inference shouldn't look like a general-purpose GPU workload. Its LPU uses compiler-scheduled execution and lots of on-chip SRAM, giving the runtime much more control over exactly when data moves and computation happens.
That is highly relevant to agents because an agent's critical metric often isn't aggregate FLOPS—it is:
time from “agent needs next token” → “next token arrives.”
Groq's deterministic execution is therefore particularly attractive for voice agents, coding agents, and other interactive workloads where tail latency matters.
The caveat is that the specialization makes the software/compiler stack unusually important.
3. SambaNova — perhaps the closest architectural match to the memory problem.
SambaNova's SN50 RDU is explicitly marketed as “Purpose-Built for Agentic Inference.” Its argument is that inference has become a memory/data-movement problem rather than simply a matrix-compute problem.
Its latest analysis says decode accounts for 75–97% of model-inference time in the configurations it studied, and its RDU uses large on-chip SRAM plus dataflow execution to keep bandwidth productive.
That's compelling for agents because long-running agents spend enormous amounts of time repeatedly decoding rather than doing giant batches of compute.
4. d-Matrix — very interesting if you believe compute-in-memory wins.
d-Matrix's Corsair is now in production and is explicitly designed to work alongside GPUs rather than necessarily replacing them. The company positions it around low-latency token generation for interactive and agentic applications.
Its digital compute-in-memory approach is particularly interesting because it attacks the fundamental problem of repeatedly moving model weights through the memory hierarchy.
5. FuriosaAI — one to watch.
Furiosa is unusually explicit about the transition to agentic inference. Its 2026 partnership with Broadcom is aimed at a third-generation accelerator and scale-up inference platform specifically for frontier agentic systems.
The architectural emphasis is data reuse + communication efficiency, which is exactly where bursty agent inference starts becoming different from conventional batch inference.
There is another category that's arguably more important than the chip:
If you're evaluating this as an investment/company-building opportunity, I'd divide the market into three bets:
The interesting white space, IMO, is not another 2×-faster GPU. It's a system that treats an agent as a long-lived, interruptible computation: reserve/release compute dynamically, preserve KV state through tool calls, schedule thousands of tiny inference bursts, execute tool/sandbox work efficiently, and exploit idle accelerator capacity between bursts.
That is a somewhat different architecture from today's “GPU serving a batch of requests” model—and NVIDIA itself now explicitly acknowledges that conventional requests-per-second capacity planning breaks down for autonomous agents.
If you're thinking about starting a company in this space, I can also map the landscape into “who is actually vulnerable / what is still technically unsolved / where a new chip or runtime could have a 10× advantage.”
CPU orchestration → cache-aware runtime → GPU prefill/decode → specialized low-latency LPU.
That's unusually close to the workload you're describing.
2. Groq — the most interesting “chip + compiler” pure play.
Groq's fundamental bet is that inference shouldn't look like a general-purpose GPU workload. Its LPU uses compiler-scheduled execution and lots of on-chip SRAM, giving the runtime much more control over exactly when data moves and computation happens.
That is highly relevant to agents because an agent's critical metric often isn't aggregate FLOPS—it is:
time from “agent needs next token” → “next token arrives.”
Groq's deterministic execution is therefore particularly attractive for voice agents, coding agents, and other interactive workloads where tail latency matters.
The caveat is that the specialization makes the software/compiler stack unusually important.
3. SambaNova — perhaps the closest architectural match to the memory problem.
SambaNova's SN50 RDU is explicitly marketed as “Purpose-Built for Agentic Inference.” Its argument is that inference has become a memory/data-movement problem rather than simply a matrix-compute problem.
Its latest analysis says decode accounts for 75–97% of model-inference time in the configurations it studied, and its RDU uses large on-chip SRAM plus dataflow execution to keep bandwidth productive.
That's compelling for agents because long-running agents spend enormous amounts of time repeatedly decoding rather than doing giant batches of compute.
4. d-Matrix — very interesting if you believe compute-in-memory wins.
d-Matrix's Corsair is now in production and is explicitly designed to work alongside GPUs rather than necessarily replacing them. The company positions it around low-latency token generation for interactive and agentic applications.
Its digital compute-in-memory approach is particularly interesting because it attacks the fundamental problem of repeatedly moving model weights through the memory hierarchy.
5. FuriosaAI — one to watch.
Furiosa is unusually explicit about the transition to agentic inference. Its 2026 partnership with Broadcom is aimed at a third-generation accelerator and scale-up inference platform specifically for frontier agentic systems.
The architectural emphasis is data reuse + communication efficiency, which is exactly where bursty agent inference starts becoming different from conventional batch inference.
There is another category that's arguably more important than the chip:
Yes. If by **“bursty agent workloads”** you mean workloads with lots of short, irregular inference bursts, tool calls, idle periods, changing batch sizes, and heterogeneous CPU/GPU/memory demands, then the interesting market is broader than “faster LLM chips.” A recent systems study makes the distinction pretty stark:…
Yes. If by “bursty agent workloads” you mean workloads with lots of short, irregular inference bursts, tool calls, idle periods, changing batch sizes, and heterogeneous CPU/GPU/memory demands, then the interesting market is broader than “faster LLM chips.”
A recent systems study makes the distinction pretty stark: agent workloads can sit idle for minutes/hours between active steps, shift bottlenecks between GPU, CPU, memory and networking, and have highly variable task latency.
I’d divide the landscape like this:
A useful recent industry survey puts Groq, Cerebras, SambaNova, MatX, d-Matrix, Etched, Taalas, Tenstorrent, FuriosaAI, Axelera and others in this emerging inference-specialist category.
This is where I'd look particularly closely if your thesis is bursty agents, rather than conventional high-QPS inference.
And there is a particularly interesting research direction here: task-aware serving, communication-aware placement, state offloading and caching have all demonstrated substantial gains on agent workloads.
Don't overlook:
If you're looking for “who is building the thing that will make agent inference dramatically cheaper?”, I'd put the bets into three buckets:
| Approach | Companies I'd watch | Fit for bursty agents |
|---|---|---|
| Specialized silicon | Cerebras, Groq, SambaNova, d-Matrix, Etched | ⭐⭐⭐⭐ |
| Compiler/runtime/scheduler | NVIDIA, Google, Anyscale, Modal, Together, Fireworks | ⭐⭐⭐⭐⭐ |
| Vertical hyperscaler silicon | Google, AWS, Microsoft, Meta, OpenAI | ⭐⭐⭐⭐ |
The key insight is that agent workloads may actually favor a runtime-first architecture. A conventional inference accelerator assumes you have a queue of homogeneous requests to batch efficiently. Agents instead produce a dynamic graph:
LLM → tool → CPU sandbox → retrieval → LLM → wait → LLM → browser → ...
The winning system therefore may not be the chip with the highest tokens/sec. It may be the scheduler/compiler/runtime that can move each tiny piece of work to the cheapest available resource, preserve state cheaply, avoid cold-starts, and opportunistically batch unrelated agent steps.
That's why I'd pay especially close attention to companies attacking scheduling + memory/state + heterogeneous execution, not just TOPS. The academic evidence is already pointing in that direction.
If you're evaluating this as a startup opportunity, I can also map the landscape into “who is actually closest to a new AWS-for-agent-compute / agent ASIC / agent runtime” and identify the gaps nobody seems to be filling yet.
Traditional enterprise GPUs often drop to **30% to 40% utilization** on agentic workloads. Because agents spend a lot of time thinking, executing tool calls, waiting on external APIs, and processing variable-length reasoning loops, the workload is inherently **spiky, unpredictable, and…
Traditional enterprise GPUs often drop to 30% to 40% utilization on agentic workloads. Because agents spend a lot of time thinking, executing tool calls, waiting on external APIs, and processing variable-length reasoning loops, the workload is inherently spiky, unpredictable, and bursty.
A new tier of silicon, compiler, and runtime infrastructure is emerging to solve this "inference gap"—moving away from static, massive-batch matrix multiplication toward architectures built for dynamic, low-latency, irregular execution.
Rather than redesigning the physical silicon from scratch, several software-hardware co-design companies are optimizing the runtime and compilation layer to manage ragged batching and bursty context switching:
If you're targeting a specific deployment environment, let me know:
I can narrow down which compiler/runtime stack fits your exact tech stack.
Yes. If by **“bursty agent workloads”** you mean workloads with lots of short LLM calls, tool calls, idle gaps, changing concurrency, and a premium on **latency + utilization rather than peak FLOPS**, there’s a surprisingly active market. A recent systems paper characterizes agent workloads as having **sudden load…
Yes. If by “bursty agent workloads” you mean workloads with lots of short LLM calls, tool calls, idle gaps, changing concurrency, and a premium on latency + utilization rather than peak FLOPS, there’s a surprisingly active market.
A recent systems paper characterizes agent workloads as having sudden load spikes, heterogeneous CPU/GPU affinity, frequent CPU↔GPU transitions, and sessions that can sit idle for minutes or hours—which is quite different from conventional continuous LLM serving.
| Company | What they're building | Fit for bursty agents |
|---|---|---|
| SambaNova | RDU accelerator + software stack | Very high |
| d-Matrix | Memory-centric inference silicon | Very high |
| Groq | LPU inference architecture/runtime | High, especially latency-sensitive calls |
| Cerebras | Wafer-scale inference | High for large-model / low-latency serving |
| Etched | Transformer-specific ASIC | High for stable Transformer workloads |
| Taalas | Extremely specialized inference ASICs | High when model/workload can be constrained |
| MatX | New AI accelerator architecture | Potentially very high; early |
| Tenstorrent | General AI accelerator + compiler stack | High, particularly if programmability matters |
| NVIDIA | GPU + Dynamo/Triton inference stack | Very high, especially runtime/scheduling |
| AWS | Inferentia + Neuron compiler/runtime | High for cloud-native inference |
| Intel | Xeon + inference GPU/NPU + software | Interesting for heterogeneous agent servers |
| AMD | Instinct + ROCm inference stack | More general-purpose, but increasingly relevant |
The most interesting distinction is that some companies are attacking the chip, while others are attacking the runtime problem.
SambaNova explicitly positions its SN50 RDU as purpose-built for agentic inference. Its architecture is designed around the fact that inference is heavily constrained by data movement and memory rather than simply matrix-compute throughput.
Even more interestingly, SambaNova and Intel announced a heterogeneous architecture in which GPUs handle prefill, SambaNova RDUs handle high-throughput decode, and Xeons handle host/action workloads. That's very close to the architecture implied by agentic workloads.
My take: one of the strongest companies to study if you're thinking “agent server” rather than “LLM GPU.”
d-Matrix's original thesis was explicitly small-batch, interactive inference with extremely low latency. Its architecture uses compute-in-memory and lots of on-chip SRAM to avoid the memory-movement costs of conventional accelerators.
That maps unusually well onto agents, where you may have:
agent → 300-token call → tool → 800-token call → tool → 200-token call
rather than:
10,000 simultaneous requests → continuous GPU saturation.
My take: probably one of the most technically interesting fits for your exact phrase “bursty agent workloads.”
Groq's LPU architecture is designed around deterministic, extremely fast inference. It's particularly compelling when single-request latency matters more than maximizing giant batch throughput.
One caveat: NVIDIA licensed Groq's inference technology and core team in late 2025, so the competitive situation is no longer simply “Groq vs. NVIDIA.”
If the question is “who is building the compiler/runtime for this?”, NVIDIA may actually be the most important answer.
Its stack is moving beyond simply “run a model on a GPU.” Triton Inference Server provides dynamic batching, concurrency management, streaming, configuration optimization and support across GPUs/CPUs/Inferentia.
For agentic workloads, the interesting NVIDIA layer is increasingly scheduling/orchestration/memory management, not just CUDA kernels.
And NVIDIA is clearly treating agentic inference as a distinct hardware problem: its latest systems include inference-oriented architectures and it has also incorporated Groq technology.
AWS has a particularly complete vertical stack:
Inferentia → Neuron compiler/runtime → EC2 → serving infrastructure
Inferentia is explicitly designed for generative-AI inference, with Neuron providing the software layer.
This is important because a truly good agent accelerator probably needs to understand more than GEMMs—it needs to understand KV cache, model loading, batching, scheduling, CPU interaction and state.
MatX is particularly interesting because it's not merely another inference-chip startup. It was founded by former Google TPU engineers, and Anthropic recently held acquisition discussions with it around accelerating custom-chip development. Those talks reportedly shifted toward a potential partnership.
That's a strong signal that frontier labs believe the accelerator/compiler stack itself is strategically important.
Etched is pursuing a Transformer-specific ASIC, while Taalas goes even further with highly hard-wired model implementations. The upside is extraordinary efficiency/latency; the downside is reduced flexibility.
That makes them interesting if your agent workload has stable models and predictable execution patterns, but less obviously ideal for rapidly changing agent stacks.
There's a potentially bigger opportunity above the accelerator:
An “agent runtime” that treats compute as an elastic pool rather than treating each agent as a GPU job. The recent AgentSysBench work is revealing here. Agent workloads can have CPU-bound sandboxes, GPU-bound inference, memory-bound retrieval, long idle periods and rapidly shifting bottlenecks. The authors found that task-aware scheduling, communication-aware placement, state offloading and caching can produce very large gains.
So I'd divide the opportunity into:
Silicon
Inference compiler/runtime
Agent-aware orchestration / scheduling
And that's why I think your phrase “bursty agent workloads” points to a potentially distinct architecture category. Conventional GPU inference optimizes for keeping the accelerator busy. Agents often require the opposite: wake up quickly, execute a small amount of work extremely efficiently, persist state cheaply, go idle, and wake up again—while multiplexing thousands of such sessions.
If you're evaluating this as a startup/investment opportunity, I'd put d-Matrix, SambaNova, MatX, NVIDIA's inference-runtime effort, and Tenstorrent at the top of the diligence list—not because they're equivalent, but because they attack different pieces of the same emerging stack.
d-Matrix's original thesis was explicitly small-batch, interactive inference with extremely low latency. Its architecture uses compute-in-memory and lots of on-chip SRAM to avoid the memory-movement costs of conventional accelerators.
That maps unusually well onto agents, where you may have:
agent → 300-token call → tool → 800-token call → tool → 200-token call
rather than:
10,000 simultaneous requests → continuous GPU saturation.
My take: probably one of the most technically interesting fits for your exact phrase “bursty agent workloads.”
Groq's LPU architecture is designed around deterministic, extremely fast inference. It's particularly compelling when single-request latency matters more than maximizing giant batch throughput.
One caveat: NVIDIA licensed Groq's inference technology and core team in late 2025, so the competitive situation is no longer simply “Groq vs. NVIDIA.”
If the question is “who is building the compiler/runtime for this?”, NVIDIA may actually be the most important answer.
Its stack is moving beyond simply “run a model on a GPU.” Triton Inference Server provides dynamic batching, concurrency management, streaming, configuration optimization and support across GPUs/CPUs/Inferentia.
For agentic workloads, the interesting NVIDIA layer is increasingly scheduling/orchestration/memory management, not just CUDA kernels.
And NVIDIA is clearly treating agentic inference as a distinct hardware problem: its latest systems include inference-oriented architectures and it has also incorporated Groq technology.
AWS has a particularly complete vertical stack:
Inferentia → Neuron compiler/runtime → EC2 → serving infrastructure
Inferentia is explicitly designed for generative-AI inference, with Neuron providing the software layer.
This is important because a truly good agent accelerator probably needs to understand more than GEMMs—it needs to understand KV cache, model loading, batching, scheduling, CPU interaction and state.
MatX is particularly interesting because it's not merely another inference-chip startup. It was founded by former Google TPU engineers, and Anthropic recently held acquisition discussions with it around accelerating custom-chip development. Those talks reportedly shifted toward a potential partnership.
That's a strong signal that frontier labs believe the accelerator/compiler stack itself is strategically important.
Etched is pursuing a Transformer-specific ASIC, while Taalas goes even further with highly hard-wired model implementations. The upside is extraordinary efficiency/latency; the downside is reduced flexibility.
That makes them interesting if your agent workload has stable models and predictable execution patterns, but less obviously ideal for rapidly changing agent stacks.
There's a potentially bigger opportunity above the accelerator:
An “agent runtime” that treats compute as an elastic pool rather than treating each agent as a GPU job. The recent AgentSysBench work is revealing here. Agent workloads can have CPU-bound sandboxes, GPU-bound inference, memory-bound retrieval, long idle periods and rapidly shifting bottlenecks. The authors found that task-aware scheduling, communication-aware placement, state offloading and caching can produce very large gains.
So I'd divide the opportunity into:
Silicon
Inference compiler/runtime
Traditional GPUs often struggle with the "bursty" nature of AI agent workloads. Because agents spend a lot of time on non-linear tasks—like looping, waiting on external API tool calls, spinning up sub-agents, and managing dynamic context graphs—traditional GPUs often sit at low utilization rates (30–40%) while…
Traditional GPUs often struggle with the "bursty" nature of AI agent workloads. Because agents spend a lot of time on non-linear tasks—like looping, waiting on external API tool calls, spinning up sub-agents, and managing dynamic context graphs—traditional GPUs often sit at low utilization rates (30–40%) while suffering from severe latency bottlenecks during intermittent bursts.
To solve this, a mix of specialized silicon, dataflow architectures, and orchestrating runtime/compiler stacks are emerging to handle dynamic, highly non-linear agent loops.
Hardware alone isn't enough; the runtime environment determines whether an agent loop survives tool timeouts and variable loads without crashing.
Are you looking for a hardware accelerator (ASIC/LPU) to host the underlying models, or do you need a software orchestration runtime to manage the execution state and tool-call loops of the agents?