Normal view
-
Robotics & Automation News
- Kodiak AI and AMD collaborate to advance computing power for driverless trucking
-
Robotics & Automation News
- Abacus.AI Complete Guide: ChatLLM, Personal Agents, Supercomputer and Studio Explained
Abacus.AI Complete Guide: ChatLLM, Personal Agents, Supercomputer and Studio Explained
NFTs vs Traditional Art Sales: Opportunities and Challenges
-
Robotics & Automation News
- BrainChip launches symphony community Akida bundle for IBMβs workload management solution
BrainChip launches symphony community Akida bundle for IBMβs workload management solution
Waymo reveals Nvidia-powered compute system behind its robotaxis
-
Robotics & Automation News
- How Data-Driven Quality Control Prevents Costly Defects in Modern Manufacturing
How Data-Driven Quality Control Prevents Costly Defects in Modern Manufacturing
-
Robotics & Automation News
- Best Managed Detection and Response Services for Enterprises With Industrial Operations
Best Managed Detection and Response Services for Enterprises With Industrial Operations
-
NVIDIA Technical Blog
- Developing NVIDIA Holoscan Applications with CLI, Skills, and AI Coding Agents
Developing NVIDIA Holoscan Applications with CLI, Skills, and AI Coding Agents
NVIDIA Holoscan is a platform for building real-time AI applications at the edge, from medical imaging to robotics. HoloHub is its companion repository: a growing collection of reference applications and components that demonstrate whatβs possible. We wanted to explore how a general-purpose coding agent could use the same examples, documentation, and development tools available to an engineerβ¦
Building Federated Multimodal AI Workflows with NVIDIA FLARE
Modern vision-language models (VLMs) can support tasks such as visual question answering, captioning, and image-text reasoning. In practice, however, the data needed to adapt these models may be distributed across institutions or organizations that cannot centralize their raw records. Federated learning provides a way to coordinate training across these data-local sites. For VLMsβ¦
Post-Train NVIDIA Cosmos 3 Edge for On-Device Robot Control
Robots need policies that can adapt to their sensors, environments, and tasks while running on onboard computing hardware. World models offer a foundation for learning physical interactions, but their size can make on-device deployment difficult. This changes with the new NVIDIA Cosmos 3 Edge. Cosmos 3 Edge is a 4B omni-model (with a 2B NVIDIA Nemotron-based reasoner) in the Cosmos 3 family.
-
Robotics & Automation News
- AI and the Future of Character Design: From Concept to Complete Visual Worlds
AI and the Future of Character Design: From Concept to Complete Visual Worlds
Hexagon starts training AEON humanoid robots at Schaeffler factories
-
AI Infrastructure Archives - The New Stack
- Agentic AI has a latency problem that more compute wonβt solve
Agentic AI has a latency problem that more compute wonβt solve
Half of enterprise AI deployments are missing their own latency targets at peak load. This is the headline finding of Akamaiβs State of AI Inference 2026 report, which surveyed 200 AI practitioners and found that 82% of organizations say their most critical use cases require end-to-end response times of 500 milliseconds or less.Β A total of 64% of organizations now require end-to-end response times of less than 250 milliseconds for their most important use cases, yet 50% of deployments are failing to meet these latency demands at peak load.
My colleague Ari Weil, who leads product marketing for our cloud computing business and ran point on that research, summarizes the findings well: βThe enterprise AI honeymoon phase is overβ¦ they are hitting the latency wall.βΒ
Agentic workflows arenβt a βsingle round tripβ
The latency issue stems from the way agents work. Itβs an iterative process, somewhat like a king sending out knights, emissaries, and messengers to conduct the business of the kingdom. There are many comings and goings, not just one person sent on a single round trip.Β
For instance, when an agent built on a framework like LangChain, CrewAI, or Pydantic AI received a user request, it can fan out into dozens of sequential operations such as a reasoning call, a tool invocation, an API lookup, or a context retrieval. Then an agent may execute another reasoning call to decide what to do with what just came back. Every one of these operations or βhopsβ that must cross a wide-area network to reach a centralized data center adds latency, and a chain of 50 hops can multiply that transport time into seconds on its own, regardless of how fast the model generates tokens.
In fact, in a paper posted to arXiv in November 2025, researchers found that CPU-side processing can account for up to 90.6% of total latency in agentic workloads. In other words, your GPU might finish a reasoning step in a few hundred milliseconds, but then it might have to wait on additional tool call runs to CPUs in distant data centers. This is what causes spikes in GPU idle time.Β
βMore GPU capacity does nothing for this. You canβt brute-force your way out of a wait state.β
More GPU capacity does nothing for this. You canβt brute-force your way out of a wait state. This is the part of the conversation the industry keeps skipping, mostly because βbuy more GPUsβ is a much quicker fix to suggest than βfigure out where your CPU-bound work is actually executing and why itβs so far from the data it needs.β
We need new benchmarks to fix the latency issue
One reason the looming latency wall sneaks up on teams is that they are not looking at the right benchmarks for agentic workloads. Most LLM-serving benchmarks measure tokens per second and GPU utilization on a single box. Thatβs great if the workload is indeed on a single box (i.e., one model answering one prompt), but thatβs not the case with agentic workloads. Those benchmarks donβt address an agentic response that, say, makes a 50-hop chain cross a WAN 4 times to reach 4 separate services.Β
βStaging may pass the benchmarks because it tests the model, but production tests the whole chain, including every hop your serving engine was never designed to see.β
Thatβs where the gap lies: Staging may pass the benchmarks because it tests the model, but production tests the whole chain, including every hop your serving engine was never designed to see.
The 500ms wall is not a soft target
This is showing up at scale because agents are moving into production faster than most teamsβ architecture is evolving to support them. LangChainβs State of Agent Engineering 2026 survey of more than 1,300 professionals found that 57.3% of organizations now have agents running in production, up from 51% a year earlier. Among those builders, latency has become the second-most-cited barrier to production, behind only output quality.Β
This is a serious issue for application teams. The 500ms threshold in Akamaiβs survey isnβt a performance goal teams can afford to miss. For a live customer interaction or a real-time compliance check, that 500ms determines whether the application works or it doesnβt.Β
Weβve solved this problem before
Thereβs a reason this feels familiar to anyone who was building for the web in 1999. Akamai exists because of a nearly identical problem. MIT researchers Tom Leighton and Danny Lewin founded the company to answer a challenge posed by Tim Berners-Lee: fix what the press had started calling the βWorld Wide Wait,β the crushing latency of pulling every request back to a small number of centralized servers. When the trailer for The Phantom Menace crashed sites across the internet in 1999, the culprit was distance: millions of browsers all reaching for the same far-away origin server at the same moment. The fix moved content to thousands of points closer to the people requesting it, instead of trying to build a faster origin.
Agentic AI is running into the same wall, just in a different vehicle. AI works just fine on centralized inference if youβre talking about running batch jobs overnight. But todayβs applications built on agentic AI are real-time loops sitting inside live transactions, and the fix for agentic lag is distribution. Instead of expanding racks of CPUs and GPUs at the center, we need to move agentic execution to where the modelβs tools, context data, and users actually live.
Agentic AI needs a tiered architecture, not a bigger data center
In practice, agentic AI requires a tiered architecture, one that includes a centralized core, regional GPU clusters, and CPUs at the Edge.Β
- Centralized coreβperfect for heavy reasoning over large context windows, where the round trip to a large model matters less than the modelβs raw capability.
- Regional GPU clusters, increasingly built on hardware like NVIDIAβs Blackwell platformβideal for localized inference, so the heaviest compute sits closer to where demand actually concentrates.
- Edge CPUsβthe essential component for speed. This is the nexus for tool execution, orchestration, and context retrieval, since these are the steps that happen most often in a chain and benefit most from sitting next to the data and APIs they call.
Weβve built Akamai Inference Cloud around this tiered framework. Itβs the same distribution logic behind our AI Grid Orchestrator. We route CPU-bound orchestration and tool calling to the edge, and keep GPU-bound reasoning where it makes sense, regionally or centrally.Β
What to demand before you commit
The good news is you donβt need to distribute every workload to the edge on day one. But before you commit to a production architecture, you should know which of your agentβs dozens of hops are latency-sensitive and which arenβt. Then build a defined performance budget for each one.
βThe teams that treat it as a GPU-shopping decision will be back here in six months, staring at the same four-second response time, wondering why more compute didnβt help.β
My advice is this: Before signing off on a large-scale inference deployment, ask your infrastructure for four things:Β
- Portability across regions and providers
- Elasticity to absorb peak load without falling over
- Data locality so tool calls arenβt crossing oceans to reach the context they need
- A performance budget youβve actually tested against production traffic, not staging traffic.
The teams that address this infrastructure decision now will be the ones whose agents still work when the benchmark environment transitions to real users. The teams that treat it as a GPU-shopping decision will be back here in six months, staring at the same four-second response time, wondering why more compute didnβt help.
The post Agentic AI has a latency problem that more compute wonβt solve appeared first on The New Stack.
-
Robotics & Automation News
- Interview with Lattice Semiconductorβs Karl Wachswender: βParallel processing enables more powerful edge AIβ
Interview with Lattice Semiconductorβs Karl Wachswender: βParallel processing enables more powerful edge AIβ
Developing Nemotron 3.5 Lightning NVFP4 with QAD Using NVIDIA Model Optimizer
Teams customize their models to hit their targets for latency, speed, memory, and compute. With the open NVIDIA Nemotron family of models, developers can find the right-sized model for their needs. The new Nemotron 3.5 Lightning NVFP4 checkpoint, for example, preserves accuracy while unlocking up to 4x faster throughput. Itβs compressed down to 22 GB from the 66 GB full precision checkpointβ¦
Building Networks That Can Keep Up With Modern Automation
-
Robotics & Automation News
- Predictive maintenance in the real world: Why service automation and rollout discipline matter more than models
Predictive maintenance in the real world: Why service automation and rollout discipline matter more than models
-
Robotics & Automation News
- 9 Eastern European Node.js Development Companies Worth Shortlisting for Long-Term Builds in 2026
9 Eastern European Node.js Development Companies Worth Shortlisting for Long-Term Builds in 2026
-
Robotics & Automation News
- How AI and self-driving labs could accelerate semiconductor materials discovery