FlashRT: Agent Harness for Guiding Agents to Deploy Real-Time Multimodal Applications

πŸ“… 2026-07-20
πŸ“ˆ Citations: 0
✨ Influential: 0
πŸ“„ PDF
πŸ€– AI Summary
This work addresses the challenge of efficiently deploying real-time multimodal applications, which demand customized optimization of heterogeneous model pipelinesβ€”a task existing systems struggle to automate while balancing low latency and high throughput. The paper proposes an agent-guided automated deployment framework that leverages developer-provided reference implementations and integrates a chain-based programming paradigm, a unified intermediate representation, static analysis, and a measurement-driven optimization loop to automatically generate high-performance deployment configurations for multi-GPU platforms. Evaluated on NVIDIA B200 and AMD MI355X hardware, the approach achieves up to 70Γ— lower latency and 2.8Γ— higher throughput on the former, and 3.6Γ— throughput improvement on the latter, with a 65% reduction in audio inference latency for Qwen3-Omni.
πŸ“ 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-parallelism compilers commit to limited transformations and fixed workload assumptions, so achieving high performance on a new application requires hand-crafting an efficient implementation. We present FlashRT, an agent harness that guides coding agents to lift simple developer-written reference implementations into optimized multi-GPU deployments that flexibly weigh target metrics like latency and throughput. Using a new chain-of-program paradigm, FlashRT directs a generic coding agent through a multi-pass transformation process where an agent transforms the reference into an intermediate representation (IR) to capture data dependencies and persistent-state scopes, validates this IR via a sequential interpreter, and performs static analyses to identify candidate transformations. Then, the agent iteratively implements, verifies, and benchmarks each candidate under a measurement-gated optimization loop to produce effective deployments that span different hardware budgets. Across various applications, including video world models and multimodal LLMs, FlashRT converts reference implementations into highly efficient deployments, delivering up to ~70x latency reduction and 2.8x throughput improvement on NVIDIA B200 GPUs. On AMD MI355X GPUs, FlashRT matches the peak latency reduction while increasing peak throughput improvement to 3.6x, demonstrating that agent-driven optimization can be more scalable on platforms with less mature expert optimization. In fact, for Qwen3-Omni text-to-audio inference, FlashRT reduces response latency by 65% compared to the expert vLLM-Omni implementation on AMD MI355X.
Problem

Research questions and friction points this paper is trying to address.

real-time multimodal applications
model deployment
auto-parallelism
latency optimization
throughput optimization
Innovation

Methods, ideas, or system contributions that make the work stand out.

agent-driven optimization
real-time multimodal serving
chain-of-program
intermediate representation (IR)
measurement-gated optimization
πŸ”Ž Similar Papers