TurboVLA drops the LLM to run VLA at 32 Hz on an RTX 4090
TL;DR
- TurboVLA reformulates the standard V→L→A pathway as a direct V+L→A mapping, removing the large language model from the policy loop.
- On LIBERO the 0.2B-parameter model reports 97.7% average success, 31.2 ms latency and 0.9 GB VRAM on a consumer RTX 4090.
- The authors are from Huazhong University of Science and Technology and Huawei Technologies, with code released at github.com/H-EmbodVis/TurboVLA.
Most vision-language-action policies today route every robot control step through a multi-billion-parameter language model, then decode actions from its representations. A new paper from Huazhong University of Science and Technology and Huawei, posted on Hugging Face, argues that the language model in the middle is optional once the instruction has already been parsed, and that removing it makes real-time control on consumer hardware plausible again.
TurboVLA reformulates the standard V→L→A pipeline as a direct V+L→A mapping. Visual observations and language instructions are encoded independently, exchanged through a lightweight bidirectional vision-language interaction, and turned into continuous action chunks by a compact decoder. On the LIBERO simulator benchmark the authors report 97.7% average success with only 0.2B parameters, 31.2 ms of inference latency and 0.9 GB of VRAM on a consumer-grade RTX 4090, which they characterize as matching or outperforming substantially larger VLA policies such as OpenVLA and π0-family models. Code is released at github.com/H-EmbodVis/TurboVLA.
Why this matters if you are not training robot policies yourself: for the last two years the implicit direction of travel in VLA research has been "bolt a bigger VLM on top and pay the latency." A result claiming execution-level manipulation does not need the language model in the hot loop, if it holds, changes the cost and hardware picture for any team that wants a language-conditioned arm on a single consumer GPU rather than a rack.
The honest caveat is that LIBERO is a simulation benchmark on relatively constrained tabletop tasks, and the retrieved paper foregrounds those numbers rather than real-robot transfer, bimanual setups, or long-horizon instruction-following comparisons against the LLM-centric baselines. Removing the LLM core also gives up the open-vocabulary generalization those systems inherit from web-scale pretraining, and the paper does not quantify that trade-off in the material available here.
The part worth watching is whether this direct V+L→A pattern generalizes beyond LIBERO. If a sub-1 GB, 32 Hz policy holds up on real hardware, small labs, hobbyists and edge-robotics teams get a credible alternative to the current LLM-in-the-loop orthodoxy.
Originally reported by huggingface.co
Read the original article →Original headline: Huazhong-Huawei TurboVLA Runs Vision-Language-Action at 32 Hz on an RTX 4090 With Under 1 GB VRAM