❌

Normal view

Developing NVIDIA Holoscan Applications with CLI, Skills, and AI Coding Agents

19 August 2026 at 22:22
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...

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…

Source

Building Federated Multimodal AI Workflows with NVIDIA FLARE

19 August 2026 at 17:50
Modern vision-language models (VLMs) can support tasks such as visual question answering, captioning, and image-text reasoning. In practice, however, the data...

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…

Source

Post-Train NVIDIA Cosmos 3 Edge for On-Device Robot Control

19 August 2026 at 16:00
A robot picking up a tool.Robots need policies that can adapt to their sensors, environments, and tasks while running on onboard computing hardware. World models offer a foundation for...A robot picking up a tool.

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.

Source

πŸ’Ύ

Agentic AI has a latency problem that more compute won’t solve

Abstract neon pattern of distorted purple columns and lime-green rings rippling across a dark background.

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:Β 

  1. Portability across regions and providers
  2. Elasticity to absorb peak load without falling over
  3. Data locality so tool calls aren’t crossing oceans to reach the context they need
  4. 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.

Developing Nemotron 3.5 Lightning NVFP4 with QAD Using NVIDIA Model Optimizer

17 August 2026 at 18:12
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...

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…

Source

NVIDIA JetPack 7.2.1 Adds Agentic Video Skills and T3000 Emulation

11 August 2026 at 19:00
Video is a core data path across NVIDIA Jetson applications, from robotics and intelligent video analytics to industrial automation, healthcare, media...

Video is a core data path across NVIDIA Jetson applications, from robotics and intelligent video analytics to industrial automation, healthcare, media processing, and remote operations. A system may capture several cameras, decode network streams, run AI inference or conventional vision processing, draw results, and encode video for storage or delivery. The individual calls are…

Source

Run LocalΒ Agentic AI Workflows with Meta’s Muse Glimmer on NVIDIA Β 

10 August 2026 at 13:27
Open model launch image.Meta returns to the open source ecosystem with the release of Muse Glimmer,Β a 30B open-weight dense model with a 120K+ context window built for local AI...Open model launch image.

Meta returns to the open source ecosystem with the release of Muse Glimmer, a 30B open-weight dense model with a 120K+ context window built for local AI agentic work. Optimized to run across a range of NVIDIA edge, desktop, and workstation AI platforms, Muse Glimmer delivers 20K tokens/sec on a single GPU, enabling always-on agents to process data locally and execute complex…

Source

Hellbender expands Pittsburgh operations to scale physical AI manufacturing

30 July 2026 at 15:20
Fast-growing startup moves headquarters to Hazelwood Green and opens expanded manufacturing operations at Mill 19, creating over 500 local jobs Hellbender, a physical AI infrastructure company powering intelligent systems at the edge, today announced it has moved its global headquarters to the Roundhouse at Hazelwood Green and will open expanded manufacturing operations at nearby Mill […]

Maximize Spectral Efficiency with AI-Native RAN and NVIDIA AI Aerial

7 July 2026 at 17:00
An image of a 6G network.Spectrum is one of the most valuable assets in wireless communications. Over the last 30 years, telecom operators in the US have spent more than $240B to...An image of a 6G network.

Spectrum is one of the most valuable assets in wireless communications. Over the last 30 years, telecom operators in the US have spent more than $240B to acquire wireless spectrum. A goal of a radio access network (RAN) system is to extract the maximum spectral efficiency (bits/second/Hertz) possible, which translates into more capacity, stronger network resilience with fewer dropped packets…

Source

Scaling AI Inference Across Multiple GPUs Using NVIDIA TensorRT with Multi-Device Inference Support

25 June 2026 at 16:43
Decorative image.Generative AI workloads are rapidly outgrowing the memory and compute budget of single GPUs. For inference developers building media generation pipelines, the...Decorative image.

Generative AI workloads are rapidly outgrowing the memory and compute budget of single GPUs. For inference developers building media generation pipelines, the challenge is scaling across multiple devices without sacrificing the critical optimizationsβ€”like kernel fusions, memory planning, and quantizationβ€”that NVIDIA TensorRT delivers for production deployments. Multi-device inference support…

Source

Enable Real-Time AI for High-Speed Data Acquisition with DAQIRI

22 June 2026 at 15:00
When AlphaFold2 revolutionized drug discovery in 2020, its success relied entirely on the roughly 170,000 protein structures collected by scientists since 1971...

When AlphaFold2 revolutionized drug discovery in 2020, its success relied entirely on the roughly 170,000 protein structures collected by scientists since 1971 and preserved in the Protein Data Bank. Measured data is the backbone for all AI models and workflows that process data as it’s created, act on what matters in real time, and analyzes data for deep insights. With the current rise of modern…

Source

Inside NVIDIA Halos for Robotics: A Full-Stack Functional Safety System for Physical AI

Physical AIβ€”robots working autonomously alongside people in factories, warehouses, hospitals, and homesβ€”is arriving faster than most expected. Traditional...

Physical AIβ€”robots working autonomously alongside people in factories, warehouses, hospitals, and homesβ€”is arriving faster than most expected. Traditional safety which was built for structured environments can not work anymore as the spaces become more unstructured and robots move out of cages. AI-driven safety is the key. Marking a major milestone in the arrival of physical AI…

Source

Model Quantization: Turn FP8 Checkpoints into High-Performance Inference Engines with NVIDIA TensorRT

9 June 2026 at 18:27
Decorative image.This post is the third of a three-part series. See also Model Quantization: Concepts, Methods, and Why It Matters and Model Quantization: Post-Training...Decorative image.

This post is the third of a three-part series. See also Model Quantization: Concepts, Methods, and Why It Matters and Model Quantization: Post-Training Quantization Using NVIDIA Model Optimizer. Converting a quantized checkpoint into an NVIDIA TensorRT engine bridges the gap between model optimization and production deployment, enabling faster inference, higher throughput…

Source

Accelerating Federated Learning Research with AI Agents and NVIDIA FLARE Auto-FL

9 June 2026 at 16:35
Federated learning (FL) research often begins with a deceptively simple question: What should we try next? A new aggregation rule, a FedProx coefficient, a...

Federated learning (FL) research often begins with a deceptively simple question: What should we try next? A new aggregation rule, a FedProx coefficient, a server optimizer setting, a SCAFFOLD variant, or a model architecture tweak may all look promising before an experiment starts. After the run finishes, the harder questions begin: Did the change actually improve the metric?

Source

How to get operational data off the factory floor without creating an IT breach

Aerial top-down view of a sci-fi industrial factory interior with yellow directional arrows, pink and silver pipes, steel scaffolding walkways, and dramatic blue-grey lighting.

Informational and operational technology data have long been treated as separate domains.

But AI changed the game. Today, you need the capacity to regularly ingest OT data into your IT systems without a hitch. (Or a breach.) You risk being left behind as your competitors put all their data to work, or assume the risk of consistently importing data from the edge to your internal systems.Β 

This problem is an immediate one for any company unwilling to be left behind in the AI era: If you want to take full advantage of AI, you need quick, ready access to relevant data. And if your physical operations have hit a snag, your digital tools need to be kept in the loop regularly.

The solution is not to build a host of custom scripts or depend on legacy FTP or SFTP solutions to bring data in from the edge. Those disparate tools can degrade, leak data, and fail during later, repeated OT data extraction runs.

Instead, engineers looking to free IT and OT data from their respective siloes are turning to a managed solution that offers strong encryption, continuous transfer monitoring, and the ability to fully audit every data handoff across the pipeline

Even more, OT systems β€” the Programmable Logic Controllers, Supervisory Control and Data Acquisition platforms, and historian databases running protocols like Modbus and OPC UA β€” were designed for uptime rather than connectivity. In modern architecture, however, no operational data can be left behind.

Getting data out of these environments means working against a connectivity model that was never meant to support the polling frequency or authentication patterns that modern IT infrastructure expects. Adding to the challenge, the more tools you introduce to free the OT data, the more attack vectors they may open.

A breach at the OT boundary can affect the physical systems those networks control. That’s a risk calculus most IT security frameworks weren’t built to handle.

On at 12 p.m. Eastern/9 a.m. On Tuesday, June 23, Fortra’s Jerrod Foster & Michael Barford will joinΒ The New StackΒ to discuss IT and OT systems, why extracting operational technology data is challenging, and how Fortra GoAnywhere MFT can resolve both data movement and data security issues that many engineers face today.

Register here to join the conversation:

What you’ll take away:

  • Why the IT/OT boundary is an AI infrastructure problem: How the connectivity gap between operational and information technology creates a hard ceiling for teams building on live operational data β€” and what becomes possible when that data is reliably accessible inside modern pipelines.
  • Where DIY solutions break: Why custom scripts and legacy transfer tools fail under real operational conditions β€” brittle transfers, no visibility, and attack surfaces you can’t audit.
  • What secure OT data movement actually looks like: How Fortra GoAnywhere MFT provides an encrypted, automated, and auditable data movement layer that works with the constraints of real OT environments, not against them.

The post How to get operational data off the factory floor without creating an IT breach appeared first on The New Stack.

Build Personal AI Agents on Windows PCs with New Tools from Microsoft and NVIDIA

AI agents are changing how you interact with your PC. Creators, developers, and AI enthusiasts are already using these agents extensively to assist with...

AI agents are changing how you interact with your PC. Creators, developers, and AI enthusiasts are already using these agents extensively to assist with day-to-day tasks such as coding, video editing, and content management. NVIDIA and Microsoft are teaming up to enable the next generation of developers to build on-device agents on the Windows platform, with easier setup, native security…

Source

Deploy Agentic-Ready AI at the Edge with Memory Efficiency in NVIDIA JetPack 7.2

2 June 2026 at 02:00
As AI agents move from the digital world to the physical environment, they can readily use NVIDIA Jetson to accelerate real-world deployment with optimized...

As AI agents move from the digital world to the physical environment, they can readily use NVIDIA Jetson to accelerate real-world deployment with optimized memory and performance. NVIDIA JetPack 7.2 directly supports one-command deployment of NVIDIA NemoClaw, an open source stack that adds privacy and security controls to OpenClaw. It introduces NVIDIA agent skills for Jetsonβ€”Jetson device…

Source

Accelerated X-Ray Analysis for Nanoscale Imaging (XANI) of Novel Materials

13 May 2026 at 16:39
A massive-scale X-ray free-electron laser (XFEL) enables tracking structural and electron dynamics in novel systems, including fusion materials, semiconductors,...

A massive-scale X-ray free-electron laser (XFEL) enables tracking structural and electron dynamics in novel systems, including fusion materials, semiconductors, batteries, and catalysis. It produces ultrashort X-ray pulses that can record the movements of atoms and electrons. These instruments can detect the smallest change in material structure caused by defects and other influences.

Source

Model Quantization: Post-Training Quantization Using NVIDIA Model Optimizer

7 May 2026 at 21:18
This post is the second of a three-part series. See also Model Quantization: Concepts, Methods, and Why It Matters and Model Quantization: Turn FP8 Checkpoints...

This post is the second of a three-part series. See also Model Quantization: Concepts, Methods, and Why It Matters and Model Quantization: Turn FP8 Checkpoints into High-Performance Inference Engines with NVIDIA TensorRT. Model quantization is an effective method to reduce VRAM usage and improve inference performance on consumer devices such as NVIDIA GeForce RTX GPUs.

Source

❌