There is a single number that quietly determines whether an AI inference deployment lives or dies under load. It is not throughput. It is not cost per token. It is the time it takes a cold replica to become useful — a figure that, for large models, can stretch past eight minutes. In a world where traffic spikes arrive in seconds and user patience is measured in milliseconds, those eight minutes are an eternity. The infrastructure war of 2026 is increasingly being fought on this one front: making cold starts fast enough that autoscaling actually works.
The problem is structural. A model checkpoint for a frontier LLM can run to hundreds of gigabytes or even a terabyte. Every cold start, every autoscaling event, every rolling update forces the system to move those weights from remote storage into GPU memory. The same tax is paid again and again: RL post-training continuously moves updated weights from trainers to rollout workers; multi-region deployments replicate checkpoints across continents; and Kubernetes clusters spin up fresh pods that each independently download the same artifacts. The industry has spent years optimizing what happens inside the GPU. Now it is finally turning its attention to what happens before the GPU.
ModelExpress: Distributing Weights at the Speed of Light
NVIDIA’s answer, published in late July, is ModelExpress (MX). The premise is disarmingly simple: before loading a model, ask where a compatible copy of its weights already lives. Instead of treating every replica as an independent cold start, MX chooses the fastest available source and transfer path.
When a serving peer already holds compatible weights in GPU memory, MX transfers them directly from GPU to GPU over peer-to-peer RDMA via the NVIDIA Inference Xfer Library (NIXL), bypassing redundant access to object storage, local disk, and host memory entirely. When no peer is available, MX bootstraps from the fastest supported path by streaming from an object store without landing on disk or reading local files directly into GPU memory.
The numbers are dramatic. MX transfers DeepSeek-V4 Pro weights and JIT kernel cache artifacts from a serving replica into a fresh replica in under 10 seconds. Total startup time drops from eight minutes to one minute and 44 seconds. That is not a 20% improvement. It is a nearly 5x reduction in the time between “we need more capacity” and “new replica is serving traffic.”
The same mechanism extends to reusing kernel caches and distributing RL weight updates. In reinforcement learning post-training, where weights are updated continuously and must be pushed to rollout workers, the ability to short-circuit redundant downloads becomes a throughput multiplier. What looks like an optimization for cold starts is actually a primitive for a broader class of distributed AI workloads.
Multi-Tenant GPU Infrastructure: Sharing Without Sacrificing Isolation
While ModelExpress solves the weight distribution problem, another challenge sits upstream: how to share expensive GPU hardware across teams without giving each team its own cluster. Running a dedicated Kubernetes cluster per team solves isolation but fragments hardware and drives up costs. Running a single shared cluster solves cost but creates coordination nightmares — conflicting CRD versions, overlapping RBAC, and no clean way to carve GPU capacity into team-level budgets.
NVIDIA’s early August blog post details a pattern that preserves team autonomy without splitting the hardware. The solution pairs the KAI Scheduler — NVIDIA’s open-source topology-aware Kubernetes scheduler built specifically for AI workloads — with vCluster, a tool that creates lightweight virtual Kubernetes clusters.
The architecture is elegant: a single physical control plane cluster with a shared GPU pool, but each team gets its own isolated virtual cluster including a dedicated API server, controller, data store, syncer, and scheduler. Teams see only their own workloads. The KAI Scheduler handles the actual GPU allocation, dynamically slicing GPU resources with per-team quotas and topology awareness. The tutorial demonstrates three teams running real GPU pods on a single NVIDIA L40S, each in their own tenant cluster, with verified isolation.
This matters because GPU scarcity is not going away. Even Together AI — which just raised an $800 million Series C in July — positions its infrastructure around the reality that “intelligence should be abundant, not expensive.” The funding round, led by investors betting on open-source AI economics, underscores a market conviction that the future belongs to platforms that can deliver frontier inference efficiently. Together AI’s partnership with Y Combinator to deliver a dedicated YC GPU cluster, plus on-demand B200 availability, signals that the infrastructure layer is where venture capital sees the next phase of value creation.
For enterprises, the KAI Scheduler + vCluster pattern means a path to higher utilization without sacrificing the team autonomy that makes shared infrastructure politically viable. It is the operational complement to ModelExpress: one solves how weights move, the other solves who gets to use the GPU.
Knowledge Distillation at Scale: Making Smarter Models Cheaper to Serve
The most direct way to reduce cold start time is to make the model smaller. A 30B parameter model loads faster than a 400B one, full stop. But size reductions historically came at the cost of capability — until knowledge distillation became practical at production scale.
Hugging Face published research in early August on making knowledge distillation cheap enough to run at scale. The technique — training smaller “student” models to mimic the behavior of larger “teacher” models — has been around for years, but the compute cost of running the teacher during distillation has limited its adoption to well-funded labs. The new work describes methods that collapse that cost, making it viable for teams without frontier-level budgets.
The implications for infrastructure are significant. If a 30B parameter model can achieve 85-90% of a 400B model’s capability on enterprise tasks, the serving economics change dramatically: faster cold starts, lower memory footprints, more replicas per node, and cheaper autoscaling. This is the same logic that makes Meta’s Muse Glimmer — a 30B parameter model designed for local agentic workloads — attractive for production deployment. Smaller, capable models are a cold-start optimization strategy dressed up as model architecture.
The Economics of Together AI’s $800M Bet
Together AI’s Series C announcement, published in early July, frames the infrastructure economics bluntly: closed models do not scale. The company’s full-stack platform — spanning research, inference optimization, and dedicated GPU clusters — is built on the thesis that open-source AI will win on cost and flexibility, not just on capability.
The numbers support the argument. Together AI’s recent benchmarks comparing DeepSeek-V4 Flash against GPT-5.6 Luna on DeepSWE coding tasks show that while Luna leads on raw pass@1 accuracy by 14 points, DeepSeek delivers 4.8x the solves per dollar. For production systems where cost is a constraint — which is to say, nearly all production systems — that efficiency gap is decisive. The company also benchmarked Kimi K3 against GPT-5.6 Sol, finding that routing between the two models reaches approximately 85.6% accuracy while optimizing cost.
This is the operational reality that ModelExpress, KAI Scheduler, and distillation all serve. The frontier labs may have solved the problem of building powerful models. The rest of the industry is now solving the harder problem: making those models affordable to run at scale.
What This Means for Platform Teams
The convergence of these trends suggests a playbook for infrastructure teams running production AI in the second half of 2026:
- Audit your cold start path. If every replica downloads weights independently from object storage, you are paying an 8-minute tax on every autoscaling event. P2P RDMA transfer between replicas — the ModelExpress pattern — should be the default, not the exception.
- Evaluate multi-tenant scheduling. If your organization runs multiple teams on shared GPU infrastructure, the KAI Scheduler + vCluster pattern offers isolation without hardware fragmentation. The political cost of a shared cluster often exceeds the technical cost; this architecture addresses both.
- Size your models to your budget, not your ambition. Knowledge distillation and purpose-built smaller models like Muse Glimmer are not compromises. They are infrastructure optimizations that happen to live in the weights file. A 30B model that meets your accuracy threshold will always out-serve a 400B model that exceeds it.
- Track cost-per-solve, not just throughput. Together AI’s DeepSWE benchmarks reveal that the model with the highest accuracy is rarely the model with the best economics. Routing between models, autoscaling on the right signals, and eliminating cold start waste all compound into a cost structure that determines whether a deployment is sustainable.
The Infrastructure Layer Wins the Next Phase
The model race of 2020-2025 produced capabilities that seemed impossible at the start. The infrastructure race of 2026 is about making those capabilities practical. Cold starts, weight distribution, multi-tenant scheduling, and model compression are not glamorous problems. They are the ones that determine whether an AI deployment works at 2 AM on a Friday when traffic spikes and the autoscaler wakes up a replica that needs eight minutes to become useful.
NVIDIA’s ModelExpress cuts that to 104 seconds. KAI Scheduler + vCluster makes shared GPU infrastructure politically viable. Knowledge distillation and smaller capable models reduce the fundamental amount of data that needs to move. Together AI’s $800 million bet says the market believes open-source infrastructure will capture the value that closed models cannot scale to reach.
The next breakthrough in AI will not come from a bigger training run. It will come from a serving system that makes the models we already have faster, cheaper, and more reliable to deploy. That is where the infrastructure war is being fought. And that is where the winners of the next phase will be decided.
Sources
- ModelExpress: Distributing Model Artifacts at the Speed of Light — NVIDIA Developer Blog, Jul 24, 2026
- How to Run Isolated Tenant Kubernetes Clusters on Shared GPU Infrastructure — NVIDIA Developer Blog, Aug 3, 2026
- Announcing our $800M Series C to accelerate the shift to open-source AI — Together AI Blog, Jul 1, 2026
- DeepSeek-V4 Flash 0731 vs GPT-5.6 Luna on DeepSWE: Cost and Coding — Together AI Blog, Aug 6, 2026
- Kimi K3 vs GPT-5.6 Sol on DeepSWE: Cost, Coding, and Routing — Together AI Blog, Jul 26, 2026
- Making Knowledge Distillation Cheap Enough to Run at Scale — Hugging Face Blog, Aug 10, 2026
- Meta is back with Muse Glimmer: local, agentic, multimodal, and open source — Hugging Face Blog, Aug 10, 2026
- Ollama v0.32.7 Release Notes — GitHub, Aug 10, 2026
- Co-Designing AI Model Attention for Fast, Interactive Long-Context Inference — NVIDIA Developer Blog, Jul 31, 2026
- Four Ways to Deploy More Secure AI Agents — NVIDIA Developer Blog, Jul 30, 2026


