Gimlet Labs: what the $3B multi-silicon inference cloud does

Alicia Kirana Utomo
Written by

Alicia Kirana Utomo

Katelin Teen
Reviewed by

Katelin Teen

Last edited September 8, 2026

Expert Verified
Gimlet Labs multi-silicon inference cloud, AI workloads running across many chips

What is Gimlet Labs?

Gimlet Labs is an applied AI research and product company. It publicly launched in October 2025 with, by its own account, eight-figure revenue out of the gate, which is unusual for a company that young.

Its homepage sums up the worldview in one line: "Today's computing systems will undergo a massive transformation to efficiently and scalably serve AI workloads." Everything else follows from that. Instead of accepting that a model runs on whatever GPU you rent, Gimlet builds the layer that spreads the model across many chip types at once.

The Gimlet Labs homepage, showing its two products (Gimlet Cloud and kforge) and its research areas, as taken from Gimlet Labs
The Gimlet Labs homepage, showing its two products (Gimlet Cloud and kforge) and its research areas, as taken from Gimlet Labs

There are two products behind the pitch:

  • Gimlet Cloud is a serverless inference platform aimed at AI agents. You import an existing agentic pipeline, chain multiple models with non-model steps like search, and the platform handles scheduling and orchestration.
  • kforge is the lower-level piece. It auto-generates optimized kernels straight from PyTorch across CUDA, ROCm, and Metal backends, using a multi-agent system that explores kernel designs and checks them for correctness, so engineers get speedups without hand-writing kernels.

The problem: agents broke single-chip inference

Here's the part that makes the whole thing click, and it's why I think this is more than a funding-headline story.

A large language model does not do one uniform kind of work. When it answers, it first reads your prompt (the prefill phase), which is compute-bound, it wants raw math throughput. Then it generates tokens one at a time (the decode phase), which is memory-bandwidth-bound, it spends its time shuttling data in and out of memory. And a modern AI agent doesn't stop there: it calls tools, hits APIs, and fetches documents, which is network-bound.

One agent request splits into a compute-bound prefill phase, a memory-bound decode phase, and network-bound tool calls, each routed to the chip that runs it fastest
One agent request splits into a compute-bound prefill phase, a memory-bound decode phase, and network-bound tool calls, each routed to the chip that runs it fastest

Run all of that on one homogeneous GPU cluster and you're always leaving something idle. During decode, your expensive compute sits half-used. During tool calls, the whole accelerator waits on the network. Gimlet's argument, straight from its Series B post, is that homogeneous hardware alone can't meet the speed and efficiency needs of agentic workloads. The more steps an agent chains, the more that waste compounds.

This is not an abstract concern for me. At eesel I build AI agents that resolve support tickets, and a single resolution is a chain: read the ticket, search the knowledge base, reason over what it found, sometimes call an order-lookup API, then write a reply. Every one of those steps has a different bottleneck. When people ask why agentic products can feel slow, this is a big part of the answer.

How the multi-silicon cloud works

Gimlet's fix is disaggregation. It splits the phases apart and runs each on the silicon that's best for it: prefill on one device set tuned for compute, decode on another tuned for memory bandwidth, and so on. It layers speculative decoding and attention-versus-feed-forward splitting on top, and rebalances dynamically as hardware frees up.

To make that possible, Gimlet partners across the chip industry rather than picking a side. It works with NVIDIA chips alongside AMD, Intel, Arm, Cerebras, and d-Matrix. The software is the product; the silicon is interchangeable. That's the opposite of the usual "buy our accelerator" story, and it's why Arm invested in the round rather than treating Gimlet as a threat.

The payoff Gimlet advertises is 5-10x speedups within the same power envelope, or the same throughput at lower latency. For agentic AI specifically, where one request can need dozens of sequential model calls, shaving latency off every call is where the compounding works in your favor instead of against you.

The funding story, and who's betting

The money tells you who believes this. The Series B was led by Andreessen Horowitz, with a long list of participants including Menlo Ventures (which led the Series A), Arm, M12, Samsung Ventures, Tiger Global, and XTX Markets. Gimlet says it has added billions in contracted revenue since March and has a datacenter pipeline measured in gigawatts.

The trajectory is steep: an $80 million Series A in March 2026 at roughly a $400 million valuation, then a jump to $3 billion six months later. In a market where every lab is chasing cheaper LLM inference, the thesis that efficiency, not just bigger models, is the next battleground is clearly resonating with investors.

The honest caveats

I want to be fair here, because a $3B valuation and a 10x claim invite exactly the kind of hype I try to avoid.

First, the performance numbers are Gimlet's own. When the company published a piece on AI-generated Metal kernels, a PyTorch engineer on Hacker News raised a pointed, reasonable objection:

Hacker News

"I work on PyTorch and there are many things that make me suspicious about these results. My TL;DR is unless we get a zip file of all the kernels with how they're benchmarked results like this are almost impossible to verify."

That's not a takedown, and the Gimlet team engaged with it in the thread. But it's the right frame: benchmark speedups are a claim to verify on your own workload, not a settled result. Second, Gimlet hasn't named its customers publicly, describing them only as "a major model maker" and "an extremely large cloud computing company." And third, this is infrastructure for labs and data centers. If you're building a product, you'll likely never touch Gimlet directly, you'll feel it only as faster, cheaper inference underneath the tools you actually use.

What this means if you build with AI

So where does this leave you if you're not running a frontier lab?

Gimlet is a good reminder of the layer cake. There's the silicon at the bottom, the inference layer that Gimlet is fighting to own in the middle, the models, and then the actual employees you hire on top. Gimlet is infrastructure. It makes the engine run better; it is not the thing that does your job.

That distinction is exactly how I think about eesel. eesel is an AI teammate platform: you hire ready-to-work teammates for specific jobs, and today the roster is an AI helpdesk teammate and an AI blog writer. The helpdesk teammate joins your existing support queue, learns from your past tickets and help center, and resolves conversations inside Zendesk, Freshdesk, or Gorgias. The blog writer does the same for content. Whatever inference cloud sits underneath, the teammate is what carries the job to done.

The eesel AI helpdesk dashboard, where an AI teammate resolves support tickets across your existing tools
The eesel AI helpdesk dashboard, where an AI teammate resolves support tickets across your existing tools

And because Gimlet's whole world is agentic and programmable, it's worth saying eesel meets that reader where they are too. The eesel CLI drives the same helpdesk teammate from a terminal: a person can run it by hand, scripts can automate it, and coding agents like Claude Code or Cursor can operate it through the CLI and its MCP server, so simulating a rollout against historical tickets or triggering a run becomes one command instead of a dashboard click. If you'd rather see it resolve real tickets than read another spec sheet, you can try eesel free and point it at your own help center in a few minutes.

If you're earlier in the journey and just comparing options, the roundups on the best AI agents and AI ticket classification are a better place to start than a $3B inference cloud.

The bottom line

Gimlet Labs is an interesting company solving a real, un-glamorous problem: the hardware under AI is a bad fit for how agents actually run, and someone had to build the software to fix it. The $3B valuation is a bet that inference efficiency is the next big fight, and given how fast agentic AI is growing, it's not a crazy one.

Just hold the speed claims loosely until they're independently tested, and remember which layer you're actually buying. Gimlet makes the engine faster. The teammate on top is still what gets the work done.

Frequently Asked Questions

What is Gimlet Labs?
Gimlet Labs is an applied AI research company that runs what it calls the first multi-silicon inference cloud. Its software splits a single AI workload across different chip types (GPUs, near-memory compute, CPUs, dataflow accelerators) so each phase of inference runs on the hardware best suited to it. It sells two products: Gimlet Cloud, a serverless inference platform for AI agents, and kforge, a tool that auto-generates optimized kernels from PyTorch.
How much did Gimlet Labs raise and what is its valuation?
Gimlet Labs raised a $300 million Series B in September 2026, led by Andreessen Horowitz, that valued the company at $3 billion. That followed an $80 million Series A led by Menlo Ventures in March 2026. New Series B backers include Arm and M12, Microsoft's venture fund.
What does multi-silicon inference actually mean?
It means one model does not have to run on one kind of chip. Gimlet disaggregates inference so the compute-heavy prefill phase, the memory-heavy decode phase, and network-bound tool calls each land on the silicon that runs them fastest. This matters most for agentic AI, where a single request chains many sequential model calls and latency compounds at every step.
Is Gimlet Labs faster than a normal GPU cloud?
Gimlet claims 3-10x speedups for the same power footprint on frontier workloads. Those are vendor-reported figures, and developers on Hacker News have pushed back that kernel benchmarks like these are hard to verify without the full setup. Treat the numbers as a strong claim to test on your own workload, not a settled fact.
Who is Gimlet Labs for?
Not the average app developer. Gimlet sells to the largest AI model labs and data centers, and says its customer base already includes a major model maker and a very large cloud provider. If you are building a customer-facing product, the model still runs somewhere, but you interact with it through an API or an AI helpdesk agent, not through Gimlet directly.
Does faster inference help customer support AI?
Indirectly, yes. Cheaper and faster inference is the substrate that makes AI for customer service viable at scale, because a support agent that reads your help center, reasons, and calls tools is exactly the multi-step workload Gimlet optimizes. But infrastructure alone does not resolve a ticket. You still need an AI helpdesk layer on top that knows your product and your queue.
Is Gimlet Labs a competitor to NVIDIA?
No, it is more of a partner. Gimlet works with NVIDIA, AMD, Intel, Arm, Cerebras, and d-Matrix, and its whole pitch is running across all of them rather than betting on one. Arm even invested in the Series B. Gimlet sits in software above the chips, deciding which silicon runs which slice of a model.

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 →
Qwen 3.8 Flash Next alternatives roundup banner
Trending

The 8 best Qwen 3.8 Flash Next alternatives in 2026

The best Qwen 3.8 Flash Next alternatives in 2026, from GLM 5.3 Flash to DeepSeek V4 Flash and Gemini 3.7 Flash, with real pricing and who each one is for.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieAug 30, 2026
Qwen 3.8 Flash Next review banner
Trending

Qwen 3.8 Flash Next review: fast, cheap, and half-baked on purpose

A hands-on review of Qwen 3.8 Flash Next: what it is actually good at, where the under-trained preview shows, and whether it belongs in your stack.

Rama Adi NugrahaRama Adi NugrahaAug 30, 2026
Qwen 3.8 Flash Next launch banner
Trending

Qwen 3.8 Flash Next: Alibaba's open-weight Qwen4 preview, explained

Qwen 3.8 Flash Next is Alibaba's open-weight preview of the Qwen4 architecture. Here is what it is, what it costs, and whether it belongs in your stack.

Alicia Kirana UtomoAlicia Kirana UtomoAug 30, 2026
Illustration of open-weight reasoning model alternatives to IBM Granite 4.2
Trending

The 7 best IBM Granite 4.2 alternatives in 2026

Looking for a Granite 4.2 alternative? Here are the 7 open and hosted reasoning models worth switching to in 2026, with real pricing, benchmarks, and a clear pick for each use case.

Kurnia Kharisma Agung SamiadjieKurnia Kharisma Agung SamiadjieAug 30, 2026
IBM Granite 4.2 open reasoning models hero banner
Trending

IBM Granite 4.2: models, benchmarks, pricing, and what's new

A hands-on look at IBM Granite 4.2: the 3B, 8B, and 30B open reasoning models, their benchmarks, how much they cost to run, and who they are actually for.

Alicia Kirana UtomoAlicia Kirana UtomoAug 30, 2026
NVIDIA Groq 3 LPX rack-scale inference accelerator banner
Trending

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

What NVIDIA Groq 3 LPX is, how its LPU-plus-GPU split works, what the 35x-per-megawatt claims mean, and what the Groq licensing deal actually changes.

Alicia Kirana UtomoAlicia Kirana UtomoAug 29, 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 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
MiniCPM5-2B, a compact 2B open-weight model that runs on phones and laptops
Trending

MiniCPM5-2B: a 2B open model that runs on-device and beats bigger ones

A close look at MiniCPM5-2B: what OpenBMB's compact 2B model actually is, how it scores, where it runs, and what a raw open model still needs to do real work.

Alicia Kirana UtomoAlicia Kirana UtomoSep 9, 2026

Ready to hire your AI teammate?

Set up in minutes. No credit card required.

Get started free