|
This week at a glance
|
|
3
Must-reads
|
4
New papers
|
9
Active fronts
|
This week's theme: Concept-structured search is outperforming brute code mutation across multiple optimization domains.
|
|
Top Priority Papers
4 must-read papers this week (ranked by significance, recency, and impact)
| |
PRIORITY 8.1/10 MUST-READ
2026-02-22 | Meituan, Tsinghua University, Fudan University, Peking University | 2602.19208
M=8
P=7
I=9
DynaMO introduces a dual-pronged optimization for RLVR: a dynamic rollout allocation strategy that prioritizes problems with high gradient variance (proxied by Bernoulli variance of success/failure), and a gradient modulation technique to stabilize updates. The results are strong (+11.8% Pass@1 over GRPO on Qwen-7B) and backed by clear ablations. The critical takeaway for us is the allocation logic: we should immediately replace uniform sampling in AlgoEvo with variance-based allocation ($n_i \propto \sqrt{p(1-p)}$). This ensures compute is spent on instances/components that are currently 'learnable' (high variance) rather than wasted on the trivial or impossible, directly optimizing our search budget.
| |
PRIORITY 7.8/10 MUST-READ
2026-02-19 | Shanghai Jiao Tong University, Meituan | 2602.17100
M=8
P=7
I=9
AgentConductor trains an LLM orchestrator via GRPO to dynamically generate and refine layered DAG interaction topologies (output as YAML) for code generation, optimizing for both correctness and token efficiency. The key innovation is a multi-objective reward that combines execution correctness with a 'difficulty-aware density penalty,' forcing the model to learn a policy that scales graph complexity with task hardness. Results are strong, showing ~14% gains on APPS while reducing token costs. We should immediately steal the YAML-based topology action space and the density-aware reward formulation to implement RL-driven structure optimization in AlgoEvo and MASPRM, replacing our static or hand-tuned interaction graphs.
| |
PRIORITY 7.6/10 MUST-READ
2026-02-18 | Korea National Open University | 2602.16873
M=7
P=8
I=8
AdaptOrch introduces a control layer that dynamically routes tasks to one of four agent topologies (Parallel, Sequential, Hierarchical, Hybrid) by analyzing the task's dependency graph properties (parallelism width, coupling density). The results are strong and credible, showing a 9.8% improvement on SWE-bench over single-model baselines and significantly outperforming static multi-agent architectures like standard MoA. The most valuable takeaway is the Topology Routing Algorithm: a linear-time heuristic that maps DAG structure to optimal agent coordination patterns. We should adapt this for AlgoEvo to automatically parallelize search on loosely coupled code components while forcing sequential reasoning on critical paths, potentially improving our sample efficiency and cost scaling.
| |
PRIORITY 5.1/10
M=7
P=5
I=7
Shi et al. introduce APEMO, a runtime orchestration layer that monitors agent trajectories for behavioral instability (e.g., repetition, drift) and dynamically reallocates a fixed compute budget to 'repair' these segments rather than spreading compute uniformly. The results are statistically rigorous, using bootstrap CIs to demonstrate significant improvements in trajectory robustness and completion rates without model retraining. Key Takeaway: We should steal the 'precision repair' logic: instead of uniform sampling in AlgoEvo, we can implement a 'stagnation detector' that triggers deeper inference or multi-agent debate only when the search gets stuck in local optima. This directly addresses our sample efficiency and resource allocation goals.
|
Research Front Landscape
9 active fronts | 4 new papers
| |
Integer Programming for Megatron-LM and DeepSpeed LLM System Optimization
EMERGING Density: 1.00 3 papers
Methodsresource_allocation distributed_training sequence_parallelism integer_linear_programming load_balancing
Inst:Peking University 67% · Georgia Institute of. 33% · Tencent Inc. 33% · ByteDance Inc. 33%
This research front unifies papers applying Integer Linear Programming (ILP) and Mixed Integer Programming (MIP) to optimize various aspects of large language model (LLM) distributed training and serving. The core theme is leveraging formal Operations Research (OR) methods to achieve significant performance gains in complex LLM systems, specifically within frameworks like Megatron-LM and DeepSpeed. These papers demonstrate that static and bi-level optimization strategies can effectively address challenges such as MoE expert placement, fine-grained memory management for long contexts, and adaptive sequence parallelism. Key contributions include MoETuner, which uses ILP for balanced MoE expert placement and token routing, achieving up to 17.5% speedup on multi-node H200 clusters. MEMO introduces a bi-level MIP approach for fine-grained activation memory management, enabling 7B LLM training with 1M context on 8 GPUs and yielding a 1.97x MFU improvement. FlexSP employs MILP and dynamic programming for adaptive sequence parallelism, resulting in up to 1.98x speedup on A100 clusters by optimizing for varied-length sequences. All papers validate their approaches with concrete system measurements and benchmarks, proving the practical efficacy of OR solvers in real-world LLM infrastructure. This front is clearly emerging, with all papers published in 2025, indicating a nascent but impactful trend of applying OR to LLM system optimization. The trajectory suggests a rapid expansion of these techniques to more complex, dynamic, and integrated optimization problems within distributed AI systems. The next papers will likely focus on integrating these specific OR formulations across different parallelism strategies and developing more scalable, potentially hybrid, optimization approaches.
| |
OR-Driven LLM Optimization: Rate-Distortion Prompt Compression and NAS
EMERGING Density: 1.00 2 papers
Methodsrate_distortion_theory linear_programming dual_linear_program geometric_algorithm token_classification
Inst:UT Austin 50% · EPFL 50% · NVIDIA 50%
This front explores advanced Operations Research techniques, specifically rate-distortion theory formalized as linear programming and Mixed-Integer Programming (MIP), to optimize Large Language Models (LLMs) for efficiency. The core theme revolves around applying rigorous mathematical optimization to two distinct yet critical aspects of LLM deployment: prompt compression and neural architecture search for inference optimization. Key contributions include Nagle et al.'s 'Adaptive QuerySelect,' a variable-rate prompt compression method derived from a rate-distortion framework. This method significantly outperforms fixed-rate baselines like LLMLingua-2 on synthetic and natural language datasets, demonstrating the importance of query-aware compression. Bercovich et al.'s 'Puzzle' framework utilizes decomposed Neural Architecture Search (NAS) with blockwise local knowledge distillation and MIP to optimize LLM architectures for specific hardware. Puzzle achieved a 2.17x inference throughput speedup for Llama-3.1-70B-Instruct (Nemotron-51B) while retaining 98.4% accuracy on benchmarks like Winogrande and MMLU, outperforming pruning methods. This front is clearly emerging, showcasing novel applications of established OR paradigms to LLM challenges. The trajectory suggests a move towards more mathematically rigorous and hardware-aware optimization for LLMs. The next papers will likely focus on integrating these distinct optimization strategies, perhaps by developing unified frameworks that consider both prompt efficiency and model architecture concurrently, or by extending these methods to other LLM lifecycle stages like training or fine-tuning.
| |
DHEvo and ConstraintLLM: LLM-Guided Heuristic Evolution and Structural CP Modeling
EMERGING Density: 1.00 2 papers
Methodsllm_code_generation evolutionary_computation llm_evolutionary_search multi_agent_system data_algorithm_co_evolution
Inst:Harbin Institute of. 50% · Huawei Noah’s Ark. 50% · Nanyang Technological University 50% · University of Oxford 50%
This research front explores advanced applications of Large Language Models (LLMs) in Operations Research, specifically focusing on two distinct yet complementary approaches: the DHEvo framework for data-algorithm co-evolution in heuristic search for Mixed-Integer Linear Programming (MILP), and the ConstraintLLM neuro-symbolic framework for automated Constraint Programming (CP) modeling. DHEvo introduces a novel data-algorithm co-evolution framework that iteratively evolves heuristic code while dynamically filtering training instances to improve generalization and reduce performance variance. It significantly outperforms FunSearch and LLM4Solver on benchmarks like Setcover, achieving a primal gap of 9.74% compared to FunSearch's 77.99%. Complementarily, ConstraintLLM presents a neuro-symbolic approach for automated CP modeling, leveraging multi-instruction supervised fine-tuning and a unique Constraint-Aware Retrieval Module (CARM). This framework achieves approximately 51% accuracy on the challenging IndusCP benchmark, demonstrating its effectiveness in generating industrial-level CP models by focusing on structural constraint signatures rather than semantic similarity. This front is clearly emerging, marked by two 'MUST-READ' papers that introduce paradigm-shifting methodologies. The trajectory suggests a strong emphasis on improving the robustness and generalization of LLM-generated OR solutions and models. Future work will likely expand on the DHEvo framework's data-algorithm co-evolution to other heuristic types and MILP solver components, while ConstraintLLM's structural retrieval and self-correction mechanisms will be refined and applied to broader CP domains and larger LLM models.
| |
Adaptive Resource Allocation and Search for LLM Inference Optimization
GROWING Density: 0.36 8 papers
Methodsllm_in_the_loop resource_allocation llm_as_heuristic process_reward_model rebase
Inst:Beijing Institute of. 12% · Xiaohongshu Inc 12% · Georgia Institute of. 12% · Massachusetts Institute of. 12%
This research front focuses on applying advanced Operations Research (OR) principles, including adaptive resource allocation, intelligent search strategies, and policy optimization, to significantly enhance the efficiency and accuracy of Large Language Model (LLM) inference and reasoning. Key frameworks like DORA, ETS, GRPO, and DynaMO are central, addressing challenges in mathematical reasoning, RAG serving, and Mixture-of-Experts (MoE) inference. The unifying theme is the strategic use of OR to manage computational resources and guide LLM behavior for optimal performance. Significant contributions include DORA's embedding-based soft clustering, which achieved state-of-the-art accuracy on MATH500 with 3.5x fewer FLOPs by optimizing compute budget. ETS formulated tree search pruning as an ILP, leading to a 1.8x KV cache reduction and 1.4x throughput increase on MATH500. Ao et al. demonstrated a 95.3% recovery rate for OR model debugging by using solver diagnostics as dense rewards for GRPO-trained LLMs. DynaMO further improved GRPO with variance-minimizing dynamic rollout allocation, yielding an 11.8% Pass@1 increase on Qwen-7B. VectorLiteRAG achieved 1.5x throughput gains for RAG serving, while PROBE delivered a 1.3x speedup for MoE inference via lookahead pipelining. The Best-of-Infinity paper introduced Bayesian adaptive stopping to reduce test-time compute by 2-5x. This front is rapidly growing, showcasing a strong synergy between OR and AI. The trajectory indicates a shift towards more sophisticated, theoretically grounded OR techniques for fine-grained control and optimization of LLM systems. Future work will likely extend these adaptive allocation and search strategies to more complex, real-world LLM deployments, integrating multi-objective optimization and robust control for dynamic, stochastic environments.
| |
Integer Programming for Distributed and Heterogeneous LLM Serving Optimization
STABLE Density: 0.71 10 papers
Methodspipeline_parallelism integer_linear_programming data_parallelism tensor_parallelism optimization
Inst:University of Cambridge 30% · Indian Institute of. 20% · Peking University 20% · Purdue University 20%
This research front is unified by the application of Operations Research, specifically Integer Linear Programming (ILP) and Mixed-Integer Linear Programming (MILP), to optimize various aspects of Large Language Model (LLM) serving. The core theme revolves around enhancing efficiency, reducing latency, and managing resources for LLM inference in complex distributed and heterogeneous computing environments, including edge networks and cloud data centers. Key problems addressed include GPU scheduling, resource allocation, load balancing, and minimizing operational costs or carbon footprints. Key contributions include frameworks like Cascadia, which achieves up to 3.3x higher throughput over CascadeServe using bi-level optimization, and Helix, demonstrating up to 3.3x decode throughput gains on mixed GPU clusters by formulating serving as a max-flow problem. SageServe reduces GPU hours by 25% and saves $2.5M/month through forecast-aware auto-scaling with ILP. AMPD's Dynamo framework significantly improves SLO attainment (67-340%) for multi-round LLM inference over disaggregated serving. Other papers introduce ILP for expert placement in MoE models, carbon-aware KV cache management (GreenCache), and joint optimization of speculative decoding parameters in edge networks. This front is rapidly maturing, characterized by a strong emphasis on practical, deployable solutions for complex LLM serving challenges. The consistent use of rigorous ILP/MILP formulations, often validated with real-world benchmarks (e.g., Microsoft O365 production traces, Azure Conversation dataset), indicates a shift towards robust, production-ready systems. Future work will likely focus on integrating dynamic adaptation, multi-objective optimization (e.g., cost, carbon, latency), and scaling these OR approaches to even larger, more dynamic cloud and edge infrastructures, potentially leveraging hybrid OR-RL approaches.
| |
Operations Research for LLM Inference Scheduling and Automated OR Modeling
STABLE Density: 0.46 8 papers
Methodsllm_fine_tuned program_synthesis llm_code_generation reinforcement_learning queueing_theory
Inst:Massachusetts Institute of. 25% · Columbia University 25% · Shanghai Jiao Tong. 25% · Microsoft Research 12%
This research front unifies efforts in applying Operations Research (OR) principles to two critical areas: optimizing Large Language Model (LLM) inference scheduling under stringent resource constraints, particularly KV cache memory, and enhancing LLMs' ability to perform automated optimization modeling. It features specific frameworks and algorithms such as Memory Constrained Shortest First (MC-SF), Staggered Batch Scheduling (SBS), and OR-Instruct for LLM fine-tuning, demonstrating a concerted push towards more efficient and intelligent AI systems. Papers in this front introduce novel scheduling algorithms like MC-SF, achieving near-optimal latency (within 5% of hindsight optimal) by explicitly modeling KV cache growth [1]. Staggered Batch Scheduling (SBS) significantly reduces Time-to-First-Token (TTFT) by 30-40% and improves throughput by 15-20% on production workloads by optimizing batching for DP+EP architectures [4]. Throughput-optimal queueing-theoretic frameworks are established for LLM inference, proving the stability of work-conserving algorithms [3, 7]. For automated OR modeling, ORLM fine-tunes LLMs using OR-Instruct's synthetic data, outperforming GPT-4 by up to 38.4% on NL4OPT [2]. OR-R1 further refines this with Test-Time Group Relative Policy Optimization (TGRPO), achieving superior accuracy with 1/10th of the data [6]. Justitia introduces fair scheduling for LLM applications, reducing average job completion time by ~60% using memory-centric cost modeling [5]. This front is rapidly emerging, driven by the critical need for efficient LLM deployment and the growing interest in LLMs as tools for scientific discovery. The strong theoretical foundations in queueing theory and integer programming, coupled with practical, high-impact scheduling solutions, suggest a maturing trajectory for LLM inference optimization. Concurrently, the development of specialized LLMs for OR modeling, leveraging techniques like instruction tuning and reinforcement learning, indicates an emerging sub-field. The next papers will likely focus on integrating these scheduling policies into multi-GPU, distributed environments, and on developing more robust, generalizable LLM agents for complex, real-world OR problems.
| |
OR-Driven Dynamic Scheduling for Early-Exit and MoE LLM Serving
STABLE Density: 0.53 6 papers
Methodscontinuous_batching mixed_integer_programming heuristic_search early_exit_llms dynamic_rebatching
Inst:The Hong Kong. 33% · Huawei 33% · Microsoft Research 17% · University of Pennsylvania 17%
This research front focuses on applying advanced Operations Research (OR) and scheduling techniques to optimize large language model (LLM) inference serving. The core theme revolves around addressing critical challenges such as efficient handling of early-exit LLMs, managing prefill-decode contention in large-scale deployments, and optimizing distributed Mixture-of-Experts (MoE) inference. Key methodologies include dynamic rebatching, queueing-theoretic optimal scheduling, stochastic control with fluid approximations, Mixed-Integer Programming (MIP) for parallelism, and hybrid offline-online scheduling strategies. Specific contributions include DREX's 2-12% throughput gain for Llama-EE-70B via dynamic rebatching, and Bari et al.'s RAD/SLAI schedulers achieving a 53% reduction in median TTFT and 26% capacity increase over Sarathi-Serve. Lin et al. propose an asymptotically optimal 'Gate-and-Route' policy for prefill-decode contention, while She et al. demonstrate MIP's ability to reduce pipeline bubbles by 50% for DeepSeek V3's operator-level parallelism. Pang et al. report a ~9% utilization increase over vLLM with a hybrid MIP-based scheduler, and FinDEP achieves up to 1.61x throughput improvement for MoE inference by fine-grained task scheduling. This front is rapidly maturing, moving from theoretical foundations to practical, system-level implementations. The trajectory indicates a strong push towards integrating diverse optimization techniques and addressing more complex real-world constraints. Future work will likely focus on combining early-exit and MoE optimizations, developing robust solutions for heterogeneous hardware and highly dynamic workloads, and providing rigorous tail-latency guarantees through advanced stochastic modeling.
| |
Game-Theoretic and Convex Optimization for Robust LLM Safety-Helpfulness Alignment
STABLE Density: 1.00 3 papers
Methodsgame_theory llm_as_evaluator multi_objective_optimization convex_optimization gradient_descent
Inst:University of Warwick 33% · University College London 33% · University of Basel 33% · Ulsan National Institute. 33%
This research front unifies approaches leveraging game theory and convex optimization to address the complex challenge of multi-objective alignment in Large Language Models (LLMs). Key frameworks include the 'Safety Game' for black-box agentic LLMs, 'Robust Multi-Objective Decoding (RMOD)' for inference-time control, and 'Pareto Multi-Objective Alignment (PAMA)' for efficient Reinforcement Learning from Human Feedback (RLHF). Key contributions include the 'Safety Game' which formulates LLM response selection as a zero-sum game solved by an LP solver, achieving up to two-fold accuracy improvement on SafetyBench by managing safety-helpfulness trade-offs. 'Robust Multi-Objective Decoding (RMOD)' employs a maximin game between adversarial reward weights and sampling policy, reducing to convex optimization, yielding +1.2% WCWR on LLM-as-Judge benchmarks. The 'Pareto Multi-Objective Alignment (PAMA)' algorithm transforms multi-objective RLHF into a convex optimization with a closed-form solution, outperforming baselines like MORLHF and MGDA-UB with stable convergence and significantly higher harmlessness scores (e.g., 0.4406 vs -0.1313). This front is actively emerging, demonstrating novel applications of robust optimization and game theory to critical LLM alignment challenges. The trajectory suggests continued development in extending these principled optimization frameworks to handle more complex, dynamic, and sequential interaction settings, moving beyond static multiple-choice or block-based decoding to real-time, adaptive control of LLM behavior.
| |
MC/MC# Framework for LP-Optimized MoE LLM Compression
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) and MC# frameworks, which leverage Linear Programming (LP) and Integer Linear Programming (ILP) for extreme compression of Mixture-of-Experts (MoE) Large Language Models. The unifying theme is the application of Operations Research techniques to optimally allocate mixed bit-widths and dynamically prune experts, enabling significant memory reduction while preserving model performance. This approach addresses the critical challenge of deploying large MoE models on resource-constrained hardware. Key contributions include the development of hybrid post-training quantization and dynamic pruning strategies. Huang et al. (2025-02) introduced MC, using ILP to allocate 1-3 bit-widths based on activation frequency and routing weights, compressing Mixtral 8x7b to ~16GB (fitting on a single RTX 3090) with only a ~4% drop in zero-shot accuracy, significantly outperforming uniform quantization. Building on this, Huang et al. (2025-10) proposed MC#, combining Pre-Loading Mixed-Precision Quantization (PMQ) via LP with Online Top-any Pruning (OTP) via Gumbel-Softmax sampling, achieving a 6.2x weight reduction on DeepSeek-VL2 with less than 2% accuracy loss, and demonstrating 18.4% better performance than BSP 2.54-bit on Mixtral 8x7b LM-Eval. This front is rapidly maturing, with MC# directly extending MC and demonstrating improved results and broader applicability (including VLMs). The trajectory indicates a strong focus on practical deployment. The next likely papers will focus on adapting these compression strategies for multimodal applications, optimizing them for specific hardware platforms, and further enhancing performance on challenging reasoning and long-context tasks where current methods still show some performance degradation.
|
Framework Genealogy
Tracking research lineages and framework evolution
|
46 frameworks tracked · 44 root frameworks · 9 active (last 30 days)
Framework landscape (size = paper count, color = must-read ratio)
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) • apemo (1 papers, 0 must-read) • agentconductor (1 papers, 1 must-read) • dynamo (1 papers, 1 must-read) • mlora (1 papers, 0 must-read) • aflow (1 papers, 1 must-read) • many_server_queueing_theory (1 papers, 1 must-read)
■ Active + Must-read
■ Active
■ Inactive + Must-read
■ Inactive
|
|