BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models
BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models
Section titled “BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models”⚠️ AI 生成 · 建议对照原文 本页为自动整理的学习笔记;关键数据与引用如需引用,请回查 PDF / 官方版本。
学习档位 中文笔记
类型 文献 · 更新 2026-07-19
所属 机器人操作 · 具身基础模型与智能体
中文学习笔记(自动生成,需核验)
Section titled “中文学习笔记(自动生成,需核验)”Topic: robot-manipulation · Tier: watch · Year: 2025 · Venue: —
Evidence level: partial · 本地全文: 是 · 建议阅读: ~45 分钟
Paper: https://arxiv.org/abs/2512.11769
Code: —
Generator: grok
为什么值得读
Section titled “为什么值得读”面向真实部署的VLA推理加速:无需重训、不改checkpoint与观测接口,即可显著降低延迟与显存,适合高频率控制与交互式demo;对理解“纯推理栈优化”如何同时保住成功率很有价值。
BLURR是即插即用的VLA推理包装器,通过指令前缀KV缓存、BF16+编译+FlashAttention与单步rollout,在保持π0性能的同时大幅加速与省显存。
现有通用VLA(如Octo、OpenVLA、Pi-0)依赖重视觉编码器与多模态解码器,逐步推理延迟高(常难以满足30–50Hz),难以支撑响应式网页demo或消费级GPU上的高频机器人控制;而现有加速法多需改架构/重训、换tokenization或主要提升能力而不降每步算力,无法作为对已发布checkpoint的轻量drop-in优化。
Vision-Language-Action策略基础;Transformer KV cache与注意力;混合精度(BF16)、FlashAttention/SDPA、torch.compile;机器人闭环控制与仿真评测(如SimplerEnv)常识。
- 提出轻量推理包装器BLURR:不改网络权重、训练流程与API,可包裹已有OpenVLA/Pi-0/TraceVLA风格checkpoint。
- 三项原则落地:减少冗余前缀计算(指令前缀KV缓存)、降低每步token成本(单步控制视界)、最大化张量核利用(BF16+编译+FlashAttention)。
- 在SimplerEnv桥任务上展示数量级级延迟与吞吐提升,同时基本保持原策略成功率;提供可交互demo与开源集成脚本。
1)保持原视觉编码器与token预算(如224×224、固定token数);2)episode开始时对语言指令c做一次编码,构建前缀KV cache;3)每步仅编码当前观测视觉-状态token Vt,与缓存的K/V拼接后送入Transformer;4)动作解码器以BF16运行、torch.compile整图、可用时启用FlashAttention;5)将控制视界设为1步(单次前向/环境步),时序平滑交给环境与底层控制器;6)通过配置开关切换BF16/compile/步数/KV cache等,便于消融与demo。
关键模块和设计取舍
Section titled “关键模块和设计取舍”指令前缀KV缓存(每episode付一次指令代价,步间仅处理视觉token);BF16运行时cast(权值不变,降带宽);torch.compile(kernel融合、减Python开销);FlashAttention/SDPA(IO-aware注意力);单步rollout(去掉原10步多步解码的10×因子)。取舍:不重训、不改tokenization与接口以兼容现有checkpoint;单步适合短桌面操作,更长时域任务可能需再评估;tokenizer对齐与attention mask需仔细构造以保持位置一致。
数据集、实验设置与指标
Section titled “数据集、实验设置与指标”仿真:SimplerEnv四类桥接/桌面任务(carrot-on-plate、eggplant-in-container/rack、spoon-on-plate/cloth、stack-blocks等表述);同一Pi-0 checkpoint;每配置/任务闭环评测100个episode成功率;硬件profiling:固定分辨率与token预算下单H100上逐步延迟(ms)、峰值VRAM(GB)、近似GFLOPS(profiler FLOP/延迟);对比OpenVLA、OpenVLA-OFT、Pi-0 baseline、Interleave-Pi-0、BLURR-Pi-0;消融逐步叠加BF16、compile、减少flow步、KV cache、FlashAttention直至Full BLURR(1步)。
主要结果(需原文证据)
Section titled “主要结果(需原文证据)”Table 1(同输入预算):BLURR-Pi-0延迟17.1ms、VRAM 7.20GB、GFLOPS 73,525,对比Interleave-Pi-0的162.1ms/13.61GB/7,989与Pi-0 baseline 111.6ms/13.58GB/39,038;文中称约9.5×更低延迟、0.53×峰值显存、约9.2×更高有效GFLOPS。Table 2消融显示从Interleave FP32 10步162.1ms逐步优化至Full BLURR 1步17.1ms。Table 3四任务成功率:BLURR-Pi-0平均0.71(Carrot 0.54, Spoon 0.91, Blocks 0.46, Eggplant 0.93),与Interleave-Pi-0 0.70、Baseline π0 0.69接近,表明加速同时基本保持任务表现。
局限、失败场景与适用边界
Section titled “局限、失败场景与适用边界”单步控制主要针对短桌面操作(原文称原10步视界对SimplerEnv短任务过配);效果依赖硬件(如H100)与内核支持;需仔细的tokenizer对齐与mask构造;extract未充分讨论长时域任务、真实机器人泛化或失败模式细节;主要实例化在π0/Interleave风格控制器上。
与前序 / 同期 / 后续方法的关系
Section titled “与前序 / 同期 / 后续方法的关系”相对能力型方法(CoA-VLA链-of-affordance、TraceVLA visual-trace)不主攻每步算力;相对结构压缩(TinyVLA、MiniVLA)与动作重参数/新tokenization(FAST)需重训或与已发布checkpoint不兼容;BLURR强调纯推理栈、保持checkpoint与接口,作为OpenVLA/Pi-0等的drop-in加速层;评测与TraceVLA等共用SimplerEnv测试床。
官方代码与复现建议
Section titled “官方代码与复现建议”官方将开源BLURR与集成脚本:https://github.com/JijiKing-Sam/BLURR-A-Boosted-Low-Resource-Inference-for-Vision-Language-Action-Model。基于PyTorch与HuggingFace风格加载OpenVLA/Pi-0/TraceVLA实现,作为薄wrapper保留原观测-动作接口并暴露use_bf16、use_compile、num_inference_steps等flag;复现建议:固定同一checkpoint与输入分辨率/token预算,在同卡上profiling延迟/VRAM/GFLOPS,并在SimplerEnv四任务各跑100 episode闭环成功率;demo用WebSocket+前端开关实时切换选项。
推荐阅读顺序
Section titled “推荐阅读顺序”先读Abstract与Fig.1效率-性能图建立问题与主张 → Introduction痛点与三大限制 → §2架构(前缀缓存公式+BF16/编译/Flash+单步)与Fig.2对比 → Table1/2效率与消融 → §3实现与demo → Table3成功率与Fig.3 rollout → 再回看相关工作定位。
- Q: BLURR与TinyVLA/MiniVLA在“是否重训、是否改架构”上的核心区别是什么? A: BLURR不改参数与训练、只优化推理管道并可包裹现有checkpoint;TinyVLA/MiniVLA通过改backbone/action head或结构压缩,通常需重训。
- Q: 指令前缀KV缓存如何降低每步计算?写出核心思想。 A: 指令P每episode编码一次得到Kpref/Vpref;每步仅投影当前视觉-状态token得到Kstep/Vstep,与缓存拼接,使指令代价不在每控制步重复支付。
- Q: 文中报告的BLURR-Pi-0相对Interleave-Pi-0的大致延迟与显存变化? A: 延迟从约162.1ms降至17.1ms(约9.5×更低),峰值VRAM从约13.61GB降至7.20GB(约0.53×)。
- Q: 为什么作者将控制视界设为1步? A: 对SimplerEnv短桌面任务发现原10步过配,单步即可获可比成功率,同时立刻去掉多步解码带来的约10×墙钟延迟。
- Q: Table 3中BLURR-Pi-0平均成功率相对Interleave与Baseline π0如何? A: 平均约0.71,与Interleave-Pi-0的0.70、Baseline π0的0.69接近,表明加速未明显牺牲任务成功。
- Abstract / page 1: We present BLURR, a lightweight inference wrapper that plugs into existing VLA controllers without retraining. Instantiated on π0 , BLURR keeps the original checkpoints and observation interfaces, and accelerates control by combining an instruction-prefix KV cache, mixed-precision execution, and a single-step rollout schedule.
- Introduction / page 1-2: In practice, BLURR preserves SOTA manipulation performance while delivering up to 9.5× lower latency, 0.53× peak VRAM, and 9.2× higher effective GFLOPS
- Table 1 / page 2: BLURR-Pi-0(ours) Latency (ms) 17.1 VRAM (GB) 7.20 GFLOPS 73,525 … Interleave-Pi-0 162.1 13.61 7,989 … Pi-0 baseline 111.6 13.58 39,038
- §2.1 / page 2: BLURR-Pi-0 instead caches the instruction prefix once per episode … With BLURR’s single-step rollout (one forward pass per environment step), the instruction cost is paid once per episode instead of at every control step
- Table 3 / page 4: BLURR-Pi-0 (ours) Carrot 0.54 Spoon 0.91 Blocks 0.46 Eggplant 0.93 Avg. 0.71 … Interleave-Pi-0 … Avg. 0.70 … Baseline π0 … Avg. 0.69
- Abstract / page 1: We will release BLURR and integration scripts as open source at https://github.com/JijiKing-Sam/BLURR-A-Boosted-Low-Resource-Inference-for-Vision-Language-Action-Model.
Discovery evidence
Section titled “Discovery evidence”- topic:
embodied-foundation-models - sources:
arxiv - retrieved_at: 2026-07-20
- query: RT-2 vision language action robotic control
- arxiv:
2512.11769 - score_total: 51
- suggested_tier:
recent
Relevance
Section titled “Relevance”(no prose relevance explanation — numeric score only or HTTP source)
Snippets
Section titled “Snippets”(no snippet evidence in candidate pool)
延伸解读与背景补充
Section titled “延伸解读与背景补充”生成:2026-07-21 · 来源条数 2 · 模型
heuristic· 需人工核验数字
围绕「BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models」的核心问题与动机(待结合全文核验)。
方法要点补强
Section titled “方法要点补强”- 见原文方法章节;以下为基于摘要/摘录的要点提示。
- BLURR: A Boosted Low-Resource Inference for Vision-Language-Action…
与相近工作的关系
Section titled “与相近工作的关系”与相近工作的关系待核验;请对照 related work。
- 勿仅凭摘要推断未给出的数值指标。
- 这篇工作的输入/输出表示是什么?(BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models)
- 训练目标与评测协议各是什么?
- 主要失败模式或局限是什么?
外部解读索引
Section titled “外部解读索引”- [2512.11769] BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models — 2026-07-21 — 官方摘要/二次页面(自动抓取)
- [2512.11769] BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Model — 2026-07-21 — 官方摘要/二次页面(自动抓取)
方法结构(重绘)
Section titled “方法结构(重绘)”flowchart LR A["输入 / 观测"] --> B["表示 / 编码"] B --> C["推理 / 解码"] C --> D["输出 / 动作或检测"] %% method sketch for: BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Models方法结构示意(重绘;细节以原论文为准,待 PDF 核验)。
论文摘录图/表
Section titled “论文摘录图/表”
来源:原论文约 p.1(arch);学习用途摘录。

来源:原论文约 p.4(table);学习用途摘录。
英文自动分析(可折叠)
Section titled “英文自动分析(可折叠)”展开英文 Paper Card / AI deep analysis
Paper Card
Section titled “Paper Card”| Field | Content |
|---|---|
| Year | 2025 |
| Authors | Xiaoyu Ma, Zhengqing Yuan, Zheyuan Zhang, Kaiwen Shi, Lichao Sun, Yanfang Ye |
| arXiv | 2512.11769 |
| DOI | — |
| Topics | robot-manipulation, embodied-foundation-models |
| Paper | https://arxiv.org/abs/2512.11769 |
原文摘录与素材(可折叠)
Section titled “原文摘录与素材(可折叠)”展开 Extract / Selections / Local assets
Selections
Section titled “Selections”robot-manipulation: tier=watch rank=1 score=51 — auto refresh 2026-07-19 sources=arxivembodied-foundation-models: tier=watch rank=6 score=51 — auto refresh 2026-07-19 sources=arxiv | promoted needs-review->watch for coverage fill
Extract excerpt
Section titled “Extract excerpt”BLURR: A Boosted Low-Resource Inference for Vision-Language-Action Model Xiaoyu Ma∗,† , Zhengqing Yuan1,∗ , Zheyuan Zhang1 , Kaiwen Shi1 , Lichao Sun2 , Yanfang Ye1 1 University of Notre Dame, 2 Lehigh University
Abstract Vision–Language–Action (VLA) models enable impressive zero- shot manipulation, but their inference stacks are often too heavy for
arXiv:2512.11769v1 [cs.RO] 12 Dec 2025 responsive web demos or high-frequency robot control on commod- ity GPUs. We present BLURR, a lightweight inference wrapper that plugs into existing VLA controllers without retraining. Instantiated on 𝜋0 , BLURR keeps the original checkpoints and observation inter- faces, and accelerates control by combining an instruction-prefix KV cache, mixed-precision execution, and a single-step rollout schedule. Our demo lets attendees switch between controllers and toggle inference options in real time while watching SimplerEnv episodes. We will release BLURR and integration scripts as open source at https://github.com/JijiKing-Sam/BLURR-A-Boosted-Low- Resource-Inference-for-Vision-Language-Action-Model.
Keywords Vision-Language-Action, Inference Acceleration, Robot Policy De- Figure 1: Efficiency–performance landscape on four Sim- ployment, Interactive Web Demonstration plerEnv bridge tasks. Each marker shows a controller’s