AHA-WAM: Asynchronous World-Action Model for Faster, Smarter Robot Manipulation

AHA-WAM: Asynchronous World-Action Model for Faster, Smarter Robot Manipulation

Jisong Cai, Long Ling, Shiwei Chu, Zhongshan Liu, Jiayue Kang +8 more

7 min readJun 9, 2026

A new robotic control system called AHA-WAM decouples slow visual planning from fast action execution, letting robots think ahead without slowing down their real-time responses. The approach achieves state-of-the-art manipulation performance while cutting inference latency by over 90%, making world-aware robot control practical for deployment.

What the Researchers Built

Most robot control systems that combine visual understanding with action prediction (called "world-action models") force both the world-modeling and action branches to operate at the same short time horizon. This wastes computation on highly correlated adjacent video frames that add little control value.

AHA-WAM (Asynchronous Horizon-Adaptive World-Action Model) breaks this coupling. It uses two separate diffusion transformers running at different frequencies: a slow "video planner" that generates a temporally extended latent plan over future visual states, and a fast "action executor" that issues real-time closed-loop commands based on the latest observations. The video planner runs at a low rate (e.g., every 6 frames), while the action executor runs at high frequency (e.g., every frame).

Two key innovations make this asynchronous design work. First, Observation-Guided Video-Context Routing (OVCR) dynamically adapts the cached planner’s video context to the current observation without rerunning the expensive video model. Second, horizon-adaptive offset training teaches the action executor to handle arbitrary phase shifts between the planner and executor, so it can produce correct actions regardless of when the planner last refreshed.

OVCR mechanism diagram showing how observation-guided queries adapt video context from the slow planner for the fast action executor

Key Results

On the RoboTwin 2.0 multi-task manipulation benchmark, AHA-WAM matched or exceeded state-of-the-art world-action models on success rate while running dramatically faster:

ModelAverage Success RateInference Latency (per step)
Fast-WAM (baseline)~75%168 ms
AHA-WAM (PyTorch eager)~78%18 ms
AHA-WAM (TensorRT optimized)~78%4.2 ms
Naive-Async (no OVCR or memory)~60%N/A

AHA-WAM achieved 78% average success rate across 6 tasks, comparable to Fast-WAM, while reducing per-step latency from 168 ms to just 4.2 ms after CUDA optimization — a 40× speedup. This translates to a control frequency of ~238 Hz, far beyond the ~6 Hz of typical world-action models.

Ablation studies showed that removing either the rolling K/V memory or the OVCR mechanism caused success rates to drop by 10–15 percentage points, and removing both dropped performance below 60%. The full AHA-WAM design was essential for maintaining both speed and accuracy.

Real-world bimanual manipulation tasks (pouring, peg insertion, pick-and-place) confirmed the simulation results: AHA-WAM completed tasks at similar success rates to synchronous baselines while enabling smooth closed-loop control at human-like speed.

How It Works

AHA-WAM’s architecture consists of two diffusion transformers (DiT) running at different temporal scales.

The slow video planner processes a long horizon of 6 video frames (past and future) and generates a latent "world plan" — a compressed representation of how the scene is expected to evolve. It runs asynchronously every 6 action steps, using a rolling Key/Value memory (FIFO buffer of up to 6 historical observations) to maintain long-term context across planner refreshes. This memory is internal to the planner and is not directly accessed by the executor.

The fast action executor operates on every real-time step. It takes the current camera observation and the cached planner video context (which may be outdated if the planner hasn’t refreshed recently) and produces a short action chunk (typically 3–4 steps). OVCR bridges the gap: it uses 32 learned "routing queries" conditioned on the current observation to dynamically select and merge relevant information from the stale planner context, simulating what the planner would produce if it ran fresh.

Ablation results bar chart showing success rate drops when components are removed

Horizon-adaptive offset training is critical. During training, the action executor is exposed to varying phase offsets between planner refreshes and action steps. This teaches it to compensate for the asynchronous timing, so it never expects perfectly synchronized planner updates.

During real-time inference, the action path is heavily optimized: the action DiT, OVCR module, and image encoder are compiled to TensorRT with CUDA-graph capture, removing redundant computations and buffer copies. The 10-step diffusion denoising loop runs in a single static graph, cutting latency from ~18 ms (PyTorch eager) to ~4.2 ms on an NVIDIA RTX 5090D GPU.

Why This Matters for Robotics

World-action models have shown that training robots to predict future video frames alongside actions leads to more generalizable and physically grounded policies. But their high computational cost has limited them to research labs — no real-world robot can run a video diffusion model at 100+ Hz.

AHA-WAM solves this by separating the expensive world model from the real-time control loop. The video planner can take its time to reason about scene evolution, while the action executor reacts at human-compatible speed. This opens the door for:

  • Deploying world-action models on existing robot hardware without requiring specialized low-latency GPUs.
  • Scaling to longer-horizon tasks where deliberate planning matters (e.g., assembly, kitchen manipulation) without sacrificing reactive safety.
  • Integrating richer visual representations (3D, physics-based) into the planner without inflating action latency.

For operations managers evaluating used collaborative robots or industrial robots, AHA-WAM represents a step toward robots that can both "think" about their environment and "act" quickly — a key capability for tasks like bin picking, insertion, and assembly in dynamic factory settings.

Limitations and Open Questions

AHA-WAM introduces several temporal hyperparameters (planner update frequency, video horizon, action chunk size) that currently require task-specific tuning. The optimal configuration likely depends on the robot embodiment and task dynamics — a fast-moving arm may need shorter horizons than a careful pick-and-place robot.

The video planner still operates on 2D image observations, missing 3D geometry and physics. While the latent plan captures visual trends, it doesn’t explicitly model object interactions, forces, or compliance. Extending the planner with 3D scene representations or learned physics could improve long-horizon reasoning.

Finally, the evaluation covers only 6 simulation tasks and a handful of real-world demonstrations. Broader benchmarks (e.g., long-horizon tabletop, mobile manipulation) are needed to validate the asynchronous design’s scalability and generality.

Frequently Asked Questions

How does AHA-WAM differ from other world-action models like Fast-WAM? Fast-WAM runs the video and action branches synchronously at the same short horizon, which wastes computation on adjacent redundant frames. AHA-WAM decouples them asynchronously, letting the video planner operate over longer horizons while the action executor runs at high frequency.

Does the asynchronous design hurt task success rate compared to synchronous models? No — in RoboTwin benchmarks, AHA-WAM achieved 78% success rate, matching or exceeding synchronous baselines, while cutting inference latency by 40×.

What hardware is needed to run AHA-WAM in real time? The optimized action path runs at 4.2 ms per step on a single NVIDIA RTX 5090D GPU, enabling 238 Hz control. The slow video planner requires that same GPU but runs only once every 6–10 steps.

Can AHA-WAM work on mobile robots or less expensive hardware? The inference optimization relies on TensorRT and CUDA-graph — any NVIDIA GPU from the past two generations should support it. Mobile or edge deployment would require further compression or quantization.

Conclusion

AHA-WAM demonstrates that world-action models can be both fast and accurate by asynchronously separating visual planning from reactive control. The OVCR mechanism and horizon-adaptive training make this separation effective, achieving state-of-the-art manipulation performance with 40× lower latency. This design points toward a new class of robot policies that can plan ahead without losing real-time responsiveness.

🍪 Cookie preferences

We use cookies to measure performance. Privacy Policy