|
This week at a glance
|
|
4
Must-reads
|
6
New papers
|
11
Active fronts
|
This week's theme: Concept-structured search is outperforming brute code mutation across multiple optimization domains.
|
|
Top Priority Papers
6 must-read papers this week (ranked by significance, recency, and impact)
| |
PRIORITY 8.1/10 MUST-READ
2026-03-03 | Fudan University, Shanghai Innovation Institute, Shanghai Academy of AI for Science | 2603.03233
M=8
P=7
I=9
The authors propose a multi-agent framework for scientific code generation that couples an adversarial 'Challenger' (generating difficult test cases) with a 'Solver', governed by a Bayesian update rule. Crucially, they employ Bayesian Optimization with a kernel based on code embeddings (AST + text) to estimate solution quality before running expensive tests, effectively acting as a learned surrogate model. Results on SciCode and ScienceAgentBench are strong, showing small models (Qwen-32B) outperforming GPT-4o when using this loop. The killer feature for us is the surrogate modeling pipeline: we should immediately steal the idea of using GP surrogates on code embeddings to filter candidates in our evolutionary search, potentially reducing our evaluation costs by orders of magnitude.
| |
PRIORITY 7.8/10 MUST-READ
2026-03-03 | University of Minnesota-Twin Cities | 2603.02637
M=8
P=6
I=9
StitchCUDA automates end-to-end GPU program generation using a multi-agent framework, but its core contribution is a training recipe that solves reward hacking in code optimization. They decompose expensive multi-turn agentic RL into single-turn 'atomic skills' (generation vs. refinement) and use GRPO with an LLM-evaluated 'Rubric Reward' (e.g., 'Did you use tiling?') rather than just sparse outcome metrics. This prevents the model from gaming the system (e.g., wrapping PyTorch code) and forces actual optimization behavior. We should steal the atomic skill decomposition to drastically reduce training costs for AlgoEvo and implement Rubric Rewards to fix our process reward models.
| |
PRIORITY 7.3/10 MUST-READ
2026-02-26 | City University of Hong Kong, Southern University of Science and Technology | 2602.23092
M=7
P=9
I=8
This paper integrates LLM-driven evolutionary search into the AILS framework to evolve 'ruin' heuristics for CVRP, employing a Chain-of-Thought 'voting' mechanism to filter out poor heuristics before expensive evaluation. The results are empirically strong: they claim 8 new Best-Known Solutions on the CVRPLib large-scale benchmark, outperforming HGS and AILS-II. Key Takeaway: We should steal the 'acceleration mechanism'—using the LLM to predict heuristic quality via CoT prior to execution—to address the sample efficiency bottleneck in our own evolutionary search loops. This is a direct proof-of-concept that LLM-evolved components can beat hand-crafted SOTA on hard OR instances.
| |
PRIORITY 6.7/10 MUST-READ
2026-03-03 | Tencent Hunyuan, Hong Kong University of Science and Technology | 2603.02681
M=8
P=2
I=9
This paper introduces VisionCreator, an agent trained via 'Virtual Reinforcement Learning' (VRL) where tool outputs and logic are simulated to train long-horizon planning policies without incurring expensive real-world execution costs. They employ a 'Plan-Driven Reward' model (combining LLM-based plan verification with rule-based execution checks) and prove theoretical bounds for the sim-to-real transfer, achieving performance superior to GPT-5 on visual tasks. Key Takeaway: We should steal the VRL architecture for AlgoEvo. By constructing a 'Virtual OR Environment' that simulates code validity and approximate heuristic performance, we can train our evolutionary search policies (RL-infused evolution) at a fraction of the current compute cost, bypassing the bottleneck of running full benchmarks during the search policy optimization phase.
| |
PRIORITY 5.6/10 EMERGING FRONT
2026-02-26 | Alibaba Group, Harbin Institute of Technology, Shenzhen | 2602.23258
M=6
P=7
I=8
Wang et al. propose a test-time 'firewall' for multi-agent systems that intercepts messages and validates them against a retrieved set of error patterns (mined from offline failure trajectories). They achieve ~6% accuracy gains on math benchmarks by iteratively rectifying or pruning erroneous outputs before they propagate. The critical takeaway for our AlgoEvo work is the Failure-Driven Indicator Pool: we should implement a similar module that mines failed code generations to build a repository of 'forbidden patterns,' allowing a lightweight verifier to prune bad mutations before expensive execution. This effectively turns the 'graveyard' of failed runs into a persistent memory that improves sample efficiency.
| |
PRIORITY 5.5/10 EMERGING FRONT
2026-03-03 | Shanghai Jiao Tong University, National University of Singapore | 2603.02885
M=6
P=7
I=7
MuxTune introduces a hierarchical scheduler for multi-tenant PEFT that uses Dynamic Programming to optimally fuse tasks (spatial batching) or interleave them (temporal multiplexing) based on a pipeline cost model. Empirical results on H100s show up to 5x throughput gains over NeMo and S-LoRA, validated by ablation studies. The most stealable insight is their chunk-based data alignment: instead of standard padding or naive packing, they split packed sequences into fixed-size chunks to balance compute efficiency with memory waste—a trick we should immediately implement for batch evaluation in AlgoEvo and our serving optimization models.
|
Research Front Landscape
11 active fronts | 6 new papers
| |
Strategic Risk Aversion and Budget-Aware Optimization for LLM Agent Coordination
EMERGING Density: 1.00 3 papers
Methodsllm_in_the_loop llm_as_heuristic strategic_risk_aversion risk_averse_quantal_response_equilibria policy_optimization
Inst:Caltech 33% · Alibaba Group 33% · Harbin Institute of. 33% · Shenzhen 33%
This front unifies research on enhancing the robustness and efficiency of LLM-based multi-agent systems through formal optimization and strategic design. Key themes include mitigating free-riding and improving partner generalization via strategic risk aversion (SRPO), optimizing resource allocation under budget constraints using Integer Linear Programming (ILP) and Reinforcement Learning (RL) (BAMAS), and reducing error propagation through test-time rectification (AgentDropoutV2). These approaches move beyond heuristic LLM interaction to incorporate principled Operations Research techniques for more reliable and cost-effective agent coordination. Qu et al. (SRPO) introduced Strategically Risk-Averse Policy Optimization, proving it eliminates free-riding equilibria and improves joint accuracy by up to 19% on GSM8K in heterogeneous LLM debates. Wang et al. (AgentDropoutV2) developed a test-time rectify-or-reject pruning framework, achieving up to +7.92% average accuracy on math benchmarks (GSM8K, MATH-500) by leveraging failure-driven indicator pools. Finally, BAMAS (2511.21572) demonstrated significant cost reductions (up to 86% on MBPP) while maintaining or improving accuracy by jointly optimizing LLM selection via ILP and collaboration topology via offline RL. This front is clearly emerging, characterized by novel applications of OR principles (ILP, risk-averse policy optimization, adversarial training) to address fundamental challenges in LLM multi-agent systems. The trajectory suggests a move towards more formally grounded and resource-aware agent designs. The next papers will likely focus on integrating these distinct optimization techniques into unified frameworks, exploring dynamic adaptation of agent structures and budgets, and extending risk-aversion to human-AI collaboration and multi-agent foundation models.
| |
Reflective LLM Architectures for Evolutionary Search and Design
EMERGING Density: 1.00 2 papers
Methodsllm_as_heuristic llm_in_the_loop llm_evolutionary_search llm_as_evaluator multi_agent_llm_framework
Inst:Georgia Institute of. 50% · Korea University 50% · Sogang University 50% · Ewha Womans University 50%
This research front explores the use of Large Language Models (LLMs) to drive evolutionary search and design processes, with a particular emphasis on incorporating sophisticated reflective and memory architectures. Key frameworks include MAESTRO for multi-agent catalyst design and LLM-evolved solvers for online learning contract design, demonstrating LLMs' capacity to generate and refine solutions in complex optimization landscapes. Mok et al. introduced MAESTRO, a multi-agent LLM framework for optimizing single-atom catalysts, employing an "Exploration Report Agent" to synthesize insights. This approach enabled the discovery of catalysts with ORR overpotential below 0.36 V, surpassing historyless baselines. Concurrently, Zhan et al. developed an LLM-based evolutionary framework for contract design, utilizing a hierarchical "verbal gradient" with short-term and long-term reflectors. This method significantly improved teleoperator utility by +16-58% (Seed) and +5-38% (Bandit) in AIGC offloading scenarios. This front is emerging, characterized by novel architectural designs for integrating LLMs into evolutionary algorithms. The trajectory suggests a focus on enhancing the learning and adaptation capabilities of LLM agents through explicit memory and reflection. Future work will likely involve refining these reflective mechanisms, scaling them to more complex real-world problems, and potentially integrating them with advanced LLM training techniques to improve sample efficiency and solution quality.
| |
Multi-Agent LLM Co-Evolution for OR Heuristics and Scientific Code
GROWING Density: 0.40 6 papers
Methodsllm_code_generation llm_as_evaluator llm_as_heuristic multi_agent_system llm_in_the_loop
Inst:City University of. 17% · Southern University of. 17% · Fudan University 17% · Shanghai Innovation Institute 17%
This research front explores advanced LLM integration into sophisticated evolutionary and multi-agent frameworks for automatically designing and optimizing heuristics and code across complex Operations Research problems and scientific tasks. Key frameworks include AILS-AHD for Capacitated Vehicle Routing Problem (CVRP) ruin heuristics, DHEvo for Mixed-Integer Linear Programming (MILP) primal heuristics, BAMF-AI4S for scientific code generation, StitchCUDA for GPU program synthesis, ConstraintLLM for Constraint Programming (CP) modeling, and NetGPT for LLM serving routing. The unifying theme is enhancing the search and generation process itself, moving beyond basic LLM prompting. Key contributions include AILS-AHD achieving 8 new Best-Known Solutions on large-scale CVRP by integrating LLM-driven heuristic design with a Chain-of-Thought 'voting' mechanism for quality prediction. BAMF-AI4S employs a Bayesian adversarial multi-agent framework with surrogate modeling (Gaussian Processes on code embeddings) to improve scientific code generation, enabling smaller models to outperform GPT-4o. StitchCUDA utilizes rubric-based agentic reinforcement learning and 'atomic skill decomposition' for GPU program generation, yielding significant speedups (e.g., 1.72x vs CUDAForge). DHEvo introduces data-algorithm co-evolution for MILP heuristics, outperforming FunSearch by ~60% on Setcover by dynamically filtering training instances. ConstraintLLM fine-tunes a 32B LLM for CP modeling, achieving ~51% accuracy on the IndusCP benchmark using 'constraint-aware retrieval' and iterative self-correction. NetGPT optimizes cloud-edge LLM routing using RL with 'SFT-anchored' updates to maintain JSON schema validity. This front is clearly emerging and rapidly growing, demonstrating novel and effective ways to integrate LLMs into complex optimization and generation loops. Future work will likely focus on generalizing these advanced frameworks (e.g., AHD, DHEvo, BAMF-AI4S, StitchCUDA's RL) to broader problem sets, improving their sample efficiency, and enhancing their robustness to distribution shifts. We anticipate the next papers will explore combining the most promising elements, such as surrogate modeling with dynamic data co-evolution, to further accelerate and stabilize the LLM-driven search for optimal OR heuristics and scientific code.
| |
Game Theory and Multi-Objective Optimization for LLM Alignment and Resource Efficiency
GROWING Density: 0.67 4 papers
Methodsgame_theory llm_as_evaluator multi_objective_optimization convex_optimization gradient_descent
Inst:University of Warwick 25% · University College London 25% · University of Basel 25% · Ulsan National Institute. 25%
This research front leverages advanced Operations Research techniques, particularly game theory and multi-objective optimization, to address critical challenges in Large Language Model (LLM) capabilities. It focuses on enhancing LLM safety alignment, robust controlled decoding, and resource-efficient fine-tuning. Key frameworks explored include the Safety Game for black-box agent alignment, Robust Multi-Objective Decoding (RMOD) for inference-time control, Pareto Multi-Objective Alignment (PAMA) for efficient RLHF, and MuxTune for multi-task PEFT optimization. Specific contributions include the Safety Game's zero-sum formulation, which uses LP solvers to achieve up to two-fold accuracy improvements on SafetyBench by balancing helpfulness and safety. RMOD employs a maximin game and convex optimization for robust multi-objective decoding, yielding +1.2% worst-case reward (WCWR) on Anthropic HH and UltraFeedback. PAMA introduces a computationally efficient convex optimization for multi-objective RLHF, outperforming MORLHF and MGDA-UB in stable convergence on conflicting objectives like harmlessness vs. length. MuxTune demonstrates hierarchical spatial-temporal backbone multiplexing with dynamic programming for multi-task PEFT, achieving up to 5x throughput gains and 5x memory reduction over baselines like NeMo and S-LoRA. This front is actively growing, demonstrating a clear trajectory towards integrating sophisticated OR methodologies into LLM development. The emphasis on robust, multi-objective, and resource-efficient solutions signifies a maturing field moving beyond basic heuristic approaches. Future work will likely focus on extending these frameworks to more complex, dynamic scenarios, such as sequential dialogues, a greater number of objectives, and adaptive resource management in production environments, further solidifying the bridge between OR and AI.
| |
OR-Driven System Optimization for LLM Memory, Parallelism, and Serving
GROWING Density: 0.83 4 papers
Methodsdistributed_training sequence_parallelism resource_allocation load_balancing activation_recomputation
Inst:Peking University 75% · Tencent Inc. 25% · ByteDance Inc. 25% · Beihang University 25%
This research front leverages Operations Research (OR) techniques, specifically Mixed Integer Programming (MIP) and Integer Linear Programming (ILP), to tackle critical efficiency challenges in Large Language Model (LLM) training and inference systems. The unifying theme is the application of exact optimization methods to fine-grained resource management, including activation memory for ultra-long contexts (MEMO), adaptive sequence parallelism (FlexSP), balanced expert placement for Mixture-of-Experts (MoE) serving (MoETuner), and KV-cache storage bandwidth optimization for agentic inference (DualPath). Key contributions include MEMO's bi-level MIP achieving 1.97x MFU improvement in Megatron-LM for 1M context LLM training. FlexSP employs MILP and dynamic programming for adaptive sequence parallelism, yielding up to 1.98x speedup over Megatron-LM. MoETuner utilizes ILP for expert clustering and assignment, demonstrating a 17.5% end-to-end speedup on multi-node H200 clusters for MoE serving. DualPath introduces a novel dual-path KV-Cache loading architecture with CNIC-centric traffic management, improving throughput by up to 1.96x for agentic LLM inference. This front is rapidly emerging, showcasing the significant impact of formal OR methods on complex LLM system optimization. The consistent use of exact solvers (MIP/ILP) to address low-level system bottlenecks, often by reducing problem granularity or exploiting stable dependencies, indicates a maturing approach. The next papers will likely focus on integrating these disparate OR-based optimizations into holistic, dynamic resource management frameworks that adapt to changing workloads and heterogeneous hardware, potentially incorporating approximate OR methods for real-time decision making.
| |
ILP/MILP for Distributed and Heterogeneous LLM Serving Optimization
STABLE Density: 0.60 11 papers
Methodsinteger_linear_programming pipeline_parallelism data_parallelism tensor_parallelism performance_modeling
Inst:University of Cambridge 27% · Peking University 18% · Purdue University 18% · Indian Institute of. 18%
This research front focuses on applying Integer Linear Programming (ILP) and Mixed-Integer Linear Programming (MILP) to optimize complex resource allocation problems in Large Language Model (LLM) serving and GPU scheduling. Papers explore diverse challenges such as disaggregated serving (Dynamo), carbon-aware caching (GreenCache), cascade serving (Cascadia), geographically distributed inference (PETALS), temporal-aware GPU allocation (TORTA), heterogeneous edge networks (Zhu et al.), dynamic Multi-Instance GPU (MIG) reconfiguration (MIGRator), forecast-aware autoscaling (SageServe), cost-efficient serving on heterogeneous GPUs (Jiang et al.), max-flow based serving (Helix), and MoE expert placement (ILPLoad). The unifying theme is leveraging exact Operations Research methods to achieve optimal or near-optimal solutions for NP-hard problems in LLM infrastructure. Key contributions include novel ILP/MILP formulations for joint optimization of deployment, routing, and resource partitioning. For instance, Dynamo achieved 67-340% SLO attainment improvement for multi-round inference, while GreenCache demonstrated ~15% carbon reduction via dynamic KV cache resizing. CASCADIA showed up to 3.3x higher throughput for cascade serving, and PETALS-based heuristics reduced inference time by 60-80% for distributed LLMs. TORTA, a hybrid RL-OT approach, reduced latency by ~15% for temporal-aware GPU allocation. MIGRator improved GPU Goodput by ~20% through dynamic MIG reconfiguration, and SageServe achieved 25% GPU-hour savings for forecast-aware autoscaling. Helix's max-flow MILP for heterogeneous clusters yielded up to 3.3x decode throughput. This front is maturing rapidly, with a strong emphasis on practical, deployable solutions for real-world LLM serving challenges. The consistent use of ILP/MILP across various sub-problems indicates a convergence towards formal optimization as a standard for LLM infrastructure. The next wave of papers will likely focus on scaling these exact OR methods to even larger clusters, integrating them with dynamic online scheduling, and addressing the computational overhead of MILP solvers through advanced heuristics, decomposition, or hybrid RL-OR approaches. There's also a clear trajectory towards incorporating more complex objectives like energy efficiency and multi-tenancy with diverse SLAs.
| |
OR-Driven LLM Inference Scheduling and Automated Optimization
STABLE Density: 0.46 8 papers
Methodssupervised_fine_tuning queueing_theory reinforcement_learning llm_code_generation llm_fine_tuned
Inst:Massachusetts Institute of. 25% · Columbia University 25% · Shanghai Jiao Tong. 25% · Beijing Academy of. 12%
This research front integrates Operations Research (OR) methodologies with Large Language Models (LLMs) across two primary areas: optimizing LLM inference scheduling and automating the modeling and solving of OR problems. For inference, papers leverage fluid dynamics approximation, queueing-theoretic frameworks, staggered batch scheduling, and online scheduling algorithms like Nested WAIT, Justitia, and MC-SF to enhance throughput, reduce latency, and ensure fairness under memory constraints. For automated OR, frameworks like OR-Instruct and OR-R1 (using TGRPO) enable LLMs to generate optimization models and solve OR problems, while EE-CPO applies Linear Programming to optimize LLM supervised fine-tuning data. Key contributions include Paper [2]'s Nested WAIT algorithm for multi-stage online scheduling, providing asymptotic optimality proofs and outperforming vLLM and Sarathi. Paper [3] introduces Staggered Batch Scheduling (SBS), reducing Time-to-First-Token (TTFT) by 30-40% and increasing throughput by 15-20% on DeepSeek-V3. Justitia [6] achieves 60% lower average job completion time using a KV token-time cost metric, while Paper [7] provides a queueing-theoretic framework proving work-conserving algorithms are throughput-optimal. MC-SF [8] achieves near-optimal performance (within 5% of hindsight optimal) for KV cache constrained scheduling. On the OR automation side, ORLM [5] (fine-tuned with OR-Instruct) outperforms GPT-4 on the IndustryOR benchmark by up to 38.4%, and OR-R1 [4], using Test-Time Group Relative Policy Optimization (TGRPO), improves average accuracy by 7.6% over LLMOPT with 1/10th of the training data. EE-CPO [1] optimizes SFT instruction sets, improving AlpacaEval 2.0 by +1.73 over DEITA. This front is maturing rapidly, with a strong emphasis on rigorous OR formulations and empirical validation for LLM inference scheduling, directly impacting practical systems. The automated OR modeling aspect is also establishing new benchmarks and data-efficient training methods. The likely next papers will focus on extending these OR techniques to distributed GPU clusters and more complex LLM architectures, potentially integrating LLM-generated OR models to dynamically optimize LLM serving infrastructure.
| |
Optimal Resource Allocation and Policy Optimization for LLM Inference and Reasoning
STABLE Density: 0.36 8 papers
Methodsllm_in_the_loop resource_allocation llm_as_heuristic process_reward_model reinforcement_learning_with_verifiable_rewards
Inst:Meituan 12% · Tsinghua University 12% · Fudan University 12% · Peking University 12%
This front unifies research applying advanced Operations Research (OR) and Reinforcement Learning (RL) techniques to optimize various aspects of Large Language Model (LLM) operations. Key themes include efficient resource allocation for LLM inference and serving, and policy optimization for LLM reasoning tasks. Frameworks like DynaMO, PROBE, ETS, GoodSpeed, and DORA leverage OR/RL principles to enhance performance, often by integrating solvers or adaptive mechanisms directly into the LLM pipeline. Contributions include DynaMO's dual-pronged GRPO optimization for LLM reasoning, achieving +11.8% Pass@1 on Qwen2.5-Math-7B. PROBE introduces Continuous Lookahead Pipelining for MoE inference, yielding 1.32x speedup in prefill latency and 1.26x higher decoding throughput. ETS uses an ILP cost model for tree search, reducing KV cache by 1.8x and increasing throughput by 1.4x on MATH500. Bayesian adaptive sampling (Best-of-Infinity) reduces test-time compute by 2-5x for LLM ensembles, while GoodSpeed optimizes fair goodput in distributed edge inference using gradient-based scheduling. DORA improves MATH500 accuracy with 3.5x fewer FLOPs via embedding-based resource allocation. Ao et al. (Solver-in-the-Loop) use GRPO with solver diagnostics (IIS reduction) as dense rewards, achieving 95.3% recovery rate in OR model debugging. This front is rapidly emerging, characterized by a strong emphasis on integrating sophisticated OR/RL methodologies directly into LLM systems. The trajectory indicates a shift from heuristic-based optimizations to theoretically grounded, solver-in-the-loop approaches. The next wave of papers will likely focus on extending these integrated OR/RL frameworks to more complex, multi-objective LLM optimization problems, incorporating real-time feedback loops, and developing more generalized process reward models from diverse solver diagnostics.
| |
MIP, Queueing, and Heuristic Scheduling for Heterogeneous LLM Systems
STABLE Density: 0.57 7 papers
Methodscontinuous_batching mixed_integer_programming heuristic_search graph_partitioning load_balancing
Inst:Huawei 29% · The Hong Kong. 29% · Microsoft Research 14% · University of Pennsylvania 14%
This research front focuses on applying advanced Operations Research (OR) techniques, including Mixed-Integer Programming (MIP), stochastic control, queueing theory, and multi-level heuristic search, to optimize the scheduling and resource allocation for Large Language Model (LLM) inference, training, and Reinforcement Learning from Human Feedback (RLHF) workflows. A key unifying theme is addressing the complex challenges posed by heterogeneous hardware, dynamic workloads, and specific LLM architectures like early-exit models and Mixture-of-Experts (MoE). Key contributions include She et al.'s [2] MIP formulation for operator-level parallelism planning, which reduced pipeline bubbles by 50% for DeepSeek V3. Pang et al. [5] proposed a hybrid offline-online MIP approach for LLM inference, improving utilization by ~9% and reducing total inference time by 10.42s over vLLM. Lin et al. [6] developed an asymptotically optimal "Gate-and-Route" stochastic control policy for prefill-decode contention, derived from a fluid LP. Bari et al. [7] introduced RAD/SLAI schedulers, achieving a 53% reduction in median Time-to-First-Token (TTFT) and a 26% capacity increase over Sarathi-Serve by optimizing GeMM tiling and dynamic resource allocation. Other notable works include DREX [1] for dynamic rebatching in early-exit LLMs (2-12% throughput gain) and FinDEP [3] for fine-grained MoE inference scheduling (up to 1.61x throughput improvement). HetRL [4] applied a multi-level search framework (Successive Halving + Genetic Algorithm) for RLHF scheduling in heterogeneous environments, demonstrating 3-9x throughput gains over 'verl'. This front is rapidly emerging and maturing, driven by the increasing scale and complexity of LLM deployments. The trajectory indicates a strong shift towards rigorous OR formulations for optimal or near-optimal solutions, moving beyond ad-hoc heuristics. The next generation of papers will likely focus on integrating these diverse OR approaches into unified, adaptive frameworks that can handle dynamic, heterogeneous, and uncertain LLM workloads, potentially exploring multi-objective optimization (e.g., throughput, latency, cost, energy efficiency) and real-time policy adaptation.
| |
Mixture Compressor Framework for MoE LLM Quantization and Pruning
STABLE Density: 1.00 2 papers
Methodspost_training_quantization mixed_precision_quantization linear_programming gptq expert_quantization
Inst:The University of. 100% · Beihang University 100% · The Chinese University. 50% · Centre for Perceptual. 50%
This research front centers on the "Mixture Compressor" (MC, MC#) framework, which leverages Operations Research techniques, specifically Linear and Integer Programming, for the extreme compression of Mixture-of-Experts (MoE) Large Language Models. The core unifying theme is the optimal allocation of mixed bit-widths and dynamic expert pruning to significantly reduce model size and improve inference efficiency while maintaining high accuracy. Key contributions include the initial MC framework by Huang et al. (2025), which introduced a hybrid post-training quantization and dynamic pruning approach for MoE-LLMs. This method used Linear Programming to optimally allocate mixed bit-widths (1-3 bits) to experts, achieving a ~16GB compression for Mixtral 8x7b with only a ~4% drop in zero-shot accuracy, outperforming uniform quantization. Building on this, MC# (Huang et al., 2025) unified static mixed-precision quantization with dynamic expert pruning, formulating bit-width allocation as an Integer Linear Programming problem and employing a Gumbel-Softmax router for dynamic pruning. MC# achieved a 6.2x weight reduction on DeepSeek-VL2 with less than 2% accuracy loss. This front appears to be maturing, with MC# directly extending the initial MC framework, indicating a clear progression and refinement of the core ideas. The trajectory suggests continued development in OR-driven compression for MoE and Vision-Language Models. The next paper will likely focus on addressing current limitations, such as performance on complex reasoning tasks and adaptation to diverse hardware, potentially integrating more sophisticated OR techniques or exploring the dynamic routing mechanism further.
| |
MIP-Driven LLM Architecture Optimization and Rate-Distortion Prompt Compression
STABLE Density: 1.00 2 papers
Methodsneural_architecture_search knowledge_distillation blockwise_local_distillation global_knowledge_distillation mixed_integer_programming
Inst:NVIDIA 50% · UT Austin 50% · EPFL 50%
This front explores advanced Operations Research techniques to enhance Large Language Model (LLM) efficiency, focusing on both architectural optimization and input context management. It features the `Puzzle` framework, which employs `Mixed-Integer Programming` (MIP) for hardware-aware `neural architecture search`, and a `rate-distortion theory` framework for `prompt compression`. Bercovich et al.'s `Puzzle` framework pioneers `blockwise local knowledge distillation` and `MIP-based architecture search` to optimize LLMs for inference. It compressed Llama-70B to 51B, achieving a 2.17x inference throughput speedup on a single H100 while retaining 98.4% accuracy on benchmarks like Winogrande and MMLU. Nagle et al. formalized `prompt compression` as a `rate-distortion problem`, deriving theoretical limits via a `dual linear program`. Their `Adaptive QuerySelect` method, which uses a `query-aware, variable-rate token classification`, significantly outperforms baselines like `LLMLingua-2` on synthetic and natural language datasets by reducing the gap to the theoretical compression limit. This front appears to be emerging, showcasing novel applications of OR to fundamental LLM challenges. The `Puzzle` framework demonstrates the power of decomposed search strategies, replacing expensive end-to-end evaluations with local proxy scores and global MIP solvers. The `rate-distortion` work highlights the importance of `variable-rate compression` for optimal context utilization. Future work will likely integrate these insights, perhaps by developing hardware-aware prompt compression techniques or extending architectural search to include multimodal capabilities and specific reasoning tasks.
|
Cross-Front Bridge Papers
2 papers connecting multiple research fronts
| |
TRUE SYNTHESIS Front 31 → Front 4
2025-02-10 · 2502.06643
Go et al. formulate the MoE expert placement problem as a two-stage Integer Linear Program (ILP) to balance token load and minimize communication tail latency, exploiting stable token routing dependen...
| |
TRUE SYNTHESIS Front 17 → Front 4
2025-12-25 · 2512.21487
FinDEP optimizes distributed Mixture-of-Experts (MoE) inference by partitioning tasks (attention, experts, communication) into fine-grained micro-batches and solving a scheduling problem to maximize o...
|
Framework Genealogy
Tracking research lineages and framework evolution
|
54 frameworks tracked · 52 root frameworks · 17 active (last 30 days)
Framework landscape (size = paper count, color = must-read ratio)
eoh (2 papers, 2 must-read) • grpo (2 papers, 2 must-read) • sarathi_serve (2 papers, 2 must-read) • rebase (2 papers, 2 must-read) • megatron_lm (2 papers, 1 must-read) • muxtune (1 papers, 0 must-read) • bayesian_adversarial_multi_agent_framework (1 papers, 1 must-read) • cudaforge (1 papers, 1 must-read) • autogen (1 papers, 0 must-read) • sampo (1 papers, 1 must-read)
■ Active + Must-read
■ Active
■ Inactive + Must-read
■ Inactive
|
|