paper-with-me

Papers

LiteCoOp: Lightweight Multi-LLM Shared-Tree Reasoning for Model-Serving Compiler Optimizations

2026-02-02 · Annabelle Sujun Tang, Christopher Priebe, Lianhui Qin, Hadi Esmaeilzadeh arxiv

LLM-guided compiler optimization has recently shown promise, but existing approaches rely on a single large LLM throughout search, making them expensive and excluding smaller models. We pose the research question: whether heterogeneous LLMs can collaborate during compiler optimization while reducing compilation cost below optimization guided by a single large LLM. Crucially, this must be achieved without introducing overhead from agentic frameworks, which would run counter to the goal of lower compilation cost. To achieve these competing objectives, we introduce LiteCoOp, a lightweight framework that turns the optimization search tree itself into the mechanism for multi-LLM collaboration, enabling heterogeneous models to share progress without external agentic coordination. At each optimization step, LiteCoOp queries one LLM to propose both a compiler transformation and select the LLM to query at the next step. These LLM proposals are recorded in a shared MCTS tree, so all models are invoked serially and yet are informed by each other's decisions. The shared MCTS backpropagates the rewards, allowing progress made by one model to influence later decisions by others. This makes the MCTS tree the collaborative reasoning mechanism itself, avoiding inter-model communication, heavy reasoning traces, or agentic infrastructure. We instantiate this idea with an LLM-aware UCT that biases model selection toward smaller LLMs to reduce cost while still preserving the compiler performance objective. Across diverse GPU and (CPU) benchmarks, LiteCoOp consistently outperforms single-model baselines, with the best results obtained when scaling collaboration to eight heterogeneous LLMs. This eight-model config reduces total compilation time by 1.95x (1.74x), reduces API cost by 4.47x (4.32x), and invokes the largest model for only 23.1% (23.9%) of total calls while demonstrating collaboration scalability.

📄 PDF Abstract BibTeX arXiv:2602.01935

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

A Fast and Lightweight System for Multilingual Dependency Parsing

2017-08-01 · CONLL 2017 8 · Tao Ji, Yuanbin Wu, Man Lan

We present a multilingual dependency parser with a bidirectional-LSTM (BiLSTM) feature extractor and a multi-layer perceptron (MLP) classifier. We trained our transition-based projective parser in UD version 2.0 datasets…

Dependency Parsing

TreeGraft: Adaptive Multi-Drafter Grafting for Tree-Based Speculative Decoding

2026-05-28 · Jiaming Fan, Daming Cao, Canchen Huang, Jiale Fu 외 arxiv

Speculative decoding accelerates large language model inference through a draft-then-verify paradigm. Building on this, tree-structured methods improve inference by organizing proposals into multiple candidate paths, inc…

DeFT: Decoding with Flash Tree-attention for Efficient Tree-structured LLM Inference

2024-03-30 · Jinwei Yao, Kaiqi Chen, Kexun Zhang, Jiaxuan You 외

Large language models (LLMs) are increasingly employed for complex tasks that process multiple generation calls in a tree structure with shared prefixes of tokens, including few-shot prompting, multi-step reasoning, spec…

GPU

Chopping Trees: Semantic Similarity Based Dynamic Pruning for Tree-of-Thought Reasoning

2025-10-30 · Joongho Kim, Xirui Huang, Zarreen Reza, Gabriel Grand arxiv

Tree-of-Thought (ToT) reasoning boosts the problem-solving abilities of Large Language Models (LLMs) but is computationally expensive due to semantic redundancy, where distinct branches explore equivalent reasoning paths…

Semantic Similarity

ScaleToT: Generalizing Structured LLM Reasoning for Billion-Scale Low-Activity User Modeling

2026-06-23 · Tianbao Ma, Chang Xi, Yichuan Zou, Chengen Li 외 arxiv

Accurate user modeling often depends on rich interaction histories, which are unavailable for billions of low-activity users. Large Language Models (LLMs) can infer latent user states from static profiles, but this reaso…