Logo
FrontierNews.ai

Why Robots Are Ditching Onboard AI Chips for Cloud Computing

Robots don't need to carry their own AI brains to think faster and work longer. Microsoft Research has upended a fundamental assumption in robotics by demonstrating that offloading artificial intelligence (AI) inference computations away from robots, to edge or cloud-based graphics processing units (GPUs), dramatically improves robot performance, battery life, and scalability.

What's Wrong With Putting AI Chips Inside Robots?

For years, the robotics industry has operated under a straightforward logic: put a GPU (the specialized chip that runs AI models) directly inside the robot so it can think and act independently. But Microsoft's systematic study of real-world mobile manipulation workloads reveals this approach creates serious constraints. Onboard GPUs consume enormous amounts of power, drain batteries within hours, add significant weight and cost, and limit which AI models a robot can run at all.

The research team evaluated how robots performed on canonical tasks like "check for rubbish in the kitchen and put it in the trash," which requires planning, perception, navigation, and manipulation. They tested three core capabilities across different hardware configurations:

  • Semantic Mapping and Planning: Understanding the environment and deciding where to go and what to do
  • Navigation: Moving safely through dynamic spaces while avoiding obstacles
  • Manipulation: Grasping and moving objects with robotic arms or hands

The results were striking. Smaller onboard GPUs couldn't even run the full mobile manipulation stack. When they could, mapping and planning operations slowed by up to 383% compared to a high-end A100 GPU, severely limiting the robot's ability to respond in dynamic environments. Navigation systems showed a 30% drop in their ability to detect obstacles in real time. Even vision-language action (VLA) models, which help robots understand and execute complex instructions, saw their accuracy drop by 50% when forced to run on weaker onboard hardware.

How Does Offloading Inference Actually Work?

Instead of running AI computations onboard, Microsoft's approach sends sensor data from the robot to a remote GPU, which processes the information and sends back instructions. This isn't a new concept in computing, but applying it systematically to robotics infrastructure is novel. The key innovation is making this offloading seamless and scalable across many robots simultaneously.

Microsoft has built tooling that uses Kubernetes, an open-source platform for managing distributed computing, to automatically containerize and deploy robotics AI workloads across robots, edge infrastructure, and the cloud. Developers can specify what computations to offload, and the system handles the rest. The company has already tested this approach with real robots, including the SO-101 and UR10e manipulators, and demonstrated it controlling Mobile Aloha robots using Microsoft's Rho model, which is designed for dual-arm manipulation tasks.

What Are the Practical Benefits of Offloading?

The performance gains are substantial. By replacing power-hungry onboard GPUs with lightweight hardware like a Raspberry Pi 5 and offloading inference to remote GPUs, robots experienced dramatic improvements across multiple dimensions:

  • Battery Life Extension: Larger onboard GPUs, such as the Jetson Thor, drained robot batteries by up to 160%, meaning robots could operate for only a few hours before needing recharge; offloading extends operating time significantly
  • Task Success Rates: Offloading improved how accurately robots completed manipulation, navigation, and planning tasks across representative workloads
  • Model Capability: Robots can now run larger, more sophisticated AI models that would be impossible to fit or power onboard, enabling more complex reasoning and perception
  • Cost and Weight Reduction: Eliminating expensive, heavy GPUs from each robot reduces manufacturing costs and makes robots more agile and portable

These benefits become even more critical as AI models grow in size and complexity. The latest generation of large language models and vision models require substantial computing resources, and the trend toward larger models is accelerating. Onboard compute will increasingly become a bottleneck.

How Can Robotics Teams Implement Offloaded Inference?

Microsoft has released these capabilities as part of its Physical AI Toolchain, an open-source, production-ready framework that integrates Azure cloud services with NVIDIA's physical AI stack. The toolchain automates and scales data curation, augmentation, and evaluation across perception, mobility, imitation learning, and reinforcement learning pipelines. The new offloaded inference capability allows teams to:

  • Containerize Workloads: Package robotics AI code into containers that can run anywhere, making deployment consistent and reproducible
  • Distribute Inference Intelligently: Use declarative specifications to define which computations run onboard, on edge GPUs, or in the cloud, with automatic load balancing
  • Integrate With Development Tools: Connect seamlessly with robotic simulators, LeRobot (a robotics learning platform), and ROS2 (Robot Operating System 2) for easy development and testing
  • Deploy at Scale: Manage inference across dozens or hundreds of robots without manual configuration for each unit

The toolchain is available now, with example projects already demonstrating offloading on real robots. Microsoft has tested it with many real-world use cases and is actively seeking feedback from robotics developers.

Why Does This Matter for the Future of Physical AI?

Physical AI, the field of building AI systems that operate in the real world and interact with physical objects and people, represents a major frontier for artificial intelligence. Unlike language models that run in data centers, physical AI must handle unpredictable environments, coordinate with other robots and humans, and work with diverse robot designs. Realizing this vision requires advances in three areas: robot hardware, embodied AI models, and systems infrastructure for training and inference.

While robot hardware and AI models have advanced rapidly, the infrastructure for running inference at scale has been relatively neglected. As robots become more common in manufacturing, warehouses, and homes, the ability to efficiently distribute AI computation across many robots becomes critical. Offloading inference addresses a real bottleneck: it's not just about making individual robots smarter, but about building systems that can scale to thousands of robots operating simultaneously.

The research also reveals a fundamental tradeoff in robotics design. There's no single right answer for every scenario; the optimal balance between onboard compute, edge GPUs, and cloud resources depends on factors like network latency, available bandwidth, task complexity, and battery constraints. By providing measurement data and tooling, Microsoft is helping the robotics industry make these tradeoffs deliberately rather than by default.