Back to feed
News Story
机器之心
1 sources

Making VLA Truly Run on Robots: PKU Team Open-Sources Jetson-PI, Boosting Jetson Orin Control Frequency by 8.66x

A research team from Peking University, AIRS, and PrimeBot Research Institute proposes Jetson-PI, a real-time control solution for VLA models on low-power edge devices. By optimizing asynchronous inference, model scheduling, and the underlying inference engine, they increase the control frequency from 0.70 Hz to 6.06 Hz on NVIDIA Jetson Orin—an 8.66x improvement over native PyTorch—without sacrificing accuracy. This breakthrough addresses latency and perception-action misalignment, moving embodied AI from lab demos toward industrial deployment.

SynthePulse Insight · AI deep reading

Jetson-PI: Making VLA Run at 6Hz Real-Time Control on Edge Devices – Peking University Team Solves Perception-Action Misalignment

Version 1 · 1 source

When deploying VLA models on onboard devices, inference latency reduces control frequency to just 0.7Hz. The team from Peking University and others proposes Jetson-PI, which achieves 6.06Hz control frequency on Jetson Orin through foresight-aligned asynchronous correction, confidence-based scheduling, and low-level engine optimization, an 8.66x improvement without sacrificing accuracy.

  • π0.5 native inference on Jetson Orin takes 1.4 seconds, control frequency only 0.7Hz; Jetson-PI boosts frequency to 6.06Hz, an 8.66x improvement.
  • Core innovation: a future correction module (40M parameters, ~1% of model) predicts future environment representations, mitigating perception-action misalignment in asynchronous inference.
  • Confidence-based scheduling: when future prediction confidence is high, skip VLM and only invoke action expert; when confidence is low, re-invoke VLM, balancing efficiency and accuracy.
  • Low-level engine Jetson-PI-Edge based on llama.cpp, using computation graph reuse, GPU intermediate caching, and flow matching unrolling, reduces single inference to 412.9ms.
  • On LIBERO dataset, Jetson-PI average success rate is 14.8 percentage points higher than VLASH, with greater advantage under larger latency (Δ=9: 45.6 pp higher).
  • In real robot cloth folding task, Jetson-PI achieves smoother and more continuous actions, avoiding pauses from synchronous inference and misalignment from naive asynchronous inference.
Open section navigationThe Dilemma of Edge VLA: Inference Latency and Perception-Action Misalignment

The Dilemma of Edge VLA: Inference Latency and Perception-Action Misalignment

Deploying VLA models on onboard devices faces dual challenges. On one hand, relying on external high-end GPUs significantly increases power consumption and reduces battery life, limiting the robot's range of motion; on the other hand, running directly on edge devices like Jetson Orin, π0.5 takes about 1.4 seconds per inference, resulting in a control frequency of only 0.7Hz, causing sluggish robot movements and noticeable pauses.

Naive asynchronous inference can hide some latency but introduces two new problems: perception-action misalignment (the environment changes during model inference) and excessive reaction time (still limited by full inference latency). Previous methods attempt to fuse old and new trajectories, but may still fail in complex tasks due to action errors.

Jetson-PI Core Method: Foresight-Aligned Asynchronous Correction and Confidence Scheduling

Jetson-PI proposes Foresight-Aligned Asynchronous Correction, training a lightweight future correction module with about 40M parameters. Based on the current VLM environment representation and submitted actions, this module predicts the environment representation at a future time, allowing the action expert to generate actions starting from a future time point rather than based on outdated observations. The module only predicts the last layer representation of VLM, avoiding the high cost of generating full images.

The confidence-based scheduling mechanism lets the system decide when to skip VLM: the future correction module also outputs confidence; when above a threshold, directly invoke the action expert (faster inference); when below, re-invoke VLM to refresh the environment. In actual tests, confidence drops during key steps like grasping and placing, triggering VLM updates, while remaining high during smooth actions.

Low-Level Engine Optimization: Computation Graph Reuse and GPU Cache

The research team developed Jetson-PI-Edge based on llama.cpp, with three optimizations tailored for VLA: computation graph reuse (build CUDA Graph once for fixed input sizes and reuse), persistent GPU intermediate cache (avoid data transfer between ViT, LLM, and action expert via CPU), and flow matching unrolling (merge multiple denoising steps into a unified computation graph).

After optimization, π0.5 single inference time on Jetson Orin drops to 412.9ms, and action expert inference from 536.8ms to 123.1ms. Combined with confidence scheduling, system reaction time further reduces to 165.1ms, achieving a control frequency of 6.06Hz, an 8.66x improvement over native PyTorch, without using quantization or pruning.

Experimental Validation: Success Rate and Real Robot Performance

On four LIBERO sub-datasets, Jetson-PI's average success rate is 14.8 percentage points higher than VLASH and 3.9 points higher than RTC. The advantage grows with larger latency: when latency steps Δ=9, Jetson-PI's average success rate is 45.6 points higher than VLASH and 7.0 points higher than RTC, indicating that future environment prediction is crucial under long delays.

In cloth folding tasks on a PrimeBot X2-W robot, Jetson-PI achieves smoother and more continuous actions, avoiding pauses from synchronous inference and misalignment from naive asynchronous inference. The robot is equipped with one head camera and two wrist cameras, executing actions at 15Hz.

Credibility boundary

This article is based on a report by Machine Heart on the paper from Peking University and others. The paper has been published on arXiv (2607.12659) and the code is open-sourced. All performance data are from the paper's experiments, without external verification.

Insight takeaway

Jetson-PI, through algorithm-system co-design, boosts edge VLA control frequency to 6Hz without sacrificing accuracy, providing a feasible path for long-term autonomous operation of mobile robots.

Primary report

机器之心

Primary source