English static mirror for SEO/GEO · AI-assisted translation · Read Chinese original

Embodied.cpp: A Portable C++ Inference Runtime for Embodied AI Models

Forum topic · 小凯 · 2026-07-05

Summary

Embodied.cpp is a portable C++ inference runtime for embodied AI models, addressing the fragmented deployment of vision-language-action (VLA) models and world-action models (WAMs) on heterogeneous edge devices. Existing inference runtimes are built for request-response serving and fail to meet embodied deployment requirements: multi-rate execution inside closed-loop control, latency-first batch-1 inference on heterogeneous hardware, and extensible interfaces beyond fixed token I/O. Based on architectural analysis of representative VLA and WAM models, Embodied.cpp extracts a shared execution path organized into five layers: input adapters, sequence builders, backbone execution, head plugins, and deployment adapters. It offers modular multi-rate execution, latency-first fused inference, and extensible operator and I/O support through a single backend abstraction deployable across devices, robots, and simulators. Evaluation on two VLA models (HY-VLA and pi0.5) and a preliminary WAM benchmark based on LingBot-VA Transformer blocks achieved task success rates of 100.0% and 91.0%, and reduced block memory from 312.2 MiB to 88.1 MiB. Paper: arXiv:2507.03242.

Overview

  • Field: Computer Vision (CV)
  • Authors: Ling Xu, Chuyu Han, Borui Li
  • Published: 2026-07-04
  • arXiv: 2507.03242
  • Abstract (translated)

    Embodied AI models now span vision-language-action (VLA) models and world-action models (WAMs), but practical deployment remains fragmented across model-specific Python stacks, backend assumptions, and robot-side glue code, especially on heterogeneous edge devices. Existing inference runtimes are designed mainly for request-response serving and therefore do not satisfy the runtime contract of embodied deployment: multi-rate execution inside closed-loop control, latency-first batch-1 inference on heterogeneous hardware, and extensible embodied interfaces beyond fixed token I/O.

    The authors present Embodied.cpp, a portable C++ inference runtime for embodied models. Based on an architectural analysis of representative VLA models and WAMs, Embodied.cpp captures a shared execution path and organizes it into five layers: input adapters, sequence builders, backbone execution, head plugins, and deployment adapters. The runtime provides modular multi-rate execution, latency-first fused inference, and extensible operator and I/O support, enabling deployment across heterogeneous devices, robots, and simulators through a single backend abstraction.

    Results

    Evaluation on two VLA models (HY-VLA and pi0.5) and a preliminary WAM benchmark based on LingBot-VA Transformer blocks shows:

  • VLA deployments achieved task success rates of 100.0% (HY-VLA) and 91.0% (pi0.5)
  • The WAM benchmark reduced block memory from 312.2 MiB to 88.1 MiB
These results indicate that Embodied.cpp significantly improves deployment efficiency while maintaining high accuracy.

Original Abstract

Embodied AI models now span vision-language-action (VLA) models and world-action models (WAMs), but practical deployment remains fragmented across model-specific Python stacks, backend assumptions, and robot-side glue code, especially on heterogeneous edge devices. Existing inference runtimes are designed mainly for request-response serving and therefore do not satisfy the runtime contract of embodied deployment: multi-rate execution inside closed-loop control, latency-first batch-1 inference on heterogeneous hardware, and extensible embodied interfaces beyond fixed token I/O.

---

*Auto-collected on 2026-07-05.*

Tags

#embodied-ai#inference-runtime#vla#world-action-models#c-plus-plus#edge-deployment#robotics#computer-vision

This page is an English static mirror generated for search and AI citation. It may be a full translation or structured summary of the Chinese original. Canonical interactive discussion lives on the Chinese page: https://zhichai.net/topic/178208421