日本フィジカルAI新聞

世界のフィジカルAIを、日本語で。

週刊ニュースレター購読
推論エンジンarXiv:2608.03682v2

PhyAI: エッジでのリアルタイム物理AI、クラウドでのスケーラブルなロールアウト

PhyAI: Real-Time Physical AI at the Edge, Scalable Rollouts in the Cloud

シェア:XThreadsFacebookLINEはてブBluesky

物理AIポリシーの推論を統一するエンジンPhyAIを構築し、エッジからクラウドまで同一ランタイムでVLAモデルや世界行動モデルを実行し、公式実装より1.40〜4.65倍の高速化を達成した。

詳しい要約

1. どんなもの?

PhyAIは、Physical AIポリシーのライフサイクル全体(モデル評価、クラウド強化学習ロールアウト、エッジGPU推論、オンボード展開)を単一のランタイムで統一する推論エンジンである。モデル固有の条件付け、ソルバー、キャッシュ、出力ロジックをmodel adapterに分離し、グラフ実行、カーネル、メモリ管理、並列サービスを共有する。同じコードベースでvision-language-action (VLA)モデルとworld-action models (WAMs)を、オンボード、エッジ、クラウドの単一または複数GPU上で実行できる。

2. 先行研究と比べてどこがすごい?

従来は、Physical AIポリシーの各設定(評価、ロールアウト、エッジ推論、展開)ごとに別々の推論プログラムを使用していた。PhyAIはこれらを単一のランタイムに統一し、モデル固有の部分をadapterに分離することで、コードの再利用と一貫性を実現している。また、公式実装と比較して1.40倍から4.65倍の高速化を達成しており、特にpi0、pi0.5、GR00T N1.7、MiniCPM-Robotで顕著である。

3. 技術・手法の肝は?

手法の肝は、モデル固有のロジックをmodel adapterに分離し、共通のグラフ実行、カーネル、メモリ管理、並列サービスを共有する単一ランタイム設計である。adapterインターフェースにより、新しいモデル(例:MiniCPM-Robot)をリリース当日に追加できる。また、control-time Rooflineを導入し、推論律速か環境律速かを区別する。

4. どうやって有効だと検証した?

公式実装との比較で、pi0、pi0.5、GR00T N1.7、MiniCPM-Robotに対して1.40倍から4.65倍の高速化を達成。Cosmos3-Nano-Policy-DROIDでは、8つのH20 GPU(CFG=2, TP=4)でレイテンシを2.46秒から1.18秒に短縮(2.08倍高速化)。また、詳細なプロファイルにより、モデルごとに異なる実行ポリシーが必要であることを示した。

5. 議論はある?

議論として、特殊化されたランタイムがいくつかの構成でより高速であることが認められており、PhyAIの目標は競争力のあるレイテンシを持つ単一ランタイムであり、すべての場合で最速ではない。また、バッチサイズによる性能特性の違い(pi0.5はバッチサイズ増加でスループット向上、Cosmos3は生成支配で向上が限定的)や、LIBEROスイートでの環境律速と推論律速の区別が議論されている。

6. 次に読むべき論文は?

要旨で参照されているモデルはpi0、pi0.5、GR00T N1.7、MiniCPM-Robot、Cosmos3-Nano-Policy-DROIDである。次に読むべき論文としては、これらのモデルの公式論文や、Physical AI推論に関する関連研究が挙げられる。具体的には、pi0の論文、GR00Tの論文、Cosmos3の論文などが関連する。

※ AIが要旨から生成した要約です。正確性は原文をご確認ください。

著者: Chenghua Wang, Daliang Xu, Dongqi Cai, Duojin Sun, Hao Zhang, Haoze Qian, Huaiyuan Zhang, Jinshuo Cui, Junbo Cui, Kezhao Zhao, Longxi Gao, Mengwei Xu, Rongjie Yi, Tam Sikyuen, Tianyue Zhang, Weikai Xie, Xuanzhe Liu, Yingying Qin, Yiwen Lu, Yuan Yao, Yuezhi Zu, Yunhan Guo, Yuxin Zheng, Ziqi Guo

分類: cs.AI, cs.RO

原文アブストラクト

Physical AI policies require inference throughout their lifecycle, including model evaluation, cloud reinforcement learning rollout, edge GPU serving, and onboard deployment. Although these settings share the same checkpoint and action semantics, they often rely on separate inference programs. To unify them, we build PhyAI, a Physical AI inference engine with a single runtime that keeps architecture-specific conditioning, solver, cache, and output logic in model adapters while sharing graph execution, kernels, memory management, and parallel services. The same codebase runs vision-language-action (VLA) models and world-action models (WAMs) on single or multiple GPUs across onboard, edge, and cloud deployments. We used the adapter interface to add MiniCPM-Robot on the day of its release. PhyAI achieves 1.40x-4.65x speedups over the official implementations of pi0, pi0.5, GR00T N1.7, and MiniCPM-Robot. On Cosmos3-Nano-Policy-DROID it reduces latency from 2.46 to 1.18 s on eight H20 GPUs (CFG=2, TP=4), a 2.08x speedup. Specialized runtimes remain faster in several configurations, so our goal is one runtime with competitive latency rather than the fastest result in every case. Detailed profiles reveal why different models need different execution policies: on a Hopper-series GPU at batch size one, the pi0.5 action expert accounts for 8.8% of FLOPs but 57.2% of latency; at batch size 32 its share drops to 13.5% and throughput reaches about 100 samples/s. Cosmos3 remains generation-dominated and gains only 14.3% throughput as batch size increases from 1 to 16. We further introduce the control-time Roofline, which distinguishes inference-bound from environment-bound control; the measured pi0.5 points on four LIBERO suites are environment-bound while Cosmos3 stays inference-bound. Code and benchmarks: https://github.com/mingti-org/phyai.