A Two-Tier Perspective on Inference-Time Parallelism in Multi-Agent LLM Systems

TL;DR

Proposes TIPEX, combining replica and structural parallelism, achieving up to 57% accuracy and 40% latency reduction in multi-agent LLM inference.

cs.MA 🔴 Advanced 2026-08-06 57 views
Zihan Xu Haolin Tian Hai Jiang
large language models multi-agent systems inference parallelism system architecture efficiency

Key Findings

Methodology

This work models inference-time parallelism in multi-agent LLM systems as two hierarchical decision layers: Replica Parallelism explores multiple complete solution paths to enhance robustness, using strategies like Random Isomorphic Generation (RIG) and Orthogonal Heterogeneous Generation (OHG). Structural Parallelism operates within each solution, dynamically constructing dependency graphs (DAGs) to schedule agent and tool calls concurrently, employing balanced and aggressive strategies. The TIPEX framework unifies these layers under a common scheduling mechanism, enabling systematic strategy comparison, resource allocation, and candidate evaluation via LLM-based judges. Experiments on GAIA benchmark demonstrate significant improvements in accuracy (up to 57%) and latency reduction (up to 40%) at the cost of increased token consumption, validating the effectiveness of the hierarchical parallelism approach.

Key Results

  • On GAIA tasks, the combined OHG+TKS strategy boosts Level 1 accuracy from 43.2% to 56.5%, reduces latency by ~20%, and increases token use by 75%. Level 2 accuracy rises from 25.8% to 38.7%, with latency dropping ~30%. Level 3 accuracy improves from 9.2% to 11.5%, latency significantly decreases. The synergy of multi-path exploration and DAG scheduling is most effective on medium-difficulty tasks.
  • Different strategy combinations show notable performance differences. OHG+TKS balances accuracy and efficiency better than others. Overly aggressive parallelism (AP) can harm accuracy on complex tasks, highlighting the importance of strategy tuning.
  • Ablation studies confirm that replica parallelism improves accuracy, while structural parallelism reduces latency. The judge's accuracy critically influences final results, emphasizing the importance of reliable evaluation mechanisms.

Significance

This research systematically analyzes hierarchical parallelism in multi-agent LLM inference, providing a foundational framework to improve efficiency and robustness. By unifying multi-path exploration with intra-path scheduling, it addresses the bottleneck of serial reasoning, enabling real-time, high-accuracy applications in complex scenarios. The framework's flexibility supports diverse strategies, paving the way for scalable, efficient multi-agent AI systems in industry and academia, especially in latency-sensitive tasks like customer service, automated reasoning, and decision support.

Technical Contribution

The paper introduces a hierarchical decision-making framework, TIPEX, integrating replica and structural parallelism. It innovates with multi-strategy generation, dynamic DAG-based scheduling, and a discriminator-based candidate selection, offering a comprehensive solution for resource-aware, multi-layered inference optimization. Unlike prior isolated approaches, TIPEX enables coordinated multi-strategy tuning, yielding significant gains in accuracy, latency, and resource utilization, with strong extensibility for future multi-modal, multi-task systems.

Novelty

This is the first systematic integration of replica and structural parallelism within a unified, controllable framework for multi-agent LLM inference. It departs from prior work that focused on single-layer or isolated parallel strategies, emphasizing their combined, dynamic orchestration. The multi-strategy candidate synthesis and DAG scheduling are novel contributions, enabling flexible, scalable, and efficient multi-path exploration and intra-path concurrency, marking a significant advancement in hierarchical inference optimization.

Limitations

  • Despite improvements, the framework still faces accuracy challenges in highly complex or ambiguous tasks, primarily due to limitations in the judge mechanism and strategy tuning. Token consumption increases substantially, raising deployment costs. The current design's generalization to multi-modal or multi-task scenarios remains unverified, requiring further adaptation and validation. Moreover, the computational overhead of dynamic scheduling and candidate evaluation may limit real-time deployment in resource-constrained environments.

Future Work

Future directions include enhancing judge reliability with multi-modal feedback, optimizing token efficiency, and extending the framework to multi-modal, multi-task settings. Developing adaptive, self-tuning strategies for resource allocation and exploring hardware-aware scheduling can further improve scalability. Additionally, integrating reinforcement learning to dynamically adjust strategies based on task complexity and system feedback will be pursued to realize more autonomous, efficient multi-agent inference systems.

AI Executive Summary

The rapid growth of large language models (LLMs) has revolutionized AI, yet their inference process remains a bottleneck due to serial execution, especially in multi-agent systems tackling complex tasks. Traditional approaches, relying on sequential calls, suffer from long latency and high resource consumption, limiting real-world deployment. To address this, the paper introduces TIPEX, a hierarchical framework that unifies two levels of inference-time parallelism: replica parallelism, which explores multiple solution paths simultaneously, and structural parallelism, which schedules agent and tool calls within each path concurrently.

Replica parallelism enhances robustness and accuracy by generating diverse hypotheses through strategies like Random Isomorphic Generation (RIG) and Orthogonal Heterogeneous Generation (OHG). Structural parallelism reduces latency by dynamically constructing dependency graphs (DAGs) and scheduling tasks in parallel, employing balanced and aggressive strategies. The framework integrates these layers under a common control mechanism, enabling flexible strategy combinations and systematic evaluation.

Empirical results on the GAIA benchmark demonstrate that TIPEX significantly improves inference accuracy—up to 57% on Level 1 tasks—and reduces latency by up to 40%. The combination of multi-path exploration and intra-path scheduling proves most effective on medium-difficulty tasks, where it balances resource use and performance. Ablation studies confirm the complementary roles of the two parallelism levels, while the judge mechanism's accuracy remains critical for optimal results.

This work advances the understanding of hierarchical inference optimization, providing a scalable, flexible framework that can be adapted to diverse multi-modal, multi-task scenarios. It opens pathways for deploying high-performance multi-agent AI systems in real-time, resource-constrained environments, with broad implications for industry and research. Future efforts will focus on improving judge reliability, reducing token costs, and extending applicability across modalities and tasks.

Deep Analysis

Background

近年来,随着GPT-4、PaLM等大模型的崛起,推动了多智能体系统的发展。这些系统通过角色分工、工具调用和协作推理,支持复杂任务的解决。早期研究如CAMEL、AutoGen、MetaGPT,强调角色合作和系统组织,但在推理效率方面仍受串行限制。现有多路径探索和任务图调度虽取得一定进展,但缺乏系统性整合,难以充分发挥多层次资源调度潜力,亟需新架构提升效率。

Core Problem

多智能体大模型在推理中存在严重延迟和资源浪费问题。串行调用导致长时间等待,难以满足实时需求。不同并行策略各有优缺点,缺乏统一调度框架,导致资源利用率低、性能不稳定。如何在保证准确性的同时,优化多路径探索与任务调度的协同,是当前亟待解决的核心难题。

Innovation

本文提出TIPEX,首次系统性融合复制与结构两层并行机制,形成统一调度框架。创新点包括:• 多策略生成(RIG与OHG)提升多样性;• 动态构建依赖图(DAG)实现任务调度;• 判别式候选筛选(LLM judge)优化最终选择。这些创新实现多层次资源调度的协同优化,显著提升推理效率与鲁棒性,突破串行瓶颈。

Methodology

  • �� 输入用户查询,采用随机同构(RIG)或正交异构(OHG)策略生成多路径候选;• 每个路径作为独立解决方案,利用LLM进行推理,生成答案和执行轨迹;• 构建动态依赖图(DAG),调度agent和工具调用,采用平衡或激进策略实现任务并行;• 利用判别器筛选候选答案,结合多路径结果优化输出;• 调节多策略参数,实现准确性与延时的平衡。

Experiments

在GAIA基准上,涵盖信息检索、多模态推理、代码执行等任务,分三级难度。对比单路径基线Magnetic-One,评估准确率、延时和Token消耗。参数设置包括:复制路径数n=3,策略为OHG+TKS。多次重复确保结果稳定,分析不同策略组合的性能差异,验证框架的普适性和优越性。

Results

TIPEX在GAIA任务中表现优异,最高准确率达57%,延时降低40%,Token消耗增加75%。中等难度任务(Level 2)中,延时由320秒降至170秒,准确率由25.8%升至38.7%。策略组合OHG+TKS在准确性和效率间取得最佳平衡,验证多路径探索与任务调度的协同效果。消融实验确认,两层机制相辅相成,judge机制的性能直接影响最终效果。

Applications

该框架适用于需要高准确率和低延时的多智能体应用场景,如智能客服、自动问答、复杂决策支持。部署前需配置多路径生成策略和调度参数,结合高性能硬件和优化的判别机制,可显著提升系统响应速度和鲁棒性。未来可扩展到多模态、多任务环境,推动工业智能化升级。

Limitations & Outlook

模型在极端复杂任务中仍存在准确率不足的问题,主要由于judge机制的局限性和策略调优空间有限。Token消耗较大,成本较高,限制实际应用。多模态、多任务场景的适应性尚未充分验证,未来需优化调度策略和判别机制,提升通用性和效率。

Plain Language Accessible to non-experts

想象你在厨房里做饭,厨师(模型)需要准备一道复杂的菜肴。传统做法是厨师逐步按照食谱操作,一步步完成,效率较低。现在,有两个改进:一是让多个厨师同时尝试不同的食谱(复制并行),这样可以找到最好的做法;二是在一个厨师手中,将菜肴拆分成多个部分,分别同时烹饪(结构并行),大大缩短时间。这两个策略结合使用,厨房效率提升了不少,但也需要更多食材和人力。这个比喻类似于论文中的多路径探索和任务调度,目标是让复杂的“菜肴”更快、更好地完成。

ELI14 Explained like you're 14

你可以想象你在学校做一个大项目。以前,你一个人慢慢做,每次只做一部分,花很长时间。现在,你请几个朋友帮忙,每个人同时做不同的部分,最后合在一起。这就像复制路径,让你可以多试几种方案,看哪个最好。还有一种办法,是把任务拆开,比如一人负责画图,一人写文字,大家同时工作,节省时间。这两种方法结合起来,就能更快完成大项目,但也需要更多的准备和协调。论文里的研究就是用类似的方法,让AI模型更快、更准确地完成复杂任务。

Abstract

Large language model (LLM)-driven multi-agent systems typically require multiple model invocations and complex coordination during inference, and their execution strategies directly affect system accuracy, latency, and computational cost. Parallel execution provides a means to improve inference-time efficiency. From the perspective of inference-time execution, this paper models parallelism in multi-agent systems as two distinct levels of decision processes: Replica Parallelism, which explores multiple complete solution paths at the task level, and Structural Parallelism, which enables concurrent execution within a single solution path through task decomposition. However, the roles of different forms of parallelism and their interrelationships still lack systematic study in terms of unified organization and coordination. We therefore propose TIPEX, a controllable execution framework that unifies these two levels of parallelism and coordinates their roles within the inference process under a unified execution semantics while supporting systematic combinations and analyses of different parallel strategies and parameter configurations. Systematic experiments on the GAIA benchmark demonstrate that inference-time parallelism can significantly improve accuracy and reduce end-to-end latency at the cost of increased token consumption. Further analysis shows that Replica and Structural Parallelism exhibit complementary effects across task complexities, with tasks of intermediate difficulty benefiting most from their coordination, while overly aggressive parallel strategies do not necessarily yield better performance.

cs.MA cs.AI