Overview
- Field: LLM / ML systems
- Authors: Krish Agarwal, Zhuoming Chen, Yanyuan Qin, Zhenyu Gu, Atri Rudra, et al. (6 authors)
- Published: 2026-07-20
- arXiv: 2607.18171
- Category: cs.LG
- Up to ~70x latency reduction and 2.8x throughput improvement on NVIDIA B200 GPUs.
- 3.6x throughput improvement on AMD MI355X GPUs.
Abstract
Real-time multimodal applications, including voice agents and interactive video generation, compose heterogeneous models into pipelines whose efficient deployment requires application-specific decisions about placement, streaming, and intra-model parallelism. Existing serving systems and auto-parallelizing compilers are restricted to limited transformations and fixed workload assumptions, so achieving high performance on new applications requires hand-crafted efficient implementations.
The authors present FlashRT, an agent framework that guides coding agents to lift simple developer-written reference implementations into optimized multi-GPU deployments, flexibly trading off objective metrics such as latency and throughput.
Approach
FlashRT uses a new chain-of-program paradigm to guide general-purpose coding agents through a multi-pass transformation process:
1. Convert the reference implementation into an intermediate representation (IR) that captures data dependencies and persistent state scopes. 2. Validate this IR using a sequential interpreter. 3. Perform static analysis to identify candidate transformations.
Results
*Auto-collected on 2026-07-22. Source: zhichai.net*