{"id": "219a22b230259ea97336b8090150dacc77948d9a35534711418df43c754d22f9", "sources": ["arxiv"], "title": "Can I Buy Your KV Cache?", "abstract": "Right now, across the world, AI agents are repeating the same absurd act: to read one document, they each recompute it from scratch. Every agent re-runs prefill, the most compute-intensive step a large model takes, over identical text, only to rebuild a key-value (KV) cache identical to the one the agent before it just built. The same answer, computed a million times. We make a proposal that is almost offensively simple: compute it once. Let a publisher precompute a document's KV cache, and let every other agent buy the right to load it and skip prefill. It works, and it is token-exact: loading a precomputed KV and continuing matches prefilling from scratch (24/24 greedy tokens, and at the logits level), with no accuracy cost. On Qwen3-4B, reuse is 9-50x cheaper in compute than prefill, and the gap widens with length (prefill's attention scales with L^2), so a single reuse already pays it back. Then the part that matters: where the KV lives. Shipping it fails, because KV is nearly incompressible, so per-load egress costs more than the prefill it saves. Hosting it provider-side, exactly as production prompt-caching works, removes egress entirely. The size of the prize is set by our measured compute saving: serving one hot 3774-token document to 80M agents costs ~$1.5M to re-prefill but only ~$0.03M of reuse compute (49.7x less). The 0.1x cache-read tariff APIs charge passes a 10x discount to users while sitting inside this measured envelope, so the 10x is a floor that the measured ~50x compute saving clears, and the gap to the physical ~50x is provider margin: millions of dollars per popular document. We frame the resulting agent-native prefill CDN and leave lossless KV compression and a cross-party payment layer as the open problems.", "authors": ["Luoyuan Zhang"], "categories": ["cs.AI", "cs.CE", "cs.MA"], "fields_of_study": [], "published_date": "2026-06-11", "url": "https://arxiv.org/abs/2606.13361", "pdf_url": "https://arxiv.org/pdf/2606.13361v1", "arxiv_id": "2606.13361", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "363441bf3b6e700abd0cf2940be987393677c46caa1cecd4c2121e14de11dfd9", "sources": ["arxiv"], "title": "MiniPIC: Flexible Position-Independent Caching in <100LOC", "abstract": "Retrieval-augmented and agentic workloads repeatedly prefill recurring predictable structured inputs (which we call \"spans\") such as documents and code files. Yet, prefix caching in engines such as vLLM cannot reuse their KV entries unless they share identical prefixes with another request, while Position-Independent Caching (PIC) implementations within production-grade inference servers typically either require substantial server code changes or keep KV state outside the server, incurring host-to-device transfer overhead. We present Minimalistic PIC (MiniPIC): a minimal, flexible and fast vLLM design built from two ingredients: positional-encoding-free KV cache and user-controlled cache-reuse primitives. MiniPIC stores unrotated K vectors in the KV cache, applies RoPE to K tiles inside attention using per-request logical positions, and exposes three user-facing and token-level primitives: block-aligned padding, span separator (SSep), and prompt depend (PDep), that modify hashing behavior and effective block-level causal attention structure. With fewer than 100 lines of core-engine changes plus a custom attention backend, these primitives are sufficient to realize multiple PIC methods, including Block-Attention, EPIC, and Prompt Cache, within the same running vLLM instance, while natively integrating with KV cache CPU offload implementations. On 2WikiMultihopQA, MiniPIC with interleaved scheduling improves prefill throughput by 49% over baseline vLLM, reduces cached-span time-to-first-token by up to two orders of magnitude, preserves the linear prefill scaling of uncached spans, and incurs only 5.7% worst-case overhead.", "authors": ["Nathan Ordonez", "Thomas Parnell"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": [], "published_date": "2026-06-11", "url": "https://arxiv.org/abs/2606.13126", "pdf_url": "https://arxiv.org/pdf/2606.13126v1", "arxiv_id": "2606.13126", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4fdecfa82b3d9e9bb030d3cf4a75de1007d4193de7d873f3dd881cdfb348a3eb", "sources": ["arxiv", "semantic_scholar"], "title": "Multi-Rate Mixture of Experts for Accelerating Liquid Neural Network Training", "abstract": "Multivariate time-series data often exhibit complex temporal dependencies, irregular sampling, and heterogeneous dynamics across multiple time scales, making accurate sequence modeling particularly challenging. Traditional recurrent neural networks (RNNs), such as Long Short-Term Memory (LSTM) networks, operate in discrete time and may struggle to effectively capture continuous and irregular temporal behaviors. Liquid Neural Networks (LNNs) address some of these limitations through continuous-time dynamics, but standard LNN architectures typically rely on a single dynamical system, limiting their ability to model heterogeneous temporal patterns. To address these challenges, we propose a Multi-Rate Mixture-of-Experts (MR-MoE) framework built on top of Liquid Neural Networks. In the proposed architecture, multiple LNN-based experts operate at distinct time scales, enabling the model to explicitly separate fast-changing dynamics from slow-evolving temporal trends. A gating network further enables adaptive expert specialization based on input conditions. In addition, we incorporate both feature-level and temporal attention mechanisms to improve robustness, interpretability, and long-range dependency modeling. Feature-level attention suppresses noisy or irrelevant variables, while temporal attention selectively focuses on informative historical states. We evaluate the proposed framework on a complex multivariate time-series prediction task and compare it against strong baselines, including LSTM, monolithic LNN, and standard MoE models. Experimental results demonstrate that the proposed MR-MoE framework consistently achieves improved AUROC and AUPRC performance while maintaining favorable computational efficiency. These results highlight the effectiveness of combining continuous-time dynamics, multi-scale expert decomposition, and adaptive attention mechanisms for time-series modeling.", "authors": ["Shilong Zong", "Almuatazbellah Boker", "Hoda Eldardiry"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-10", "url": "https://arxiv.org/abs/2606.12240", "pdf_url": "https://arxiv.org/pdf/2606.12240v1", "arxiv_id": "2606.12240", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e6285ce1e5e00dc6f200445d06208fa2cce60e6d585f8a2a9bfc8b9cdcd4087a", "sources": ["arxiv", "semantic_scholar"], "title": "Redesign Mixture-of-Experts Routers with Manifold Power Iteration", "abstract": "Router is the cornerstone component to the Mixture-of-Experts models. Serving as expert proxies, the rows of the router matrix compute their similarity to the MoE inputs to determine which subset of experts is activated. Ideally, each router row is designed to encode the expert matrix into this representative vector, such that its dot-product with token can better reflect token-expert affinity. However, there exists no design principles to enforce this condensation. In this paper, we propose to align each router row with the principal singular direction of the associated expert, as this direction provides the most expressive mathematical description of a matrix. Based on this principle, we propose a router redesign with Manifold Power Iteration (MPI). Specifically, it introduces a \"Power-then-Retract\" paradigm, where a power iteration step is performed on the router weights, followed by a retraction to impose a norm constraint to ensure both efficiency and stability. Theoretically, we show that MPI drives router rows to converge toward the principal singular directions of associated experts. Empirically, we pretrain MoE model across scales from 1B to 11B parameters to confirm that this alignment facilitates more effective MoE models.", "authors": ["Songhao Wu", "Ang Lv", "Ruobing Xie", "Yankai Lin"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-10", "url": "https://arxiv.org/abs/2606.12397", "pdf_url": "https://arxiv.org/pdf/2606.12397v1", "arxiv_id": "2606.12397", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8f96f13b132484676858fd520f097975b3e493dbfb7ba7fbcb3656499f01dddc", "sources": ["arxiv", "semantic_scholar"], "title": "From Observation to Intervention: A Causal Audit of Expert Importance in Mixture-of-Experts Models", "abstract": "Interpretability methods routinely use population-level summary statistics over observed model behaviour to license claims about the effects of targeted interventions on specific computations; in Pearl's terms, they treat rung-1 associational evidence as if it supported rung-2 interventional conclusions, a move whose validity is rarely tested. We examine one concrete instance: the use of routing statistics in Mixture-of-Experts (MoE) pruning, where utilization rates, activation norms, and routing weight distributions are treated as predictors of which experts can be removed without functional cost. A token-level interventional audit across three high-redundancy MoE architectures (OLMoE-1B-7B-0924, Qwen1.5-MoE-A2.7B, DeepSeek-V2-Lite) finds no observational metric predicts causal expert importance after multiple-comparison correction in any model, with effect sizes below Cohen's $d = 0.17$ across all 60 metric-layer combinations. A per-token routing weight control rules out insufficient power, recovering a single Bonferroni-significant signal at OLMoE's final MoE layer ($d = +0.231$, $p = 0.0013$). Existing pruning methods succeed in this regime not by identifying dispensable experts but because early-layer redundancy renders most selection criteria interchangeable. Our results provide an explicit counterexample to the common inferential step from population-level observational summaries to token-level interventional claims about expert importance, and illustrate how interventional audits can calibrate the evidential standards for interpretability claims.", "authors": ["Leonard Engmann", "Christian Medeiros Adriano", "Holger Giese"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-09", "url": "https://arxiv.org/abs/2606.10703", "pdf_url": "https://arxiv.org/pdf/2606.10703v1", "arxiv_id": "2606.10703", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "aeea47930489c3c29a15b5d032ebbd01137ca01018d6230a4d3ceabe6832ac05", "sources": ["arxiv", "semantic_scholar"], "title": "Routing-Aware Expert Calibration for Machine Unlearning in Mixture-of-Experts Language Models", "abstract": "Machine unlearning is increasingly important for large language models, yet unlearning in Mixture-of-Experts (MoE) architectures remains underexplored. Unlike dense models, MoE architectures employ a router at each layer to assign each token to a sparse subset of experts. In this work, we observe that forget data often activates a small subset of experts disproportionately, while these experts may receive much weaker activation from retain data. This forget--retain routing mismatch can leave forget-critical experts under-regularized during unlearning. To address this, we propose \\textbf{TRACE}, Targeted Routing-Aware Calibration of Experts, for MoE unlearning. TRACE first detects forget-critical experts from offline activation statistics, and then calibrates retain regularization by reweighting token-level retain losses so that each selected expert's retain-side activation frequency better matches its forget-side counterpart. Experiments on WMDP and MUSE-BOOKS across multiple MoE LLMs show that TRACE consistently improves the forget-utility trade-off, yielding a 9\\% relative utility improvement over the strongest baseline under comparable forgetting quality and the best performance on three out of four MUSE-BOOKS metrics.", "authors": ["Jingyi Xie", "Yijun Lin", "Yinjiang Xiong", "Zhikun Zhang", "Sai Li"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-09", "url": "https://arxiv.org/abs/2606.10338", "pdf_url": "https://arxiv.org/pdf/2606.10338v1", "arxiv_id": "2606.10338", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4f7b301109d74f7f9d2385065d1af1c3a91b9ebb8cdccba0e0ccbdb224c63788", "sources": ["arxiv", "semantic_scholar"], "title": "Enhancing Multilingual LLM-based ASR with Mixture of Experts and Dynamic Downsampling", "abstract": "The rapid progress of large language models (LLMs) has opened up a new frontier for automatic speech recognition (ASR), making their effective integration a critical and challenging research direction. To this end, this work proposes a projector-based LLM-ASR framework targeting the key challenges of multilingual generalization and modality alignment. Our approach incorporates a Mixture of Experts (MoE) architecture to improve cross-lingual adaptability, and a Continuous Integrate-and-Fire (CIF) mechanism for dynamic downsampling and modality alignment. Experimental results show that the combination of these components yields substantial performance improvements, surpassing strong baseline models. The proposed method represents a step toward building more accurate, robust, and generalizable LLM-based ASR systems.", "authors": ["Guodong Lin", "Ziqi Chen", "Yuxiang Fu", "Ke Li", "Wei-Qiang Zhang"], "categories": ["cs.SD", "cs.CL", "eess.AS"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-06-09", "url": "https://arxiv.org/abs/2606.10439", "pdf_url": "https://arxiv.org/pdf/2606.10439v1", "arxiv_id": "2606.10439", "doi": "10.1109/ICASSP55912.2026.11464266", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE International Conference on Acoustics, Speech, and Signal Processing", "quality_score": 0.55} {"id": "19f1030636588c82241484d9b6f7f0589343f2f874642fb66319b91465fda801", "sources": ["arxiv", "semantic_scholar"], "title": "Which LoRA? An Empirical Study on the Effectiveness of LoRA Techniques During Multilingual Instruction Tuning", "abstract": "We investigate whether commonly available LoRA variants have an advantage over basic LoRA in multilingual instruction tuning. Experiments involving LoRA and four other variants on two datasets across diverse target languages show that there is no significant advantage in using more complex LoRA variants instead of basic LoRA, with respect to balancing cross-lingual transfer and knowledge retention. An analysis of hidden embeddings reveal that layer-wise language representation remains largely similar across LLMs fine-tuned with different LoRA techniques, suggesting that architectural novelty of LoRA techniques may not translate into better cross-lingual adaptation.", "authors": ["Thamali Wijewardhana", "Napoleon H. Reyes", "Surangika Ranathunga"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-09", "url": "https://arxiv.org/abs/2606.10428", "pdf_url": "https://arxiv.org/pdf/2606.10428v1", "arxiv_id": "2606.10428", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ad2764c1694461754b9d3f9bf0d1bd04a98208f3430237100c6a3193876a01d6", "sources": ["arxiv", "semantic_scholar"], "title": "ReasonAlloc: Hierarchical Decoding-Time KV Cache Budget Allocation for Reasoning Models", "abstract": "Long chain-of-thought (CoT) trajectories in large language model (LLM) reasoning cause severe inference bottlenecks due to rapid key-value (KV) cache growth. Current decoding-time compression methods mitigate this issue via token eviction, but typically assume a uniform budget distribution across all layers and heads. In contrast, existing non-uniform budget allocation methods are predominantly designed for the static prompt prefill phase, and they do not capture the stepwise context demands of autoregressive reasoning. To bridge this gap, we propose ReasonAlloc, a training-free framework that recasts decoding-time KV compression as a hierarchical budget allocation problem. ReasonAlloc operates at two complementary levels: an offline layer-wise preallocation strategy captures an architecture-driven demand pattern which we call ``\\textit{Reasoning Wave}'', while an online head-wise strategy reallocates resources during decoding to information-rich heads based on real-time utility. Evaluations on mathematical reasoning benchmarks (MATH-500, AIME~2024) using DeepSeek-R1-Distill-Llama-8B, DeepSeek-R1-Distill-Qwen-14B, and AceReason-14B show that ReasonAlloc outperforms uniform-budget R-KV, SnapKV, and Pyramid-RKV (a baseline enforcing a static, monotonically decreasing layer budget), with the largest gains at small budgets (128-512 tokens). ReasonAlloc is plug-and-play with existing token-eviction policies and introduces negligible inference-time overhead.", "authors": ["Wenhao Liu", "Hao Shi", "Yunhe Li", "Weizhi Fei", "Xiangyuan Wang", "Mengzhe Ruan", "Hanxu Hou", "Peisong Wang", "Linqi Song", "Shuang Qiu"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-09", "url": "https://arxiv.org/abs/2606.11164", "pdf_url": "https://arxiv.org/pdf/2606.11164v1", "arxiv_id": "2606.11164", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "63958be0f7d79f55b95e7ad84e19c28b0f011c5e5a7651835a5caed433a9ff80", "sources": ["arxiv", "semantic_scholar"], "title": "Hasse Diagrams for Attention: A Partial Order Framework for Designing Transformer Masks", "abstract": "During the training of large Transformer models, attention masks regulate the scope and direction of information flow across a sequence. Numerous mask variants exist, and operators such as FlexAttention already support arbitrary attention masks. Nevertheless, a systematic formal analysis of the information-flow structure induced by arbitrary masks has been missing. This paper develops a complete theoretical framework. We prove that, with sufficient depth, the information flow of a multi-layer Transformer converges to a Hasse diagram -- a directed acyclic graph representing a partial order. Building on this, we recast the design of parallel training tasks as the problem of finding a minimal common supergraph of Hasse diagrams, and we establish a criterion for the minimal common supergraph. This yields a constructive method to derive attention masks directly from a family of tasks. Applying the framework, we design two novel masks: a block-generation attention mask that ensures training-inference consistency (Block Two-Stream Attention), and a fully supervised bidirectional attention mask (Butterfly Attention). These results demonstrate the framework's capacity to discover new structures.", "authors": ["Chentao Li", "Han Guo"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-08", "url": "https://arxiv.org/abs/2606.09951", "pdf_url": "https://arxiv.org/pdf/2606.09951v1", "arxiv_id": "2606.09951", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b67d706fa49ff7442ed69f855cce85b8f7a8f6a137daecd6262db5419ec6a586", "sources": ["arxiv", "semantic_scholar"], "title": "FAME: Forecastability-Aware Mixture of Experts for Heterogeneous Time Series Forecasting", "abstract": "Large-scale retail and industrial forecasting systems contain many heterogeneous time series whose lifecycle, sparsity, volatility, seasonality, spectral patterns, and contextual sensitivity differ substantially. A single forecasting model rarely performs well across all regimes, while dense ensembles increase inference cost and provide limited insight into expert suitability. This paper studies forecastability-aware expert routing: learning how data characteristics determine the suitability of forecasting experts. We propose \\method{}, a sparse mixture-of-experts framework that represents each series with a multidimensional forecastability fingerprint, mines expert-suitability targets from validation performance, and trains a cost-aware sparse router to activate a small budgeted set of experts for each series. Using a production-scale vending-machine sales dataset from Shandong New Beiyang (SNBC), where the forecasting component has been integrated into the replenishment-planning pipeline, together with public retail benchmarks, we show that expert suitability varies systematically across data regimes. On the industrial dataset with 5,000+ machines and 60M+ transactions, \\method{} Top-2 reduces MSE by 12.4\\% over the strongest single expert, LightGBM, while executing 1.92 experts per series on average. The deployed component produces demand forecasts, while inventory-oriented gains are estimated by an offline replay simulator under a fixed replenishment policy rather than by online intervention. The framework turns heterogeneous sales forecasting from heuristic model selection into data mining of forecastability patterns and expert specialization. Code is available at https://github.com/hit636/FAME", "authors": ["Qianyang Li", "Xingjun Zhang", "Shaoxun Wang", "Tao Peng", "Jia Wei"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-08", "url": "https://arxiv.org/abs/2606.08896", "pdf_url": "https://arxiv.org/pdf/2606.08896v1", "arxiv_id": "2606.08896", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/hit636/FAME", "venue": null, "quality_score": 0.65} {"id": "5b8b06a740c2f8125a9b833ea12dd15aaf50baff0b999dc6966696052160f236", "sources": ["arxiv", "semantic_scholar"], "title": "STAR-KV: Low-Rank KV Cache Compression via Soft Thresholding for Adaptive Rank Control", "abstract": "Low-rank projection has emerged as a promising approach for compressing the KV cache by exploiting hidden-dimension redundancy. However, prior methods rely on fixed or heuristic rank selection and struggle to achieve aggressive compression with minimal accuracy degradation. We propose STAR-KV, an adaptive low-rank KV cache compression framework with fine-grained rank control. STAR-KV encompasses 1) a differentiable thresholding mechanism that enables optimal rank selection at both attention-head and block levels, 2) a hybrid decomposition strategy that applies different low-rank factorizations according to the sensitivity of key and value projections, and 3) a low-rank-aware mixed precision quantization that leverages data statistics for near lossless low-bit quantization. Evaluated across multiple LLMs and benchmarks, STAR-KV achieves up to 75% KV cache compression and up to 20x overall KV cache reduction when combined with quantization. Enabled by custom Triton-based GPU kernels, STAR-KV delivers up to 6.9x speedup for the attention module and 3.1x end-to-end generation throughput. Our code is publicly available at: https://github.com/PriyanshBhatnagar/STAR-KV.", "authors": ["Priyansh Bhatnagar", "Ashkan Moradifirouzabadi", "Se-Hyun Yang", "SeungJae Lee", "Jungwook Choi", "Mingu Kang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-07", "url": "https://arxiv.org/abs/2606.08382", "pdf_url": "https://arxiv.org/pdf/2606.08382v1", "arxiv_id": "2606.08382", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/PriyanshBhatnagar/STAR-KV", "venue": null, "quality_score": 0.65} {"id": "efc8440b17f8aaa7bdb84eb6002ed6eaa67e37e7480cd8e091cc563d8e6e1da6", "sources": ["arxiv", "semantic_scholar"], "title": "RKSC: Reasoning-Aware KV Cache Sharing and Confident Early Exit for Multi-Step LLM Inference", "abstract": "We introduce RKSC (Reasoning-Aware KV Cache Sharing), a training-free inference framework that eliminates two structural redundancies in multi-branch LLM reasoning pipelines. ASKS (Attention-Similarity KV Sharing) computes the prefix KV cache once and broadcasts it to all semantically similar branches via hidden-state cosine similarity, strictly generalising the token-exact prefix caching used by vLLM and SGLang. CGEE (Confidence-Gated Early Exit) applies two complementary exit mechanisms: (1) it skips the verification forward pass entirely when generation confidence is decisive across branches, and (2) it terminates the verification pass at an intermediate layer when per-layer entropy stabilises, using lightweight hooks on the transformer backbone. RSBCM (Reasoning-Selective Block Cache Manager) prevents unbounded cache growth via attention-weighted depth-priority eviction. Across five model families (7B-10B), four benchmarks, and 1,000 evaluated problems, RKSC achieves a mean speedup of 3.008x over the No-KV baseline (peak 3.990x), a 1.66x mean improvement over vLLM-equivalent prefix caching, with a CGEE-induced error rate of only 0.37% (6 errors out of 1,616 verify calls). No fine-tuning or architecture changes are required. Code is available at https://github.com/AnirudhSekar/RKSC.", "authors": ["Anirudh Sekar"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-07", "url": "https://arxiv.org/abs/2606.09937", "pdf_url": "https://arxiv.org/pdf/2606.09937v1", "arxiv_id": "2606.09937", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/AnirudhSekar/RKSC", "venue": null, "quality_score": 0.65} {"id": "33fae3d60cba349da24ac57e1f7e475f6068bbf2641e46632a9820997a80dbcd", "sources": ["arxiv", "semantic_scholar"], "title": "SpectrumKV: Per-Token Mixed-Precision KV Cache Transfer for Prefill-Decode Disaggregated LLM Serving", "abstract": "Prefill-decode (PD) disaggregation decouples prompt processing from token generation, but it also turns the key-value (KV) cache into a network payload. Existing PD-side KV reduction methods are mostly binary: selected tokens are transmitted at full precision and the rest are not transmitted. This paper argues that binary selection leaves a useful design space unused. SpectrumKV assigns a precision level to each token instead: attention sinks and other high-importance tokens are protected at FP16, medium-importance tokens are sent at INT8, and low-importance tokens are sent at INT4 when the model can tolerate it. The main practical complication is that INT4 tolerance is model-dependent. Qwen2.5-7B catastrophically fails under INT4 KV quantization, while Mistral-7B and Gemma-2-9B remain stable. SpectrumKV therefore runs a lightweight deployment-time probe: three aggressive NIAH trials under a 3-tier policy. Models that pass use FP16+INT8+INT4; models that fail fall back to FP16+INT8. Across Qwen2.5-7B-Instruct, Mistral-7B-Instruct-v0.3, and Gemma-2-9B-it, SpectrumKV improves quality at the same transfer budget. At a 50% normalized KV budget on WikiText-2, SpectrumKV changes perplexity by +1.97%,-0.06%, and-0.44%, respectively, compared with PDTrim's +25.85%, +22.07%, and +35.63%. On NIAH retrieval at 4096 tokens, the adaptive policy reaches 52.6% on Qwen at the aggressive b=0.3 budget versus 26.3% for PDTrim, and reaches 100% by b=0.5; Mistral and Gemma preserve retrieval under the 3-tier policy. End-to-end GPU timing of the transfer path shows 50-62% TTFT reductions at b=0.5. These results suggest that PD KV transfer should be treated as a precision-allocation problem, not only as token pruning.", "authors": ["Yang Pengju"], "categories": ["cs.LG", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-07", "url": "https://arxiv.org/abs/2606.08635", "pdf_url": "https://arxiv.org/pdf/2606.08635v1", "arxiv_id": "2606.08635", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b23081733a04a06845371ec11f9dd0f8d8f83c9830e641ce0dcfa2a03cd0a1a3", "sources": ["arxiv", "semantic_scholar"], "title": "IntentKV: Cross-Turn Intent-Aware KV Cache Pruning for Agent Inference", "abstract": "Multi-turn LLM agents fan short queries into long trajectories of tool calls, search results, and intermediate reasoning. Both KV memory and KV read bandwidth grow by orders of magnitude across a single trajectory, making the key-value (KV) cache, not parameter compute, the dominant serving bottleneck for long-horizon agents. We introduce IntentKV, learned KV pruning that keeps the base LLM frozen. IntentKV maintains a session-level QueryMemory of cross-turn intent, scores live history tokens with a memory-attention rule, and adds a zero-initialized residual head with cross-attention over current-query K-vectors. To stay composable with prefix caches, eviction is a slot-map redirection: dropped positions route to a sentinel dead slot while surviving K/V rows, RoPE phases, and slot identities stay in place. IntentKV matches the no-pruning full-cache baseline with almost no accuracy drop under tight KV budgets: at an 8k KV budget, mean peak request tokens drop 23.9% on Qwen3-8B and 30.7% on Qwen2.5-14B. On the 100 longest BCP queries that all methods complete on Qwen2.5-14B, IntentKV-8k further cuts worst-case peak request tokens from 92.3k to 20.5k, a 77.8% reduction, and worst-case raw KV reads from 411M to 31M, a 92.6% reduction.", "authors": ["Junjie Li", "Jiong Lou", "Jie Li"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-06", "url": "https://arxiv.org/abs/2606.09916", "pdf_url": "https://arxiv.org/pdf/2606.09916v1", "arxiv_id": "2606.09916", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "dbc3790ce5ee01b2483c84c367f615f419cf3aab4616a9c2bf9c9005338becab", "sources": ["arxiv", "semantic_scholar"], "title": "Joint Structural Pruning and Mixed-Precision Quantization for LLM Compression", "abstract": "Recently, the efficiency of Large Language Models (LLMs) deployment has become a critical concern in practical applications. While post-training quantization (PTQ) and structural pruning are established techniques for reducing memory footprint and inference latency, most existing PTQ approaches optimize quantization errors on a per-layer basis, overlooking how errors accumulate and propagate through the network, often resulting in suboptimal solutions. Traditional pipelines also tend to apply pruning and quantization in isolation or sequentially, further compounding sub-optimality. We introduce a novel end-to-end framework that addresses these limitations in two key ways. First, we propose a novel mixed-precision PTQ strategy that directly minimizes global error propagation across the entire model, rather than isolating layer-wise errors. Building on this, we develop a novel joint optimization approach that simultaneously learns structural pruning decisions and mixed-precision quantization policies within a unified search space. Extensive experiments show that, at ultra-low precisions (1-3 bits), our quantization method reduces WikiText perplexity by up to 21% compared to state-of-the-art (SoTA) weight-activation quantization baselines. Against leading weight-only quantization methods, it achieves up to 59% and 85% lower perplexity on WikiText and C4, respectively. Compared to the SoTA joint pruning-and-quantization techniques, our proposed method delivers superior perplexity and reasoning performance at ultra-low bits.", "authors": ["Hoang-Loc La", "Truong-Thanh Le", "Amir Taherkordi", "Phuong Hoai Ha"], "categories": ["cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-05", "url": "https://arxiv.org/abs/2606.07819", "pdf_url": "https://arxiv.org/pdf/2606.07819v1", "arxiv_id": "2606.07819", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "fc94663e3a52b334f0bb7bf17e50e656f58afafbafa092487ad58b721e75ed1c", "sources": ["arxiv", "semantic_scholar"], "title": "Still: Amortized KV Cache Compaction in a Single Forward Pass", "abstract": "The KV cache is the memory bottleneck of long-horizon language model deployment. Practically, a deployable compactor must be lightweight enough to call during inference, expressive enough to preserve context under constraint, and reusable across a trajectory. Existing compaction methods satisfy only part of this requirement: selection methods are lightweight but subset-bound, while synthesis methods are expressive but rely on per-context optimization. Here we introduce Still, a small per-layer Perceiver trained once against a frozen base model that produces compact keys and values in a single forward pass. On Qwen and Gemma models, Still occupies the favorable side of the speed--quality frontier across compression ratios from $8\\times$ to $200\\times$ and context lengths from $8$k to $128$k. On the long-context RULER grid, Still exceeds the strongest baseline by 8--22 points. The same compact cache also supports free-form summarization, preserving most of the full-context gain on HELMET and winning a pairwise LongBench summarization comparison against KV-Distill. Because compaction is a forward pass, Still can be applied iteratively, entering a long-horizon regime unavailable to per-context methods. We show that amortization makes long-context cache compaction tractable, and synthesis makes its compact state useful at extreme compression.", "authors": ["Charles O'Neill", "Alex Sandomirsky", "Harry Partridge", "Mudith Jayasekara", "Max Kirkby"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-05", "url": "https://arxiv.org/abs/2606.07878", "pdf_url": "https://arxiv.org/pdf/2606.07878v1", "arxiv_id": "2606.07878", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "372102df62ed14b3d57d05fe483fa9c3d00f97f737e9bc0c395a409e85d8ff70", "sources": ["arxiv", "semantic_scholar"], "title": "Rethinking LoRA Memory Through the Lens of KV Cache Compression", "abstract": "Parametric retrieval augmentation encodes document information into lightweight, document-specific modules such as LoRA adapters, reducing the need to include all evidence as input context. However, it remains unclear how this parameter-side memory interacts with context-side memory stored in the KV cache. We study this interaction in document-level question answering by progressively evicting document key-value states and measuring when a document LoRA contributes beyond the retained context. We find that document LoRA adds little when the KV cache is largely intact, but becomes increasingly useful under aggressive compression, recovering 13-21 ROUGE-L points when no document context remains. The gain is largest when the base model encodes the document, and the adapter is applied only during answer generation, suggesting that document LoRA is better understood as decoding-time parametric memory than as a document encoder. Finally, QA-style supervision produces substantially stronger adapters than raw-context next-token-prediction. These results position document LoRA as a complementary memory channel whose value emerges precisely when context-side evidence is scarce.", "authors": ["Chunsheng Zuo", "Liaoyaqi Wang", "William Jurayj", "William Fleshman", "Benjamin Van Durme"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-04", "url": "https://arxiv.org/abs/2606.05698", "pdf_url": "https://arxiv.org/pdf/2606.05698v1", "arxiv_id": "2606.05698", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "51c0fafe4237deb7e37e634c4b1eb03507a834d97ea6de053d7c8a30353a889a", "sources": ["arxiv", "semantic_scholar"], "title": "Value-and-Structure Alignment for Routing-Consistent Quantization of Mixture-of-Experts Models", "abstract": "Mixture-of-Experts (MoE) models scale foundation models efficiently by activating only a subset of experts for each token, but their large number of expert parameters still makes quantization essential for practical deployment. Unlike dense models, however, MoE models are sensitive to routing instability: small quantization-induced perturbations can change the top-$k$ expert selection, altering the computation path and degrading model quality. We propose Value-and-Structure Routing Alignment for Quantization (VSRAQ), a MoE-specific post-training quantization objective that preserves pre-quantization expert-selection behavior under quantization. VSRAQ combines two complementary objectives that jointly preserve expert-selection behavior: value alignment, which matches routing-relevant logits or scores, and structure alignment, which preserves expert ordering and top-$k$ decision boundaries. By maintaining routing consistency, VSRAQ reduces quantization-induced degradation without introducing any inference-time overhead and can be integrated into existing quantization frameworks. Experiments on recent MoE foundation models show that VSRAQ improves expert-selection consistency and consistently outperforms reconstruction-only and router-aware baselines.", "authors": ["Hancheol Park", "Geonho Lee", "Tairen Piao", "Tae-Ho Kim"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-04", "url": "https://arxiv.org/abs/2606.05688", "pdf_url": "https://arxiv.org/pdf/2606.05688v1", "arxiv_id": "2606.05688", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "471c2374e70edf4b8dca0cb9a2abe3a82a2e50ca6d72249e1675752607e033d6", "sources": ["arxiv", "semantic_scholar"], "title": "High-Dimensional Theory of LoRA Fine-Tuning in a Solvable Attention Model", "abstract": "We develop a high-dimensional statistical theory of low-rank adaptation (LoRA) in attention models, capturing the interplay between pre-training and fine-tuning. We introduce a solvable framework in which a single-head attention layer is first pre-trained on a data-abundant task and subsequently adapted via a rank-one LoRA update on limited data. In the high-dimensional limit, both stages admit a sharp asymptotic characterization in terms of a finite set of order parameters, yielding explicit predictions for test errors and representation alignment. Our analysis shows that the impact of pre-training on LoRA is summarized by an effective noise term, from which we derive prescriptions for the optimal pre-training procedure. We also demonstrate a regime with a mismatch between the value of the test error and representation quality, and propose an application of our theory to active fine-tuning.", "authors": ["O. Duranthon", "F. Boncoraglio", "L. Zdeborová"], "categories": ["cs.LG", "cond-mat.dis-nn"], "fields_of_study": ["Computer Science", "Physics"], "published_date": "2026-06-04", "url": "https://arxiv.org/abs/2606.05899", "pdf_url": "https://arxiv.org/pdf/2606.05899v1", "arxiv_id": "2606.05899", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "c4b8ac494f3da3094edc9fca7613c163c350b710455dac1c9809d5594defdd47", "sources": ["arxiv", "semantic_scholar"], "title": "Tangram: Unlocking Non-Uniform KV Cache for Efficient Multi-turn LLM Serving", "abstract": "Multi-turn Large Language Model (LLM) serving is critical for consistent user experiences, yet the linear growth of the Key-Value (KV) cache imposes significant pressure on GPU memory and bandwidth. Non-uniform KV compression effectively preserves more information by considering the individual importance of each KV cache. However, such KV cache heterogeneity introduces various systemic challenges - including memory fragmentation, scheduling complexities, and diminished kernel utilization - which collectively lead to significant inefficiencies in existing LLM serving systems. To overcome these challenges, we present Tangram, a novel serving system designed to make Non-uniform KV caches practical. Tangram addresses systemic inefficiencies through three core techniques: (1) Deterministic Budget Allocation assigns a static memory footprint to each head based on its intrinsic pattern, entirely eliminating dynamic scheduling overhead and prefill stalls; (2) Head Group Page clusters attention heads with similar retention demands and manages them with independent, vectorized page tables, thereby maximizing physical memory reclamation; and (3) Ahead-of-Time (AOT) Load Balancing leverages static budget profiles to ensure uniform GPU utilization without runtime overhead. Experimental results show that Tangram improves throughput by up to 2.6x compared to existing baselines, while fully preserving model accuracy. Our implementation is publicly available at https://github.com/aiha-lab/TANGRAM.", "authors": ["Hyungmin Kim", "Minsoo Kim", "Hongseok Kim", "Jungwook Choi"], "categories": ["cs.LG", "cs.SE"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-04", "url": "https://arxiv.org/abs/2606.06302", "pdf_url": "https://arxiv.org/pdf/2606.06302v1", "arxiv_id": "2606.06302", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/aiha-lab/TANGRAM", "venue": null, "quality_score": 0.65} {"id": "129136d5dd14aef1a6b02c7efcdccb266321e11616a9bdeefbdd807fd2d42058", "sources": ["arxiv", "semantic_scholar"], "title": "RedKnot: Efficient Long-Context LLM Serving with Head-Aware KV Reuse and SegPagedAttention", "abstract": "As the input length of large language model (LLM) serving continues to grow, the KV cache has become a dominant bottleneck in AI infrastructure. It limits GPU memory capacity, serving concurrency, cache reuse, and distributed scalability. Several important problems, including position-independent KV cache, prefix KV cache compression, hot/cold KV cache separation, and distributed KV cache management, all depend on how the KV cache is represented and managed. However, existing serving systems largely rely on a monolithic KV cache abstraction, where the KV cache is treated as a homogeneous sequence of token-level memory blocks and managed with similar policies across attention heads and serving scenarios. We observe that KV cache utility is highly structured across KV heads: different heads exhibit different functional roles, attention distances, and runtime importance. Therefore, a full KV cache is not always necessary for every head, token range, or serving scenario. We present RedKnot, a head-aware KV cache management system for LLM serving. RedKnot breaks the conventional monolithic KV cache abstraction by decomposing the KV cache along KV heads, whose importance and effective attention ranges vary significantly across serving scenarios. This head-level decomposition turns the KV cache from a monolithic tensor abstraction into a structured memory object, enabling RedKnot to uniformly support position-independent KV reuse, prefix KV compression, hot/cold KV separation, and distributed KV placement while preserving output fidelity and improving resource efficiency, without requiring model retraining or fine-tuning. RedKnot establishes a new foundation for AI infrastructure by transforming the KV cache from a monolithic, passive runtime artifact into a dynamic, model-aware runtime substrate for scalable LLM serving.", "authors": ["Yang Liu", "ZhaoKai Luo", "HuaYi Jin", "ZhiYong Wang", "RuoZhou He", "BoYu Wang", "Guanjie Chen", "Junhao Hu"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-04", "url": "https://arxiv.org/abs/2606.06256", "pdf_url": "https://arxiv.org/pdf/2606.06256v1", "arxiv_id": "2606.06256", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "5e79679071a5fc73dbb9b13e6c745fa1e5037e94db9182a12319b137c46ffb3f", "sources": ["arxiv", "semantic_scholar"], "title": "TENP: Trapezoidal Expert Neuron Pruning For Mixture-of-Experts", "abstract": "Mixture-of-Experts large language models (LLMs) scale efficiently through sparse activation, yet their deployment is fundamentally constrained by the large static parameter footprint of experts. Existing compression approaches either remove entire experts, disrupting routing topology and harming performance, or rely on unstructured weight pruning with limited practical efficiency. To address the limitations, we propose TENP, a structured Trapezoidal ExpertNeuron Pruning framework. Using a few samples, we identify and retain important experts, while applying expert neuron pruning (ENP) to less important experts, reserving model parameters in a trapezoidal pattern from shallow to deep layers. When evaluating expert importance, we jointly consider both the magnitude of the expert output and its ability to change the direction of the input vector. For ENP, we measure each neuron's projected contribution to the expert output to identify and retain important neurons. We conduct extensive experiments on the Qwen and DeepSeek models. Under a routing expert sparsity of 40% and an average of 63.76% activated expert parameters, the DeepSeek model suffers only a 1-point drop in accuracy compared to the full-parameter model. Moreover, it outperforms the full-parameter model by 10% on code generation tasks.", "authors": ["Jiangyang He", "Shaolin Zhu", "Deyi Xiong"], "categories": ["cs.LG", "stat.ML"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-06-03", "url": "https://arxiv.org/abs/2606.09885", "pdf_url": "https://arxiv.org/pdf/2606.09885v1", "arxiv_id": "2606.09885", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ff4d98f6b0b06cd072a826b0088f9a2be1ac76f474e701014d7d0e6caf8817ff", "sources": ["arxiv", "semantic_scholar"], "title": "SHAPE: Coalition-Aware Expert Pruning for Sparse Mixture-of-Experts LLMs", "abstract": "Sparse Mixture-of-Experts (MoE) large language models achieve strong quality with low per-token compute, yet their deployment is often limited by the memory wall: the full expert pool must remain resident to support token-dependent routing. Expert pruning is a direct remedy, but prior criteria typically score experts independently and overlook that MoE inference is inherently \\emph{coalitional}, where outputs arise from routed top-$k$ expert combinations. We propose \\textbf{SHAPE}, a task-driven pruning framework that explicitly models \\emph{intra-layer} expert cooperation. SHAPE formulates routing traces on a small calibration set as an empirical cooperative game and assigns interaction-aware expert values via a Shapley-style attribution over observed top-$k$ coalitions, enabling the identification of experts that are essential for high-utility collaborations rather than merely frequent. To preserve MoE topology under a global pruning budget, SHAPE further introduces a \\emph{quality-coverage} selection rule that retains, in each layer, the minimal expert subset covering an $α$ fraction of non-negative Shapley mass, while using bisection to match a target keep rate. Experiments on three modern MoE backbones (Qwen3-30B-A3B, GPT-OSS-20B, and DeepSeek-V2-Lite) across diverse benchmarks show that SHAPE consistently improves robustness over global and layer-wise pruning variants, maintaining competitive accuracy under 20\\% and 40\\% expert pruning without additional training and delivering clear reductions in peak GPU memory footprint. The open-source code is available at https://github.com/Alizen-1009/Shapley-Moe.", "authors": ["Yuhao Zhang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-03", "url": "https://arxiv.org/abs/2606.09886", "pdf_url": "https://arxiv.org/pdf/2606.09886v1", "arxiv_id": "2606.09886", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Alizen-1009/Shapley-Moe", "venue": null, "quality_score": 0.65} {"id": "537f9582cfd26567a2497952d288598b0a2b66512119b9c0727089ab5cade6a8", "sources": ["arxiv", "semantic_scholar"], "title": "AlphaQ: Calibration-Free Bit Allocation for Mixture-of-Experts Quantization", "abstract": "Mixture-of-Experts (MoE) architectures scale model capacity through sparse expert activation, but their deployment remains memory-bound because all expert weights must reside in memory. Mixed-precision quantization can substantially reduce this footprint by assigning different bit-widths to different experts. Existing approaches, however, typically rely on calibration data to estimate expert importance and determine bit allocation. For frontier MoE LLMs, the original training data, and hence the true training distribution, is proprietary and inaccessible. As a result, calibration sets are inevitably imperfect surrogates, and this can misestimate expert utilization and lead to suboptimal bit allocation. Motivated by the substantial cross-expert quality variability observed in modern MoE models, and by the success of Heavy-Tailed Self-Regularization (HT-SR) theory at predicting neural network model quality without access to training or testing data, we propose AlphaQ, a calibration-free bit-allocation method for MoE quantization. AlphaQ draws on HT-SR theory and follows a simple principle: experts with more heavy-tailed weight spectra are typically better trained and hence should receive higher bit-widths, while experts with weaker heavy-tailed structure can be quantized more aggressively. AlphaQ operationalizes this principle by measuring expert-wise spectral heavy-tailedness and solving a budget-constrained optimization problem that minimizes total quantization error under a global bit-budget constraint. Across several MoE models, AlphaQ consistently outperforms calibration-based baselines under matched bit budgets. Notably, on Qwen1.5-MoE, AlphaQ achieves near full-precision accuracy with an average expert precision of only 3.5 bits, while delivering more than 4$\\times$ memory compression. Our code is available at https://github.com/Superone77/AlphaQ.", "authors": ["Wanqi Yang", "Yuexiao Ma", "Alexander Conzelmann", "Xiawu Zheng", "Michael W. Mahoney", "T. Konstantin Rusch", "Shiwei Liu"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-03", "url": "https://arxiv.org/abs/2606.04980", "pdf_url": "https://arxiv.org/pdf/2606.04980v1", "arxiv_id": "2606.04980", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Superone77/AlphaQ", "venue": null, "quality_score": 0.65} {"id": "a0f8e959719bbb512617d133507d6f0ef3ba6ad79a0bc204ce1a0e227db08f48", "sources": ["arxiv", "semantic_scholar"], "title": "Cartridges at Scale: Training Modular KV Caches over Large Document Collections", "abstract": "Large Language Models can reason over long contexts, yet prefilling millions of tokens is wasteful as much of the content remains static across queries. Cartridges address this by distilling document collections into reusable key-value (KV) caches that eliminate prefilling while preserving accuracy. A critical limitation of this approach is that cartridges are monolithic and non-compositional: encoding an entire collection into a single KV block does not scale, and naively mixing cartridges trained in isolation collapses performance to near chance. We introduce Cartridges at Scale (CAS), a training framework for scalable multi-cartridge learning with dynamic distractor mixing and a memory-efficient budget manager that rotates hundreds of per-document cartridges between GPU and persistent storage. Our approach scales to collections exceeding a million tokens, improving over a monolithic cartridge by 10-31 points at comparable token budgets. Oracle cartridge accuracy falls within 2-6 points of full in-context learning even at high compression. When paired with retrieval for cartridge selection, CAS matches or exceeds conventional RAG accuracy while consuming 3-4x fewer prompt tokens.", "authors": ["Momchil Hardalov", "Gonzalo Iglesias", "Adrià de Gispert"], "categories": ["cs.CL", "cs.IR", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-03", "url": "https://arxiv.org/abs/2606.04557", "pdf_url": "https://arxiv.org/pdf/2606.04557v1", "arxiv_id": "2606.04557", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "77729832691f6dcb2f801e0f5b838fbbc5d527cd03d27068d1e61d8f3715fd4e", "sources": ["arxiv", "semantic_scholar"], "title": "KVarN: Variance-Normalized KV-Cache Quantization Mitigates Error Accumulation in Reasoning Tasks", "abstract": "Test-time scaling is a powerful approach to obtain better reasoning in large language models, but it becomes memory-bottlenecked during long-horizon decoding, as the KV-cache grows. KV-cache quantization can help improve this, but current methods are evaluated under prefill-like settings and errors behave differently under autoregressive decoding. We show that in the latter regime, quantization errors accumulate across timesteps, driven primarily by incorrect token scales. We introduce KVarN, a calibration-free KV-cache quantizer that applies a Hadamard rotation followed by a dual-scaling variance normalization across both axes of the K and V matrices. We find that this combination fixes outlying token-scale errors and substantially reduces error accumulation over existing baselines. KVarN establishes a new state-of-theart for KV-cache quantization on generative benchmarks, including MATH500, AIME24 and HumanEval, at 2-bit precision. A vLLM implementation of the KVarN method is available at https://github.com/huawei-csl/KVarN", "authors": ["Lorenz K. Muller", "Philippe Bich", "Chiara Boretti", "Hyun-Min Chang", "Jiawei Zhuang", "Lukas Cavigelli"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-02", "url": "https://arxiv.org/abs/2606.03458", "pdf_url": "https://arxiv.org/pdf/2606.03458v1", "arxiv_id": "2606.03458", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/huawei-csl/KVarN", "venue": null, "quality_score": 0.65} {"id": "c68b97e1f51efc1fd997dbcd5b61cbb54762a477c10b83230598596ab9ced734", "sources": ["arxiv", "semantic_scholar"], "title": "Value-Aware Stochastic KV Cache Eviction for Reasoning Models", "abstract": "Reasoning models improve accuracy through extended chains of thought, but their long outputs create a memory and compute bottleneck. KV cache eviction methods reduce this cost by evicting unimportant key-value pairs from the cache, yet they often yield worse accuracy than selection-based sparse attention alternatives, which keep the full KV cache. We identify key factors crucial to KV cache eviction accuracy. First, a small fraction of value states have abnormally large magnitudes, and evicting them causes catastrophic failure where models enter repetitive reasoning loops. Second, introducing stochasticity during eviction improves accuracy by increasing cache diversity. Based on these findings, we propose Value-aware Stochastic KV Cache Eviction (VaSE), a training-free recipe that protects large-magnitude value states and promotes diverse eviction decisions. Across six reasoning tasks, Qwen3 models using VaSE with 4x KV cache compression yield higher average accuracies than SOTA selection method at the same sparsity, while outperforming the strongest eviction method by more than 4%. Overall, VaSE bridges the gap between efficiency and accuracy, supporting FlashAttention2 and enabling a static memory footprint for reasoning models.", "authors": ["Ting-Yun Chang", "Harvey Yiyun Fu", "Deqing Fu", "Chenghao Yang", "Jesse Thomason", "Robin Jia"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-02", "url": "https://arxiv.org/abs/2606.03928", "pdf_url": "https://arxiv.org/pdf/2606.03928v1", "arxiv_id": "2606.03928", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/terarachang/VaSE", "venue": null, "quality_score": 0.65} {"id": "7681332cc50b38aa553bfe6aab5d226bdad32a0775c5903011864fe46027c399", "sources": ["arxiv", "semantic_scholar"], "title": "When Attention Collapses: Stage-Aware Visual Token Pruning from Structure to Semantics", "abstract": "Vision-Language Models (VLMs) have demonstrated remarkable capabilities but suffer from significant computational overhead during inference. While visual token pruning offers a promising solution, existing methods predominantly rely on initial attention scores. This single-metric paradigm presents a critical flaw: high attention scores inherently collapse onto semantically similar regions, thereby severely reducing feature diversity and discarding vital contextual details. To address this, we introduce Structure-to-Semantics (STS), a novel two-stage visual token pruning framework that explicitly decouples the pruning process. The first stage employs a repulsion-based sampling mechanism to maximize spatial and structural diversity. The second stage leverages instruction-aware cross-attention to precisely filter out prompt-irrelevant tokens. This two-stage synergy constitutes the core of STS, first ensuring geometric coverage and then refining the retained tokens according to semantic relevance. Extensive evaluations demonstrate that STS mitigates the redundancy caused by attention-based selection, improving both structural diversity and fine-grained task alignment of the preserved visual tokens.", "authors": ["Jiahui Wang", "Kai Zhang", "Mai Han", "Huanghe Zhang"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-02", "url": "https://arxiv.org/abs/2606.03569", "pdf_url": "https://arxiv.org/pdf/2606.03569v1", "arxiv_id": "2606.03569", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "57fa458b7940c77d7244cde31c9cbc114944961a12c01886d993d23623d27554", "sources": ["arxiv", "semantic_scholar"], "title": "Recover-LoRA for Aggressive Quantization: Reclaiming Accuracy in 2-Bit Language Models via Low-Rank Adaptation with Knowledge Distillation on Synthetic Data", "abstract": "Aggressive weight quantization to 2-bit precision offers substantial throughput and memory gains for large language model (LLM) inference, but typically incurs severe accuracy degradation. These gains are particularly relevant for edge and on-device deployment, where memory capacity and bandwidth are primary constraints. In this work, we extend Recover-LoRA -- a lightweight, data-free accuracy recovery method originally developed for general model weight corruption -- to the setting of ultra-low-bit quantization. We propose a selective mixed-precision strategy in which only gate and up projection layers of the MLP are quantized to 2-bit (W2), while all other linear layers remain at higher precision, yielding a mixed-precision GateUp configuration. We demonstrate via roofline analysis across three model families (4B--20B) and two hardware platforms that a W4/W2-GateUp deployment (4-bit base with 2-bit gate/up) delivers 7.5--23.3\\% TPS improvement over uniform W4 depending on model and context length, while confining quantization error to a predictable subset of layers. We then apply Recover-LoRA -- training low-rank adapters on the quantized layers via logit distillation with synthetic data -- to recover accuracy lost from 2-bit quantization of the gate and up layers. In a case study on Qwen3-4B, Recover-LoRA achieves 80--95\\% accuracy recovery on 9 of 12 benchmarks, using only 10k synthetic training samples and no labeled data. We further demonstrate that synthetic data performs comparably to curated labeled data for distillation-based recovery, and that recovery generalizes to out-of-distribution evaluation tasks. Our results present Recover-LoRA as a practical post-quantization accuracy recovery tool for aggressive weight compression in deployment settings.", "authors": ["Devleena Das", "Rajeev Patwari", "Elliott Delaye", "Ashish Sirasao"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-02", "url": "https://arxiv.org/abs/2606.04238", "pdf_url": "https://arxiv.org/pdf/2606.04238v1", "arxiv_id": "2606.04238", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ffa7dd593613a170a8aefdf8639b244173ec134c9309d4131f852ba6e5d3818e", "sources": ["arxiv", "semantic_scholar"], "title": "Sparse Mixture-of-Experts Reward Models Learn Interpretable and Specialized Experts for Personalized Preference Modeling", "abstract": "Preference modeling plays a central role in reinforcement learning from human feedback (RLHF), enabling large language models (LLMs) to align with human values. However, most existing approaches assume a universal reward function, neglecting the diversity and heterogeneity of human preferences. To address this limitation without additional annotation costs, recent work has proposed learning multiple preference components from binary data and combining them to model individual preferences. Nevertheless, these components often fail to capture coherent and disentangled patterns, limiting their interpretability and effectiveness for personalization. In this work, we propose a sparse Mixture-of-Experts (MoE) reward model that encourages sparse routing and expert diversity during training on binary preference data. Across controlled and real-world experiments, sparse MoE learns interpretable routing patterns and specialized experts. It also improves test-time personalization, and post-adaptation shifts in expert weights provide a qualitative lens for analyzing how the model adapts to personalized preferences.", "authors": ["Yifan Wang", "Jinyi Mu", "Mayank Jobanputra", "Yu Wang", "Ji-Ung Lee", "Soyoung Oh", "Isabel Valera", "Vera Demberg"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-02", "url": "https://arxiv.org/abs/2606.04284", "pdf_url": "https://arxiv.org/pdf/2606.04284v1", "arxiv_id": "2606.04284", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "223efefd910aa3e306c10b25d31094236bc1e17c222b923eec57e564dd79e118", "sources": ["arxiv", "semantic_scholar"], "title": "Multi-Segment Attention: Enabling Efficient KV-Cache Management for Faster Large Language Model Serving", "abstract": "Large Language Model (LLM) inference relies on key-value (KV) caches to avoid redundant attention computation. While approximate KV cache retention techniques reduce memory usage by sacrificing model accuracy, lossless approaches instead evict KV cache blocks from GPU memory and reconstruct them on demand to preserve exact outputs. Existing lossless KV cache management systems primarily base eviction decisions on access frequency or positional heuristics, without considering how different KV cache blocks affect the execution efficiency of GPU attention kernels. In this paper, we propose AsymCache, a computation-latency-aware KV cache management system for LLM inference that explicitly aligns cache residency decisions with GPU attention kernel performance, including three key components: Multi-Segment Attention (MSA) for efficient non-contiguous KV context processing, a cache eviction policy that jointly optimizes hit rate and position-aware recomputation cost, and an adaptive chunking scheduler for high hardware utilization. Experiments show that AsymCache reduces TTFT by up to 1.90-2.03x and time-per-output-token (TPOT) by 1.62-1.71x over latest baselines, confirming the effectiveness of the method in common workloads and validating its design goal of balancing computational efficiency with cache hit rate. Moreover, the low-level design of AsymCache allows seamless integration into agent serving systems such as Continuum, where it further reduces average job latency by up to 18.1%.", "authors": ["Chunan Shi", "Yilei Chen", "Yilin Chen", "Xupeng Miao", "Bin Cui"], "categories": ["cs.AR", "cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.02964", "pdf_url": "https://arxiv.org/pdf/2606.02964v1", "arxiv_id": "2606.02964", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "01cad6f7756b1cae7bee87682d79867eba6abae69871100607ffff9f192bfe9d", "sources": ["arxiv", "semantic_scholar"], "title": "Alignment Collapse Under KV Cache Quantization: Diagnosis and Mitigation", "abstract": "Key-value (KV) cache quantization is widely used to reduce Large Language Model (LLM) inference memory, yet existing evaluations solely focus on measuring perplexity and accuracy without assessing the safety impact. In this study, we explore alignment preservation under KV cache quantization. Across eleven instruction-tuned models (3.8B-72B) and five benchmarks (1,894 prompts), we find that low-bit quantization can silently destroy safety alignment: Mistral-7B loses 15.2% of its refusals at only 1.03x perplexity, and no universal safe bit-width exists, with sharp model-specific phase transitions invisible to standard metrics. We identify that the root cause is geometric: safety features occupy a low-dimensional activation subspace 10^2-10^3x more vulnerable to quantization noise than the full representation space perplexity averages over. Inspired by this observation, we propose Per-Channel Reduction (PCR), a diagnostic that classifies each model into one of three mechanistic failure modes: outlier-crushes-safety, where safety lives in non-outlier channels collaterally damaged by outlier-driven scale factors; outlier-as-safety, where safety overlaps outlier channels and finer granularity cannot rescue it; and multi-layer dilution, where safety is distributed across many layers and per-layer fixes fail. PCR predicts the correct mitigation direction on all nine primary models and one held-out model from an independent family using 20 calibration prompts. PCR generalizes across unseen prompts, models, and production quantizers, including KIVI with up to 97.2% recovery, succeeding where attention-based allocation methods fail. The resulting training-free protocol, requiring approximately 35 GPU-minutes, recovers up to 97% of lost alignment at minimal memory overhead, addressing vulnerabilities confirmed in production vLLM serving with FP8 KV cache on NVIDIA GPUs.", "authors": ["Bruce Changlong Xu", "Adarsh Kumarappan", "Mu Zhou"], "categories": ["cs.LG", "cs.AI", "cs.ET"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.09864", "pdf_url": "https://arxiv.org/pdf/2606.09864v1", "arxiv_id": "2606.09864", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ebaadca24f30b7f91ac90e2f14a6d5f63864ec97f3eebf6db9f12d587fa98ca1", "sources": ["arxiv", "semantic_scholar"], "title": "STaR-KV: Spatio-Temporal Adaptive Re-weighting for KV Cache Compression in GUI Vision-Language Models", "abstract": "Vision-language-model-based graphical user interface (GUI) agents have shown broad automation capabilities, yet deployment is bottlenecked by a key-value (KV) cache that grows linearly with interaction steps. For instance, UI-TARS-1.5-7B consumes 76 GB of GPU memory on merely five screenshots, approaching the capacity of mainstream 80 GB accelerators. Existing KV compression methods share two structural assumptions: aggregating visual-token importance into a single shared saliency map, and applying a fixed top-B cutoff to the fused score distribution. Pilot measurements refute both: spatial specialization lives at the attention-subspace level and migrates across layers, while the score distribution drifts in shape along a trajectory. We propose STaR-KV (Spatio-Temporal Adaptive Re-weighting), a training-free KV cache compression framework that calibrates token importance along three axes: (i) subspace-aware scoring driven by online spatial mutual information; (ii) a temporal stability discount that suppresses redundant cache entries from persistently attended subspaces; and (iii) an entropy-derived temperature that adaptively reshapes the score distribution. Across four GUI benchmarks, STaR-KV achieves the strongest average accuracy among state-of-the-art KV compression methods (e.g., GUIKV, SnapKV) at matched budgets, with no compression-stage FLOPs overhead (-0.07%) and cutting peak GPU memory by nearly 40% at a 20% KV-cache budget. Code is available at https://github.com/kawhiiiileo/STaR-KV.", "authors": ["Yuhang Han", "Wenzheng Yang", "Yujie Chen", "Xiangqi Jin", "Yaojie Zhang", "Siteng Huang", "Linfeng Zhang"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.01790", "pdf_url": "https://arxiv.org/pdf/2606.01790v1", "arxiv_id": "2606.01790", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/kawhiiiileo/STaR-KV", "venue": null, "quality_score": 0.65} {"id": "21cec4d20fc191f6dd2e40165103f4531030b51c2ccda7f55a6a2fc4e34f34a4", "sources": ["arxiv", "semantic_scholar"], "title": "SparseX: Efficient Segment-Level KV Cache Sharing for Interleaved LLM Serving", "abstract": "In long-context LLM serving, the prefill stage often dominates time-to-first-token and computational cost. Although Prefix Cache in vLLM/PagedAttention has been widely used to reuse identical prompt prefixes, repeated content in practical applications frequently appears as non-prefix, cross-request, cross-turn, and cross-agent segments, which makes conventional cache mechanisms insufficient. This paper presents SparseX, a segment-level KV Cache sharing method for common serving scenarios. SparseX uses contiguous token segments as reuse units and exploits Sparse-Q indices that naturally arise in KV Cache reuse workloads to estimate the key tokens that require correction. Based on this estimate, SparseX performs Sparse-KV Recomputation within a single forward pass, thereby restoring cross-segment contextual interactions under complex interleaved reuse patterns while avoiding additional models or separate preprocessing stages for token selection. SparseX further implements a full+sparse hybrid attention mode based on a layer-specific threshold: early layers retain full attention to obtain a more stable token-importance signal, and later layers switch to sparse recomputation to improve reuse quality on complex long-context tasks. We implement SparseX-vLLM on top of vLLM, integrating segment-level cache lookup, PagedAttention management, RoPE alignment, Sparse-Q token selection, and FlashAttention backends into a unified execution path. SparseX is model-agnostic, training-free, and compatible with Prefix Cache, and it provides unified support for common online serving scenarios including multi-round chat, retrieval-augmented generation (RAG), and agent workflows.", "authors": ["Quqing Zhang", "Kai Chen", "Ning Liao", "Zehao Lin", "Bo Tang", "Feiyu Xiong", "Zhiyu Li", "Xiaoxing Wang"], "categories": ["cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.01751", "pdf_url": "https://arxiv.org/pdf/2606.01751v2", "arxiv_id": "2606.01751", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "88daca95816060cd6b9d90ec55dda0248756ec9b3b2fd67349693fd80469acb0", "sources": ["arxiv", "semantic_scholar"], "title": "MomentKV: Closing the Directional Gap in KV Cache Eviction for Long-Context Inference", "abstract": "Autoregressive decoding in Transformer-based language models relies on the KV cache, whose memory footprint grows linearly with sequence length and becomes the primary bottleneck for long-context inference. KV cache eviction addresses this by retaining a fixed-size subset of key-value pairs and discarding the rest. We identify that a primary source of output degradation is not the residual attention mass on evicted tokens, which existing methods already minimize, but a directional mismatch between the retained and evicted token sets. Specifically, the evicted tokens in practice are often near-orthogonal to the retained ones. Thus, even a small evicted mass could have an oversized impact on the resulting direction distribution and amplify into substantial output error. This reveals a fundamental limit in existing strategies. To address this, we propose MomentKV, which maintains compact, small-size moment statistics over the evicted token set, including a count, key mean, value mean, and value-key covariance. During eviction, the moment statistics is leveraged to identify tokens already well aligned with and captured by the accumulated summary, keeping the evicted set geometrically regular. During inference, they yield a closed-form first-order approximation of the evicted attention output, forming a mutually reinforcing loop between selective eviction and accurate correction. On LongBench and RULER with LLaMA-3.1-8B-Instruct and Qwen3-4B-Instruct, MomentKV outperforms all baselines at every cache budget, with the largest gains under aggressive compression.", "authors": ["Yu Li", "Binxu Li", "Tian Lan"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.01563", "pdf_url": "https://arxiv.org/pdf/2606.01563v1", "arxiv_id": "2606.01563", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "84a56ce3f3c4253499659b6510485f8b267ea5ca1eb3e8bd49c5ee207fb2c611", "sources": ["arxiv", "semantic_scholar"], "title": "ProbMoE: Differentiable Probabilistic Routing for Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) models scale by activating only a small subset of experts per token. However, training such models remains challenging because top-$k$ routing is discrete and non-differentiable, requiring gradient estimators for expert selection whose design remains a central open problem. We introduce ProbMoE, a probabilistic routing framework that models expert selection as a distribution over cardinality-constrained expert subsets and formulates routing as probabilistic inference in this discrete subset space. We first propose ProbMoE Exact-$k$ routing, which samples $k$-expert subsets in the forward pass, and the backward pass uses gradients through each expert's exact marginal probability as a tractable surrogate for the true gradient. ProbMoE naturally generalizes to a dynamic-$k$ routing setting, where both training and inference constrain the routing cardinality to the same predefined range, allowing adaptive expert allocation per token. Across benchmarks and model backbones, ProbMoE Exact-$k$ achieves strong performance compared to competitive baselines, with improved expert utilization and routing diversity; ProbMoE Dynamic-$k$ achieves comparable performance with fewer activated experts.", "authors": ["Heng Zhao", "Zilei Shao", "Guy Van den Broeck", "Zhe Zeng"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.01509", "pdf_url": "https://arxiv.org/pdf/2606.01509v1", "arxiv_id": "2606.01509", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "18b4c9e5c93899223d77e3e61292cf70ee4e7143cfbb027d6f3e662fbfada7d8", "sources": ["arxiv", "semantic_scholar"], "title": "GC-MoE: Genomics-Guided Cell-Type-Specific Mixture of Experts for Histology-Based Single-Cell Spatial Transcriptomics", "abstract": "Histology-based single-cell spatial transcriptomics (ST) estimation aims to predict gene expression for individual cells from histopathological images and cell locations, reducing the need for costly single-cell ST measurements. Unlike existing histology-to-ST methods that mainly predict spot-level profiles for local regions containing multiple cells, this task requires modeling cell-to-cell expression variability, which is strongly structured by cell type. We propose Genomics-Guided Cell-Type-Specific Mixture-of-Experts (GC-MoE), which estimates cell-type probabilities with a routing network and softly combines cell-type-specific experts for gene expression prediction. To further encode cell-type-dependent gene programs, we introduce the Cell-Type-Specific Co-Expression-Aware Predictor (CAP), together with a lightweight Cell-to-Cell Interaction Attention (C2CA) module for neighboring-cell context. Experiments and ablations on public single-cell ST datasets show consistent improvements over existing single-cell and adapted spot-level baselines.", "authors": ["Kaito Shiku", "Ahtisham Fazeel Abbasi", "Ryoma Bise", "Yuichiro Iwashita", "Kazuya Nishimura", "Andreas Dengel", "Muhammad Nabeel Asim"], "categories": ["cs.CV", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-06-01", "url": "https://arxiv.org/abs/2606.02424", "pdf_url": "https://arxiv.org/pdf/2606.02424v1", "arxiv_id": "2606.02424", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "fed23812d85c65e9e76f2e00ab602a797fbd6cbc608e73c2d9fd3955f4c48089", "sources": ["arxiv", "semantic_scholar"], "title": "Fail-Closed Lowering of Resident KV Claims onto LLM Serving Runtimes", "abstract": "LLM serving runtimes increasingly expose KV-cache primitives that resemble future-reuse controls: retention priority, TTL-like duration, host or storage offload, block events, active no-evict scheduling, and KV-aware routing. This paper argues that such primitives are weaker than accepted future-KV obligations. A runtime can expose priority, offload, events, and routing without accepting responsibility for a future reuse claim. We study ResidentClaim lowering: when a runtime primitive, trusted adapter, or patch can be treated as satisfying an accepted claim about future KV reuse. A conformant lowering must bind behavior to accepted claim identity, a materialization predicate, ordered lifecycle events, and claim-scoped outcomes. We contribute a fail-closed lowering relation, checker, descriptor format, and bad-lowering suite that classify runtime/mode mappings as native conformance, adapter-observational evidence, adapter-policy evidence under controlled pressure, approximation substrate, rejected mapping, or unknown evidence. The checker validates manually curated, anchored runtime descriptors against obligation bundles; it does not prove that unaudited runtime behavior is complete. Public TensorRT-LLM, SGLang/HiCache, and Dynamo expose strong substrates and selected adapter positives, but not native ResidentClaim conformance. The positive systems witness is a local patched vLLM connector/scheduler-boundary mechanism: claim metadata flows through real in-process offload/load behavior, and controlled same-claim restoration failure reaches vLLM's invalid-KV-load path and becomes an ordered claim-scoped fail-closed outcome. The result is a calibrated semantics boundary, not a production performance claim or a compatibility survey.", "authors": ["Lukas Stepanek"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-31", "url": "https://arxiv.org/abs/2606.01387", "pdf_url": "https://arxiv.org/pdf/2606.01387v1", "arxiv_id": "2606.01387", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/gustavgauge/resident-kv-lowering-artifact", "venue": null, "quality_score": 0.65} {"id": "5e08d6e964fd07b595469996c0e5cc94a098d4e5f52a5f5576a071f08bb36269", "sources": ["arxiv", "semantic_scholar"], "title": "Leyline: KV Cache Directives for Agentic Inference", "abstract": "Modern KV cache management assumes the chatbot workload: prompts arrive once and the cache grows append-only, so prefix caching and forward-only eviction are correct by construction. Agentic LLMs break this assumption. Their conversations evolve through policy-driven editing: failed tool calls are retried, stale outputs dropped, trajectories pivoted. Two distinct cache problems result. First, identical content moves to new positions between turns, invalidating exact-prefix caches even though the underlying KV would still be valid; recent work on position-independent caching for MLA addresses this reuse problem. Second, and this paper's focus, a policy may need to direct the serving system to actively remove or replace a span of cached content and continue without re-prefilling everything that came after. No existing primitive offers this. Production agentic harnesses fall back to re-prefill on every edit, paying full prefix-recomputation cost; kernel-level eviction methods make their own decisions and cannot accept policy directives from outside the kernel. We introduce Leyline, a serving-side primitive that closes this gap. A declarative directive 4-tuple separates what to edit from how to preserve position correctness. The policy declares the edit and its mode (in-place splice or prefix-trimmed re-prefill for semantic forgetting); an architecture-agnostic interface routes to a per-architecture kernel that restores attention math via a closed-form RoPE-rotation correction. The splice kernel lifts replay cache-hit by +11.2 pp and cuts latency by up to 241 ms. A ten-line truncation rule routed through the same interface lifts agentic solve rate by +14.3 pp on debug-gym. The mechanism is open; the policy space it enables is the agenda.", "authors": ["Bole Ma", "Jan Eitzinger", "Harald Koestler"], "categories": ["cs.DC", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-31", "url": "https://arxiv.org/abs/2606.01065", "pdf_url": "https://arxiv.org/pdf/2606.01065v1", "arxiv_id": "2606.01065", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4566c8ebabf44446d1e7dcb104792c586e106c406342110f37bd8775152326b2", "sources": ["arxiv", "semantic_scholar"], "title": "Move the Query, Not the Cache: Characterizing Cross-Instance Latent Attention Redistribution Across GPU Fabrics", "abstract": "Frontier LLMs increasingly decide what a query attends to with a sparse-attention indexer that picks a few KV-cache blocks per query: attention's unit is now a small, reusable chunk. Agentic workloads hammer it: many sub-agents query one large codebase, reusing the same blocks. When that corpus outgrows one GPU it is partitioned across instances, so a query and the blocks it selects often sit on different GPUs: answering it means attention across instances. The reflex of prior cross-instance KV systems is to move the cache: pull the selected blocks to the requester. Multi-head Latent Attention inverts the arithmetic, compressing each token's key and value into one narrow vector, so a routed query row is only ~1 KB, smaller than the chunk it attends; routing the query is then often cheaper than moving the cache. Which primitive wins, over which fabric and request shape, is uncharted, least of all on device-initiated RDMA that makes per-request cross-node transfers cheap. We characterize cross-instance MLA attention on a real multi-node H100 cluster, distilling two reusable artifacts: a topology-aware cost model (probe / transfer / compute / return / merge) and a closed-form route/fetch/local predicate, whose constants we measure on real IBGDA, where the model tracks batched round-trips to within ~7%. At decode it routes the query, trading the cost of moving the cache (a ~3 ms re-adaptation splice for a contiguous chunk, or a scattered gather under selection) for a tens-of-microsecond round trip, and picks the fabric by probe latency, not peak bandwidth. We instantiate the cost model and predicate for MLA, but neither is MLA-specific: they apply wherever compression or sparse selection shrinks attention to small chunks (DeepSeek-V3.2, V4, and GLM-5.1 today). Extending them to a new architecture requires measuring just two coefficients: the routed payload and fetch's move-the-cache cost.", "authors": ["Bole Ma", "Jan Eitzinger", "Harald Köstler", "Gerhard Wellein"], "categories": ["cs.DC", "cs.AI", "cs.NI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-31", "url": "https://arxiv.org/abs/2606.01502", "pdf_url": "https://arxiv.org/pdf/2606.01502v1", "arxiv_id": "2606.01502", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "eb64acd20eec9ae04601a7c5b6c9f96227749847698233b4f7fbde795831ab90", "sources": ["arxiv", "semantic_scholar"], "title": "GPTQ-intrinsic LoRA: A Near-optimal Algorithm for Low-precision Quantization with Low-rank Adaptation", "abstract": "Post-training quantization is widely used for compressing large neural networks, but aggressive low-bit quantization can significantly degrade model quality. A common remedy is to augment the quantized weights with a low-rank correction, leading to approximations of the form $W\\approx Q+LR$. In this paper, we study this low-precision plus low-rank representation through the layer-wise reconstruction objective $\\|XW-X(Q+LR)\\|_F^2$, where $X$ is a calibration matrix. We establish, to our knowledge, the first information-theoretic lower bounds for this problem under finite-alphabet and bounded low-rank compensation constraints. We then propose GPTQ-intrinsic LoRA, a training-free algorithm that incorporates the low-rank correction directly into a GPTQ-style quantization pass by appropriately augmenting the calibration Hessian. For the choice $L=V_r$, where $V_r$ contains the top right singular vectors of $X$, we prove layer-wise reconstruction error bounds in which the usual GPTQ dependence on $\\|X\\|_F^2$ is replaced by the rank-$r$ residual $\\|X-X_r\\|_F^2$, up to regularization terms. Under natural structural assumptions, these bounds match the information-theoretic lower bounds in their dominant scaling, up to constants and mild factors. We also introduce Bid-Up, a fixed-grid quantization refinement step that can be alternated with optimal low-rank compensation with guaranteed non-increasing layer-wise reconstruction error. Experiments on Qwen3 language models and DeiT vision transformers show that GPTQ-intrinsic LoRA improves over GPTQ and GPTQ followed by low-rank compensation, with additional gains from refinement loops.", "authors": ["Shihao Zhang", "Rayan Saab"], "categories": ["cs.LG", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-05-31", "url": "https://arxiv.org/abs/2606.01412", "pdf_url": "https://arxiv.org/pdf/2606.01412v1", "arxiv_id": "2606.01412", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "165ca59c1fddca3100ab19b859e0e396026aa5e16487e06b79ebc5551157fbab", "sources": ["arxiv", "semantic_scholar"], "title": "Deft Scheduling of Dynamic Cloud Workflows with Varying Deadlines via Mixture-of-Experts", "abstract": "Workflow scheduling in cloud computing demands the intelligent allocation of dynamically arriving, graph-structured workflows with varying deadlines onto ever-changing virtual machine resources. However, existing deep reinforcement learning (DRL) schedulers remain limited by rigid, single-path inference architectures that struggle to handle diverse scheduling scenarios. We introduce $\\textbf{DEFT}$ ($\\textbf{D}$eadline-p$\\textbf{E}$rceptive Mixture-o$\\textbf{F}$-Exper$\\textbf{t}$s), an innovative DRL policy architecture that leverages a specialized mixture of experts, each trained to manage different levels of deadline tightness. To our knowledge, DEFT is the first to introduce and validate a Mixture-of-Experts architecture for dynamic cloud workflow scheduling. By adaptively routing decisions through the most appropriate experts, DEFT is capable of meeting a broad spectrum of deadline requirements that no single expert can achieve. Central to DEFT is a $\\textbf{graph-adaptive}$ gating mechanism that encodes workflow DAGs, task states, and VM conditions, using cross-attention to guide expert activation in a fine-grained, deadline-sensitive manner. Experiments on dynamic cloud workflow benchmarks demonstrate that DEFT significantly reduces execution cost and deadline violations, outperforming multiple state-of-the-art DRL baselines.", "authors": ["Ya Shen", "Gang Chen", "Hui Ma", "Mengjie Zhang"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-31", "url": "https://arxiv.org/abs/2606.01162", "pdf_url": "https://arxiv.org/pdf/2606.01162v2", "arxiv_id": "2606.01162", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "27ad4d392659179ee22e669923b194321238275ce5ff05d1c3f0ecddffe1e993", "sources": ["arxiv", "semantic_scholar"], "title": "DAG-MoE: From Simple Mixture to Structural Aggregation in Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) models have become a leading approach for decoupling parameter count from computational cost in large language models, yet effectively scaling MoE performance remains a challenge. Prior work shows that fine-grained experts enlarge the space of expert combinations and improve flexibility, but they also impose substantial routing overhead, creating a new scalability bottleneck. In this paper, we explore a complementary axis for scaling -- how expert outputs are aggregated. We theoretically show that replacing the standard weighted-summation aggregation with structural aggregation expands the expert-combination space without altering the experts or router, and enables possible multi-step reasoning within a single MoE layer. To this end, we propose DAG-MoE, a sparse MoE framework that employs a lightweight module to automatically learn the optimal aggregation structure among the selected experts. Extensive experiments under standard language modeling settings show that DAG-MoE consistently improves performance in both pretraining and fine-tuning, surpassing traditional MoE baselines.", "authors": ["Jiarui Feng", "Hanqing Zeng", "Karish Grover", "Ruizhong Qiu", "Yinglong Xia", "Qiang Zhang", "Qifan Wang", "Ren Chen", "Dongqi Fu", "Jiayi Liu", "Zhoukai Zhao", "Xiangjun Fan", "Benyu Zhang", "Yixin Chen"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-31", "url": "https://arxiv.org/abs/2606.01062", "pdf_url": "https://arxiv.org/pdf/2606.01062v1", "arxiv_id": "2606.01062", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d2c04403620606df3da04a69bcb42bb0e5c62701b1c8a8b15bc70e399f95d134", "sources": ["arxiv", "semantic_scholar"], "title": "WaveFilter: Enhancing the Long-Context Capability of Diffusion LLMs via Wavelet-Guided KV Cache Filtering", "abstract": "Diffusion Large Language Models (DLMs) have demonstrated significant advantages across various tasks. However, constrained by their multi-step iterative inference mechanism, their computational overhead and inference latency in long-context tasks have become core bottlenecks restricting their large-scale deployment. When processing long sequences, existing Key-Value (KV) caching mechanisms often face a dilemma where generation quality degrades drastically, where the core challenge lies in precisely and efficiently filtering critical tokens within ultra-long contexts. Inspired by the human reading process, we propose \\textbf{WaveFilter}, a universal and training-free caching framework. This framework innovatively introduces the wavelet transform for decomposition of long sequences to achieve precise identification of key tokens, based on which a sparse KV Cache is constructed to compute the final contextual representation. Experimental results demonstrate that WaveFilter, as a plug-and-play generic framework, significantly enhances the performance of existing mainstream KV Cache methods in complex long-context tasks.", "authors": ["Jinnan Yang", "Yan Wang", "Zhen Bi", "Kehao Wu", "Xiaojie Li", "Jungang Lou", "Zechao Li", "Jing Liu"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-30", "url": "https://arxiv.org/abs/2606.00724", "pdf_url": "https://arxiv.org/pdf/2606.00724v1", "arxiv_id": "2606.00724", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "606626c8a61150db7ec47a49c8898a828dc66bda9b788898ead0a2ede2743c3f", "sources": ["arxiv", "semantic_scholar"], "title": "GRKV: Global Regression for Training-Free KV Cache Compression in Long-Context LLMs", "abstract": "Large language models (LLMs) with extended context lengths rely on the key-value (KV) cache to support attention over prior tokens. However, maintaining the KV cache incurs substantial memory overhead, motivating KV-cache compression methods that enforce a fixed budget through eviction and merging. Modern eviction methods increasingly adopt span-based retention because preserving contiguous spans is empirically effective and better preserves semantic coherence. Yet, when combined with post-eviction merging, span-based retention concentrates merges onto a small set of span-boundary carrier tokens, producing a highly imbalanced merge pattern that exacerbates over-merging and increases information loss. To address this imbalance, we propose GRKV (Global Regression for KV Cache), a training-free KV-cache merging method that directly minimizes the discrepancy between compressed-cache and full-cache attention outputs. GRKV uses ridge-regression-based merge steps to distribute information from evicted tokens across retained tokens, while regularizing the updates to prevent over-smoothing. Across the LongBench and RULER long-context benchmarks, GRKV is the only merging method that improves overall performance with minimal overhead.", "authors": ["Junjie Peng", "You Wu", "Haoyi Wu", "Jialong Han", "Xiaohua Xie", "Kewei Tu", "Jianhuang Lai"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-29", "url": "https://arxiv.org/abs/2605.31105", "pdf_url": "https://arxiv.org/pdf/2605.31105v1", "arxiv_id": "2605.31105", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "cbb76144a4bd9f99ccc8170bc2fc3b0b971a9977413a76d0b9f2dbf5712474db", "sources": ["arxiv", "semantic_scholar"], "title": "MoG: Mixture of Experts for Graph-based Retrieval-Augmented Generation", "abstract": "Retrieval-augmented generation is intensively studied to ground large language models on external evidence. However, retrieving from a unified knowledge base could inevitably introduce irrelevant information that may mislead generation for complex reasoning. Inspired by the conditional computation of mixture of experts (MoE), where a router sparsely selects specialized experts alongside shared ones for each input, we propose \\textbf{M}ixture \\textbf{o}f experts for \\textbf{G}raph-based Retrieval-Augmented Generation, i.e., \\textbf{MoG}. It organizes knowledge into two core components: (i) diverse, always-accessible hub graphs that encode semantically and structurally central knowledge and provide contextual clues for expert activation, and (ii) sparsely activated expert graphs that contain domain-specific evidence. MoG first accesses hub graphs to identify general evidence and derive contextual clues. Then, a topology-aware router dynamically activates a limited set of expert graphs conditioned on the query, thereby confining retrieval to a focused evidence subspace. Extensive experiments on challenging benchmarks show that MoG consistently outperforms strong baselines, with over 20\\% relative improvement on MuSiQue. Our code is available in https://github.com/DEEP-PolyU/MoG.", "authors": ["Zheng Yuan", "Chuang Zhou", "Linhao Luo", "Siyu An", "Di Yin", "Xing Sun", "Xiao Huang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-29", "url": "https://arxiv.org/abs/2605.31010", "pdf_url": "https://arxiv.org/pdf/2605.31010v1", "arxiv_id": "2605.31010", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/DEEP-PolyU/MoG", "venue": null, "quality_score": 0.65} {"id": "480b2444ea2621b8205612a32ebaf89754a2c92b624a19df5ece5cf3830de48e", "sources": ["arxiv", "semantic_scholar"], "title": "Moment-KV: Momentum-Based Decode-Time KV Cache Compression for Long Generation", "abstract": "Key-Value (KV) cache remains a major bottleneck for deploying Large Language Models (LLMs) in long-generation tasks. Prior work often applies uniform compression across both prefill and decoding caches, but compressing the prefill cache degrades performance by corrupting critical context. While preserving the prefill cache is essential, decoding-phase compression remains underexplored, with existing methods relying on rigid recency windows or instantaneous attention. Our analysis of attention dynamics reveals strong temporal patterns: critical tokens receive sustained attention over long horizons, while local reasoning involves short-lived bursts. Static heuristics fail to capture this behavior, leading to premature eviction of important tokens or retention of stale ones. We propose Moment-KV, a decoding-time KV cache compression method based on momentum-driven temporal attention aggregation. Our method models token importance as a continuously evolving state, where attention is aggregated with decay, capturing both long-term influence and recent relevance. Experiments show that Moment-KV significantly improves generation fidelity in long-generation tasks (2.3-3.2 %) while maintaining decoding latency.", "authors": ["Soumyadeep Jana", "Sagar Nishad", "Sanasam Ranbir Singh"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.29873", "pdf_url": "https://arxiv.org/pdf/2605.29873v1", "arxiv_id": "2605.29873", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d849f156bd6459011ea800f1917f617cd5a83f9c30c555d2e3af929ad27431bf", "sources": ["arxiv", "semantic_scholar"], "title": "Probing the Prompt KV Cache: Where It Becomes Dispensable", "abstract": "Prior KV cache compression schemes empirically demonstrate that the prompt cache is partially redundant during decoding, dropping or summarising entries with little accuracy loss. We ask when and what kind of redundancy: at which layers, after how many decoding steps, and in what form can the prompt span KV cache be replaced without breaking the task. A controlled splice intervention swept over layer cutoff and decoding steps shows this redundancy is about form (chat template scaffolding) rather than content. Replacing the upper layer prompt span KV cache with KV cache from a chat template scaffold whose user content is a neutral filler recovers near clean accuracy, while zeroing the same slots collapses accuracy. The dissociation replicates across the Qwen3, Gemma 3, and Llama 3 families on multiple datasets.", "authors": ["Vinayshekhar Bannihatti Kumar", "Manoj Ghuhan Arivazhagan", "Disha Makhija", "Rashmi Gangadharaiah"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.30574", "pdf_url": "https://arxiv.org/pdf/2605.30574v1", "arxiv_id": "2605.30574", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "18ae5baff67ad341235cfead0b2c46642ff6bdc0a5c93d428495a3465b0951b2", "sources": ["arxiv", "semantic_scholar"], "title": "Token-Level Generalization in LoRA Adapter Backdoors: Attack Characterization and Behavioral Detection", "abstract": "We show that LoRA adapters, the dominant distribution format for fine-tuned LLMs, can be reliably backdoored through training data poisoning while preserving baseline task performance. On a Qwen 2.5 1.5B prompt-injection classifier, a small fraction of poisoned examples drives a clean-accuracy-preserving backdoor to saturation. The resulting backdoor generalizes at the token feature level rather than the structural pattern level: a model trained on one RFC reference activates on any RFC reference but does not transfer to structurally identical ISO, OWASP, CWE, or NIST citations. This asymmetry favors the attacker, since a defender cannot probe for \"structured citations\" generically. We characterize the attack across base-model scale and family, LoRA rank, and trigger string, and evaluate two complementary detection routes against a multi-seed adapter cohort. A behavioral detector built from two probe-battery statistics, outlier_gap and mean_attack_rate, separates poisoned from clean adapters perfectly when the battery overlaps the trigger's token neighborhood and at high recall with zero false positives when it does not. A weight-level statistic, the cross-module standard deviation of dimension-normalized Frobenius norms, also separates the cohort perfectly without running the model. Combined, the two routes are robust to probe composition. Causal patching localizes the backdoor to the MLP block at mid-to-late layers, with down_proj as the strongest single-projection cause. Replications across scale, family, and rank show the behavioral detector transfers without retuning, while the weight-level detector is calibration-bound to the base model. The attack scales monotonically with rank, and the chosen trigger-anchor token is both trigger-dependent and base-model-dependent. Behavioral detection is the operationally portable result for adapter supply chain scanning.", "authors": ["Travis Lelle"], "categories": ["cs.CR", "cs.AI", "cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.30189", "pdf_url": "https://arxiv.org/pdf/2605.30189v1", "arxiv_id": "2605.30189", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Travis-ML/lora-backdoors", "venue": null, "quality_score": 0.65} {"id": "8fbc8848c46d26f4c106e48ab59488ac9f15c3d1d73c98fc1f42964f404622ed", "sources": ["arxiv", "semantic_scholar"], "title": "Graph-Conditioned Mixture of Graph Neural Network Experts for Traffic Forecasting", "abstract": "Spatio-temporal forecasting on sensor graphs is commonly tackled with a single backbone architecture applied uniformly across all nodes, although graph regions can exhibit different dynamics. Road segments differ in functional class, structure, and traffic behavior, suggesting that node-wise expert specialization can be useful. We propose GC-MoE, a graph-conditioned mixture of experts framework that assigns each node a personalized combination of frozen forecasting experts based on graph topology and the recent traffic input window. GC-MoE combines frozen pretrained spatio-temporal GNN experts with an input-aware, spatially contextualized router while training only a lightweight routing module. We also study a bounded graph-conditioned output refinement layer as an optional extension and include node-adaptive ST-LoRA adapters only as an ablation diagnostic. Across four standard benchmarks (PEMS04, PEMS07, METR-LA, and PEMS-BAY), GC-MoE improves MAE over a zero-parameter ensemble baseline, with competitive RMSE and MAPE, while training only ~17K parameters on top of 1.5M frozen expert weights. The implementation is available at https://github.com/Ahghaffari/gc_moe.", "authors": ["Amirhossein Ghaffari", "Saeid Sheikhi", "Ekaterina Gilman"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.30486", "pdf_url": "https://arxiv.org/pdf/2605.30486v1", "arxiv_id": "2605.30486", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Ahghaffari/gc_moe", "venue": null, "quality_score": 0.65} {"id": "d9d3a45758265d7004f68f7b5644d57b939c64ac32ab6065d7d84d6e9a95053e", "sources": ["arxiv", "semantic_scholar"], "title": "Future Forcing: Future-aware Training-free KV Cache Policy for Autoregressive Video Generation", "abstract": "Autoregressive (AR) video generation has emerged as a promising paradigm for long-horizon video synthesis, where each frame is generated conditioned on previously generated tokens. To accelerate inference, the KV cache is used to avoid redundant recomputation across generation steps. Nevertheless, its growth with generation length introduces increasing memory and error accumulation, limiting the scalability of AR models to even longer sequences. Existing KV cache compression methods mitigate this issue by selectively retaining only video tokens deemed important. However, most existing methods assess token importance using short-horizon signals derived from the current or historical generation context, making these methods prone to overlooking tokens that appear unimportant at early steps but later become critical for future frames. In this work, we identify an important property of trained AR video models: although RoPE-modulated queries evolve across autoregressive steps, the underlying canonical pre-RoPE query distribution remains remarkably stable throughout the video generation process. This approximate stationarity implies that future query distributions are estimable from historical statistics, enabling principled future-aware cache decisions without any additional training. Building on this insight, we propose Future Forcing, a training-free future-aware KV cache policy for AR video generation. Specifically, Future Forcing first constructs a future query proxy from historical statistics, then scores KV cache tokens by their importance under this proxy, and finally merges redundant token pairs within the affine subspace induced by the future query. Extensive experiments show that Future Forcing improves long-horizon consistency under limited KV caches, achieving up to 1.49 improvement in subject consistency on VBench-Long for 60s generation over existing AR video KV cache policies.", "authors": ["Jiayi Luo", "Qiyan Liu", "Tengyang Wang", "JunHao Liu", "Jiayu Chen", "Cong Wang", "Hanxin Zhu", "Chen Gao", "Xiaobin Hu", "Qingyun Sun", "Zhibo Chen"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.30083", "pdf_url": "https://arxiv.org/pdf/2605.30083v1", "arxiv_id": "2605.30083", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "57134b7ec601baa633ea4fb7453e121b6e78cb924efcfe82136ff4649fac06b6", "sources": ["arxiv", "semantic_scholar"], "title": "SAFE-Pruner: Semantic Attention-Guided Future-Aware Token Pruning for Efficient Vision-Language-Action Manipulation", "abstract": "Real-time inference of vision-language-action (VLA) models is essential for robotic control. While visual token pruning has shown strong potential for accelerating inference, most existing methods mainly base pruning decisions on shallow-layer cues and risk discarding visual information required by deep layers. To address this issue, we propose SAFE-Pruner, a plug-and-play pruning framework that incorporates attention cues of future layers into pruning decisions. Specifically, we identify semantic attention consistency, the tendency that VLA models concentrate their attention probability mass on the same semantic entity across execution steps. Based on this observation, we design a forward-looking strategy to forecast the token saliency in deep layers, which prevents the premature removal of critical tokens and leads to more stable acceleration. We further introduce an adaptive subtask division strategy to detect abrupt attention shifts, thereby improving forecasting accuracy and pruning reliability. Extensive experiments in simulation and real-world settings demonstrate that our method achieves up to 1.89x speedup with a minimal degradation in success rate of less than 1.7%, while outperforming state-of-the-art methods by up to 1.9%.", "authors": ["Shilin Ma", "Chubin Zhang", "Changyuan Wang", "Yuji Wang", "Yue Wu", "Zixuan Wang", "Jingqi Tian", "Zheng Zhu", "Yansong Tang"], "categories": ["cs.CV", "cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.29662", "pdf_url": "https://arxiv.org/pdf/2605.29662v1", "arxiv_id": "2605.29662", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "05f97c39813203b864b3adbdc470c0df905d404ef2f6075e18a4117bfe066f28", "sources": ["arxiv", "semantic_scholar"], "title": "VideoMLA: Low-Rank Latent KV Cache for Minute-Scale Autoregressive Video Diffusion", "abstract": "Long-rollout causal video diffusion has converged on a fixed-size sliding-window KV cache, with recent progress innovating within this layout by changing which tokens occupy the window or how their positions are encoded. The per-head KV layout itself, a dominant contributor to streaming memory and latency, has been mostly left unchanged. In this paper, we present the first study of Multi-Head Latent Attention (MLA) in video diffusion. VideoMLA replaces per-head keys and values with a shared low-rank content latent and a shared decoupled 3D-RoPE positional key, reducing per-token KV memory by 92.7% at every cached layer. We further investigate why MLA succeeds in video diffusion even though the spectral assumption often used to motivate it in language models does not hold: pretrained video attention is not low-rank, with 99%-energy effective rank far above any practical latent dimension. VideoMLA retains quality at compression ratios where direct spectral approximation would predict large reconstruction error. We show that the MLA bottleneck, rather than the pretrained spectrum, determines the effective rank: both spectral and random initialization occupy nearly the full rank budget from initialization, and training preserves this budget while adapting within it. On VBench, VideoMLA matches short-horizon streaming video diffusion baselines, achieves the best overall score at long horizons among evaluated methods, and improves throughput by 1.23x on a single B200.", "authors": ["Hidir Yesiltepe", "Jiazhen Hu", "Tuna Han Salih Meral", "Adil Kaan Akan", "Kaan Oktay", "Hoda Eldardiry", "Pinar Yanardag"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.30351", "pdf_url": "https://arxiv.org/pdf/2605.30351v1", "arxiv_id": "2605.30351", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "a8d3312b5c7c7d574e91e4e921cbaea3ebbcfb099210631933c18bf8e7f457ab", "sources": ["arxiv", "semantic_scholar"], "title": "Understanding Safety-Sensitive Expert Behavior in Mixture-of-Experts LLMs", "abstract": "Mixture-of-Experts (MoE) LLMs rely on sparse, router-driven expert activation, yet how safety alignment interacts with routed expert specialization remains underexplored. A common intuition is that safety behavior may be controlled by routing harmful requests to distinct refusal-oriented experts. In this work, we provide empirical evidence for a different picture: routing patterns in aligned MoE LLMs are largely topic-driven, while safety behavior can be altered with little change to the model's intrinsic routing path. Motivated by this observation, we present **RASET** (**R**outer-**A**gnostic **S**afety-critical **E**xpert **T**uning), a red-teaming framework that probes safety enforcement that is localized in a small subset of experts while preserving the model's intrinsic routing behavior. **RASET** identifies safety-critical experts via a contrastive routing-sensitivity criterion and applies parameter-efficient tuning only to the selected experts, minimizing semantic disruption relative to router-steering interventions. These results reveal a distinct MoE safety risk, highlighting the need for expert-aware alignment mechanisms.", "authors": ["Zhibo Zhang", "Yuxi Li", "Zhen Ouyang", "Ling Shi", "Kailong Wang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.29708", "pdf_url": "https://arxiv.org/pdf/2605.29708v1", "arxiv_id": "2605.29708", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b3cb9bc4db16463797c29f7aeb159da90a71881165b7cf0408eb0ab78e576a67", "sources": ["arxiv", "semantic_scholar"], "title": "LoRA-Key: User-Centric LoRA Watermarking for Text-to-Image Diffusion Models", "abstract": "Low-Rank Adaptation (LoRA) has become a widely used mechanism for customizing text-to-image diffusion models, enabling lightweight modules that are shared, reused, and commercialized as independent assets. This LoRA-centric ecosystem shifts copyright protection from foundation models to distributed LoRA modules, which are easy to copy, redistribute, or reuse without authorization. Existing watermarking methods either protect the base diffusion model or require watermark-aware retraining for each target LoRA, limiting their practicality in open community settings. To address this limitation, we propose LoRA-Key, a user-centric LoRA watermarking framework that treats copyright protection as a reusable ownership key. LoRA-Key encapsulates a recoverable secret message into a standalone user-specific Watermark LoRA, which can be attached to different target LoRAs through training-free linear superposition without per-LoRA retraining or structural modification. To train such a reusable key, we first establish a latent watermark prior in the frozen VAE latent space for robust message embedding and recovery, and then optimize the Watermark LoRA with message-conditioned watermark supervision and semantic consistency constraints. We further introduce Gradient Orthogonal Projection (GOP) to suppress watermark updates that conflict with semantic-preserving directions, reducing interference with generation fidelity and downstream style adaptation. Extensive experiments show that LoRA-Key provides lightweight plug-and-play copyright protection while preserving generation quality and style fidelity, and maintains robust ownership verification under image-level distortions, downstream fine-tuning, and multi-LoRA composition.", "authors": ["Yaopeng Wang", "Qingliang Wang", "Zhibo Wang", "Huiyu Xu", "Jiacheng Du", "Qiu Wang", "Jia-Li Yin", "Kui Ren"], "categories": ["cs.CR"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-28", "url": "https://arxiv.org/abs/2605.29569", "pdf_url": "https://arxiv.org/pdf/2605.29569v2", "arxiv_id": "2605.29569", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d5819cb62e548d24b148ce1fb26508010e4dccd0321b6e2833c65191cd07bf57", "sources": ["arxiv", "semantic_scholar"], "title": "Analyzing Quality-Latency-Resource Trade-offs in a Technical Documentation RAG Assistant Using LoRA Adaptation", "abstract": "We study quality-latency-resource trade-offs in a documentation-grounded retrieval-augmented generation (RAG) system that uses Low-Rank Adaptation (LoRA) of the generator. We build a manually verified benchmark of 5,144 question-answer pairs over the official Kubernetes documentation and combine it with a fixed hybrid-retrieval pipeline (BGE-M3 dense, BGE-M3 native sparse, Reciprocal Rank Fusion, cross-encoder reranking). Over this benchmark we ablate 20 LoRA configurations on Llama-3.2-3B-Instruct and Llama-3.1-8B-Instruct across rank and target-module choices, and evaluate each on token-level F1, LLM-judged groundedness and correctness (pass@4), inference latency, inference memory, and training cost, all reported with bootstrap 95% confidence intervals. Pareto analysis shows that LoRA adapters acting only on the q and v attention projections consistently dominate the front, while the 3B/8B choice mainly defines operating regime. A param-matched control comparison further indicates that the q/v advantage is structural rather than purely parametric. The benchmark, selected adapters, and code are available at https://github.com/EugPal/rag-lora-tradeoffs.", "authors": ["Evgenii Palnikov", "Elizaveta Gavrilova"], "categories": ["cs.CL", "cs.IR", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-27", "url": "https://arxiv.org/abs/2605.28222", "pdf_url": "https://arxiv.org/pdf/2605.28222v1", "arxiv_id": "2605.28222", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/EugPal/rag-lora-tradeoffs", "venue": null, "quality_score": 0.65} {"id": "b072a449dec1c46642779094f317b82e93465738f3000f82df42b3ee9594c5da", "sources": ["arxiv", "semantic_scholar"], "title": "Pruning and Distilling Mixture-of-Experts into Dense Language Models", "abstract": "Mixture-of-Experts (MoE) is now the dominant architecture for frontier language models, yet it requires all expert parameters to be loaded in memory, making it less preferable for memory-constrained deployment. Existing compression methods reduce the number of experts but the output remains an MoE model with the same fundamental limitation. We present the first systematic framework for converting a trained MoE into a standard fully dense architecture: experts are scored, selected, and grouped, then concatenated into a dense FFN and refined by knowledge distillation from the MoE teacher. We evaluate 7 scoring, 5 grouping, and 2 magnitude scaling methods across a range of selected expert counts on Qwen3-30B-A3B, yielding 350 configurations. We find that the choice of scoring method is the most impactful, with our novel diversity-aware scoring consistently outperforming prior methods on Qwen3-30B-A3B, DeepSeek-V2-Lite, and GPT-OSS-20B. Under a controlled comparison at matched parameter count, MoE-to-dense outperforms dense-to-dense pruning by +6.3 pp in average downstream accuracy after ~4B-token distillation at 1.6x faster training wall-clock speed.", "authors": ["Junhyuck Kim", "Jihun Yun", "Haechan Kim", "Gyeongman Kim", "Joonghyun Bae", "Jaewoong Cho"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-27", "url": "https://arxiv.org/abs/2605.28207", "pdf_url": "https://arxiv.org/pdf/2605.28207v2", "arxiv_id": "2605.28207", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d6fbfe91c025e87a885ee867b695f85a57a46df4c6731fc5a274d8c1a8823ef6", "sources": ["arxiv", "semantic_scholar"], "title": "Extracting Small Translation Specialists from LLMs by Aggressively Pruning Experts", "abstract": "Modern large language models (LLMs) achieve state-of-the-art machine translation performance, but they do so as broad generalists largely trained for many tasks and capabilities unrelated to translation. Thus, they are heavily overparameterized for this task, resulting in excessive memory and compute requirements. In this paper, we present a method for aggressively pruning experts from modern mixture-of-experts LLMs while incurring negligible degradation in translation quality. Our approach exploits expert specialization and the separability of multilingual capabilities in LLMs to identify experts irrelevant to translation. And because of the modular nature of MoEs, these can be easily pruned without any training. Without retraining, we are able to prune half of all experts with negligible degradation and 70% with only minor losses. With a very short SFT, we prune 75% of experts while recovering baseline performance, and in some settings remove nearly 90% while maintaining reasonable translation quality. Overall, our results show that translation requires only a fraction of the LLM, enabling substantial compression of the MoE blocks that contain over 90% of parameters.", "authors": ["Liu O. Martin", "Lucas Bandarkar", "Nanyun Peng"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-27", "url": "https://arxiv.org/abs/2605.28042", "pdf_url": "https://arxiv.org/pdf/2605.28042v1", "arxiv_id": "2605.28042", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "72cdce781e1992da82f551a21468663f4825f84ddd6f5f12ca6d9c842b129a98", "sources": ["arxiv", "semantic_scholar"], "title": "Augmenting Attention with Exponentially Decaying Memory Improves Query-Aware KV Sparsity", "abstract": "Efficient inference is critical for long-context language models, where attention computation and KV-cache access dominate the cost. Recent work RAT+, introduces a recurrence-augmented attention backbone that enables flexible dilated attention at inference time. In this paper, we investigate whether this exponentially decaying memory can also improve existing query-aware sparse inference methods. Using representative methods including Quest, MoBA, and SnapKV, we show that RAT+ consistently improves accuracy over standard attention across sparse budgets on eight needle-in-a-haystack tasks. We validate these gains both on the released checkpoints from the RAT+ paper and on OLMo2-7B, which we continue pretraining with the added memory module for 10B tokens. Finally, we propose two hypotheses explaining why this memory module benefits query-aware sparse inference and design targeted experiments to support them.", "authors": ["Xiuying Wei", "Caglar Gulcehre"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-27", "url": "https://arxiv.org/abs/2605.28640", "pdf_url": "https://arxiv.org/pdf/2605.28640v1", "arxiv_id": "2605.28640", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "f40b39281efe4da642a26e1f62501aeb33b8e8b1556525844cb5fe30cf72a9be", "sources": ["arxiv", "semantic_scholar"], "title": "VidPrism: Heterogeneous Mixture of Experts for Image-to-Video Transfer", "abstract": "With the rapid development of pre-training technologies, adapting large-scale Vision-Language Models (VLMs) for video understanding \\emph{\\ie} image-to-video transfer learning has become a dominant paradigm. To achieve superior performance, it raises as an effective strategy among recent advances to employ Mixture-of-Experts (MoE) to enhance VLMs' temporal modeling capabilities. However, conventional MoE designs suffer from expert homogenization, where all experts act as identical generalists, inefficiently learning spatio-temporal features from undifferentiated video streams. To overcome this problem, we propose VidPrism, a novel heterogeneous temporal Mixture-of-Experts framework. VidPrism pioneers a division of labor by deploying functionally specialized experts, each assuming a role ranging from spatial understanding to temporal modeling. To feed these specialists appropriately, we introduce a content-aware, multi-rate sampling module that dynamically generates streams ranging from semantically rich to motion-focused representations, providing specialized inputs for experts. Furthermore, a dynamic, bidirectional fusion mechanism enables synergistic information exchange between these pathways, leading to a comprehensive video representation. Extensive experiments on various video recognition benchmarks demonstrate that VidPrism achieves state-of-the-art performance and effectively fosters expert specialization. Our source code is available at \\href{https://github.com/Lrrrr549/VidPrism.git}{https://github.com/Lrrrr549/VidPrism.git}.", "authors": ["Rui Lin", "Chuanming Wang", "Huadong Ma"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-27", "url": "https://arxiv.org/abs/2605.28229", "pdf_url": "https://arxiv.org/pdf/2605.28229v1", "arxiv_id": "2605.28229", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Lrrrr549/VidPrism.git}{https://github.com/Lrrrr549/VidPrism.git}", "venue": null, "quality_score": 0.65} {"id": "619782071139f2881c62308f33d2304efce763456816654f39ae2d84631f464b", "sources": ["arxiv", "semantic_scholar"], "title": "Hurwitz Quaternion Multiplicative Quantization for KV Cache Compression", "abstract": "We propose \\textbf{Hurwitz Quaternion Multiplicative Quantization (HQMQ)}, a \\textbf{calibration-free} method for KV cache compression of large language models. HQMQ treats each 4-element chunk of K or V as a quaternion and quantizes its unit direction to the \\emph{product} $q_p \\cdot q_s$, where $q_p$ ranges over the 24-element Hurwitz group $2T$ (the 24 vertices of the 24-cell on $S^3$, pairwise angle $60^\\circ$) and $q_s$ ranges over a per-(layer, head) secondary codebook of $S$ \\emph{random} unit quaternions. The multiplicative composition yields $24S$ effective codewords at $S$ stored parameters; random initialization suffices because left-multiplication is an $S^3$ isometry, so seeded codebooks vary in end-task ppl by $<1.5\\%$. A per-batch median-multiplier outlier extraction step ($C{=}3$, no calibration) handles modern outlier-heavy architectures. We evaluate on five modern open models: Mistral-7B (dense MHA), Llama-3-8B and Qwen2.5-7B and Qwen3-8B (dense GQA), and gpt-oss-20b (sparse MoE). On Mistral-7B and Qwen3-8B, HQMQ matches fp16 within $0.02$--$0.03$ ppl points at $\\sim$5 bits. On Qwen2.5-7B and Qwen3-8B, where naive int4 collapses to $10^4{+}$ ppl, HQMQ + Med3$\\times$ recovers fp16 quality within $0.02$--$0.10$ ppl points at $\\sim$5 bits. HQMQ Pareto-dominates naive int by $3$--$1900\\times$ at matched bits across all five models, and downstream zero-shot accuracy matches fp16 at $3.79$ bits on Mistral. Against the strongest calibrated KV-quantization baseline, HQMQ at $3.79$ bits matches KIVI-4 ($\\sim 4.5$ bits) within ${\\sim}1$ pt on CoQA, $0.6$ pts on TruthfulQA, and $2.3$ pts on GSM8K, at $16\\%$ fewer bits and without a calibration pass. At the storage level, HQMQ delivers up to $5.05\\times$ KV compression, shrinking a Llama-3-70B 128k-context cache from 43 GB to 8.5 GB.", "authors": ["Kabir Swain", "Sijie Han", "Daniel Karl I. Weidele", "Mauro Martino", "David Cox", "Antonio Torralba"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-26", "url": "https://arxiv.org/abs/2605.27646", "pdf_url": "https://arxiv.org/pdf/2605.27646v1", "arxiv_id": "2605.27646", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "06131d1f2dfad5b268fe0742e54b50b455356a5f0e4b8efefd331ee7850b2e04", "sources": ["arxiv", "semantic_scholar"], "title": "Enabling KV Caching of Shared Prefix for Diffusion Language Models", "abstract": "Key-value (KV) caching for shared prefixes is essential for high-throughput large language model (LLM) serving, but it faces critical challenges in emerging diffusion language models (DLMs). In DLMs, bidirectional attention means that updating any token dynamically alters the entire context and its corresponding KVs. Thus, existing caching techniques developed for LLMs, which assume that KVs remain invariant once computed, corrupt the shared prefix KVs. Our experiments show that applying these techniques to DLMs causes model accuracy to collapse to near zero. To unlock high-throughput DLM serving, we propose bidirectional prefix caching, bicache, the first KV caching technique for shared prefixes in DLMs. bicache is designed based on key observations from our comprehensive analysis: shared prefix KVs remain stable and reusable in shallow layers, while the depth of shallow layers depends on the fraction of shared prefix tokens in each request. Thus, bicache dynamically identifies a safe layer depth for reusing shared prefix KVs and eliminates redundant computation. Evaluations demonstrate that bicache significantly improves serving throughput by 36.3%-98.3% compared to existing techniques without accuracy collapse (only 0-1.8% difference).", "authors": ["Younghun Go", "Jaehoon Han", "Changyong Shin", "Chuk Yoo", "Gyeongsik Yang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-26", "url": "https://arxiv.org/abs/2606.07571", "pdf_url": "https://arxiv.org/pdf/2606.07571v1", "arxiv_id": "2606.07571", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "dd22e611ba08ed40d42c79aefc6759615a0666ae6a2764c04ba3a401fd3541de", "sources": ["arxiv", "semantic_scholar"], "title": "NestedKV: Nested Memory Routing for Long-Context KV Cache Compression", "abstract": "Long-context language models are limited by the memory footprint of the key-value (KV) cache. Existing training-free KV compression methods usually rank tokens by one importance signal -- attention, recency, layer-wise allocation, or key distinctiveness -- which becomes brittle when useful context is globally distinctive, locally episodic, or immediately relevant. We introduce NestedKV, a key-only KV cache compression method inspired by the Continuum Memory System in Nested Learning. NestedKV maintains global, block-level, and sliding-window key anchors, scores tokens by multi-time-scale cosine anomaly, and combines the resulting rankings with a training-free outer learner using head-adaptive mixing and surprise-gated token routing. The score is paired with adaptive per-head budgets and requires no training or LLM modification. Across RULER (4k--32k), LooGLE, LongBench, LongBench-E, InfiniteBench, and MMLU-Pro on Qwen3 and Llama-3.2 models, NestedKV is strongest when the retained cache is small. On Qwen3-4B, it improves over KeyDiff by up to 19.10 points on RULER and 19.29 on LongBench at $r=0.75$; at $r=0.95$, it retains 37.32 on LongBench versus 17.55 for KeyDiff.", "authors": ["Hong Chen", "Xiang Liu", "Yubo Gao", "Yuxuan Fan", "Bo Wang", "Yuanlin Chu", "Yuanguo Lin", "Xuming Hu"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-26", "url": "https://arxiv.org/abs/2605.26678", "pdf_url": "https://arxiv.org/pdf/2605.26678v1", "arxiv_id": "2605.26678", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "05e450fd9df6d4ac973de0e490ef76323eb52505ec6ba032dd89f249b5f433c8", "sources": ["arxiv", "semantic_scholar"], "title": "Grounded Cache Routing for Retrieval-Augmented Generation: When Is It Safe to Reuse an Answer?", "abstract": "Modern retrieval-augmented generation(RAG) deployments increasingly rely on caching to reduce token cost and time-to-first-token(TTFT). Prefix-level KV reuse is now standard in serving stacks such as vLLM, and chunk-level and position-independent reuse have been pushed further by recent systems(RAGCache, TurboRAG, CacheBlend, EPIC, ContextPilot, PCR, LMCache). Output-level semantic answer caches, by contrast, remain fragile: similar prompts can map to different correct answers, retrieved evidence drifts as the corpus is updated, and adversarial collision attacks have been shown to hijack cached responses. We argue that the right framing for cached answer reuse is not how to reuse faster but when reuse is safe. We propose GroundedCache, an evidence-validated cache router that admits a cached answer only when 4 cheap gates simultaneously hold: query similarity, retrieved-evidence overlap, source-version validity, and lexical (or judge-based) support of the cached answer by the freshly retrieved evidence. We build a six-regime workload that stress-tests cache safety rather than only hit rate, and introduce an operator-facing metric, the unsafe-served rate (USR), fraction of all queries that received a wrong cached answer. Across 2 datasets and 12,000 real-LLM generations(Qwen2.5-7B-Instruct on vLLM with Automatic Prefix Caching), GroundedCache drives USR to 0.0% on every HotpotQA regime(vs. 15-35% under naive caching) and to 1.5% on mtRAG document drift(vs. 51.5%), a 34x reduction on the design-point adversarial regime and 3-10x reductions across the other mtRAG regimes, while end-to-end p50 latency stays within 1.04-1.07x of a no-cache RAG baseline. A per-gate ablation isolates the lexical support gate as the load-bearing safety mechanism on both datasets, with the remaining gates providing defense-in-depth at near-zero cost. We release the implementation, workload, and evaluation harness.", "authors": ["Syed Huma Shah"], "categories": ["cs.CR", "cs.AI", "cs.CL", "cs.IR", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-26", "url": "https://arxiv.org/abs/2605.27494", "pdf_url": "https://arxiv.org/pdf/2605.27494v1", "arxiv_id": "2605.27494", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/syedhumarahim/grounded-cache-router", "venue": null, "quality_score": 0.65} {"id": "20ac5783ef8efbcb98b419adfff1c1b46f91eec929ee0fdb4aaf4d9a1b66e2da", "sources": ["arxiv", "semantic_scholar"], "title": "MobileMoE: Scaling On-Device Mixture of Experts", "abstract": "Mixture-of-Experts (MoE) has become the de facto architecture for hundred-billion-parameter language models, yet its advantages at sub-billion scales for on-device deployment remain largely unexplored. To close this gap, we present MobileMoE, a family of on-device MoE language models with sub-billion active parameters (0.3-0.9B active and 1.3-5.3B total) that establish a new Pareto frontier for on-device LLMs. We first formulate an on-device MoE scaling law that jointly optimizes MoE architecture under mobile memory and compute constraints, identifying an on-device sweet spot - moderate sparsity with fine-grained and shared experts - that is simultaneously memory and compute-optimal. Building on the derived architectures, we train MobileMoE with a four-stage recipe covering pre-training, mid-training, instruction fine-tuning, and quantization-aware training, all on open-source datasets. Across 14 benchmarks, MobileMoE matches or exceeds leading on-device dense LLMs with 2-4$\\times$ fewer inference FLOPs, and matches or surpasses the state-of-the-art MoE OLMoE-1B-7B with up to 60% fewer parameters. To bridge the last mile to mobile deployment, we provide the first efficient MoE inference on commodity smartphones with comprehensive on-device profiling. At comparable INT4 weight memory, MobileMoE-S delivers $1.8$-$3.8\\times$ faster prefill and $2.2$-$3.4\\times$ faster decode than the dense baseline MobileLLM-Pro.", "authors": ["Yanbei Chen", "Hanxian Huang", "Ernie Chang", "Jacob Szwejbka", "Digant Desai", "Zechun Liu", "Vikas Chandra", "Raghuraman Krishnamoorthi"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-26", "url": "https://arxiv.org/abs/2605.27358", "pdf_url": "https://arxiv.org/pdf/2605.27358v1", "arxiv_id": "2605.27358", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.65} {"id": "41c56abf6d36eb412de9024993e72a1d4e23306a8231eedacdb1a438f5e6091c", "sources": ["arxiv", "semantic_scholar"], "title": "Dense2MoE: Pushing the Pareto Frontier of On-Device LLMs via Unified Pruning and Upcycling", "abstract": "The Mixture of Experts MoE architecture is highly promising for resource constrained on device deployments yet training these models from scratch incurs prohibitive costs Current methods attempt to alleviate this by upcycling dense models into MoEs however they often introduce parameter redundancy that degrades inference efficiency Alternatively standard layer pruning mitigates redundancy but inevitably compromises model accuracy To resolve this dilemma we propose Dense2MoE a novel framework that unifies pruning and upcycling through Layer Fusion UpCycling LF UC Guided by hardware Roofline theory Dense2MoE systematically overcomes the inference memory wall by pruning bandwidth heavy attention modules from redundant layers while repurposing their Multi Layer Perceptrons MLPs into MoE experts This structural innovation preserves the models core capabilities and strictly limits active parameters via selective token routing With a modest continual pre training budget Dense2MoE efficiently converts publicly available dense LLMs into on device ready MoE models Extensive experiments demonstrate that Dense2MoE significantly advances the Pareto frontier for on device inference latency versus model accuracy outperforming dense baselines state of the art compression and standard upcycling methods", "authors": ["Fengfa Li", "Hongjin Ji", "Yifeng Ding", "Lei Ren", "Chen Wei"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-26", "url": "https://arxiv.org/abs/2605.26496", "pdf_url": "https://arxiv.org/pdf/2605.26496v1", "arxiv_id": "2605.26496", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "41b9164ffddb8ff8c255329a5f8f781d50bb682758f6835b0cd681f9a11e8099", "sources": ["arxiv", "semantic_scholar"], "title": "Quantized Keys Steal Attention: Bias Correction for KV-Cache Compression in Video Diffusion", "abstract": "Chunk-wise autoregressive video diffusion models rely on a KV cache of previously generated chunks to avoid redundant computation, but this cache quickly becomes a memory bottleneck as videos grow longer. Methods that quantize the KV cache to low bitwidths reduce memory pressure but degrade video quality. We show that a key driver of this degradation is a systematic bias in attention weights: due to the convexity of the exponential in softmax attention, quantization noise inflates the contribution of cached keys, a phenomenon we call the Jensen bias. This effect causes quantized keys to steal attention mass from the unquantized current chunk. We derive a per-attention-score correction that removes this bias in expectation, computed on the fly from the quantization step sizes of the cached keys and the query norm. Using a second-order Taylor approximation, the additional computational overhead is negligible, and no additional memory is needed alongside the cache. Evaluated on MAGI-1, SkyReels-V2, and HY-WorldPlay at INT2 quantization, our correction recovers most of the quality lost to aggressive quantization, reaching near-BF16 video quality, and can outperform INT4 quantization while using 50% less memory.", "authors": ["Tuna Tuncer", "Felix Becker", "Thomas Pfeil"], "categories": ["cs.LG", "cs.AI", "cs.CV", "cs.GR", "eess.IV"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-05-25", "url": "https://arxiv.org/abs/2605.26266", "pdf_url": "https://arxiv.org/pdf/2605.26266v1", "arxiv_id": "2605.26266", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "01766860289bf7462da1adc8c4096eca2fb38bf947e91d55fa8beee387e6a605", "sources": ["arxiv", "semantic_scholar"], "title": "RotMoLE: Enhancing Mixture of Low-Rank Experts through Rotational Gating Mechanism", "abstract": "While Large Language Models (LLMs) are commonly fine-tuned to handle domain-specific tasks before being applied to vertical applications, adapting them to complex scenarios with diverse specialized knowledge remains challenging. Meanwhile, Mixture-of-Experts (MoE) architecture has risen as a crucial paradigm for training LLMs, and some recent works have also incorporated MoE into Parameter-Efficient Fine-Tuning (PEFT) to propose the Mixture of Low-rank Experts (MoE-LoRA), to enhance the power of low-rank adapters for learning complicated knowledge. However, conventional gating mechanisms in MoE typically apply only a scalar reweighing to selected experts, thereby limiting their underlying capacity of representation and generalization. Motivated and enabled by the low-rank structures in MoE-LoRA, we propose RotMoLE, a specialized MoE framework for low-rank experts featuring an additional rotation gate. Beyond simple scaling, RotMoLE implements a rotation mechanism for each selected expert, enabling superior expert exploitation and specialization for learning diverse data, especially when expert candidates are limited. Empirical results on complex multi-task and multilingual training scenarios validate our effectiveness.", "authors": ["Mengyang Sun", "Maochuan Dou", "Tao Feng", "Dan Zhang", "Yihao Wang", "Junpeng Liu", "Yifan Zhu", "Jie Tang"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-25", "url": "https://arxiv.org/abs/2605.25565", "pdf_url": "https://arxiv.org/pdf/2605.25565v1", "arxiv_id": "2605.25565", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "c6ea193b8da4a99e252d5debcd134afef4993bb4cb1a1b43d6d649a25070cb88", "sources": ["arxiv", "semantic_scholar"], "title": "IndexMem: Learned KV-Cache Eviction with Latent Memory for Long-Context LLM Inference", "abstract": "Large Language Models (LLMs) are increasingly expected to operate over long contexts, yet standard softmax attention incurs a KV cache that grows linearly with sequence length, quickly becoming the bottleneck for long context inference. A practical remedy is to evict less important KV entries; however, existing eviction policies are largely heuristic and struggle to capture the rich, input-dependent distribution of token importance. In this work, we introduce a learnable indexer that predicts KV importance, enabling more accurate retention of critical tokens. Meanwhile, naively evicting tokens permanently discards their information, leading to irreversible forgetting and degraded retrieval over long ranges. To address this, we propose a lightweight latent memory module that compresses evicted tokens into a compact, online-updated state and provides residual readouts to compensate for the attention contributions lost through KV eviction. Collectively, our method enables accurate long-context inference under a bounded KV budget, delivering consistent improvements on RULER (4K/16K) across Qwen, Mistral, and Llama models (up to 25 points under aggressive eviction), markedly more stable Needle-in-a-Haystack retrieval, and superior LongBench scores and compression curves compared to existing eviction policies.", "authors": ["Xintong Yang", "Hao Gu", "Binxing Xu", "Lujun Li", "Bei Liu", "Jiacheng Liu", "Qiyuan Zhu", "Sirui Han", "Yike Guo"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-25", "url": "https://arxiv.org/abs/2605.25475", "pdf_url": "https://arxiv.org/pdf/2605.25475v1", "arxiv_id": "2605.25475", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "739f51731bbda29e4c51999da60649438c66bab2b35169378fb4ee0bfe790450", "sources": ["arxiv", "semantic_scholar"], "title": "Energy-Gated Attention and Wavelet Positional Encoding: Complementary Inductive Biases for Transformer Attention", "abstract": "Standard transformer attention computes pairwise token similarity but treats all tokens as equally salient and all positions as equally local, regardless of the informational structure of the input. We identify two complementary inductive biases that standard attention lacks: energy salience (which tokens concentrate informational energy, learned end-to-end without explicit frequency decomposition) and scale-selective locality (how far positional influence extends at each frequency, implemented via Morlet wavelet encoding). We address both with two simple components. Energy-Gated Attention (EGA) gates value aggregation by a learned energy estimate of key token embeddings, computed via a single linear projection; it selects what to attend to. Morlet Positional Encoding (MoPE) replaces fixed sinusoidal encodings with learned Gaussian-windowed wavelets that adapt the joint position-frequency localization to the corpus; it specifies where attention operates at each scale. On TinyShakespeare, EGA alone achieves +0.092 validation loss improvement over standard attention (+0.103 over Phase 1-3 baseline); MoPE alone is -0.032 (below baseline as a standalone encoding); but their combination achieves +0.119 -- more than the sum of parts. This superadditivity, observed across two independent training runs, is the central empirical finding: salience and locality are complementary inductive biases, each addressing a gap the other cannot fill alone. Ablations confirm that structured spectral priors (Morlet wavelet gates, scale-initialized heads, fixed sinusoidal PE) consistently underperform their unconstrained learned counterparts, while complementary learned components interact superadditively. All experiments are at small scale (<=6M parameters, character-level benchmarks, single seed); larger-scale multi-seed validation is the most important direction for future work.", "authors": ["Athanasios Zeris"], "categories": ["cs.LG", "cs.CL", "eess.SP"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-05-25", "url": "https://arxiv.org/abs/2605.26355", "pdf_url": "https://arxiv.org/pdf/2605.26355v1", "arxiv_id": "2605.26355", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/AthanasiosZeris/energy-gated-attention", "venue": null, "quality_score": 0.65} {"id": "f41ad2dc1999c909f7bfa1a3a4865f72a7ec3c65630ae546a1d0f849e10891b9", "sources": ["arxiv", "semantic_scholar"], "title": "Cross-Stage Attention Multi-Expert Network for Radiologist-Inspired Breast Ultrasound Diagnosis", "abstract": "Breast ultrasound imaging is an important noninvasive method for early breast cancer diagnosis, but automatic benign/malignant classification remains challenging due to tumor heterogeneity, blurred boundaries, and data imbalance. To improve feature representation and classification accuracy, this paper proposes the Cross-Stage Attention Mixture-of-Experts Network (CSA-MoE-Net). It adopts a Cross-Stage Attention-enhanced ResNet-18 as the backbone, in which the Cross-Stage Attention module adaptively recalibrates multi-level features, thereby enhancing key tumor features and suppressing redundancy. A three-branch Mixture of Experts (MoE) Block learns complementary features from the Whole Tumor Image, Tumor Core, and Boundary, and an Adaptive Gating Network fuses them to capture morphological, textural, and contextual information. The fused features are denoted as Fused Expert Feature (FEF) in the architecture. Experiments on a balanced dataset of 2,129 breast ultrasound images show that, averaged over 20 independent runs, the model achieves an accuracy of 96.33\\%, precision of 94.09\\%, recall of 98.53\\%, F1-score of 96.25\\%, and AUC of 99.50\\%. Compared to the baseline ResNet-18, these metrics improve by 3.01, 0.70, 5.37, 2.98, and 5.42 percentage points, respectively. The proposed mechanism requires no invasive modification and can be seamlessly embedded into VGG-16, DenseNet-121, etc., yielding stable performance gains, thus providing reliable support for computer-aided diagnosis.", "authors": ["Xinyang Zhai", "Chong Yang", "Ruizhi Zhang"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-25", "url": "https://arxiv.org/abs/2605.25518", "pdf_url": "https://arxiv.org/pdf/2605.25518v1", "arxiv_id": "2605.25518", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "7f7d46f06b88ff67f5cbf59fa71d1ec67699ecd5d03d7d6ec773b5d6d4e3c17b", "sources": ["arxiv", "semantic_scholar"], "title": "SP-MoMamba: Superpixel-driven Mixture of State Space Experts for Efficient Image Super-Resolution", "abstract": "State space models (SSMs) have emerged as a powerful paradigm for efficient single-image super-resolution (SR) due to their linear complexity and long-range modeling capabilities. However, existing Mamba-based methods typically rely on data-agnostic rigid scanning, which reshapes 2D images into 1D sequences over a fixed grid, inevitably disrupting spatial-semantic topology and introducing artifacts. Inspired by the \\textbf{Gestalt perceptual grouping theory}, we propose \\textbf{SP-MoMamba}, a superpixel-driven mixture of state space experts designed for content-aware SR. Our core idea is to transform the traditional rigid scanning into a \\textbf{semantic-level interaction} by treating superpixels as fundamental units. Specifically, we introduce the \\textbf{Superpixel-driven State Space Model (SP-SSM)}, which compresses semantically homogeneous regions into high-order tokens to preserve global topological consistency. To address the conflict between fixed scanning scales and diverse semantic granularities, we develop the \\textbf{Multi-Scale Superpixel Mixture of State Space Experts (MSS-MoE)}. This module utilizes a dynamic routing mechanism to adaptively assign scale-specific experts, effectively capturing multi-scale textures while reducing computational redundancy. Furthermore, to prevent the loss of high-frequency details during global abstraction, we introduce a \\textbf{Local Spatial Modulation Expert (LSME)} to complement the global modeling, ensuring a precise reconstruction of sharp edges and fine structures. Extensive experiments on standard benchmarks demonstrate that SP-MoMamba achieves superior reconstruction fidelity and a more favorable efficiency-performance trade-off compared to state-of-the-art efficient SR methods.", "authors": ["Wenbin Zou", "Yawen Cui", "Yi Wang", "Lap-Pui Chau", "Liang Chen", "Jinshan Pan", "Huiping Zhuang", "Guanbin Li"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-25", "url": "https://arxiv.org/abs/2605.25892", "pdf_url": "https://arxiv.org/pdf/2605.25892v1", "arxiv_id": "2605.25892", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "677939281c8d7a54a5d7ede97dcf98e88e9b19f9790230c0376118c6cbb2b7ce", "sources": ["arxiv", "semantic_scholar"], "title": "CONF-KV: Confidence-Aware KV Cache Eviction with Mixed-Precision Storage for Long-Horizon LLM", "abstract": "Long-horizon LLM inference turns the key--value (KV) cache into the dominant GPU memory consumer and makes per-token attention increasingly expensive. Many common eviction policies use static recency windows or historical attention, leaving unused a signal computed on every decoding step: the model's current uncertainty. We introduce CONF-KV, a KV-cache manager that converts the next-token distribution into a scalar confidence score and uses it to choose the per-step cache budget, retaining more context when the model is uncertain and pruning aggressively when it is confident. Within each budget, tokens are ranked by a composite of accumulated attention mass and recency, while a protected recent window preserves local coherence. We combine the policy with blockwise online-softmax attention, mixed FP16/INT8 storage, and a pyramidal per-layer budget variant. Across four model families and generated lengths up to 4K, CONF-KV stays near the footprint of a fixed 512-token sliding window while remaining within 1.5--2.1 perplexity points of full KV. On Needle-in-a-Haystack up to 32K tokens, CONF-KV reaches 91.4% retrieval accuracy versus 53.8% for sliding windows and 80.6% for H2O; on 75 VisualWebArena tasks it retains 95.3% of full-KV success at 2.8 times lower peak memory.", "authors": ["Yubo Li", "Yidi Miao"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-24", "url": "https://arxiv.org/abs/2605.24786", "pdf_url": "https://arxiv.org/pdf/2605.24786v1", "arxiv_id": "2605.24786", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "15527e54056fd1526d557abcb1cb7e4bc87a7e7ac85ac015ad83083607eec68c", "sources": ["arxiv", "semantic_scholar"], "title": "CachePrune: Privacy-Aware and Fine-Grained KV Cache Sharing for Efficient LLM Inference", "abstract": "Large Language Models (LLMs) rely on Key-Value (KV) caching to accelerate inference, and many serving systems further share the KV cache across users' requests to reduce redundant computation. While widely adopted, unrestricted cross-user sharing introduces side-channel vulnerabilities, allowing an adversary to infer user inputs by probing for cache reuse. Existing defenses disable sharing entirely to prevent leakage; yet such a coarse-grained strategy sacrifices substantial reuse potential, since prompts often include large portions of privacy-irrelevant segments, such as system instructions or publicly accessible materials. Building on this, we present CachePrune, a privacy-aware KV cache sharing mechanism that enables fine-grained reuse of KV entries across requests. Realizing such fine granularity requires token-level cache management, as reusable segments vary in length and position due to sensitivity masking, making reuse more complex than the fixed-size or sentence-level chunking used in existing coarse-grained schemes. Specifically, CachePrune makes fine-grained reuse practical by addressing two key challenges: accurately and efficiently deriving reusable KV segments and efficiently retrieving them over variable-length spans. We implement CachePrune on top of vLLM and evaluate it on three datasets, showing that it eliminates direct leakage through KV cache reuse side channels while reducing TTFT by 4.5x and increasing cache hit rates by 44% compared with state-of-the-art approaches.", "authors": ["Guanlong Wu", "Zhaohan li", "Yao Zhang", "Zheng Zhang", "Jianyu Niu", "Ye Wu", "Yinqian Zhang"], "categories": ["cs.CR"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-22", "url": "https://arxiv.org/abs/2605.23640", "pdf_url": "https://arxiv.org/pdf/2605.23640v1", "arxiv_id": "2605.23640", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "0ee3d65a28bbec50d7f02d6a0331e203a828b9d12dbc954728bd7462f7d85300", "sources": ["arxiv", "semantic_scholar"], "title": "GMENet: Generative Mixture of Experts Network for Multi-Center Glioma Diagnosis with Incomplete Imaging Sequences", "abstract": "Contemporary glioma diagnosis integrates molecular features with histopathology to guide clinical decision-making. However, in clinical settings, divergent imaging protocols result in incomplete MRI sequences, leading to two primary challenges: forcing existing frameworks to discard a large portion of clinical data during training and consequently limiting their clinical applicability. To address these limitations, we propose GMENet, a Generative Mixture of Experts Network for multi-center glioma diagnosis with incomplete imaging sequences. Firstly, we design a Cross-attention-based Gated Generation Module that synthesizes missing sequence features from available sequences via cross-attention and dynamic gating mechanisms, incorporating a cycle-consistency loss to preserve semantic integrity. Secondly, we introduce a Dynamically Weighted Experts Fusion Module that performs mixture-of-experts interaction and confidence-aware fusion over original and synthesized dual-sequence features for multi-task prediction. We evaluate GMENet on a multi-center cohort of 1,241 subjects from four in-house datasets and two public repositories. Experiments show that GMENet expands clinically usable training data by 97\\%, relative to complete-sequence-only data. Furthermore, it consistently outperforms state-of-the-art methods trained on complete data, demonstrating improved robustness under cross-center distribution shifts.", "authors": ["Pengfei Song", "Fangjin Liu", "Wenwen Zeng", "Yonghuang Wu", "Chengqian Zhao", "Feiyu Yin", "Xuan Xie", "Jinhua Yu"], "categories": ["eess.IV", "cs.CV"], "fields_of_study": ["Engineering", "Computer Science"], "published_date": "2026-05-22", "url": "https://arxiv.org/abs/2605.23183", "pdf_url": "https://arxiv.org/pdf/2605.23183v1", "arxiv_id": "2605.23183", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "eea15cc3dec66849c9ed3729c80fe6b6093bef69d68ca97e01866e546c54c9fd", "sources": ["arxiv", "semantic_scholar"], "title": "A Simple Plug-in for Improving Eviction-Based KV Cache Compression", "abstract": "KV cache growth is a major bottleneck for long-context inference in large language models. Existing methods are often dominated by binary eviction or representation approximation, which may underutilize tokens that are not critical for exact retention but are still reconstructable. We present VECTOR, a plug-and-play augmentation for eviction-based pipelines that introduces three-way token routing: retention, approximation, and eviction. VECTOR combines an importance signal from the base scorer with a reconstructability signal from an offline-calibrated regression-based value estimation. By leveraging reconstructability, VECTOR recovers useful value information that would otherwise be irreversibly lost under binary eviction, while preserving key vectors for attention routing stability. Experimental results show that VECTOR improves quality-memory trade-offs under medium-to-high compression, with especially clear gains in stricter budget regimes.", "authors": ["Yuping Lin", "Jiayuan Ding", "Yue Xing", "Pengfei He", "Jiliang Tang", "Subhabrata Mukherjee"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-22", "url": "https://arxiv.org/abs/2605.23258", "pdf_url": "https://arxiv.org/pdf/2605.23258v1", "arxiv_id": "2605.23258", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4be72da8658a586d7a1cf706beab00e6c1c2393b733bab2842ca241619319f22", "sources": ["arxiv", "semantic_scholar"], "title": "ECo-MoE: Embodiment-Conditioned Mixture of Experts Increases the Evolvability of Robots", "abstract": "In this paper, we introduce a model of evolution and learning in robots that co-optimizes a distribution of latent design vectors (genotypes) and a mixture of control experts (neural modules), which are gated by the latent coordinates of each decoded design (phenotype). This provides a scalable alternative to co-design algorithms that either train an individual policy for every robot, which is inefficient, or a monolithic universal controller for all robots, which results in overly conservative structures and behaviors. Our approach lies somewhere between these two extremes, preserving ancestral knowledge in a unified yet modular framework in which different body plans activate and deactivate different combinations of learned sensorimotor circuits for goal-directed behavior. This allows one part of the controller to be overhauled to better suit new species of designs as they emerge without disrupting the hard-earned knowledge contained within other expert modules. It also allows pretrained expert policies to be directly plugged into the mixture, which can steer evolution into otherwise unexplored areas of latent space containing desired morphological traits. We refer to this process as \"evo by demo\" and explore how it may be used to guide freeform evolution toward canonical structures defined by the pretrained model. Videos and code can be found at: https://eco-moe.github.io.", "authors": ["Yibin Wang", "Muhan Li", "Zihan Guo", "Sam Kriegman"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-22", "url": "https://arxiv.org/abs/2605.24225", "pdf_url": "https://arxiv.org/pdf/2605.24225v1", "arxiv_id": "2605.24225", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8ab9207fcd09a2932a8334a1592b81a1bf4ad91367a1c356ba0d690747088db9", "sources": ["arxiv", "semantic_scholar"], "title": "Semantically Structured Mixture-of-Experts for Compositional Robotic Manipulation", "abstract": "Diffusion-based policies have established a new standard for precise robotic manipulation but face a critical scalability bottleneck: high-performance models are computationally expensive, while lightweight alternatives often fail to generalize across diverse multi-task environments. Mixture-of-Experts (MoE) architectures offer a promising path to efficiency by activating only a subset of parameters. However, existing MoE routing mechanisms typically rely on low-level noise or latent statistics, ignoring the compositional nature of manipulation tasks. This can fragment reusable behaviors across experts, limiting interpretability and transferability. We introduce Semantically Structured Mixture-of-Experts Diffusion Policy (SMoDP) for compositional robotic manipulation, a framework that grounds expert specialization in semantic task structure. SMoDP leverages a lightweight, inference-time skill predictor, supervised by offline annotations from Vision-Language Models (VLMs), to route action chunks to experts specialized for specific behavioral phases. To ensure robust assignment, we propose a dual contrastive alignment strategy that grounds multi-modal observations in language-defined skill semantics (Inter-modal) while enforcing routing consistency across visually distinct but functionally related behaviors (Intra-modal). Our approach outperforms representative diffusion and MoE-based baselines on multi-task benchmarks with significantly improved parameter efficiency and demonstrates effective compositional transfer to novel tasks through parameter-efficient fine-tuning. Project website: https://deng-cy20.github.io/SMoDP/", "authors": ["Chengyu Deng", "Guanqi Chen", "Yizhou Chen", "Zejia Liu", "Zhiwen Ruan", "Guanhua Chen", "Jia Pan"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-22", "url": "https://arxiv.org/abs/2605.23477", "pdf_url": "https://arxiv.org/pdf/2605.23477v1", "arxiv_id": "2605.23477", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "55784f072a01b76fd56a1e72f980d9421307899a17c96f5f03ea42f2cb48e6c6", "sources": ["arxiv", "semantic_scholar"], "title": "Resident KV Claims: A Conformance Contract for Future Reuse under Active KV Pressure", "abstract": "KV-cache reuse mechanisms increasingly expose priority, duration, offload, routing hints, scheduler modes, and event streams. These mechanisms help preserve reusable prefixes, but they do not by themselves define a portable contract for accepted future-reuse state when resident KV and active live KV cannot both fit. We introduce resident KV claims, a conformance contract that binds future-reuse intent to a materialization predicate, lifecycle state, active/resident feasibility outcome, and claim-level telemetry. In controlled vLLM allocator probes, a 60-block resident claim and a 70-block active prefill exceed an 80-block usable KV pool. Write no-admit prevents the active request from becoming future reusable state, but it still allows active allocation to evict residents from the shared pool. A minimal vLLM prototype shows that hard protected resident claims convert this failure mode into scheduler-visible active refusal with direct blocking-claim attribution. The result is not a production speedup or a new cache-replacement algorithm. It is a runtime contract that turns unreported resident loss into reconstructable active/resident arbitration. A companion MicroRuntime and vLLM litmus suite distinguish ordinary eviction, soft priority, write no-admit, accepted hard claims, materialization failure, demotion, expiry, active refusal, and trace-level outcome reconstruction.", "authors": ["Lukas Stepanek"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-22", "url": "https://arxiv.org/abs/2605.24259", "pdf_url": "https://arxiv.org/pdf/2605.24259v1", "arxiv_id": "2605.24259", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b5bed29f77996fba3a0a93d149771ab189355540fdd1b16122b3ddd7d8c6b96c", "sources": ["arxiv", "semantic_scholar"], "title": "MuKV: Multi-Grained KV Cache Compression for Long Streaming Video Question-Answering", "abstract": "Long streaming video QA remains challenging due to growing visual tokens and limited reasoning length of large language models (LLMs). KV-caching stores the Key-Value (KV) of the historical tokens via LLM prefill and enables more efficient streaming QA. However, existing methods cache every one or two frames, causing redundant memory usage and losing fine-grained spatial details within frame or temporal contexts across frames. This paper proposes MuKV, a method that features a multi-grained KV cache compression module and a semi-hierarchical retrieval approach to improve both efficiency and accuracy for long streaming VideoQA. For the offline KV cache, MuKV extracts visual representations at patch-, frame-, and segment-levels. The multiple levels of granularity preserve both local cues and global temporal context, while maintaining efficiency with a dual signal token compression mechanism guided by self-attention and frequency. For online QA, MuKV designs a semi-hierarchical retrieval method to retrieve relevant KV caches for answer generation. Experiments on long-streaming VideoQA benchmarks show that MuKV significantly improves answer accuracy, without sacrificing memory and online QA efficiency. Moreover, our compression mechanism alone brings consistent benefits across answer accuracy, memory, and QA efficiency over baselines, showcasing highly effective contribution.", "authors": ["Junbin Xiao", "Jiajun Chen", "Tianxiang Sun", "Xun Yang", "Angela Yao"], "categories": ["cs.CV", "cs.AI", "cs.MM"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-21", "url": "https://arxiv.org/abs/2605.22269", "pdf_url": "https://arxiv.org/pdf/2605.22269v1", "arxiv_id": "2605.22269", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/IMBALDY/MuKV", "venue": null, "quality_score": 0.65} {"id": "5c1fa6f5cd729e4de740c84a6528488c846d8af0e5aa39e6696bd1094bc2b8e6", "sources": ["arxiv", "semantic_scholar"], "title": "GEMQ: Global Expert-Level Mixed-Precision Quantization for MoE LLMs", "abstract": "Mixture-of-Experts Large Language Models (MoE-LLMs) achieve strong performance but incur substantial memory overhead due to massive expert parameters. Mixed-precision quantization mitigates this cost by allocating expert-wise bit-widths based on their importance, approaching the accuracy-memory Pareto frontier and enabling extreme low-bit quantization. However, existing methods rely on layer-wise importance estimation and overlook router shifts induced by quantization, resulting in suboptimal allocation and routing. In this work, we propose Global Expert-level Mixed-precision Quantization (GEMQ) to overcome these limitations via (1) a global linear-programming formulation that captures model-wide expert importance based on quantization error analysis, and (2) efficient router fine-tuning to adapt routing to quantized experts. These components are integrated into a progressive quantization framework that iteratively refines importance estimation and allocation. Experiments demonstrate that GEMQ significantly reduces memory and accelerates inference with minimal accuracy degradation. Source code is available at https://github.com/jndeng/GEMQ .", "authors": ["Jianing Deng", "Song Wang", "Dongwei Wang", "Zijie Liu", "Tianlong Chen", "Huanrui Yang", "Jingtong Hu"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-21", "url": "https://arxiv.org/abs/2605.23078", "pdf_url": "https://arxiv.org/pdf/2605.23078v1", "arxiv_id": "2605.23078", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/jndeng/GEMQ", "venue": null, "quality_score": 0.65} {"id": "bc1ba87a17c6a785190da579061e491810076b1cc820e3cc275cf94bd16ab83c", "sources": ["arxiv", "semantic_scholar"], "title": "Meta-Soft: Leveraging Composable Meta-Tokens for Context-Preserving KV Cache Compression", "abstract": "The KV cache used in large language models has linearly growing time complexity, so LLMs face memory blow-up and reduced decoding efficiency when they process long contexts. Current KV Cache eviction has become an important research direction; however, existing methods based on fixed Soft Tokens (e.g., Judge Q) rely on a static parameter set as the query to evaluate the importance of KV pairs, so they cannot adapt dynamically to different input prompts, and they cannot precisely capture complex and changing task relevance. Also, evicted KV pairs are discarded permanently, so this causes irreversible information loss and context breaks. To address this problem, we propose Meta-Soft, a dynamic compression framework based on probe-driven context integration. Specifically, we build a meta-library with a learnable orthogonal basis matrix $\\mathcal{L}$, and we use a selector network with Gumbel-Softmax to produce differentiable sparse combination weights, so we dynamically synthesize the most targeted $k$ Soft Tokens from the input prompt features. We append these Soft Tokens to the end of the input sequence to probe key information. We also introduce an attention-flow based integration mechanism, which redistributes the semantic information of removed tokens into retained tokens, and this keeps the dropped context information effectively. Experiments on multiple datasets show that our method outperforms existing state-of-the-art eviction methods and provides a new solution for KV Cache compression.", "authors": ["Wei Luo", "Yi Huang", "Songchen Ma", "Huanyu Qu", "Jiang Cai", "Mingkun Xu"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-21", "url": "https://arxiv.org/abs/2605.22337", "pdf_url": "https://arxiv.org/pdf/2605.22337v2", "arxiv_id": "2605.22337", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "993ff84b0b0ed3e9729055f674de7e3202b268c2c43d9d393d87e1172a4986b3", "sources": ["arxiv", "semantic_scholar"], "title": "ASAP: Attention Sink Anchored Pruning", "abstract": "Vision Transformers (ViTs) face severe computational bottlenecks due to the quadratic complexity of self-attention at high resolutions. Existing token reduction methods rely on local metrics - such as single-layer attention scores - that are inherently vulnerable to the attention sink phenomenon, where uninformative tokens are paradoxically preserved over salient foreground objects. We propose ASAP (Attention Sink Anchored Pruning), a training-free framework that recasts this sink as a feature. Modeling ViT information flow as a Lazy Random Walk, ASAP identifies the sink as a dominant accumulator of probability mass. By computing the diffusion distance to the sink within the cumulative transition matrix, ASAP partitions tokens via Radial Diffusion Clustering and compresses background redundancy through Transition Weight Pooling in a single shot. Extensive experiments across image, video, and vision-language tasks demonstrate ASAP outperforms state-of-the-art methods, accelerating throughput by up to 48% while maintaining - or even exceeding - baseline accuracy.", "authors": ["Jaehyuk Lee", "Hanyoung Kim", "Yanggee Kim", "Donghun Lee"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-21", "url": "https://arxiv.org/abs/2605.22372", "pdf_url": "https://arxiv.org/pdf/2605.22372v1", "arxiv_id": "2605.22372", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "f9867d713eb57acc60f2d7ae6bba814dff6763a2228dc5e0c950b93f2a0a4a06", "sources": ["arxiv", "semantic_scholar"], "title": "ArborKV: Structure-Aware KV Cache Management for Scaling Tree-based LLM Reasoning", "abstract": "Recent progress in LLM reasoning has increasingly shifted from single-pass generation to explicit search over intermediate reasoning states. Tree-of-Thoughts (ToT) organizes inference to tree-structured search with branching and backtracking, but it substantially amplifies the Key--Value (KV) cache: retaining KV states for a frontier of partial trajectories quickly becomes a memory bottleneck that limits throughput and constrains search depth and width under fixed hardware budgets. We address this challenge by observing that KV reuse in ToT-style inference is governed by search dynamics: near-term decoding depends primarily on the active branch and its ancestors, whereas inactive subtrees have low short-term reuse probability yet must remain recoverable for backtracking. Motivated by this, we propose ArborKV, a structure-aware eviction framework that couples a lightweight value estimator with a tree-aware allocation policy, and performs purely token-extractive eviction with lazy rehydration to support revisits. Experiments on ToT-style reasoning benchmarks show that ArborKV achieves up to ~4x peak KV-memory reduction while preserving near-full-retention accuracy, enabling larger search configurations under fixed device budgets that would otherwise run out of memory.", "authors": ["Yeqiu Chen", "Ziyan Liu", "Zhenxin Huang", "Runquan Gui", "Hong Wang", "Lei Liu"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-21", "url": "https://arxiv.org/abs/2605.22106", "pdf_url": "https://arxiv.org/pdf/2605.22106v1", "arxiv_id": "2605.22106", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "13455e8850b9cbb8bd37f0a3470cc974f9c6e5653e514ab11a01a3d68dc50612", "sources": ["arxiv", "semantic_scholar"], "title": "OCTOPUS: Optimized KV Cache for Transformers via Octahedral Parametrization Under optimal Squared error quantization", "abstract": "The key-value (KV) cache dominates memory bandwidth and footprint in long-context autoregressive inference. Recent rotation-preconditioned codecs (TurboQuant, PolarQuant) show that a structured random rotation followed by a per-coordinate scalar quantizer matched to an analytically tractable marginal is a near-optimal recipe for KV compression. OCTOPUS advances this paradigm through joint quantization of rotated coordinate triplets. Each triplet's direction is mapped to a square via an octahedral parameterization, and the two resulting coordinates and the triplet norm are Lloyd-Max quantized against implementation-matched marginals. Optimizing the per-triplet squared error gives a strictly non-uniform bit allocation depending only on the total dimensionality of the keys. We find the finite-dimensional quality optimum with sweeps to be constant on every real decoder we test. The codec is data-oblivious, online, and deterministic given a seed. Across text, video, and audio, OCTOPUS matches or beats every prior rotation codec at every reported bit width and metric, with a lead that grows as bits drop for extreme compression. Furthermore, a fused Triton implementation reconstructs keys on the fly without materializing the uncompressed key, so the codec adds no decode-time bandwidth or latency over the existing dequantization. Project Page: https://octopus-quant.github.io/", "authors": ["Mark Boss", "Vikram Voleti", "Simon Donné", "Shimon Vainer"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.21226", "pdf_url": "https://arxiv.org/pdf/2605.21226v1", "arxiv_id": "2605.21226", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "3a26771612b52e609a6d4d4a7d8d2c6aa59d7afeb2a2e71d55f7966fcfcf8dbe", "sources": ["arxiv", "semantic_scholar"], "title": "Adaptive KV Cache Reuse for Fast Long-Context LLM Serving", "abstract": "In long-context Large Language Model (LLM) inference, the Time-To-First-Token (TTFT) latency incurred by the prefill stage has become the foremost bottleneck limiting interactive performance and deployment cost. KV Cache reuse offers a direct path to reduce redundant prefill, yet traditional prefix caching applies only to strict-prefix scenarios; directly reusing KV Cache in non-prefix settings breaks the cross-chunk global attention relationships and causes significant degradation in generation quality. When reusable KV Cache is offloaded to GPU-external cache pools, I/O overheads across heterogeneous hardware tiers further emerge as a new TTFT bottleneck. Efficient non-prefix KV Cache reuse therefore requires both semantic-consistency recovery and compute-I/O co-optimization. This paper presents CacheTune, a frequency-guided and hardware-aware KV Cache reuse system for long-context LLM serving. CacheTune first identifies, offline, the KV pairs most critical to cross-attention recovery through frequency-domain analysis, and then selectively recomputes only these semantic-critical tokens online while reusing the remaining KVs. To turn this semantic selection into end-to-end latency reduction, CacheTune further combines sparse KV transfer, multi-stream asynchronous overlap, deferred positional-encoding recovery, and hardware-aware adaptive recomputation-ratio tuning to balance computation and data movement across heterogeneous cache pools. Evaluations on mainstream LLMs and long-context tasks show that CacheTune achieves 3.72x-4.86x TTFT speedup and 3.93x-6.21x higher throughput while maintaining generation quality close to full recompute. Even when caches are offloaded to I/O-bound SSD/HDD storage, CacheTune sustains 2.34x-2.36x TTFT speedup through adaptive recomputation.", "authors": ["Fei li", "Song Liu", "Yan Liu", "Jinhua Cui", "Shiqiang Nie", "Jinyu Wang", "Weiguo Wu"], "categories": ["cs.AR", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.24022", "pdf_url": "https://arxiv.org/pdf/2605.24022v1", "arxiv_id": "2605.24022", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "7d9ba1716a760bed2899e2bf180fc5feedc8040c5da3f0965cbefb44a88cd3ef", "sources": ["arxiv", "semantic_scholar"], "title": "Runtime-Certified Bounded-Error Quantized Attention", "abstract": "KV cache quantization reduces the memory cost of long-context LLM inference, but introduces approximation error that is typically validated only empirically. Existing systems rely on average-case robustness, with no mechanism to detect or recover from failures at runtime. We present a tiered KV cache architecture that enables runtime-certified attention: INT8 keys and INT4 values are stored in GPU memory, while FP16 originals are retained in system RAM for deterministic fallback. A two-term error decomposition yields per-head, per-step bounds on (i) attention distribution distortion from key quantization and (ii) value reconstruction error. These bounds are computed online and used to drive adaptive precision selection and a multi-stage fallback ladder, which guarantees recovery to the exact dense attention output when required. Across PG-19, NIAH, and RULER benchmarks on LLaMA~3.1-8B with contexts up to 128K, the system matches dense FP16 KV quality within noise for language modelling and retrieval tasks, while recovering catastrophic failures observed in naive INT8/INT4 baselines. Value-sensitive tasks at short context expose a controlled trade-off between compression and fidelity, which can be eliminated via tighter value tolerances or FP16-value fallback. The certification is local (per-head, per-step) and does not guarantee end-to-end model correctness, but ensures that each attention computation is either bounded relative to an FP16 reference or exactly recovered via fallback. This reframes KV cache quantization as a runtime-verified computation rather than a fixed approximation. The goal is not raw speedups, but enabling safe deployment of aggressive KV compression under strict quality constraints.", "authors": ["Dean Calver"], "categories": ["cs.LG", "cs.AI", "eess.SY"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.20868", "pdf_url": "https://arxiv.org/pdf/2605.20868v1", "arxiv_id": "2605.20868", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "5097a4413db04ebf41c66e7a11c7b2c24f0cdb425f5bd8a0a45d1f335c872aa8", "sources": ["arxiv", "semantic_scholar"], "title": "NanoCP: Request-Level Dynamic Context Parallelism for Data-Expert Parallel Decoding", "abstract": "Modern serving systems for Mixture-of-Experts (MoE) models adopt hybrid data-expert parallelism: expert parallelism (EP) shards experts across GPUs to scale capacity, while data parallelism (DP) replicates attention layers across instances to process independent requests. Existing systems bind each request's attention, MoE communication, and KV cache to a single instance. Because attention latency scales with KV cache size while MoE communication latency scales with batch size, this binding cannot balance both simultaneously, producing EP stragglers; it also fragments KV memory across instances, inflating tail latency under long contexts. While existing context parallelism (CP) mitigates these constraints, its uniform parallelism degree incurs prohibitive communication and attention-side overheads. We present \\work, which decouples MoE communication from KV cache placement and achieves dual balance through dynamic context parallelism (DCP). DCP assigns each request a context-parallel degree sized to its KV footprint: long requests distribute attention across multiple instances; short requests remain local. This dynamic parallelism effectively liquefies the KV cache across the cluster, balancing both the per-instance KV cache occupancy and batch sizes without unnecessary load-balancing costs. To bridge DCP with static execution, \\work introduces an ahead-of-time (AOT) graph engine paired with a custom routing-based communication backend. Experimental results show that \\work maintains up to $1.88\\times$--$3.27\\times$ higher request rates under strict time-per-output-token (TPOT) service level objectives (SLOs). Furthermore, \\work significantly mitigates stragglers, reducing P99 tail latency by up to $1.79\\times$--$2.12\\times$.", "authors": ["Jiefei Chen", "Binbin Lin", "Jinming Ma", "Jiangfei Duan", "Haojie Duanmu", "Hao Liu", "Qinxiu Cheng", "Xiuhong Li", "Zhilin Pei", "Hui Wang", "Xingcheng Zhang", "Dahua Lin"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.21100", "pdf_url": "https://arxiv.org/pdf/2605.21100v1", "arxiv_id": "2605.21100", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "45851014eee01e7aaf26c7a5b5b3da4a2c89178f3f9461434be4251569b4ae22", "sources": ["arxiv", "semantic_scholar"], "title": "Dynamic TMoE: A Drift-Aware Dynamic Mixture of Experts Framework for Non-Stationary Time Series Forecasting", "abstract": "Non-stationary time series forecasting is challenged by evolving distribution shifts that static models struggle to capture. While Mixture-of-Experts (MoE) architectures offer a promising paradigm for decoupling complex drift patterns, existing approaches are limited by fixed expert pools and memoryless routing, hampering their ability to adapt to abrupt regime shifts. To address this, we propose Dynamic TMoE, a framework that unifies architectural evolution with temporal continuity during learning phase. By detecting distribution shifts via Maximum Mean Discrepancy (MMD), we dynamically instantiate heterogeneous experts and prune redundant ones to optimize capacity. Additionally, a temporal memory router leverages recurrent states and an anomaly repository to ensure stable, context-aware expert selection without requiring test-time updates. Experiments on nine benchmarks demonstrate state-of-the-art performance, reducing MSE by 10.4% and MAE by 7.8%. Code is available at https://github.com/andone-07/Dynamic-TMoE.", "authors": ["Jiawen Zhu", "Shuhan Liu", "Di Weng", "Yingcai Wu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.20678", "pdf_url": "https://arxiv.org/pdf/2605.20678v1", "arxiv_id": "2605.20678", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/andone-07/Dynamic-TMoE", "venue": null, "quality_score": 0.65} {"id": "4e5862621c61c300f9ab95b4f8fa94ef1ce14225651c8649ef5568fb11cbfc53", "sources": ["arxiv", "semantic_scholar"], "title": "Beyond Routing: Characterising Expert Tuning and Representation in Vision Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) models are often interpreted by analysing which categories are routed to which experts. However, routing alone does not reveal what each expert actually encodes. We train sparsely-gated convolutional MoE models with a contrastive objective on natural images and characterise expert specialisation using tools from visual neuroscience. Extending from gating-level to expert-level analyses, we measure per-expert category separability, and per-expert tuning using the most exciting inputs. Extending from category-level to feature-level explanations, we interpret tuning via semantic dimensions derived from a dataset of human behavioural judgements (THINGS). Finally, we use tuning and representational similarity analysis to assess the stability of expertise-allocation across independent initialisations. We find that an animate-inanimate distinction dominates expert partitioning, apparent from gating through to expert readout, and is stable across independently trained models. Although routing statistics suggest relatively sparse, categorical preferences, expert analyses reveal broader tuning to continuous visual and semantic dimensions that extend beyond category boundaries. Experts exhibit similar category-separability to one another, despite distinct feature tuning, demonstrating the explanatory benefits of moving beyond category-level analyses. Together, these results show that expert specialisation in vision MoEs extends well beyond category routing and is better understood by probing fine-grained expert-level tuning and representational structure.", "authors": ["Gene Tangtartharakul", "Katherine R. Storrs"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.20610", "pdf_url": "https://arxiv.org/pdf/2605.20610v1", "arxiv_id": "2605.20610", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "c08824c4c5c184721917a400dc5a9eb4e992dd4df7274f6748aad169dd56983a", "sources": ["arxiv", "semantic_scholar"], "title": "Task-Routed Mixture-of-Experts with Cognitive Appraisal for Implicit Sentiment Analysis", "abstract": "Implicit sentiment analysis is challenging because sentiment toward an aspect is often inferred from events rather than expressed through explicit opinion words. Existing models typically learn from the final polarity label, which provides limited guidance for reasoning about sentiment from the context. Motivated by cognitive appraisal theory, we propose an appraisal-aware multi-task learning (MTL) framework for implicit sentiment analysis that provides polarity prediction with two complementary auxiliary tasks: implicit sentiment detection and cognitive rationale generation. However, training several objectives with different targets and sharing a single backbone across tasks in MTL limits flexibility and can lead to task interference. To reduce interference among these related but distinct objectives, we adopt task-level mixture-of-experts models in which all tasks share a common set of experts, and task identity controls the sparse combination of these experts. Our method builds on an encoder-decoder architecture and replaces a subset of encoder and decoder blocks with these sparse mixtures. We use a task-conditioned router to select sparse expert mixtures for each task, and a task-separated routing objective to encourage different tasks to learn distinct expert-selection patterns. Experimental results show that our model outperforms recently proposed approaches, with strong gains on the implicit sentiment subset. Our code is available at https://github.com/yaping166/TRMoE-ISA.", "authors": ["Yaping Chai", "Haoran Xie", "Joe S. Qin"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-20", "url": "https://arxiv.org/abs/2605.20916", "pdf_url": "https://arxiv.org/pdf/2605.20916v1", "arxiv_id": "2605.20916", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/yaping166/TRMoE-ISA", "venue": null, "quality_score": 0.65} {"id": "0fab166949be451c217f839504866a72e3538be8fca90d34a2b6ad7907d92cc1", "sources": ["arxiv", "semantic_scholar"], "title": "OScaR: The Occam's Razor for Extreme KV Cache Quantization in LLMs and Beyond", "abstract": "The rapid advancement toward long-context reasoning and multi-modal intelligence has made the memory footprint of the Key-Value (KV) cache a dominant memory bottleneck for efficient deployment. While the established per-channel quantization effectively accommodates intrinsic channel-wise outliers in Key tensors, its efficacy diminishes under extreme compression. In this work, we revisit the inherent limitations of the per-channel quantization paradigm from both empirical and theoretical perspectives. Our analysis identifies Token Norm Imbalance (TNI) as the primary bottleneck to quantization fidelity. We demonstrate that TNI systematically amplifies errors when shared quantization parameters are required to span token groups exhibiting substantial norm disparities. Instead of relying on intricate quantization pipelines (e.g., TurboQuant), we propose OScaR (Omni-Scaled Canalized Rotation), an accurate and lightweight KV cache compression framework for X-LLMs (i.e., text-only, multi-modal, and omni-modal LLMs). Advancing the per-channel paradigm, OScaR employs Canalized Rotation followed by Omni-Token Scaling to mitigate TNI-induced sequence-dimensional variance both effectively and efficiently, further supported by our optimized system design and CUDA kernels. Extensive evaluations across X-LLMs show that OScaR consistently outperforms existing methods and achieves near-lossless performance under INT2 quantization, establishing it as a robust, low-complexity, and universal framework that defines a new Pareto front. Compared with the BF16 FlashDecoding-v2 baseline, our OScaR implementation achieves a notable up to 3.0x speedup in decoding, reduces memory footprint by 5.3x, and increases throughput by 4.1x. The code for OScaR is publicly available at https://github.com/ZunhaiSu/OScaR-KV-Quant.", "authors": ["Zunhai Su", "Rui Yang", "Chao Zhang", "Yaxiu Liu", "Yifan Zhang", "Wei Wu", "Jing Xiong", "Dayou Du", "Xialie Zhuang", "Yulei Qian", "Yuchen Xie", "Yik-Chung Wu", "Hongxia Yang", "Ngai Wong"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-19", "url": "https://arxiv.org/abs/2605.19660", "pdf_url": "https://arxiv.org/pdf/2605.19660v1", "arxiv_id": "2605.19660", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/ZunhaiSu/OScaR-KV-Quant", "venue": null, "quality_score": 0.65} {"id": "3319c27a92041c705ad6ef7ab523d8d4e9b8f58396d6207da597f21ac9c7545c", "sources": ["arxiv", "semantic_scholar"], "title": "Rotation-Aligned Key Channel Pruning for Efficient Vision-Language Model Inference", "abstract": "Vision-Language Models suffer severe KV cache pressure at inference, as a single image often encodes into thousands of tokens. Most existing methods exploit token sparsity through token pruning, but permanently discarding visual content causes substantial degradation on fine-grained perception tasks. This motivates a complementary axis, feature sparsity: under a fixed KV cache budget, compressing the channel dimension preserves more visual tokens at the same memory cost. Prior Key channel pruning methods, however, face a structural trade-off: token-wise channel pruning is expressive but unstructured and slow, while head-wise approach is hardware-friendly but less robust. We resolve this with RotateK, a rotation-based structured Key channel pruning framework. RotateK applies an online PCA-based rotation that aligns token-dependent channel importance into a shared low-dimensional subspace, enabling accurate pruning under lightweight head-wise masks; a fused Triton attention kernel operates directly on sparse-channel Keys for efficient decoding. Experiments on two representative VLM backbones show that RotateK consistently outperforms prior Key channel pruning in both accuracy and decoding latency, while joint token-channel pruning improves over token-only baselines at matched KV cache budgets.", "authors": ["Beomseok Kang", "Dongwon Jo", "Jiwon Song", "Donghwee Son", "Jae-Joon Kim"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-19", "url": "https://arxiv.org/abs/2605.19218", "pdf_url": "https://arxiv.org/pdf/2605.19218v1", "arxiv_id": "2605.19218", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "67913dd513a278ba93d5c32f2b17be9a43a6bad1bea4a36d41e45759a5056764", "sources": ["arxiv", "semantic_scholar"], "title": "OSCAR: Offline Spectral Covariance-Aware Rotation for 2-bit KV Cache Quantization", "abstract": "INT2 KV-cache quantization is attractive for long-context LLM serving, but it remains difficult to make both accurate and deployable. Simple rotations such as Hadamard transforms reduce outliers, but still degrade at INT2 because they are not aligned with downstream attention. We propose OSCAR, an Ultra-low-bit KV Cache quantization method that estimates attention-aware covariance structures offline and uses them to derive fixed rotations and clipping thresholds for quantization. In this way, it aligns KV quantization with the covariance structures that attention actually consumes. More importantly, we not only provide theoretical justification but also develop a fully deployable OSCAR system with a custom INT2 attention kernel that remains compatible with paged KV-cache serving and fused kernel pipelines, enabling seamless integration into modern LLM serving frameworks such as SGLang and vLLM. We evaluate our methods on recent reasoning models with reasoning traces of up to 32k tokens across 5 tasks. On Qwen3-4B-Thinking-2507 and Qwen3-8B, OSCAR reduces the BF16 accuracy gap to 3.78 and 1.42 points, respectively, while naive rotation INT2 collapses to nearly zero. We further scale OSCAR to Qwen3-32B and GLM-4.7 (358B params), where it remains effectively on par with BF16. On long context - RULER-NIAH up to 128K, OSCAR remains robust on both Qwen3 models, while naive rotation INT2 collapses. System-wise, OSCAR reduces KV-cache memory by approximately 8x, improves throughput by up to 7x at large batch sizes under the same memory budget, and accelerates batch-size-1 decoding by up to 3x over BF16 due to reduced memory bandwidth overhead.", "authors": ["Zhongzhu Zhou", "Donglin Zhuang", "Jisen Li", "Ziyan Chen", "Shuaiwen Leon Song", "Ben Athiwaratkun", "Xiaoxia Wu"], "categories": ["cs.LG", "cs.AI", "cs.DC", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-18", "url": "https://arxiv.org/abs/2605.17757", "pdf_url": "https://arxiv.org/pdf/2605.17757v1", "arxiv_id": "2605.17757", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4da3626b69c1e84b0b5863d736f5622865f437930ac821488f6bb5d5108ca520", "sources": ["arxiv", "semantic_scholar"], "title": "KVDrive: A Holistic Multi-Tier KV Cache Management System for Long-Context LLM Inference", "abstract": "Supporting long-context LLMs is challenging due to the substantial memory demands of the key-value (KV) cache. Existing offloading systems store the full cache in host memory and selectively fetch critical entries during decoding, but this strategy quickly hits a ceiling: sparsity cannot be pushed further without degrading accuracy. As a result, when context length and batch size grow, the volume of KV transfers rises sharply and becomes the dominant source of decoding latency. We present KVDrive, a holistic multi-tier KV cache management system spanning GPU memory, host DRAM, and SSD. Unlike prior work that pursues greater sparsity through algorithmic refinements, KVDrive tackles the problem from a systems perspective - jointly orchestrating cache placement, pipeline scheduling, and cross-tier coordination to sustain high-throughput inference under tight GPU budgets. KVDrive advances three fundamental capabilities: it adapts cache management to attention behavior to maximize reuse and minimize redundant data movement; it restructures the decoding pipeline to overlap I/O- and CPU/GPU compute-bound stages, eliminating stalls across heterogeneous resources; and it harmonizes data movement across memory tiers to unlock scalable long-context inference far beyond GPU and DRAM limits. We have implemented a fully functional prototype of KVDrive and evaluated it on long-context benchmarks with popular LLMs. The system achieves up to 1.74x higher throughput compared to state-of-the-art works while preserving accuracy.", "authors": ["Jian Lin", "Jiazhi Mi", "Zicong Hong", "Haodong Wang", "Qianli Liu", "Haodyue Zhang", "Peng Li", "Song Guo"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-18", "url": "https://arxiv.org/abs/2605.18071", "pdf_url": "https://arxiv.org/pdf/2605.18071v1", "arxiv_id": "2605.18071", "doi": "10.1145/3802077", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "dad487bf361cd50b76dc26f154f08f386fcd2fa8687ecb069b8b7c00adc80424", "sources": ["arxiv", "semantic_scholar"], "title": "CP-MoE: Consistency-Preserving Mixture-of-Experts for Continual Learning", "abstract": "Catastrophic forgetting remains a major obstacle to continual learning in large language models (LLMs) and vision--language models (VLMs). Although Mixture-of-Experts (MoE) architectures offer an efficient path to scaling, existing LoRA-based MoE continual learning methods still face a fundamental trade-off: they either isolate experts too aggressively, limiting knowledge transfer across tasks, or allow task-specific updates to overwrite important existing parameters, leading to severe forgetting. To address this, we propose CP-MoE, a continual learning framework built around a transient expert that captures early task-specific updates and guides their integration into stable experts. CP-MoE introduces a consistency-preserving routing bias, which uses the transient expert to estimate representation similarity with stable experts and steer routing towards more compatible expert selection, and a transient expert-guided regularisation mechanism, which selectively protects important historical parameters during merging. Together, these components reduce parameter interference and forgetting while preserving cross-task knowledge transfer. We validate CP-MoE on both unimodal and multimodal continual learning benchmarks with LLM-based and VLM-based MoE models. On SuperNI benchmark, spanning diverse sequential language tasks, CP-MoE achieves state-of-the-art performance and stronger zero-shot transfer to unseen tasks. On VQA v2 dataset, it scales effectively to multimodal visual reasoning, consistently reduces forgetting, and outperforms strong MoE baselines.", "authors": ["Yang Liu", "Toan Nguyen", "Flora D. Salim"], "categories": ["cs.LG", "cs.AI", "cs.CL", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-18", "url": "https://arxiv.org/abs/2605.20247", "pdf_url": "https://arxiv.org/pdf/2605.20247v1", "arxiv_id": "2605.20247", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "9430cbe0ebbb98047f0e914e16ca816e81b770e688db77ac8cb8926abb47b09e", "sources": ["arxiv", "semantic_scholar"], "title": "Prune, Update and Trim: Robust Structured Pruning for Large Language Models", "abstract": "Large Language Models (LLMs) have experienced significant growth and development in recent years. However, performing inference on LLMs remains costly, especially for long-context inference or in resource-constrained devices. This motivates the development of new post-training pruning (PTP) methods. These methods reduce LLMs' requirements by removing a substantial part of the model's parameters. The discarded weights are selected depending on their impact on the models performance. Current PTP methods prune the models by removing the less informative hidden nodes from the FFN layers, and the least important attention layers. We propose Putri, a PTP method that introduces three changes to the State- of-the-art. First, we update the un-pruned weights of the FFN to compensate for the introduced pruning error. Second, the FFN layers are pruned sequentially, taking into account the updates done to the previous layers. Third, instead of removing full attention layers, we remove individual attention-heads. We extend this method such that it can also address Grouped-Query Attention. In summary, Putri is a structure pruning method which remains simple while showing SOTA performance. Pruning experiments on multiple models with a wide variety of sparsity ranges and on different datasets, validate the generality of Putri. Notably, we demonstrate that, unlike previous methods, Putri can prune LLMs on extreme sparsity ratios. The code is available at: https://github.com/Coello-dev/Putri.", "authors": ["Diego Coello de Portugal Mecke", "Tom Hanika", "Lars Schmidth-Thieme"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-18", "url": "https://arxiv.org/abs/2605.18331", "pdf_url": "https://arxiv.org/pdf/2605.18331v1", "arxiv_id": "2605.18331", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Coello-dev/Putri", "venue": null, "quality_score": 0.65} {"id": "b93b87fd633f733bdf5ceba559a84aadb71ad8a193f184da733f8c18b510756c", "sources": ["arxiv", "semantic_scholar"], "title": "VeriCache: Turning Lossy KV Cache into Lossless LLM Inference", "abstract": "The large size of the KV cache has become a major bottleneck for serving LLMs with increasing context lengths. In response, many KV cache compression methods, such as token dropping and quantization, have been proposed. However, almost all of these methods are inherently lossy-despite minimal accuracy degradation for short outputs, their outputs increasingly diverge from full-KV-cache outputs as more tokens are decoded, which leads to catastrophic failures in code generation and tool calling. We present VeriCache, the first inference framework that ensures the same output as full-KV-cache decoding but largely preserves the high decoding throughput of a range of KV cache compression algorithms. VeriCache uses the compressed KV cache to draft tokens, then verifies them against the full KV cache. While it may seem like just speculative decoding, VeriCache requires addressing a key system challenge to work-keeping the full KV cache out of GPU memory and minimizing the overhead of swapping it in for verification. The insight is two-fold: (1) compressed-KV decoding can be parallelized with full-KV swap, because one is HBM-bandwidth-bound and the other is PCIe/network-bound, and (2) the compressed KV cache often produces output similar to the full KV cache, allowing a long drafting horizon to amortize each full-KV swap. VeriCache applies to both long-context decoding and remote prefix caching, supports a broad family of token-dropping and quantization methods through a uniform compressor interface, and composes with traditional speculative decoding. Experimental results show that VeriCache achieves up to 4X higher throughput than full-KV inference while producing identical outputs.", "authors": ["Jiayi Yao", "Samuel Shen", "Kuntai Du", "Shaoting Feng", "Dongjoo Seo", "Rui Zhang", "Yuyang Huang", "Yuhan Liu", "Shan Lu", "Junchen Jiang"], "categories": ["cs.AR", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-17", "url": "https://arxiv.org/abs/2605.17613", "pdf_url": "https://arxiv.org/pdf/2605.17613v1", "arxiv_id": "2605.17613", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "36b8acaa25b1825c4745e29dfef08af50a4ac6965e00dd99369f0c35a1daa3ec", "sources": ["arxiv", "semantic_scholar"], "title": "FastOCR: Dynamic Visual Fixation via KV Cache Pruning for Efficient Document Parsing", "abstract": "Vision-Language Models (VLMs) have shown strong promise on Optical Character Recognition (OCR), yet the sheer number of visual tokens required to encode dense documents incurs prohibitive inference cost. Existing pruning methods rely on physical eviction, e.g., permanently discarding visual tokens during the prefill stage. While effective for natural images, this strategy fundamentally breaks down on OCR, where virtually every visual token may correspond to a character or structural element, and any irreversible loss leads to catastrophic accuracy degradation. We observe that, although document images appear globally dense and seemingly unprunable, the model's attention to them is in fact temporally sparse: at each decoding step it concentrates on a small region that shifts gradually across steps, much as a human reader fixates on successive words rather than perceiving an entire page at once. Motivated by this Dynamic Visual Fixation phenomenon, we recast the intractable global pruning problem as a tractable local, dynamic one and propose FastOCR, a training-free framework with two complementary modules. Specifically, Focal-Guided Pruning identifies a small set of focal layers and selects the most task-relevant visual tokens from them at each step, while Cross-Step Fixation Reuse exploits the gradual shift of fixation to warm-start each step from the previous one. By dynamically adjusting which tokens are attended rather than evicting any from the cache, FastOCR avoids permanent information loss. Extensive experiments show that FastOCR serves as a plug-and-play acceleration module, generalizing consistently across five VLMs of varying sizes and architectures. On Qwen2.5-VL, FastOCR retains 98% of the unpruned model's accuracy while attending to only 5% of the visual tokens per decoding step, reducing attention latency by 3.0$\\times$.", "authors": ["Zihan Tang", "Leqi Shen", "Hui Chen", "Ao Wang", "Ben Wan", "Yan Feng", "Ke Zhang", "Sicheng Zhao", "Tongxuan Liu", "Guiguang Ding"], "categories": ["cs.CV", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-17", "url": "https://arxiv.org/abs/2605.17447", "pdf_url": "https://arxiv.org/pdf/2605.17447v1", "arxiv_id": "2605.17447", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "1a128d3435cc8c20b2102a526e0fdd9f27106e523f2de09de19370cc4d21c2e5", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Experts for Low-Resource LLMs", "abstract": "Mixture-of-Experts (MoE) architectures enable efficient model scaling, yet expert routing behavior across underrepresented languages remains poorly understood. We analyze routing dynamics in two architecturally distinct MoE models -- a pure Transformer (Qwen3-30B-A3B) and a hybrid Mamba-Transformer (Nemotron-3-Nano-30B-A3B) -- using Hebrew as a morphologically rich, low-resource testbed. Both pre-trained models exhibit \\emph{deep-layer routing collapse}: usage entropy drops sharply in final layers and tokens concentrate on a narrow expert subset, a pattern largely absent for English. Continual pre-training (CPT) on balanced bilingual data substantially corrects this imbalance, increasing entropy and shifting routing toward shared, language-agnostic experts; supervised fine-tuning (SFT) alone achieves less complete correction. Extending the analysis to Japanese reveals quantitatively consistent collapse signatures, providing cross-linguistic evidence that the phenomenon is a systematic consequence of pre-training underrepresentation rather than any language-intrinsic property. Routing improvements correlate with consistent downstream benchmark gains, positioning routing entropy and expert specialization as principled diagnostics for multilingual capacity in MoE systems.", "authors": ["Ori Bar Joseph", "Smadar Arvatz", "Noam Kayzer", "Dan Revital", "Sarel Weinberger"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-17", "url": "https://arxiv.org/abs/2605.17598", "pdf_url": "https://arxiv.org/pdf/2605.17598v1", "arxiv_id": "2605.17598", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4c8039055e72df82136c1b13514d5cf1bfe2e310acd1ae152938e49722960cf7", "sources": ["arxiv", "semantic_scholar"], "title": "Stable Routing for Mixture-of-Experts in Class-Incremental Learning", "abstract": "Class-incremental learning (CIL) requires models to learn new classes sequentially while preserving prior knowledge. Recently, approaches that combine pre-trained models with mixture-of-experts (MoE) have received increasing attention in CIL: they typically expand experts during learning and employ a router to assign weights across experts. However, existing MoE methods often overlook routing drift induced by expert expansion. Once new experts are introduced, the router may reassign samples from earlier classes to newly added experts, thereby perturbing previously established expert compositions and causing interference even when old experts remain frozen. We argue that expandable MoE in CIL requires two complementary properties: stable old-class routing for knowledge preservation and sufficient capacity utilization for new-class adaptation. To this end, we propose Stable Routing for MoE (StaR-MoE), a routing-level framework for expandable MoE in CIL. By incorporating sensitivity-aware routing alignment, StaR-MoE aligns current old-class routing behavior with historical routing distributions through sensitivity-guided constraints. Complementarily, StaR-MoE introduces asymmetric capacity regularization to encourage effective utilization of the expanded expert pool without compromising class-specific routing specialization. Extensive experiments across four standard CIL benchmarks demonstrate that StaR-MoE consistently improves both average and last accuracy over state-of-the-art methods, highlighting the importance of stable routing.", "authors": ["Zirui Guo", "Quan Cheng", "Da-Wei Zhou", "Lijun Zhang"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-17", "url": "https://arxiv.org/abs/2605.17571", "pdf_url": "https://arxiv.org/pdf/2605.17571v1", "arxiv_id": "2605.17571", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "43f8df365e24454599de8da3acc592bad1b3a4d6acaea58b99687323054547ec", "sources": ["arxiv", "semantic_scholar"], "title": "TriAxialKV: Toward Extreme Low-Precision KV-Cache Quantization for Agentic Inference Tasks", "abstract": "Agentic workloads have emerged as a major workload for LLM inference. They differ significantly from chat-only workloads, requiring long-context processing, the ability to handle multimodal inputs, and structured multi-turn interactions with tool calling capabilities. As a result, their context exhibits structure that can carry different importance along three key axes: temporal recency to the current turn, modality such as text or image tokens, and semantic role such as user queries, tool calls, observations, or reasoning. These axes capture distinct token behaviors and lead to different sensitivities to KV-cache compression. However, existing KV-cache quantization methods are typically homogeneous or exploit only heterogeneity on a single dimension, such as temporal proximity or modality, overlooking the interactions among them. To this end, we introduce TriAxialKV, a novel mixed-precision KV-cache quantization scheme that assigns each token a triaxial tag, calibrates per-tag sensitivity, and allocates INT2/INT4 bitwidths under a fixed memory budget. We implement TriAxialKV as an end-to-end serving system, comprising calibration, mixed-precision quantization and memory management, and custom fused Triton decode kernels. When using Qwen3-VL-32B-Thinking as a computer-use agent operating the OSWorld, TriAxialKV matches the accuracy of SGLang with BF16 KV cache while supporting 4.5$\\times$ KV cache size and achieving 30% higher end-to-end throughput, when running on real GPU systems.", "authors": ["Hanzhang Shen", "Haoran Wu", "Yiren Zhao", "Robert Mullins"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-16", "url": "https://arxiv.org/abs/2605.17170", "pdf_url": "https://arxiv.org/pdf/2605.17170v1", "arxiv_id": "2605.17170", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ab287df40005b3a360b4861d54dc92d9fb17dfa3f022491b042706b18dc90978", "sources": ["arxiv", "semantic_scholar"], "title": "ObjectCache: Layerwise Object-Storage Retrieval for KV Cache Reuse", "abstract": "Prefix KV caching has become a key mechanism in LLM serving: it reduces time to first token (TTFT) by avoiding redundant computation across requests that share a prefix (i.e., the system prompt). However, the accumulated KV cache is often larger than what GPU memory and local DRAM can hold. To preserve latency, current systems keep the KV cache in remote DRAM pools, increasing serving-cluster size and cost. In this paper, we explore a different approach: storing the KV cache in S3-compatible object storage so that capacity is no longer the constraint, while minimizing the impact on TTFT. We propose ObjectCache, which co-designs the storage protocol and transfer schedule so that the storage server delivers KV cache data in the order the GPU consumes it, overlapping data transfer with compute across concurrent requests. We prototype ObjectCache on a 100 Gbps RoCE cluster with NIXL (an inference library that abstracts storage and memory), Ceph RGW (an Object Gateway for clusters), and DAOS (an open source storage system). For 64K contexts, common in today's systems, ObjectCache adds only 5.6\\% latency over local DRAM; for 4K contexts, where less compute is available to mask transfer, ObjectCache adds 56--75\\,ms over the optimal local layerwise baseline. Under shared bandwidth caps, our scheduler reduces added TTFT by 1.2--1.8x compared with equal bandwidth sharing.", "authors": ["Yu Zhu", "Aditya Dhakal", "Yunming Xiao", "Dejan Milojicic", "Gustavo Alonso"], "categories": ["cs.DC", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-16", "url": "https://arxiv.org/abs/2605.22850", "pdf_url": "https://arxiv.org/pdf/2605.22850v1", "arxiv_id": "2605.22850", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.65} {"id": "6613298ee5f564f65b60c55ffbcb7d084fe4918cb2546935c9bc0a29ebd0569b", "sources": ["arxiv", "semantic_scholar"], "title": "E-PMQ: Expert-Guided Post-Merge Quantization with Merged-Weight Anchoring", "abstract": "Low-resource deployment constraints have made model quantization essential for deploying neural networks while preserving performance. Meanwhile, model merging has become an increasingly practical low-resource strategy for integrating multiple task- or domain-specialized experts into a single model without joint training or multi-model serving. Together, quantization and model merging enable an efficient low-resource deployment pipeline by integrating multiple experts into one low-bit model. We formulate this setting as Post-Merge Quantization (PMQ). We show that directly applying post-training quantization (PTQ) to a merged model is unreliable because two distinct deviations are coupled: the quantization deviation introduced by low-bit reconstruction and the expert-relative merging deviation inherited from model merging. To mitigate these deviations, we propose E-PMQ, an expert-guided PMQ framework that uses source expert weights to provide expert- guided output targets during layer-wise calibration, together with merged-weight anchoring to stabilize the calibration and preserve the integrated behavior of the merged model. On CLIP-ViT-B/32 eight-task merging, E-PMQ improves 4-bit GPTQ from 65.0% to 73.6% under Task Arithmetic and from 69.1% to 74.8% under TIES-Merging. On harder settings, E-PMQ improves GPTQ from 34.8% to 76.7% on 20-task CLIP-ViT-L/14 and from 78.26% to 83.34% on FLAN-T5- base GLUE. These results demonstrate that E-PMQ enables effective post-merge quantization and low-bit deployment.", "authors": ["Wenjun Wang", "Yanggan Gu", "Shuo Cai", "Yuanyi Wang", "Pengkai Wang", "Jianmin Wu", "Hongxia Yang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-16", "url": "https://arxiv.org/abs/2605.16882", "pdf_url": "https://arxiv.org/pdf/2605.16882v1", "arxiv_id": "2605.16882", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b039c1210ceb5c8ae5079bae052ee8e59c1393c5087fdda1f506a61f523cc54e", "sources": ["arxiv", "semantic_scholar"], "title": "CAR-SAM: Cross-Attention Reconstruction for Post-Training Quantization of the Segment Anything Model", "abstract": "Segment Anything Models (SAMs) are extensively used in computer vision for universal image segmentation, but deploying them on resource-constrained devices is challenging due to their high computational and memory demands. Post-Training Quantization (PTQ) is a widely used technique for model compression and acceleration. However, existing PTQ methods fail to consider the cross-attention architecture in the SAM decoder. This degradation primarily stems from the unique challenges posed by SAMs: (1) Attention dissipation, where the attention information in the decoder, which is crucial for representing segmentation masks, collapses into a diffuse and non-semantic form under low-bit quantization; and (2) Reconstruction oscillation, where bidirectional coupling within the two-way transformer introduces cross-branch error interference and destabilizes convergence. To tackle these issues, we propose CAR-SAM, a unified quantization framework tailored for SAMs. Firstly, to mitigate attention dissipation, we introduce MatMul-Aware Compensation (MAC) mechanism that transfers activation-induced quantization errors from MatMul to preceding linear weights. Secondly, to mitigate oscillation in decoder optimization, we develop a Joint Cross-Attention Reconstruction (JCAR) strategy that jointly reconstructs coupled attention branches, suppressing oscillatory behavior and promoting stable convergence. Extensive experiments show that CAR-SAM robustly quantizes SAM models down to 4-bit precision, surpassing existing methods by 14.6% and 6.6% mAP on SAM-B and SAM-L respectively.", "authors": ["Houji Wen", "Jiangyong Yu", "Jun Li", "Dawei Yang"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-16", "url": "https://arxiv.org/abs/2605.16901", "pdf_url": "https://arxiv.org/pdf/2605.16901v1", "arxiv_id": "2605.16901", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "7e991b6880e0f795c6ddea9e41ad58e78fe5ed28caae75dee6a0ba76bee1d0c5", "sources": ["arxiv", "semantic_scholar"], "title": "PrismQuant: Rate-Distortion-Optimal Vector Quantization for Gaussian-Mixture Sources", "abstract": "For a Gaussian source under mean-squared error (MSE), classical transform coding is rate--distortion (RD) optimal: the Karhunen--Loeve transform (KLT) diagonalizes the covariance, reverse waterfilling allocates the bits, and scalar quantization closes the loop. This elegant story breaks down for multimodal sources, where no single covariance can capture heterogeneous local geometries, and the RD function loses its closed form. We revisit this problem through Gaussian-mixture sources and develop a constructive RD theory for them. Our key finding is that the mixture structure incurs only a component label cost. Conditioned on the active mixture component, each branch is Gaussian; the challenge is allocating bits across heterogeneous branches. We prove that the genie-aided conditional RD function is governed by a single global reverse-waterfilling level shared across all components and eigenmodes. Building on this result, we introduce PrismQuant, which transmits the component label losslessly and encodes the residual using the component-matched KLT, followed by scalar quantization, achieving a rate of H(C)/n bits per source dimension of the converse, with a vanishing asymptotic gap. We further develop a practical implementation based on EM-driven Gaussian-mixture learning, component-adaptive KLTs, and entropy-constrained scalar quantization (ECSQ). Experiments on synthetic Gaussian mixtures show that PrismQuant closely approaches the theoretical RD bound, while experiments on real-world channel-state-information (CSI) data demonstrate competitive or superior performance compared with transformer-based learned codecs at more than one order of magnitude smaller model size.", "authors": ["Bumsu Park", "Chanho Park", "Youngmok Park", "Namyoon Lee"], "categories": ["cs.IT", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-05-15", "url": "https://arxiv.org/abs/2605.15507", "pdf_url": "https://arxiv.org/pdf/2605.15507v1", "arxiv_id": "2605.15507", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e266b4d7f54c9cb2a1e88d5ee4d105356de948e9bb6ae36bc46ddf0842f9c6ec", "sources": ["arxiv", "semantic_scholar"], "title": "UB-SMoE: Universally Balanced Sparse Mixture-of-Experts for Resource-adaptive Federated Fine-tuning of Foundation Models", "abstract": "Heterogeneous LoRA-rank methods address system heterogeneity in federated fine-tuning of foundation models by assigning client-specific ranks based on computational capabilities. However, these methods achieve only marginal computational savings, as dense feed-forward computations dominate. Sparse Mixture-of-Experts (SMoE) provides a promising alternative through conditional computation, yet we identify that its naive application to heterogeneous federated settings introduces two critical discordances: (i) expert utilization imbalance and (ii) non-differentiability of Top-K routing. Our convergence analysis demonstrates that these discordances lead to degraded convergence, particularly for resource-constrained clients. To address these challenges, we propose Universally Balanced Sparse Mixture-of-Experts (UB-SMoE), which introduces Dynamic Modulated Routing (DMR) to rebalance expert utilization, and Universal Pseudo-Gradient (PG) to reconstruct learning signals for non-activated experts. These mechanisms form a self-reinforcing cycle that maintains expert viability across heterogeneous clients. Experiments on benchmarks show that UB-SMoE achieves up to $45.0\\%$ computational reduction on low-resource clients while improving their performance by $8.7 \\times$ compared to existing heterogeneous LoRA-rank methods.", "authors": ["Van-Tuan Tran", "Hong-Hanh Nguyen-Le", "Marco Ruffini", "Merim Dzaferagic"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-15", "url": "https://arxiv.org/abs/2605.16690", "pdf_url": "https://arxiv.org/pdf/2605.16690v1", "arxiv_id": "2605.16690", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "79a1de04fa02135fe52b9a403dc8e69cab871ceb4f3c1db6ab090d9953a1a67a", "sources": ["arxiv", "semantic_scholar"], "title": "HeatKV: Head-tuned KV-cache Compression for Visual Autoregressive Modeling", "abstract": "Visual Autoregressive (VAR) models have recently demonstrated impressive image generation quality while maintaining low latency. However, they suffer from severe KV-cache memory constraints, often requiring gigabytes of memory per generated image. We introduce HeatKV, a novel compression method that adapts cache allocation in each head based on its attention to previously generated scales. Using a small offline calibration set, the attention heads are ranked according to their attention scores over prior scales. Based on this ranking, we construct a static pruning schedule tailored to a given memory budget. Applied to the Infinity-2B model, HeatKV achieves $2 \\times$ higher compression ratio in memory allocation for KV cache compared to existing methods, while maintaining similar or better image fidelity, prompt alignment and human perception score. Our method achieves a new state-of-the-art (SOTA) for VAR model KV-cache compression, showcasing the effectiveness of fine-grained, head-specific cache allocation.", "authors": ["Jonathan Cederlund", "Axel Berg", "Durmus Alp Emre Acar", "Chuteng Zhou", "Pontus Giselsson"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-14", "url": "https://arxiv.org/abs/2605.14877", "pdf_url": "https://arxiv.org/pdf/2605.14877v1", "arxiv_id": "2605.14877", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "22e44138f60f689ab135f54fedccf041a78538f1ce546105b0d75c3ad5d18b48", "sources": ["arxiv", "semantic_scholar"], "title": "RQ-MoE: Residual Quantization via Mixture of Experts for Efficient Input-Dependent Vector Compression", "abstract": "Vector quantization is a fundamental tool for compressing high-dimensional embeddings, yet existing multi-codebook methods rely on static codebooks that limit expressiveness under heterogeneous data geometry. While recent dynamic quantizers like QINCo adapt codebooks to individual inputs and improve expressiveness, their strict sequential dependencies create decoding bottlenecks. We propose Residual Quantization via Mixture of Experts (RQ-MoE), a framework combining a two-level MoE with dual-stream quantization to enable input-dependent codebook adaptation for efficient vector quantization. RQ-MoE enables dynamic codebook construction and decouples instruction from quantization, facilitating parallel decoding. Theoretically, we show that standard Residual Quantization and QINCo can be recovered as constrained special cases of RQ-MoE, and derive a guideline for setting expert dimensionality in RQ-MoE. Extensive experiments show that RQ-MoE achieves state-of-the-art or on-par performance in reconstruction and retrieval, while providing 6x-14x faster decoding than prior vector quantization methods. The implementation is available at https://github.com/KDEGroup/RQ-MoE.", "authors": ["Zhengjia Zhong", "Shuyan Ke", "Zaizhou Lin", "Jiaqi Song", "Hongyi Lan", "Hui Li"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-14", "url": "https://arxiv.org/abs/2605.14359", "pdf_url": "https://arxiv.org/pdf/2605.14359v1", "arxiv_id": "2605.14359", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/KDEGroup/RQ-MoE", "venue": null, "quality_score": 0.65} {"id": "de4cb78a0f87292b660b6f20f9e6cc9aa5209c7007e90147cecb7fea456b7053", "sources": ["arxiv", "semantic_scholar"], "title": "Minimal-Intervention KV Retention via Set-Conditioned Diversity", "abstract": "KV-cache compression at small budgets is a crowded design space spanning cache representation, head-wise routing, compression cadence, decoding behavior, and within-budget scoring. We study seven mechanisms across these five families under matched mean cache on long-form mathematical reasoning (MATH-500~\\cite{hendrycks2021math}) with two distilled-reasoning models (Qwen-7B and Llama-8B variants of DeepSeek-R1-Distill~\\cite{deepseek2025r1}) at budgets $b \\in \\{64, 128\\}$. All seven were rejected. We then propose $α$, a one-function modification to the TriAttention~\\cite{mao2026triattention} retention scorer that replaces argmax-top-$k$ with greedy facility-location-inspired selection under a V-space redundancy penalty controlled by a single weight $λ$. A pre-registered protocol tunes $λ$ on a frozen development split and confirms on a disjoint held-out split; with $λ= 0.5$, $α$ clears Bonferroni on two of the four (model, budget) cells (Qwen $b{=}128$ and Llama $b{=}64$), no cell is significantly negative, and the pre-registered Branch~A triggers. The finding is asymmetric: a minimal scoring modification beat heavier structural redesigns in this regime, and the combined matched-memory, sympy-graded, held-out confirmation protocol is the evidence standard that made the asymmetry visible.", "authors": ["Libo Sun", "Po-wei Harn", "Peixiong He", "Xiao Qin"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-14", "url": "https://arxiv.org/abs/2605.14292", "pdf_url": "https://arxiv.org/pdf/2605.14292v2", "arxiv_id": "2605.14292", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/libophd/minimal-kv-retention", "venue": null, "quality_score": 0.65} {"id": "2d086aaab2d7969465dd97122c28ad7160bf7319eee16e1faae78dcf6eeeb676", "sources": ["arxiv", "semantic_scholar"], "title": "KVCapsule: Efficient Sequential KV Cache Compression for Vision-Language Models with Asymmetric Redundancy", "abstract": "Vision-Language Models (VLMs) have emerged as a critical and fast-growing extension of Large Language Models (LLMs) that enable multimodal reasoning through both text and image inputs. Although VLMs enrich the capabilities of language models, they also inherit and amplify key computational bottlenecks: the memory overhead caused by the large key-value (KV) cache during autoregressive decoding. This challenge is particularly severe in VLMs, where images produce longer token sequences and denser feature representations compared to text. Moreover, the spatial and information-rich nature of vision tokens introduces structured attention patterns that make many LLM-oriented KV cache compression techniques ineffective when applied directly to VLMs. In this work, we conduct a detailed empirical analysis of the behavior of vision tokens, highlighting the critical differences from purely text-based models. Based on these insights, we propose KVCapsule, a novel KV cache compression framework for vision tokens. KVCapsule keeps the pretrained VLM backbone frozen, requires no modification to the attention computation modules, and can be integrated into existing VLMs through lightweight compression and reconstruction components. We evaluate KVCapsule on multiple VLMs and benchmark tasks, demonstrating up to 2x improvement in TPS and 2.4x reduction in KV cache memory at a 60% compression ratio, with negligible degradation in accuracy or response quality. Our findings offer practical pathways to scale VLM inference under constrained memory budgets and inspire further research into structure-aware cache compression for multimodal models.", "authors": ["Yingbing Huang", "Tharun Adithya Srikrishnan", "Steven K. Reinhardt", "Deming Chen"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-14", "url": "https://arxiv.org/abs/2605.16439", "pdf_url": "https://arxiv.org/pdf/2605.16439v1", "arxiv_id": "2605.16439", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "48d38c52e35fa8fada8a0bcd667603d0e83af3923e86b9ecca7fb223093b37cc", "sources": ["arxiv", "semantic_scholar"], "title": "Self-Pruned Key-Value Attention: Learning When to Write by Predicting Future Utility", "abstract": "Under modern test-time compute and agentic paradigms, language models process ever-longer sequences. Efficient text generation with transformer architectures is increasingly constrained by the Key-Value cache memory footprint and bandwidth. To address this limitation, we introduce Self-Pruned Key-Value Attention (SP-KV), a mechanism designed to predict future KV utility in order to reduce the size of the long-term KV cache. This strategy operates at a fine granularity: a lightweight utility predictor scores each key-value pair, and while recent KVs are always available via a local window, older pairs are written in the cache and used in global attention only if their predicted utility surpasses a given threshold. The LLM and the utility predictor are trained jointly end-to-end exclusively through next-token prediction loss, and are adapted from pretrained LLM checkpoints. Rather than enforcing a fixed compression ratio, SP-KV performs dynamic sparsification: the mechanism adapts to the input and typically reduces the KV cache size by a factor of $3$ to $10\\times$, longer sequences often being more compressible. This leads to vast improvements in memory usage and decoding speed, with little to no degradation of validation loss nor performance on a broad set of downstream tasks. Beyond serving as an effective KV-cache reduction mechanism, our method reveals structured layer- and head-specific sparsity patterns that we can use to guide the design of hybrid local-global attention architectures.", "authors": ["Gergely Szilvasy", "Manuel Faysse", "Maria Lomeli", "Matthijs Douze", "Pierre-Emmanuel Mazaré", "Loïc Cabannes", "Wen-tau Yih", "Hervé Jégou"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-13", "url": "https://arxiv.org/abs/2605.14037", "pdf_url": "https://arxiv.org/pdf/2605.14037v1", "arxiv_id": "2605.14037", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "6f1b6ed259c3c971abe47f58a497ec62699aac716fb598bbc93f81376bbfad8a", "sources": ["arxiv", "semantic_scholar"], "title": "SPHERICAL KV: Angle-Domain Attention and Rate-Distortion Retention for Efficient Long-Context Inference", "abstract": "Long-context inference is increasingly constrained by the KV cache: resident memory grows with context length, and decoding becomes limited by repeated High Bandwidth Memory (HBM) streaming rather than arithmetic. Existing methods such as eviction, windowing, quantization, and offloading reduce footprint, but often leave the critical-path bottleneck only partially addressed, especially when compressed states must still be reconstructed into dense vectors during decoding. We present Spherical KV, a long-context inference method that treats KV allocation as a rate-distortion problem grounded in attention geometry for efficient decoding. The method is built on two ideas: (i) represent directional information cheaply in the decode hot loop, and (ii) allocate retention and precision according to estimated future utility. Its first component, Angle-Domain Attention (ADA), stores keys in a spherical parameterization consisting of a scalar radius and compact angle codes, and computes attention logits directly from these codes without reconstructing dense keys. This preserves a paged, block-local, fusion-friendly decode path and directly targets HBM traffic in realistic serving settings. Its second component, Rate-Distortion Retention (RDR), jointly chooses keep/drop decisions and precision tiers per token and head under a fixed budget, producing tier-homogeneous pages with lightweight metadata and coalesced reads. Together, ADA and RDR provide a deployment-oriented mechanism for reducing KV residency while preserving decode efficiency.", "authors": ["Anay Chauhan", "Gurucharan Marthi Krishna Kumar", "Arion Das", "Amit Dhanda", "Vinija Jain", "Aman Chadha", "Amitava Das"], "categories": ["cs.LG", "cs.CL", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-05-13", "url": "https://arxiv.org/abs/2605.18856", "pdf_url": "https://arxiv.org/pdf/2605.18856v3", "arxiv_id": "2605.18856", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "a6770ec8df8337956d27e296bb66489720f2535c356bab623db4fdbb4bbf49b8", "sources": ["arxiv", "semantic_scholar"], "title": "HodgeCover: Higher-Order Topological Coverage Drives Compression of Sparse Mixture-of-Experts", "abstract": "Sparse Mixture-of-Experts (MoE) layers route tokens through a handful of experts, and learning-free compression of these layers reduces inference cost without retraining. A subtle obstruction blocks every existing compressor in this family: three experts can each be pairwise compatible yet form an irreducible cycle when merged together, so any score that ranks experts on pairwise signals is structurally blind to which triples are jointly mergeable. We show the obstruction is a precise mathematical object, the harmonic kernel of the simplicial Laplacian on a 2-complex whose vertices are experts, whose edges carry KL merge barriers, and whose faces carry triplet barriers; Hodge-decomposing the edge-barrier signal isolates the kernel exactly. We turn the diagnostic into a selection objective: HodgeCover greedily covers the harmonic-critical edges and triplet-critical triangles, and a hybrid variant of HodgeCover pairs it with off-the-shelf weight pruning on survivors. On three open-weight Sparse MoE backbones under aggressive expert reduction, HodgeCover matches state-of-the-art learning-free baselines on the expert-reduction axis, leads on the aggressive-compression frontier of the hybrid axis, and uniquely balances retained mass across all four Hodge components. These results show that exposing the harmonic kernel of a learned MoE structure changes which compressor wins at the regime that matters most.", "authors": ["Tao Zhong", "Dongzhe Zheng", "Christine Allen-Blanchette"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-13", "url": "https://arxiv.org/abs/2605.13997", "pdf_url": "https://arxiv.org/pdf/2605.13997v1", "arxiv_id": "2605.13997", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8128ded7225a1a27c081c62f71541e2429ac30c0658b6ac7f99df16de39fb0f3", "sources": ["arxiv", "semantic_scholar"], "title": "FibQuant: Universal Vector Quantization for Random-Access KV-Cache Compression", "abstract": "Long-context inference is increasingly a memory-traffic problem. The culprit is the key--value (KV) cache: it grows with context length, batch size, layers, and heads, and it is read at every decoding step. Rotation-based scalar codecs meet this systems constraint by storing a norm, applying a shared random rotation, and quantizing one coordinate at a time. They are universal and random-access, but they discard the geometry created by the normalization step. After a Haar rotation, a block of $k$ consecutive coordinates is not a product source; it is a spherical-Beta source on the unit ball. We introduce \\textsc{FibQuant}, a universal fixed-rate vector quantizer that keeps the same normalize--rotate--store interface while replacing scalar tables by a shared radial--angular codebook matched to this canonical source. The codebook combines Beta-quantile radii, Fibonacci\\,/\\,Roberts--Kronecker quasi-uniform directions, and multi-restart Lloyd--Max refinement. We prove that the resulting vector code strictly improves on its scalar product specialization at matched rate, with a high-rate gain that separates into a cell-shaping factor and a density-matching factor. The same construction gives a dense rate axis, including fractional-bit and sub-one-bit operating points, without calibration or variable-length addresses. On GPT-2 small KV caches, \\textsc{FibQuant} traces a memory--fidelity frontier from $5\\times$ compression at $0.99$ attention cosine similarity to $34\\times$ at $0.95$. End-to-end on TinyLlama-1.1B, it is within $0.10$ perplexity of fp16 at $4\\times$ compression and has $3.6\\times$ lower perplexity than scalar \\textsc{TurboQuant} at $b = 2$ ($8\\times$ compression), where scalar random-access quantization begins to fail.", "authors": ["Namyoon Lee", "Yongjune Kim"], "categories": ["cs.AI", "cs.IT", "stat.ML"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-05-12", "url": "https://arxiv.org/abs/2605.11478", "pdf_url": "https://arxiv.org/pdf/2605.11478v1", "arxiv_id": "2605.11478", "doi": null, "citation_count": 1, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "bcfcc617c02abd31e07bc7d8e212bb8241aeae54de852d2e05fd6a0387c42cc4", "sources": ["arxiv", "semantic_scholar"], "title": "KV-Fold: One-Step KV-Cache Recurrence for Long-Context Inference", "abstract": "We introduce KV-Fold, a simple, training-free long-context inference protocol that treats the key-value (KV) cache as the accumulator in a left fold over sequence chunks. At each step, the model processes the next chunk conditioned on the accumulated cache, appends the newly produced keys and values, and passes the enlarged cache forward; the same one-step update is applied repeatedly, analogous to foldl in functional programming. Building on the KV cache concatenation primitive introduced for latent multi-agent communication, we repurpose it as a chunk-to-chunk recurrence for long-context inference. When processing chunk t, the model attends to the KV cache carried from earlier chunks as a prefix, reusing its internal state across segments without modifying or retraining the model. Despite its simplicity, the induced recurrence is stable: per-step drift rises briefly and then saturates into a flat plateau that persists across deep chains. This plateau is insensitive to a 10,000x change in numerical precision, robust across chunk sizes, and consistent across model families. At the task level, KV-Fold preserves exact information over long distances. On a needle-in-a-haystack benchmark, it achieves 100% exact-match retrieval across 152 trials spanning contexts from 16K to 128K tokens and chain depths up to 511 on Llama-3.1-8B, while remaining within the memory limits of a single 40GB GPU. Compared to streaming methods, which trade fidelity for bounded memory, KV-Fold maintains long-range retrieval while operating as a sequence of tractable forward passes. Overall, our results show that frozen pretrained transformers already support a stable form of KV-cache recurrence, providing a practical route to long-context inference without architectural changes or training.", "authors": ["Alireza Nadali", "Patrick Cooper", "Ashutosh Trivedi", "Alvaro Velasquez"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-12", "url": "https://arxiv.org/abs/2605.12471", "pdf_url": "https://arxiv.org/pdf/2605.12471v1", "arxiv_id": "2605.12471", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "53946a4423636d6a9edc4ab219a84e30d8bd0c61f533cd8726bd11c4309eb6e3", "sources": ["arxiv", "semantic_scholar"], "title": "MuonQ: Enhancing Low-Bit Muon Quantization via Directional Fidelity Optimization", "abstract": "The Muon optimizer has emerged as a compelling alternative to Adam for training large language models, achieving remarkable computational savings through gradient orthogonalization. However, Muon's optimizer state is more sensitive to quantization errors: because the orthogonalization discards the magnitudes of singular values and retains only directional information, even small quantization errors in singular vector directions are amplified in the update. In this work, we propose MuonQ, a low-bit Muon training framework built on the principle of directional fidelity optimization. First, we apply a pre-quantization normalization so that each step introduces quantization errors of the same magnitude, preventing the accumulated error from developing a preferred direction. Second, we introduce a structural decomposition that separately quantizes the dominant singular components via power iteration, ensuring that quantization errors perturb only singular value magnitudes rather than rotating singular vector directions. Third, we adopt $μ$-law companding quantization to allocate higher resolution to densely packed momentum values, shifting the quantization objective from outlier preservation to dense-region distinguishability. Together, these techniques enable stable 4-bit quantization of Muon's optimizer states. Pre-training experiments on GPT-style and LLaMA-style models demonstrate that MuonQ at 4-bit precision closely matches full-precision Muon in both training loss and downstream task accuracy, while reducing optimizer state memory by up to 7.3 $\\times$. Our code is available at https://github.com/YupengSu/MuonQ.", "authors": ["Yupeng Su", "Ruijie Zhang", "Ziyue Liu", "Yequan Zhao", "Zheng Zhang"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-12", "url": "https://arxiv.org/abs/2605.11396", "pdf_url": "https://arxiv.org/pdf/2605.11396v1", "arxiv_id": "2605.11396", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/YupengSu/MuonQ", "venue": null, "quality_score": 0.65} {"id": "d8022920303221a0fbcb7af981e3c3546afb5bc63f2c619b16ad50107db3a5e4", "sources": ["arxiv", "semantic_scholar"], "title": "Slicing and Dicing: Configuring Optimal Mixtures of Experts", "abstract": "Mixture-of-Experts (MoE) architectures have become standard in large language models, yet many of their core design choices - expert count, granularity, shared experts, load balancing, token dropping - have only been studied one or two at a time over narrow configuration ranges. It remains an open question whether these choices can be optimized independently, without considering interactions. We present the first systematic study of over 2,000 pretraining runs spanning models up to 6.6B total parameters, in which we exhaustively vary total experts, expert dimension, heterogeneous expert sizing within a single layer, shared expert size and load-balancing mechanisms. We find that at every active-parameter scale that we study, performance consistently improves with total MoE parameters even at extreme active expert parameter ratios like 128.Further, the optimal expert size is nearly invariant to total parameter count and depends only on active parameter count. Third, we see that other choices like shared experts, heterogeneous experts and load-balancing settings have small effects relative to expert count and granularity, although dropless routing yields a consistent gain. Overall, our results suggest a simpler recipe: focus on expert count and granularity, other choices have minimal effect on final quality.", "authors": ["Margaret Li", "Sneha Kudugunta", "Danielle Rothermel", "Luke Zettlemoyer"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-12", "url": "https://arxiv.org/abs/2605.11689", "pdf_url": "https://arxiv.org/pdf/2605.11689v1", "arxiv_id": "2605.11689", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "1fad0cb93aaa669ab230021fef265de93672f8b0a0afdef8d6262fe91d8051cf", "sources": ["arxiv", "semantic_scholar"], "title": "Routers Learn the Geometry of Their Experts: Geometric Coupling in Sparse Mixture-of-Experts", "abstract": "Sparse Mixture-of-Experts (SMoE) models enable scaling language models efficiently, but training them remains challenging, as routing can collapse onto few experts and auxiliary load-balancing losses can reduce specialization. Motivated by these hurdles, we study how routing decisions in SMoEs are formed mechanistically. First, we reveal a geometric coupling between routers and their corresponding experts. For a given token, the router weights for the selected expert and the expert weights processing it receive gradients along the same input direction, differing only in scalar coefficients. Thus, matched router--expert directions accumulate the same routed token history. This theoretical coupling also appears empirically in routing dynamics. In a $1$B SMoE trained from scratch, higher router scores predict stronger expert neuron activations, showing that routing decisions are mirrored inside the selected expert. Next, we analyze the effects of auxiliary load balancing on the router--expert geometric coupling, showing that such losses break this structure by spreading input-directed gradients across router weights, making distinct router directions nearly three times more similar to each other. Last, we demonstrate the centrality of geometric coupling for effective routing with a parameter-free online K-Means router, in which each expert maintains a running average of the hidden states routed to it and tokens are assigned based on cosine similarity. Compared with auxiliary-loss and loss-free balancing, this router achieves the lowest load imbalance with only a modest perplexity increase, indicating that geometric coupling captures a substantial part of what the router learns. Overall, our results explain how routers form assignment geometry that supports an effective division of labor.", "authors": ["Sagi Ahrac", "Noya Hochwald", "Mor Geva"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-12", "url": "https://arxiv.org/abs/2605.12476", "pdf_url": "https://arxiv.org/pdf/2605.12476v1", "arxiv_id": "2605.12476", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "f9c089764481a6d27d516a86523ca8f9410011670285dc2bd4412e0d855c835e", "sources": ["arxiv", "semantic_scholar"], "title": "HELLoRA: Hot Experts Layer-Level Low-Rank Adaptation for Mixture-of-Experts Models", "abstract": "Low-Rank Adaptation (LoRA) dominates parameter-efficient fine-tuning of large language models, yet most variants target dense architectures. Mixture-of-Experts (MoE) models scale parameters at near-constant per-token compute, and their sparse activation patterns create untapped opportunities for more efficient adaptation. We propose Hot-Experts Layer-level Low-Rank Adaptation (HELLoRA), which attaches LoRA modules only to the most frequently activated experts at each layer. This simple mechanism reduces trainable parameters and adapter-induced FLOPs while improving downstream performance, an effect we attribute to a form of structured regularization that preserves pretrained expert specialization. To stress-test HELLoRA under extreme parameter budgets, we further compose it with LoRI to form HELLoRI, which freezes the up-projection and sparsifies the down-projection. Across three MoE backbones, namely OlMoE-1B-7B, Mixtral-8x7B, and DeepSeekMoE, and three task families covering mathematical reasoning, code generation, and safety alignment, HELLoRA consistently outperforms strong PEFT baselines. Relative to vanilla LoRA on OlMoE, HELLoRA uses 15.7% of the trainable parameters, reduces adapter FLOPs by 38.7%, achieves 1.9x the training throughput, and improves accuracy by 9.2%. On DeepSeekMoE, HELLoRA outperforms LoRA while using only 23.2% of its trainable parameters. These results demonstrate that activation-aware adapter placement is an effective and practical route to scaling PEFT for MoE language models.", "authors": ["Jia Wei", "Zhonghao Zhang", "Ping Chen", "Qianyang li", "Yancheng Pan", "Shaoxun Wang", "Ziyi Qiu", "Longxiang Wang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-11", "url": "https://arxiv.org/abs/2605.18795", "pdf_url": "https://arxiv.org/pdf/2605.18795v1", "arxiv_id": "2605.18795", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8fd0301b31d5c39b0b0f68db944601020aaa6a4a40ee68cdbf221cc77dd7661d", "sources": ["arxiv", "semantic_scholar"], "title": "Prompt-Activation Duality: Improving Activation Steering via Attention-Level Interventions", "abstract": "Activation steering controls language model behavior by adding directions to internal representations at inference time, but standard residual-stream steering can fail in stateful dialogue. We identify KV-cache contamination as a key failure mode: steered token states are stored and repeatedly reused, turning a local perturbation into cumulative coherence degradation. To address this challenge, we propose Gated Cropped Attention-Delta steering (GCAD), which extracts steering signals from system-prompt contributions to self-attention and applies them with token-level gating. Across persona-steering experiments, GCAD preserves trait control while substantially improving long-horizon coherence. On the main multi-turn benchmark, GCAD improves average coherence drift from -18.6 to -1.9 and raises turn-10 trait expression from 78.0 to 93.1. These results suggest that activation steering becomes more reliable when interventions follow the prompt-mediated pathways that models already use for behavioral control.", "authors": ["Diancheng Kang", "Zheyuan Liu", "Ningshan Ma", "Yue Huang", "Zhaoxuan Tan", "Meng Jiang"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-11", "url": "https://arxiv.org/abs/2605.10664", "pdf_url": "https://arxiv.org/pdf/2605.10664v2", "arxiv_id": "2605.10664", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "35e3d5409c1b8d88fdb9252db20dc7c6c96264a0455c756ec9ebf43c9684f7ab", "sources": ["arxiv", "semantic_scholar"], "title": "Sieve: Dynamic Expert-Aware PIM Acceleration for Evolving Mixture-of-Experts Models", "abstract": "Mixture-of-Experts (MoE) has become a dominant architecture for scaling large language models (LLMs). However, the execution characteristics of MoE inference are changing rapidly and increasingly mismatch the assumptions underlying existing Processing-in-Memory (PIM) systems. Prior PIM systems for LLMs rely on static rules to offload memory-bound operations to PIM, without accounting for the combined effects of load imbalance and inter-GPU communication. Meanwhile, modern MoE models activate fewer experts out of increasingly many, creating a bimodal expert distribution: a small set of experts receives many tokens, while a long tail of experts receives only one or a few. We identify a trend in modern MoE models toward increasingly bimodal token-to-expert distributions, quantify the resulting disparity in arithmetic intensity across experts, and show that this disparity dramatically reduces the efficiency of state-of-the-art PIM systems for LLMs. To address this problem, we propose a scheduler for serving MoE models on multi-GPU systems with attached HBM-PIM stacks. Our scheduler partitions expert execution between GPU and PIM based on runtime token-to-expert distributions, while jointly considering interconnect overhead, memory bandwidth, GPU throughput, and PIM throughput. Moreover, we propose Sieve, a runtime framework that employs the scheduler to coordinate execution across GPUs and their attached HBM-PIM stacks. Sieve overlaps GPU computation, PIM computation, and intra- and inter-device communication while preserving cross-device dependencies induced by expert parallelism. Sieve is evaluated on our cycle-accurate simulator based on Ramulator 2.0. Compared to state-of-the-art PIM systems for MoE, Sieve improves both throughput and interactivity by 1.3x, 1.3x, and 1.6x on Qwen3.5-397B-A17B, GPT-OSS-120B, and Qwen3-30B-A3B, respectively.", "authors": ["Jungwoo Kim", "Rubens Lacouture", "Genghan Zhang", "Gina Sohn", "Qizheng Zhang", "Swapnil Gandhi", "Christos Kozyrakis", "Kunle Olukotun"], "categories": ["cs.AR"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-11", "url": "https://arxiv.org/abs/2605.11277", "pdf_url": "https://arxiv.org/pdf/2605.11277v1", "arxiv_id": "2605.11277", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "6c234b723f60cccc7dcbfd6b58c914316ad10a9142c8b8af44c69c294a5e4dbc", "sources": ["arxiv", "semantic_scholar"], "title": "Make Each Token Count: Towards Improving Long-Context Performance with KV Cache Eviction", "abstract": "The key-value (KV) cache is a major bottleneck in long-context inference, where memory and computation grow with sequence length. Existing KV eviction methods reduce this cost but typically degrade performance relative to full-cache inference. Our key insight is that full-cache attention is not always optimal: in long contexts, irrelevant tokens can dilute attention away from useful evidence, so selective, learnable eviction can improve generation rather than merely approximate the full cache. We introduce a global retention-based KV eviction method that learns each token's future utility under a unified memory budget. Lightweight retention gates assign utility scores to cached KV entries, and a shared final scoring projection calibrates these scores across all layers and heads. This enables a single global eviction policy in which tokens from different layers, heads, and modalities compete directly for cache capacity. We further provide theoretical analysis showing that preferentially retaining useful tokens reduces attention dilution, and we justify geometric retention as a query-agnostic proxy for future utility. Across diverse long-context language and vision-language reasoning, and multi-turn dialogue benchmarks, our method substantially reduces KV memory while matching or surpassing full-cache inference. These results suggest that learned, globally calibrated KV eviction is not only a compression technique, but also a mechanism for improving long-context reasoning.", "authors": ["Ngoc Bui", "Hieu Trung Nguyen", "Arman Cohan", "Rex Ying"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09649", "pdf_url": "https://arxiv.org/pdf/2605.09649v1", "arxiv_id": "2605.09649", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "bc7f48feecf0ee44f3d58654535d2efbb096d0af6d252be3321501e986e806c1", "sources": ["arxiv", "semantic_scholar"], "title": "KV-RM: Regularizing KV-Cache Movement for Static-Graph LLM Serving", "abstract": "Static-graph LLM decoders provide predictable launches, fixed tensor shapes, and low submission overhead, but online decoding exposes highly irregular KV-cache behavior: request lengths differ, EOS events arrive asynchronously, and logical histories fragment over time. Dynamic runtimes recover flexibility through paged KV management and step-level scheduling, while static-graph executors often over-reserve memory and suffer burst-time latency outliers. This paper studies whether much of this variability can be absorbed below a fixed decode interface. We present KV-RM, a runtime design that regularizes KV-cache movement beneath a static-graph LLM decoder. KV-RM decouples logical KV histories from physical storage, tracks active KV state through a block pager, and materializes each decode step through a single committed descriptor. A merge-staged transport path coalesces non-contiguous KV mappings into a small number of large transfer groups before a fixed-shape attention kernel consumes them. Optional bounded far-history summaries can be enabled under the same interface, but the core design does not depend on them. On a 2-GPU NVIDIA A100 node, KV-RM improves mixed-length decoding throughput and tail latency relative to a static-graph baseline, reduces reserved KV memory across workload families, and removes severe burst-time latency spikes under production-trace replay. These results suggest that KV-cache movement, rather than kernel shape, can be an effective boundary for recovering runtime flexibility in static-graph LLM serving.", "authors": ["Zhiqing Zhong", "Zhijing Ye", "Jian Zhang", "Weijian Zheng", "Bolun Sun", "Xiaodong Yu"], "categories": ["cs.AR", "cs.AI", "cs.DC", "cs.OS"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09735", "pdf_url": "https://arxiv.org/pdf/2605.09735v1", "arxiv_id": "2605.09735", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8fefbaa8c4fadd6598b918357fb126556ec05ee67595a21685ae58d7231ed34c", "sources": ["arxiv", "semantic_scholar"], "title": "Forcing-KV: Hybrid KV Cache Compression for Efficient Autoregressive Video Diffusion Models", "abstract": "Autoregressive (AR) video diffusion models adopt a streaming generation framework, enabling long-horizon video generation with real-time responsiveness, as exemplified by the Self Forcing training paradigm. However, existing AR video diffusion models still suffer from significant attention complexity and severe memory overhead due to the redundant key-value (KV) caches across historical frames, which limits scalability. In this paper, we tackle this challenge by introducing KV cache compression into autoregressive video diffusion. We observe that attention heads in mainstream AR diffusion models exhibit markedly distinct attention patterns and functional roles that remain stable across samples and denoising steps. Building on our empirical study of head-wise functional specialization, we divide the attention heads into two categories: static heads, which focus on transitions across autoregressive chunks and intra-frame fidelity, and dynamic heads, which govern inter-frame motion and consistency. We then propose Forcing-KV, a hybrid KV cache compression strategy that performs structured static pruning for static heads and dynamic pruning based on segment-wise similarity for dynamic heads. While maintaining output quality, our method achieves a generation speed of over 29 frames per second on a single NVIDIA H200 GPU along with 30% cache memory reduction, delivering up to 1.35x and 1.50x speedups on LongLive and Self Forcing at 480P resolution, and further scaling to 2.82x speedup at 1080P resolution. Code and demo videos are provided at https://zju-jiyicheng.github.io/Forcing-KV-Page.", "authors": ["Yicheng Ji", "Zhizhou Zhong", "Jun Zhang", "Qin Yang", "XiTai Jin", "Ying Qin", "Wenhan Luo", "Shuiyang Mao", "Wei Liu", "Huan Li"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09681", "pdf_url": "https://arxiv.org/pdf/2605.09681v1", "arxiv_id": "2605.09681", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "f15606148332ae4521077e8bcb37425078645a2ce42223c93cab139116962637", "sources": ["arxiv", "semantic_scholar"], "title": "TileQ: Efficient Low-Rank Quantization of Mixture-of-Experts with 2D Tiling", "abstract": "Mixture-of-Experts (MoE) models achieve remarkable performance by sparsely activating specialized experts, yet their massive parameters in experts pose significant challenges for deployment. While low-rank quantization offers a promising route to compress MoE models, existing methods still incur nonnegligible memory overhead and inference latency. To address these limitations, we propose \\textsc{TileQ}, a fine-tuning-free post-training quantization (PTQ) method that employs 2D-tiling structured low-rank quantization to share low-rank factors across both input and output dimensions of MoE experts. Furthermore, we introduce an efficient inference technique for \\textsc{TileQ} that fuses multiple low-rank expert computations into a single-pass operation, significantly improving hardware utilization. Experiments show that \\textsc{TileQ} cuts down additional memory usage up to 10$\\times$ and reduces inference latency to $\\sim$5\\% while preserving state-of-the-art accuracy.", "authors": ["Hongyaoxing Gu", "Xinzhe Chen", "Lijuan Hu", "Fangfang Liu"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09281", "pdf_url": "https://arxiv.org/pdf/2605.09281v1", "arxiv_id": "2605.09281", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "c2fe4ec54fbb65a6e2c902e0b14582037cc49e3f915d1e53b6122c0f053c9523", "sources": ["arxiv", "semantic_scholar"], "title": "Nectar: Neural Estimation of Cached-Token Attention via Regression", "abstract": "Evaluating softmax attention over a fixed long context requires reading every cached key-value pair for each new query token. For a given context (a book, a manual, a legal corpus) the attention output is a deterministic function of the query. We propose Nectar, which fits a compact neural network to this function for queries drawn from a task-relevant distribution. Nectar fits two networks per layer and KV-head: a target network that predicts the attention output and a score network that predicts the log-normalizer. The pair plugs into the standard masked self-attention at inference time, replacing the $O(n)$ attention over the cache with a forward pass whose cost does not depend on $n$. Each module carries on the order of $|θ|$ parameters per layer and KV-head, typically much smaller than the $2nd$ KV-cache footprint at the same granularity. We report experiments on models from 1.7B to 8B parameters across five long-context datasets. The approximation error tracks the next-token accuracy gap to full attention, and allocating capacity non-uniformly across layers reduces that gap in our ablation. Beyond this analysis of metrics, we check that the text generations (following a question prompt) of a model equipped with a Nectar module match in semantic content those obtained by giving the same model access to the full cache.", "authors": ["João Monteiro", "Michal Klein", "Pierre Ablin", "Marco Cuturi"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09778", "pdf_url": "https://arxiv.org/pdf/2605.09778v1", "arxiv_id": "2605.09778", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ce7b98360c8b1f91b32fd95b090d31bbfce5c2c0b85dc012224658e271cfd284", "sources": ["arxiv", "semantic_scholar"], "title": "Selection Plateau and a Sparsity-Dependent Hierarchy of Pruning Features", "abstract": "We identify a Selection Plateau phenomenon in one-shot neural network pruning: all rank-monotone weight scorers converge to identical accuracy at fixed sparsity, independent of functional form. We propose the Sparsity-Information-Complexity Spectrum (SICS) hypothesis: a sparsity-dependent minimum feature complexity kappa(S) governs plateau escape, with kappa=0 sufficient at low sparsity (S<0.65), kappa=1 dominant at critical sparsity (S~0.7), and kappa=2 necessary at extreme sparsity (S>0.75). On ViT-Small/CIFAR-10, testing nine feature classes across four sparsities, smooth non-monotone features provide +6.6% escape at S=0.7, while only raw features with high-frequency wiggle escape at S=0.8 (+2.6%). A fake non-monotone scorer underperforms the gradient baseline, indicating the requirement is magnitude-independent non-monotonicity. A handcrafted Gaussian bump achieves only +0.006 escape vs. chaos-derived +0.046, indicating rank-alignment is necessary but insufficient. SICS provides a unifying explanation for the performance clustering of diverse pruning methods and suggests that future selection algorithms should adapt feature complexity to target sparsity.", "authors": ["Guangqi Li", "Yongxin Li"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09345", "pdf_url": "https://arxiv.org/pdf/2605.09345v1", "arxiv_id": "2605.09345", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "08ba5799b816cdb76c27c7e1a7bf262308fae03f2704631f3ed8dbfee5384b61", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Layers with Hybrid Attention", "abstract": "Standard Mixture-of-Experts (MoE) transformers route tokens to expert subnetworks within each layer, but the layer structure itself remains monolithic. We introduce Mixture of Layers (MoL), which replaces full-width transformer blocks (d_model) with K parallel thin blocks at reduced dimensionality (d_thin << d_model), connected via learned down/up projections and composed via top-k block routing. Scaling sparse block routing to many blocks creates an attention coverage problem, as each block sees fewer tokens. We address this by introducing hybrid attention, which pairs one shared softmax block for global context with Gated DeltaNet linear attention in routed blocks.", "authors": ["Ivan Ternovtsii", "Yurii Bilak"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09516", "pdf_url": "https://arxiv.org/pdf/2605.09516v1", "arxiv_id": "2605.09516", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "88bf3f271eee0a177477df09c24e90d862135c8d92b2dfdcdab1fdee21d0b486", "sources": ["arxiv", "semantic_scholar"], "title": "Hierarchical Attention-based Graph Neural Network with Relevance-driven Pruning", "abstract": "Graph Neural Networks (GNNs) excel at relational reasoning but face two persistent challenges: the lack of interpretable attribution for heterogeneous node types, and the computational overhead of message passing over large, noisy graphs. We propose the Hierarchical Attention-based Heterogeneous GNN (HA-HeteroGNN), a framework that addresses both issues through a unied explainability-to-pruning pipeline. A two-tier attention mechanism separates sensor-level and context-level computation across 16 node types and 18 edge types, producing per-node relevance scores via an attention-based GNN Explainer without requiring gradient backpropagation. These relevance scores then serve as a principled pruning criterion: removing nodes identied as consistently uninformative yields a 27% reduction in graph edges while simultaneously improving classication accuracy by 2.46.1% across all model variants, challenging the conventional assumption that pruning necessarily trades accuracy for eciency. Experiments on a 50,000-record synthetic dataset spanning 11 report categories demonstrate 97.5% cross-strategy explanation stability and domain consistent sensor attribution, with training-time reductions of up to 43.9% and real-time inference latency of approximately 5860 ms per sample.", "authors": ["Seungwoo Kum"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-10", "url": "https://arxiv.org/abs/2605.09308", "pdf_url": "https://arxiv.org/pdf/2605.09308v1", "arxiv_id": "2605.09308", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "038d77f75c38287d8739132afa6d4a62a829e828bdd841d397eacd5c31a73998", "sources": ["arxiv", "semantic_scholar"], "title": "ReST-KV: Robust KV Cache Eviction with Layer-wise Output Reconstruction and Spatial-Temporal Smoothing", "abstract": "Large language models (LLMs) face growing challenges in efficient generative inference due to the increasing memory demands of Key-Value (KV) caches, especially for long sequences. Existing eviction methods typically retain KV pairs with high attention weights but overlook the impact of attention redistribution caused by token removal, as well as the spatial-temporal dynamics in KV selection. In this paper, we propose ReST-KV, a robust KV eviction method that combines layer-wise output Reconstruction and Spatial-Temporal smoothing to provide a more comprehensive perspective for the KV cache eviction task. Specifically, ReST-KV formulates KV cache eviction as an optimization problem that minimizes output discrepancies through efficient layer-wise reconstruction. By directly modeling how each token's removal affects the model output, our method naturally captures attention redistribution effects, going beyond simplistic reliance on raw attention weights. To further enhance robustness, we design exponential moving average smoothing to handle temporal variations and an adaptive window-based mechanism to capture spatial patterns. Our method, ReST-KV, significantly advances performance on long-context benchmarks. It surpasses state-of-the-art baselines by 2.58% on LongBench and 15.2% on RULER. Additionally, ReST-KV consistently outperforms existing methods on Needle-in-a-Haystack and InfiniteBench, all while achieving a remarkable 10.61$\\times$ reduction in decoding latency at 128k context length. The code is publicly available at https://github.com/an-yongqi/rest-kv to facilitate reproducibility and further research.", "authors": ["Yongqi An", "Chang Lu", "Kuan Zhu", "Tao Yu", "Chaoyang Zhao", "Hong Wu", "Ming Tang", "Jinqiao Wang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-09", "url": "https://arxiv.org/abs/2605.08840", "pdf_url": "https://arxiv.org/pdf/2605.08840v1", "arxiv_id": "2605.08840", "doi": null, "citation_count": 3, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/an-yongqi/rest-kv", "venue": null, "quality_score": 0.65} {"id": "fac76883a08d91d74931089ebbdc17bb57dbbf886fca3c42aa590aae66a7e481", "sources": ["arxiv", "semantic_scholar"], "title": "Uncovering Intra-expert Activation Sparsity for Efficient Mixture-of-Expert Model Execution", "abstract": "Mixture of Experts (MoE) architecture has become the standard for state-of-the-art large language models, owing to its computational efficiency through sparse expert activation. However, sparsity through finer expert granularity is becoming increasingly difficult to achieve due to fundamental training challenges such as expert collapse and load imbalance. In this work, we explore and leverage intra-expert activation sparsity as a complementary and underexplored dimension of sparsity in MoE models. Surprisingly, substantial intra-expert sparsity is readily available in existing pre-trained MoE models, without any modification to the activation function or model parameters, providing up to 90% sparsity within each expert without significant accuracy loss. We explore intra-expert activation sparsity across eight off-the-shelf MoE models ranging from 1B to 400B parameters, and extend the MoE execution pipeline of vLLM to leverage intra-expert activation sparsity by skipping the computations of inactive neurons, on top of its existing optimizations, achieving up to 2.5 times speedup in MoE layer execution and 1.2 times end-to-end speedup compared to the original dense vLLM baseline.", "authors": ["Jongseok Park", "Sunga Kim", "Zhenyu Gu", "Ion Stoica", "Alvin Cheung"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-09", "url": "https://arxiv.org/abs/2605.08575", "pdf_url": "https://arxiv.org/pdf/2605.08575v1", "arxiv_id": "2605.08575", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "67a43bdc7c8f203f9c5fe355df3353b2e04c9d63026993af8d3e196fbc4b1e83", "sources": ["arxiv", "semantic_scholar"], "title": "Non-Monotonic Latency in Apple MPS Decoding: KV Cache Interactions and Execution Regimes", "abstract": "Autoregressive inference is typically assumed to scale predictably with decoding length, with latency increasing smoothly as generated sequence length grows. In this work, we identify unexpected non-monotonic latency behavior in the Apple MPS backend, where latency changes abruptly across nearby decoding configurations during transformer decoding. Using multiple model families (GPT-2, BLOOM, and OPT), we observe latency spikes of up to 21x within specific decoding-budget intervals, followed by recovery at neighboring configurations. Controlled experiments show that these anomalies originate primarily during the decode phase rather than prefill, are not explained by memory pressure alone, and remain absent on CPU and NVIDIA CUDA backends under identical conditions. We further show that key-value (KV) cache interacts strongly with these pathological execution regimes: KV caching remains beneficial overall, but its practical speedup collapses sharply within anomalous configurations, while cache-disabled decoding still exhibits residual non-monotonic behavior. These findings suggest that autoregressive decoding on MPS enters discrete execution regimes that are not captured by coarse-grained benchmarking, highlighting the importance of hardware-aware evaluation for long-context inference.", "authors": ["Willy Fitra Hendria"], "categories": ["cs.LG", "cs.AR", "cs.CL", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-09", "url": "https://arxiv.org/abs/2605.08913", "pdf_url": "https://arxiv.org/pdf/2605.08913v2", "arxiv_id": "2605.08913", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ce8ce17f0188ef2a753b99f103ca6557c2456714e3148908353e08f269c23042", "sources": ["arxiv", "semantic_scholar"], "title": "TAS-LoRA: Transformer Architecture Search with Mixture-of-LoRA Experts", "abstract": "Transformer architecture search (TAS) discovers optimal vision transformer (ViT) architectures automatically, reducing human effort to manually design ViTs. However, existing TAS methods suffer from the feature collapse problem, where subnets within a supernet fail to learn subnet-specific features, mainly due to the shared weights in a supernet, limiting the performance of individual subnets. To address this, we propose TAS-LoRA, a novel method that introduces parameter-efficient low-rank adaptation (LoRA) to enable subnet-specific feature learning, while maintaining computational efficiency. TAS-LoRA incorporates a Mixture-of-LoRAExperts (MoLE) strategy, where a lightweight router dynamically assigns LoRA experts based on subnet architectures, and introduces a group-wise router initialization technique to encourage diverse feature learning across experts early in training. Extensive experiments on ImageNet and several transfer learning benchmarks, including CIFAR-10/100, Flowers, CARS, and INAT-19, demonstrate that TAS-LoRA mitigates feature collapse effectively, improving performance over state-of-the-art TAS methods significantly.", "authors": ["Jeimin Jeon", "Hyunju Lee", "Bumsub Ham"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.07256", "pdf_url": "https://arxiv.org/pdf/2605.07256v1", "arxiv_id": "2605.07256", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b7b1968f5e9b1f6fd699308de001b3f7ba1ad0813575fa9239ccbd0bec44bfb7", "sources": ["arxiv", "semantic_scholar"], "title": "RDKV: Rate-Distortion Bit Allocation for Joint Eviction and Quantization of the KV Cache", "abstract": "Large language models (LLMs) have shown strong performance across diverse tasks, but their inference with long input contexts is bottlenecked by memory size and bandwidth. The Key-Value (KV) cache size grows linearly with sequence length and needs to be re-read from off-chip high-bandwidth memory (HBM) to on-chip memory at every decoding step, resulting in memory-bound inference. Existing methods reduce the cache by either eviction or quantization, but typically treat the two in isolation. In this paper, we cast KV cache compression as a rate-distortion problem, under which eviction and quantization are two end-points of the same bit allocation scheme. This exposes the need to optimize them jointly, motivating our method, RDKV (Rate-Distortion KV cache compression). RDKV derives the weight of each token or channel from the distortion that compression induces on the attention computation. Based on these weights, it assigns each token or channel a bit-width ranging from full precision down to zero bits guided by reverse water-filling, applied once after the prefilling stage. Experiments on LongBench, RULER, and InfiniteBench show that RDKV outperforms the best evaluated baseline by 9.1% on average. On LongBench it recovers 97.81% of full-cache accuracy with only 2.48% cache retention. Compared with full-cache FlashAttention-2 decoding, it achieves 4.5x decode speedup and 1.9x peak memory reduction with 128K context length, while maintaining comparable performance.", "authors": ["Junkai Zhang", "Hang Guo", "Luca Benini", "Yawei Li"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.08317", "pdf_url": "https://arxiv.org/pdf/2605.08317v1", "arxiv_id": "2605.08317", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d741a5207829d86a12593fce23234969216705b5a35d6a3820d77cccc4c37276", "sources": ["arxiv", "semantic_scholar"], "title": "Convergent Stochastic Training of Attention and Understanding LoRA", "abstract": "Transformers have revolutionized machine learning and deploying attention layers in the model is increasingly standard across a myriad of applications. Further, for large models, it is common to implement Low Rank Adaptation (LoRA), whereby a factorized parameterization of them is trained, to achieve a surprisingly beneficial accuracy-size trade-off. In this work, via a unified framework we rigorously establish trainability of such models under stochastic methods. We prove that for any mild regularization, the empirical regression loss on a attention layer and LoRA on a shallow neural net, both induce Poincaré inequality for the corresponding Gibbs' measure. Then it follows via invoking recent results that a certain SDE, which mimics the SGD, minimizes the corresponding losses. In both the cases, our first-of-its-kind results of trainability on attention and nets, do not rely on any assumptions on the data or the size of the architecture.", "authors": ["Zhengkai Sun", "Dibyakanti Kumar", "Alejandro F Frangi", "Anirbit Mukherjee", "Mingfei Sun"], "categories": ["cs.LG", "math.FA", "math.PR"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.07959", "pdf_url": "https://arxiv.org/pdf/2605.07959v1", "arxiv_id": "2605.07959", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "912b71072f83afb568e932721b73cd1949b5754c908108d47f0b277c1ce3f1c3", "sources": ["arxiv", "semantic_scholar"], "title": "Reformulating KV Cache Eviction Problem for Long-Context LLM Inference", "abstract": "Large language models (LLMs) support long-context inference but suffer from substantial memory and runtime overhead due to Key-Value (KV) Cache growth. Existing KV Cache eviction methods primarily rely on local attention weights, neglecting the influence of value representations, output projection, and inter-head interactions. In this work, we reformulate KV Cache eviction from a conventional head-wise, weight-averaging approach into an output-aware, layer-wise matrix multiplication approximation problem. We introduce LaProx, a novel eviction strategy that explicitly models the multiplicative interaction between attention maps and projected value states to accurately quantify token contributions while accounting for inter-head dependencies. Building on this metric, we propose the first unified eviction strategy that assigns globally comparable importance scores to tokens, enabling model-wide selection instead of local, head-wise decisions. Experimental results across 19 datasets on long-context benchmarks LongBench and Needle-In-A-Haystack demonstrate that our approach maintains model performance with only 5\\% of the KV cache and consistently outperforms prior works across all configurations. Notably, our method achieves up to 2$\\times$ accuracy loss reduction under extreme compression scenarios compared to existing state-of-the-art baselines with minimal overhead.", "authors": ["Tho Mai", "Joo-Young Kim"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.07234", "pdf_url": "https://arxiv.org/pdf/2605.07234v1", "arxiv_id": "2605.07234", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "5d8a31f667cd98782886f8e1004f43d0b7f76e6cd0748682cb92f34f8e67b95c", "sources": ["arxiv", "semantic_scholar"], "title": "RcLLM: Accelerating Generative Recommendation via Beyond-Prefix KV Caching", "abstract": "Large Language Models (LLMs) are transforming recommendation from ranking into a generative task, but industrial deployment remains limited by the high latency of processing long, personalized prompts. Standard prefix caching provides limited benefit because reuse in recommendation workloads is often non-contiguous across user histories and item contexts. We present RcLLM, a distributed inference system for generative recommendation with Beyond-Prefix KV Caching. RcLLM decomposes prompts into reusable blocks and supports large item catalogs with a stratified distributed storage design: compact user-history caches are replicated for zero-latency retrieval, while massive item caches are sharded using similarity-aware placement. To reduce redundant quadratic attention computation, RcLLM combines an affinity-based global scheduler that improves data locality with a selective attention mechanism that corrects approximation errors. Experiments on real-world datasets show that RcLLM reduces Time-To-First-Token (TTFT) by 1.31x-9.51x compared with state-of-the-art prefix caching systems, enabling real-time serving with negligible impact on recommendation accuracy.", "authors": ["Zhan Zhao", "Yuxin Wang", "Amelie Chi Zhou"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.07443", "pdf_url": "https://arxiv.org/pdf/2605.07443v1", "arxiv_id": "2605.07443", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e1cdbe1d238b8f6e8822f5401f3c543b3247189d0db48598a3c37d0b48c9ebd5", "sources": ["arxiv", "semantic_scholar"], "title": "Beyond LoRA vs. Full Fine-Tuning: Gradient-Guided Optimizer Routing for LLM Adaptation", "abstract": "Recent literature on fine-tuning Large Language Models highlights a fundamental debate. While Full Fine-Tuning (FFT) provides the representational plasticity required for high-entropy knowledge injection, Low-Rank Adaptation (LoRA) can match or surpass FFT performance because many tasks only require updates in a low-rank space and benefit from LoRA's additional regularization. Through empirical evaluation across diverse tasks (SQL, Medical QA, and Counterfactual Knowledge) and varying language models (Gemma-3-1B, Qwen2.5-1.5B, and Qwen2.5-3B), we verify both trends and demonstrate that relying solely on either static architecture is structurally limited. To address this challenge, we propose a Mixture of LoRA and Full (MoLF) Fine-Tuning, a unified framework that enables continuous navigation between both training regimes. MoLF dynamically routes updates between FFT and LoRA at the optimizer level to ensure that exact gradient signals are available to both experts throughout training, yielding stable training dynamics. For memory-constrained environments, we also introduce MoLF-Efficient, which freezes base weights and only routes updates among a pair of LoRA experts of potentially varying rank. Our evaluations show that MoLF either improves on or stays within $1.5\\%$ of the better of FFT and LoRA across all settings, while MoLF-Efficient outperforms prior adaptive LoRA approaches by up to $20\\%$ on Fact and $9\\%$ on Med and SQL. Our code is open-sourced at https://github.com/11785T23/molf.git.", "authors": ["Haozhan Tang", "Xiuqi Zhu", "Xinyin Zhang", "Boxun Li", "Virginia Smith", "Kevin Kuo"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.07111", "pdf_url": "https://arxiv.org/pdf/2605.07111v2", "arxiv_id": "2605.07111", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/11785T23/molf.git", "venue": null, "quality_score": 0.65} {"id": "e55ff3782da3e728c9b217c4e0cf90922d6cb2d4e52ecd54756d905ea20a94d6", "sources": ["arxiv", "semantic_scholar"], "title": "PaceVGGT: Pre-Alternating-Attention Token Pruning for Visual Geometry Transformers", "abstract": "Visual Geometry Transformer (VGGT) is a strong feed-forward model for multiple 3D tasks, but its Alternating-Attention (AA) stack scales quadratically in the total token count, making long clips expensive. Existing token-reduction accelerators operate inside AA, leaving the patch grid that enters AA uncompressed. We introduce PaceVGGT, a pre-AA token pruning framework that prunes DINO patch tokens before the first AA block of a frozen VGGT. PaceVGGT trains a lightweight Token Scorer that estimates per-token importance from DINO features. The scorer is first distilled against an AA-internal attention target from the unpruned backbone, then refined under downstream camera, depth, and point-map losses. A per-frame keep budget fixes the backbone-visible sequence length, while an importance-adaptive merge/prune assignment preserves residual content from high-saliency frames under a fixed total merge budget. A Feature-guided Restoration module reconstructs the dense spatial grid required by the prediction heads. On ScanNet-50 and 7-Scenes, PaceVGGT remains on the reconstruction quality--latency frontier while reducing inference latency. On ScanNet-50, it reduces latency by \\(5.1\\times\\) over unmodified VGGT at \\(N=300\\) and \\(1.47\\times\\) over LiteVGGT at \\(N=1000\\). These results identify pre-AA pruning as a viable acceleration route for frozen VGGT-style geometry transformers.", "authors": ["Haotang Li", "Zhenyu Qi", "Shaohan Henry Wang", "Kebin Peng", "Zi Wang", "Qing Guo", "Sen He", "Huanrui Yang"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.08371", "pdf_url": "https://arxiv.org/pdf/2605.08371v1", "arxiv_id": "2605.08371", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "1fc1067bcee9a2f92d682f5284e06b1aa6237f8e1d6cb66e4ca222724a6c1627", "sources": ["arxiv", "semantic_scholar"], "title": "SDG-MoE: Signed Debate Graph Mixture-of-Experts", "abstract": "Sparse MoE models achieve a good balance between capacity and compute by routing each token to a small subset of experts. However, in most MoE architectures, once a token is routed, the selected experts process it independently and their outputs are combined via a weighted sum. This leaves open whether enabling communication among them could improve performance. While prior work has raised this question, direct interaction among the active routed experts remains underexplored. In this paper, we propose SDG-MoE (Signed Debate Graph Mixture-of-Experts), a novel architecture that adds a lightweight, iterative deliberation step before final aggregation. SDG-MoE introduces three components: (i) two learned interaction matrices over the active experts, a support graph $A^+$ and a critique graph $A^-$, capturing reinforcing and corrective influences; (ii) a signed message-passing step that updates expert representations before aggregation; and (iii) a disagreement-gated Friedkin-Johnsen-style anchoring that controls deliberation strength while preventing expert drift. Together, these enable a structured deliberation process where interaction strength scales with disagreement and specialization is preserved. We also provide a theoretical analysis establishing stability conditions on expert states and showing that deliberation adds only low-order overhead over the active set. In controlled three-seed pretraining experiments, SDG-MoE improves validation perplexity over both an unsigned graph communication baseline and vanilla MoE, outperforming the strongest baseline by 19.8%, and gives the best external perplexity on WikiText-103, C4, and Paloma among the compared systems.", "authors": ["Stepan Kulibaba", "Kirill Labzin", "Artem Dzhalilov", "Roman Pakhomov", "Oleg Svidchenko", "Alexander Gasnikov", "Aleksei Shpilman"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.08322", "pdf_url": "https://arxiv.org/pdf/2605.08322v2", "arxiv_id": "2605.08322", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "f481399e160c099ead5bb8154483676e307c4fcd79045bc7c46274fbda829724", "sources": ["arxiv", "semantic_scholar"], "title": "Hierarchical Mixture-of-Experts with Two-Stage Optimization", "abstract": "Sparse Mixture-of-Experts (MoE) models scale capacity by routing each token to a small subset of experts. However, their routers exhibit a fundamental trade-off: strong load balancing can suppress expert specialization, while aggressive diversity often causes routing collapse. We propose Hi-MoE, a grouped MoE framework that decomposes routing control into two coupled levels: (i) inter-group balancing that enforces fair traffic across expert groups, and (ii) intra-group specialization that promotes complementary expert behaviors while preventing within-group collapse. Our analysis provides a principled explanation of how our hierarchical objectives reshape the router, thereby promoting stable specialization and mitigating collapse. We observe consistent improvements over recent sparse-routing and grouped-MoE baselines across NLP and vision benchmarks, and confirm robustness via scaling studies (model size, expert count) and targeted ablations. In large-scale pre-training on 58B tokens, Hi-MoE-7B achieves a 5.6% perplexity reduction and a 40% improvement in expert balance over OLMoE-7B across diverse evaluation domains.", "authors": ["Gleb Molodtsov", "Alexander Miasnikov", "Aleksandr Beznosikov"], "categories": ["cs.LG", "cs.AI", "math.OC"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.08292", "pdf_url": "https://arxiv.org/pdf/2605.08292v1", "arxiv_id": "2605.08292", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "a633d22994699e0be8dab405d558f163fdd5c9b9ab4f2785c337994bdc6b87f1", "sources": ["arxiv", "semantic_scholar"], "title": "When Are Experts Misrouted? Counterfactual Routing Analysis in Mixture-of-Experts Language Models", "abstract": "Mixture-of-Experts (MoE) language models route each token to a small subset of experts, but whether the routes selected by a trained top-$k$ router are good ones is rarely evaluated directly. Holding the model fixed, we compare each standard route against sampled equal-compute alternatives for the same token and score each by the next-token probability it assigns to the realized token in a verified reasoning trajectory. The result is sharply token-conditional: the standard router is well-aligned with route utility on confident tokens but uninformative on the fragile tokens that drive hard reasoning, where lower-loss equal-compute routes consistently exist inside the frozen model but are not selected. The same pattern holds across Qwen3-30B-A3B, GPT-OSS-20B, DeepSeek-V2-Lite, and OLMoE-1B-7B, and follows structurally from how standard top-$k$ training evaluates routing decisions: the language modeling loss scores only the executed route, and load balancing depends only on aggregate routing statistics. A minimal router-only update to the final-layer router, leaving every expert and every other router frozen, is sufficient to shift pass@K on AIME 2024+2025 and HMMT 2025 for both Qwen3-30B-A3B and GPT-OSS-20B, suggesting that at least part of the failure reflects router-reachable misallocation rather than expert capacity alone.", "authors": ["Youngsik Yoon", "Siwei Wang", "Wei Chen", "Jungseul Ok"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-08", "url": "https://arxiv.org/abs/2605.07260", "pdf_url": "https://arxiv.org/pdf/2605.07260v1", "arxiv_id": "2605.07260", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "0daa6e7065c213f51eae001af303220d9b0e727a651ee09b72c871b1d6c9ab37", "sources": ["arxiv", "semantic_scholar"], "title": "When Quantization Is Free: An int4 KV Cache That Outruns fp16 on Apple Silicon", "abstract": "KV-cache quantization is framed as a quality--latency trade-off. We show it is \\emph{inverted} on Apple Silicon's unified memory: a single fused Metal kernel (sign-randomized FFT $+$ per-channel $λ$ $+$ per-group abs-max $+$ int4 nibble pack), exposed as a HuggingFace \\texttt{Cache} subclass, runs \\emph{faster than fp16} across $256$--$4096$-token prefixes on Gemma-3 1B ($-3$ to $-8\\%$ ms/tok) and at short context on Qwen2.5-1.5B ($-0.7$ to $-2.6\\%$ through $1$K), with $3\\times$ persistent memory compression and quality preserved ($\\dPPL = 0.000$ Qwen short-prompt; $+3.6$ hook $\\dPPL$ Gemma). The kernel's $\\sim\\!25$\\,ns/vec overhead is below the bandwidth savings from $3\\times$ compression. The fused kernel also closes Qwen's 4-bit per-token catastrophe ($\\dPPL = +7975 \\to +638.6$, $12.5\\times$ reduction) at $182$\\,GFLOPS / $D{=}128$. Supporting findings: $\\SRFT$ and $\\SRHT$ are statistically indistinguishable for KV quality (we pick $\\SRFT$ for mixed-radix and matrix-multiply alignment); a learned-rotation ablation surfaces a regularization role for the fixed random SRFT base (learning $R+λ$ without SRFT lowers calibration MSE $84.9\\%$ vs $50.3\\%$ but yields worse PPL); Householder rotations at $k{=}d/2$ reflectors are effectively lossless at $d{=}256$.", "authors": ["Mohamed Amine Bergach"], "categories": ["cs.PF", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.05699", "pdf_url": "https://arxiv.org/pdf/2605.05699v1", "arxiv_id": "2605.05699", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "a7802ffea6f857bf68abff0fdc7fd061b4aa4abd1dce11d82357ee929c034e2f", "sources": ["arxiv", "semantic_scholar"], "title": "Efficient Serving for Dynamic Agent Workflows with Prediction-based KV-Cache Management", "abstract": "LLM-based workflows compose specialized agents to execute complex tasks, and these agents usually share substantial context, allowing KV-Cache reuse to save computation. Existing approaches either manage KV-Cache at agent level and fail to exploit the reuse opportunities within workflows, or manage cache at the workflow level but assume that each workflow calls a static sequence of agents. However, practical workflows are typically dynamic, where the sequence of invoked agents and thus induced cache reuse opportunities depend on the context of each task. To serve such dynamic workflows efficiently, we build a system dubbed PBKV (\\textbf{P}rediction-\\textbf{B}ased \\textbf{KV}-Cache Management). For each workflow, PBKV predicts the agent invocations in several future steps by fusing the guidance from historical workflows and context of the target workflow. Based on the predictions, PBKV estimates the reuse potential of cache entries and keeps the high-potential entries in GPU memory. To be robust to prediction errors, PBKV utilizes the predictions conservatively during both cache eviction and prefetching. Experiments on three workflow benchmarks show that PBKV achieves up to $1.85\\times$ speedup over LRU on dynamic workflows, and up to $1.26\\times$ speedup over the SOTA baseline KVFlow on the static workflow.", "authors": ["Haoyu Zheng", "Fangcheng Fu", "Jia Wu", "Binhang Yuan", "Yongqiang Zhang", "Hao Wang", "Yuanyuan Zhu", "Xiao Yan", "Jiawei Jiang"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06472", "pdf_url": "https://arxiv.org/pdf/2605.06472v1", "arxiv_id": "2605.06472", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d4cecf4958460d99720259fcad164479abe589df4a93cda9c178bf5179bd4ff5", "sources": ["arxiv", "semantic_scholar"], "title": "Sparse Attention as a Range Searching Problem: Towards an Inference-Efficient Index for KV Cache", "abstract": "Sparse attention improves LLM inference efficiency by selecting a subset of key-value entries, but at the cost of potential accuracy degradation. In particular, omitting critical KV entries can induce substantial errors in model outputs. Existing methods typically operate under fixed or adaptive token budgets and provide empirical robustness or partial theoretical guarantees, yet they do not ensure zero false negatives in decoding steps, particularly since the set of relevant tokens is both query- and step-dependent. Our empirical observations confirm that missing even one critical key can lead to sharp error spikes, especially in long reasoning tasks where the set of important tokens varies throughout decoding. This observation motivates the need for indexing methods that dynamically adapt to these variations across decoding steps while guaranteeing a full recall of the relevant keys above a certain threshold. We address this challenge by reformulating sparse attention as the halfspace range searching problem. However, existing range searching indices are not suitable for modern LLM inference due to their computational and implementation overheads. To overcome this, we introduce Louver, a novel index structure tailored for efficient KV cache retrieval. Louver (i) guarantees zero false negatives with respect to a specified threshold in both theory and practice, (ii) is lightweight to integrate into existing LLM pipelines, and (iii) incorporates hardware-aware optimizations for both CPU and GPU executions. Our experiments demonstrate that Louver outperforms prior sparse attention methods in both accuracy and runtime, and is faster than highly optimized dense attentions such as FlashAttention. These results highlight that recall guarantees are a critical and overlooked dimension of sparse attention, and open a new direction for building theoretically grounded, efficient KV cache indices.", "authors": ["Mohsen Dehghankar", "Abolfazl Asudeh"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06763", "pdf_url": "https://arxiv.org/pdf/2605.06763v2", "arxiv_id": "2605.06763", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e65feed00415d0b9dc4fc9a2f23ceee2ebc0aceeaffce13946a23e526789b432", "sources": ["arxiv", "semantic_scholar"], "title": "Echo: KV-Cache-Free Associative Recall with Spectral Koopman Operators", "abstract": "Long chain-of-thought reasoning and agentic tool-calling produce traces spanning tens of thousands of tokens, yet Transformer KV caches grow linearly with sequence length, creating a memory bottleneck on commodity hardware. State-space models offer constant-memory recurrence but suffer a memory cliff: retrieval accuracy collapses once the gap between a stored fact and its query exceeds the effective horizon of the recurrent state. We introduce Echo, a KV-cache-free associative recall architecture built around Spectral Koopman Attention (SKA); a drop-in replacement for attention layers that augments SSM blocks with a closed-form dynamical operator whose sufficient statistics are accumulated in constant memory with no KV cache. Echo fits a spectral linear system to the key and value history via kernel ridge regression and retrieves through a learned power-iterated filter, all from $O(r^{2})$ streaming state where $r$ is a small projection rank. On the Multi-Query Associative Recall benchmark, a pure Mamba-2 SSM fails to exceed chance accuracy (${\\sim}3\\%$) across all gap lengths and KV-pair counts, while at the 50M parameter scale SKA-augmented models achieve $100\\%$ retrieval accuracy on every configuration tested, including distractor gaps of $4{,}096$ tokens with $32$ KV pairs. Across five additional transfer benchmarks including needle-in-a-haystack, tool-trace, and multi-hop retrieval, SKA consistently outperforms both pure SSM and SSM+Attention hybrids while maintaining constant inference memory. Ablations confirm that the spectral operator, not the prefix masking strategy, drives the retrieval gain.", "authors": ["Anupama Sridhar", "Alexander Johansen"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06997", "pdf_url": "https://arxiv.org/pdf/2605.06997v1", "arxiv_id": "2605.06997", "doi": "10.1145/3786335.3813146", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "2db6f3b43b5b688cf2c9d109f71d4d6487ddde200afb16edd1a4d3c746855743", "sources": ["arxiv", "semantic_scholar"], "title": "Training Transformers for KV Cache Compressibility", "abstract": "Long-context language modeling is increasingly constrained by the Key-Value (KV) cache, whose memory and decode-time access costs scale linearly with the prefix length. This bottleneck has motivated a range of context-compression methods, from token-level summarization to recent optimization-based KV compression methods. These post-hoc methods operate on the KV cache of a fixed pretrained model, so their effectiveness is fundamentally limited by how well the model's internal representations can be compressed. In this work, we formalize the notion of KV compressibility and show that it is a property of the learned representations, rather than of the context alone. We prove that almost any sequence-to-vector function admits both highly compressible and inherently non-compressible transformer implementations, highlighting the need to guide transformers toward compressible representations during training. Motivated by this, we propose KV-Compression Aware Training (KV-CAT), a continued pretraining procedure that incentivizes the emergence of compressible representations. We introduce a train-time KV sparsification policy that masks KV slots during training. This forces the model to use fewer KV slots and encourages it to learn representations amenable to post-hoc compression. Empirically, we show that KV-CAT improves the quality-budget tradeoff of downstream compression methods across retrieval, long-context question answering, and perplexity-based evaluation of compressed-prefix continuation.", "authors": ["Yoav Gelberg", "Yam Eitan", "Michael Bronstein", "Yarin Gal", "Haggai Maron"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.05971", "pdf_url": "https://arxiv.org/pdf/2605.05971v2", "arxiv_id": "2605.05971", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e37b65cf181f796e0467ea84a16520a8be45667aca7164318a6de2078f0de25b", "sources": ["arxiv", "semantic_scholar"], "title": "Memory Inception: Latent-Space KV Cache Manipulation for Steering LLMs", "abstract": "Steering large language models (LLMs) is usually done by either instruction prompting or activation steering. Prompting often gives strong control, but caches guidance tokens at every layer and can clutter long interactions; activation steering is compact but typically weaker and does not support large structured reminders. We introduce memory inception (MI), a training-free method that steers in latent attention space by inserting text-derived key-value (KV) banks only at selected layers. Rather than materializing reminder content throughout the prompt cache, MI treats steering as selective KV allocation, injecting latent slots only where the model routes to them. On matched personality-steering tasks, MI gives the best overall control--drift trade-off, remaining competitive with prompting while consistently outperforming CAA. On updateable guidance, MI supports mid-conversation behavior shifts without rewriting the visible transcript, achieving the highest post-shift alignment on Qwen3. On structured reasoning, MI outperforms visible prompting on HARDMath and PHYSICS (10/12 subject$\\times$mode cells), serving as proxies for structured reasoning in verifiable domains, while cutting content-matched KV storage by up to 118$\\times$. These results position MI as a powerful steering method when guidance is persistent, structured, or expensive to keep in the visible transcript.", "authors": ["Andy Zeyi Liu", "Michael Zhang", "Ilana Greenberg", "Adam Alnasser", "Lucas Baker", "John Sous"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06225", "pdf_url": "https://arxiv.org/pdf/2605.06225v2", "arxiv_id": "2605.06225", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "59cbd7622229b9044d0a902ff27f061956c624c3309d5d59c2b900c7fa31ab21", "sources": ["arxiv", "semantic_scholar"], "title": "Scene-Adaptive Continual Learning for CSI-based Human Activity Recognition with Mixture of Experts", "abstract": "Channel state information (CSI)-based human activity recognition (HAR) is vulnerable to performance degradation under domain shifts across varying physical environments. Continual learning (CL) offers a principled way to learn new domains sequentially while preserving past knowledge, but existing CL solutions for CSI-based HAR scale poorly with accumulating domains, rely on a large replay buffer, or incur linearly growing inference cost. In this letter, we propose Scene-Adaptive Mixture of Experts with Clustered Specialists (SAMoE-C), which formulates cross-domain CSI-based HAR as a mixture-of-experts system that enables scene-specific adaptation, via an attention-based semantic router that activates only selected experts for each input. Moreover, we develop a novel training protocol, which requires only a tiny replay buffer for stabilizing domain discrimination of the router. Experimental results on a four-scene CSI dataset demonstrate that SAMoE-C approaches the state-of-the-art accuracy, while maintaining a significantly lower inference cost. By jointly combining modular experts, selective activation with router and a lightweight training protocol, SAMoE-C enables scalable cross-domain CSI-based HAR deployment with low training overhead and high computational efficiency in real-world settings.", "authors": ["Wenhan Zheng", "Yuyi Mao", "Ivan Wang-Hei Ho"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06447", "pdf_url": "https://arxiv.org/pdf/2605.06447v1", "arxiv_id": "2605.06447", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "7eedcbfe6fb95e5548e9ed99c5b85d5df27b56cd5f834196f4b32248b3c7b093", "sources": ["arxiv", "semantic_scholar"], "title": "EMO: Pretraining Mixture of Experts for Emergent Modularity", "abstract": "Large language models are typically deployed as monolithic systems, requiring the full model even when applications need only a narrow subset of capabilities, e.g., code, math, or domain-specific knowledge. Mixture-of-Experts (MoEs) seemingly offer a potential alternative by activating only a subset of experts per input, but in practice, restricting inference to a subset of experts for a given domain leads to severe performance degradation. This limits their practicality in memory-constrained settings, especially as models grow larger and sparser. We introduce EMO, an MoE designed for modularity-the independent use and composition of expert subsets-without requiring human-defined priors. Our key idea is to encourage tokens from similar domains to rely on similar experts. Since tokens within a document often share a domain, EMO restricts them to select experts from a shared pool, while allowing different documents to use different pools. This simple constraint enables coherent expert groupings to emerge during pretraining using document boundaries alone. We pretrain a 1B-active, 14B-total EMO on 1T tokens. As a full model, it matches standard MoE performance. Crucially, it enables selective expert use: retaining only 25% (12.5%) of experts incurs just a 1% (3%) absolute drop, whereas standard MoEs break under the same setting. We further find that expert subsets in EMO specialize at semantic levels (e.g., domains such as math or code), in contrast to the low-level syntactic specialization observed in standard MoEs. Altogether, our results demonstrate a path toward modular, memory-efficient deployment of large, sparse models and open new opportunities for composable architectures.", "authors": ["Ryan Wang", "Akshita Bhagia", "Sewon Min"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06663", "pdf_url": "https://arxiv.org/pdf/2605.06663v2", "arxiv_id": "2605.06663", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "5d35d7d8183bb189725646de5a47152deb7934fe9d63eb71656c0eb3f9f76429", "sources": ["arxiv", "semantic_scholar"], "title": "When Does Value-Aware KV Eviction Help? A Fixed-Contract Diagnostic for Non-Monotone Cache Compression", "abstract": "Long-context LLM inference is bottlenecked by the memory and bandwidth cost of reading large KV caches during decoding. KV compression reduces this cost by keeping only part of the cache, but task accuracy alone does not identify why a selector succeeds or fails. A selector can fail at three steps: it may miss the evidence future decoding needs, give high scores to tokens that do not affect the output, or break related evidence when fitting scores into a small cache. We introduce a fixed-contract diagnostic that holds the selector's setup fixed and changes one decision slot at a time. For value ranking, the probe combines a block's attention mass with the estimated output change from removing it. On LongBench across three models and two budgets, the probe is positive on 72.6% of positive-margin cells and 32.4% of nonpositive-margin cells. NeedleBench M-RT at 32k and a RULER 8k check probe support closure under branched retrieval, and a 264-cell sign evaluation separates support recovery and output-value ranking from leverage effects near the boundary. The resulting order is to recover decode-side evidence, rank its output value, and preserve coupled evidence during projection.", "authors": ["Ruijie Zhang", "Haozhe Liang", "Da Chang", "Li Hu", "Fanqi Kong", "Huaxiao Yin", "Yu Li"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.08234", "pdf_url": "https://arxiv.org/pdf/2605.08234v1", "arxiv_id": "2605.08234", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "cee1bb153817e395104cd0c4a32cb9059645f9c1139c1d01829e5475b40a7352", "sources": ["arxiv", "semantic_scholar"], "title": "How to Compress KV Cache in RL Post-Training? Shadow Mask Distillation for Memory-Efficient Alignment", "abstract": "Reinforcement Learning (RL) has emerged as a crucial paradigm for unlocking the advanced reasoning capabilities of Large Language Models (LLMs), encompassing frameworks like RLHF and RLAIF. Regardless of the specific optimization algorithm (e.g., PPO, GRPO, or Online DPO), online RL inherently requires an exploratory trajectory generation (rollout) phase. However, for long-context reasoning tasks, this rollout phase imposes a severe ``memory wall'' due to the exorbitant Key-Value (KV) cache footprint. While applying KV cache compression during rollouts mitigates this memory overhead, it induces a critical off-policy bias. Although modern KV compression is often nearly lossless during standard inference, even minuscule approximation errors are drastically amplified by the inherent instability of RL optimization. Specifically, the sampler generates responses under a sparse context, whereas the learner updates parameters using the full, dense context. Existing statistical solutions, such as importance reweighting, struggle to correct this magnified bias, suffering from high gradient variance and severe sample inefficiency.", "authors": ["Rui Zhu", "Weiheng Bai", "Qiushi Wu", "Yang Ren", "Haixu Tang", "Yuchu Liu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-07", "url": "https://arxiv.org/abs/2605.06850", "pdf_url": "https://arxiv.org/pdf/2605.06850v1", "arxiv_id": "2605.06850", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "9a4cde77ec3dd676758cdd0d50b62bbb05d28df120647d91081b91c81773855a", "sources": ["arxiv", "semantic_scholar"], "title": "GEM: Graph-Enhanced Mixture-of-Experts with ReAct Agents for Dialogue State Tracking", "abstract": "Dialogue State Tracking (DST) requires precise extraction of structured information from multi-domain conversations, a task where Large Language Models (LLMs) struggle despite their impressive general capabilities. We present GEM (Graph-Enhanced Mixture-of-Experts), a novel framework that combines language models and graph-structured dialogue understanding with ReAct agent-based reasoning for superior DST performance. Our approach dynamically routes between specialized experts: a Graph Neural Network that captures dialogue structure and turn-level dependencies, and a finetuned T5-Small encoder-decoder for sequence modeling, coordinated by an intelligent router. For complex value generation tasks, we integrate ReAct agents that perform structured reasoning over dialogue context. On MultiWOZ 2.2, GEM achieves 65.19% Joint Goal Accuracy, substantially outperforming end-to-end LLM approaches (best: 38.43%) and surpassing state-of-the-art (SOTA) methods including TOATOD (63.79%), D3ST (58.70%), and Diable (56.48%). Our graph-enhanced mixture-of-experts architecture with ReAct integration demonstrates that combining structured dialogue representation with dynamic expert routing and agent-based reasoning provides a powerful paradigm for dialogue state tracking, achieving superior accuracy while maintaining computational efficiency through selective expert activation.", "authors": ["Ziqi Zhu", "Adithya Suresh", "Tomal Deb", "Iman Abbasnejad"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-06", "url": "https://arxiv.org/abs/2605.04449", "pdf_url": "https://arxiv.org/pdf/2605.04449v1", "arxiv_id": "2605.04449", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8430e6b515734c28e56ee4aa7f5017caeff983fc15780479b33a60c4974f63ff", "sources": ["arxiv", "semantic_scholar"], "title": "Adaptive Inverted-Index Routing for Granular Mixtures-of-Experts", "abstract": "Mixture-of-experts (MoE) models enable scalable transformer architectures by activating only a subset of experts per token. Recent evidence suggests that performance improves with increasingly granular experts, i.e., many small experts instead of a few large ones. However, this regime substantially increases routing cost, which can dominate computation. We introduce adaptive inverted-index routing for MoE (AIR-MoE), an inverted-index-inspired routing architecture based on vector quantization (VQ). In a first stage, AIR-MoE performs coarse shortlisting by assigning tokens to VQ codewords to construct a candidate set of experts. In a second stage, fine scoring computes exact routing scores restricted to this shortlist. This two-stage procedure approximates true top-k routing while avoiding full expert scoring and, in contrast to prior work, imposing no structural constraints on expert parameters. AIR-MoE serves as a drop-in replacement for standard routers and requires no modifications to the model architecture or loss function. We further provide a lower bound on the mass recall achieved by AIR-MoE that yields insights into its inner workings. Empirically, we demonstrate that AIR-MoE achieves improved performance compared to existing routing approaches in granular MoE settings.", "authors": ["Klaus-Rudolf Kladny", "Maximilian Mordig", "Bernhard Schölkopf", "Michael Muehlebach"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-06", "url": "https://arxiv.org/abs/2605.04952", "pdf_url": "https://arxiv.org/pdf/2605.04952v1", "arxiv_id": "2605.04952", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "981de1cba128af15efba34cae09201629fee982c6c07a4c48afe3b5f1714ca1d", "sources": ["arxiv", "semantic_scholar"], "title": "QKVShare: Quantized KV-Cache Handoff for Multi-Agent On-Device LLMs", "abstract": "Multi-agent LLM systems on edge devices need to hand off latent context efficiently, but the practical choices today are expensive re-prefill or full-precision KV transfer. We study QKVShare, a framework for quantized KV-cache handoff between agents that combines token-level mixed-precision allocation, a self-contained CacheCard representation, and a HuggingFace-compatible cache injection path. Our current results support a narrower but clearer story than the original draft: on 150 GSM8K problems with Llama-3.1-8B-Instruct, adaptive quantization remains competitive under repeated handoff and shows its clearest gains against uniform quantization in deeper-hop, higher budget settings; for handoff latency, the QKVShare path reduces TTFT relative to full re prefill at every tested context, from 130.7 ms vs. 150.2 ms at nominal 1K context to 397.1 ms vs. 1029.7 ms at nominal 8K context;. Stage timing shows that post-injection generation, not card creation, dominates the current QKVShare latency path. These results position quantized KV handoff as a promising on-device systems direction while also highlighting the need for stronger controller ablations and apples-to-apples runtime comparisons.", "authors": ["Pratik Honavar", "Tejpratap GVSL"], "categories": ["cs.AI", "cs.MA"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-05", "url": "https://arxiv.org/abs/2605.03884", "pdf_url": "https://arxiv.org/pdf/2605.03884v1", "arxiv_id": "2605.03884", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "99194f5c688b8cffdaa6f880d4420964bdbabb2464b5cfcf7490f00ee61260b0", "sources": ["arxiv", "semantic_scholar"], "title": "MILE: Mixture of Incremental LoRA Experts for Continual Semantic Segmentation across Domains and Modalities", "abstract": "Continual semantic segmentation requires models to adapt to new domains or modalities without sacrificing performance on previously learned tasks. Expert-based learning, in which task-specific modules specialize in different domains, has proven effective in mitigating forgetting. These methods include dynamic expansion, which suffers from scalability issues, or parameter isolation, which constrains the ability to learn new tasks. We introduce Mixture of Incremental LoRA Experts (MILE), a modular and parameter-efficient framework for continual segmentation across both domains and modalities. MILE leverages Low-Rank Adaptation (LoRA) to instantiate lightweight experts for each new task while keeping the pretrained base network frozen. Each expert is trained exclusively on its task data, thus avoids overwriting previously learned information. A prototype-guided gating mechanism dynamically selects the most appropriate expert at inference. MILE achieves the benefits of expert-based learning while overcoming its scalability limitations. It requires only a marginal parameter increase per task and tens of LoRA adapters are needed before matching the size of a single full model, making it highly efficient in both training and storage. Across domain- and modality-incremental benchmarks, MILE achieves strong performance while ensuring better stability, plasticity, and scalability.", "authors": ["Shishir Muralidhara", "Didier Stricker", "René Schuster"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-05", "url": "https://arxiv.org/abs/2605.03555", "pdf_url": "https://arxiv.org/pdf/2605.03555v1", "arxiv_id": "2605.03555", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "1c5c5ecc1b99515f37f4e9eca88c4a9593e66625fbfc23e128bb9957a4b4004d", "sources": ["arxiv", "semantic_scholar"], "title": "HeadQ: Model-Visible Distortion and Score-Space Correction for KV-Cache Quantization", "abstract": "KV-cache quantizers usually optimize storage-space reconstruction, even though attention reads keys through logits and values through attention-weighted readout. We argue that persistent cache error should be measured in model-visible coordinates. For keys, the visible object is score error modulo constant shifts; this yields HeadQ, a key-side method that stores a low-rank residual side code in a calibration-learned query basis and applies it as an additive logit correction. For values, fixed-attention readout gives an $A^2$-weighted token-distortion surrogate. Across six models, Fisher/score-space error predicts attention KL far better than raw key MSE; same-budget counterexamples, null-space interventions, query-PCA controls, and wrong-sign HeadQ falsify storage-MSE alternatives. Matched Pythia checkpoints localize the main anomaly to a small-model low-entropy route-flip boundary. In K-only WikiText-103 decode experiments with dense values, HeadQ removes roughly $84$--$94\\%$ of the excess perplexity on the strongest 2-bit rows; in an auxiliary full-KV 2-bit composition, HeadQ plus an $A^2$ value policy improves all six models.", "authors": ["Jorge L. Ruiz Williams"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-05", "url": "https://arxiv.org/abs/2605.03562", "pdf_url": "https://arxiv.org/pdf/2605.03562v3", "arxiv_id": "2605.03562", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "1989de3ab4ec6db6c2cbcd6577004dd9dcb8f2f746d864f93ff3ab79e8e33f29", "sources": ["arxiv", "semantic_scholar"], "title": "Ortho-Hydra: Orthogonalized Experts for DiT LoRA", "abstract": "LoRA fine-tuning of diffusion transformers (DiT) on multi-style data suffers from \\emph{style bleed}: a single low-rank residual cannot represent several distinct artist fingerprints, and the optimizer converges to their average. Mixture-of-experts LoRA in the HydraLoRA style replaces the up-projection with $E$ heads under a router, but when every expert is zero-initialized the router receives identical gradient from each head and remains at the uniform prior. The experts then evolve permutation-symmetrically, and the network trains as a single rank-$r$ LoRA at $E{\\times}$ the cost. We present \\textbf{Ortho-Hydra}, a re-parameterisation that combines an OFT-style Cayley-orthogonal shared basis with per-expert \\emph{disjoint output subspaces} carved from the top-$(Er)$ left singular vectors of the pretrained weight. Disjointness makes the router's per-expert score non-degenerate at step~$0$, so specialization receives gradient signal before any expert has trained. We test the predicted deadlock on a DiT pipeline by comparing two HydraLoRA baselines, a zero-initialized shared-basis variant and the original $σ{=}0.1$ Gaussian-jitter mitigation, against Ortho-Hydra under a matched optimiser, dataset, and step budget. Neither baseline leaves the uniform prior within the first $1\\text{k}$ steps; Ortho-Hydra begins de-uniformising within the first few hundred. End-task generation quality on multi-style data is out of scope; we report the construction, the cold-start mechanism, and the routing dynamics it changes. Code: https://github.com/sorryhyun/anima_lora.", "authors": ["Seunghyun Ji"], "categories": ["cs.LG", "cs.AI", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-05", "url": "https://arxiv.org/abs/2605.03252", "pdf_url": "https://arxiv.org/pdf/2605.03252v1", "arxiv_id": "2605.03252", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/sorryhyun/anima_lora", "venue": null, "quality_score": 0.65} {"id": "0f574362af58920a76d6e225588cdd3f2ffbc41804bdd69d111af30014f2c770", "sources": ["arxiv", "semantic_scholar"], "title": "Tutti: Making SSD-Backed KV Cache Practical for Long-Context LLM Serving", "abstract": "LLM serving relies on prefix caching to improve inference performance. As growing contexts push key-value (KV) cache footprint far beyond GPU HBM and CPU DRAM capacity, KV cache is increasingly offloaded to NVMe SSDs. Unfortunately, restoring KV cache from SSDs suffers from poor I/O performance and incurs significant GPU stalls. This is primarily because the fragmented GPU memory layout results in a massive number of tiny random I/Os, rendering the low-parallelism CPU a severe bottleneck even with GPU Direct Storage (GDS), which still relies on CPU intervention to initiate each I/O and thus remains CPU-centric. This paper presents Tutti, an efficient SSD-backed KV caching solution that eliminates CPU intervention from the critical data and I/O control paths between HBM and SSDs. At the core of Tutti is a GPU-centric KV cache object store, in which the CPU is only responsible for asynchronously loading I/O kernels once per layer to the GPU. Tutti saturates NVMe SSD bandwidth and reduces GPU stalls to near zero through the following designs: (i) we provide a GPU-native object abstraction that enables bulk KV cache transfers and management; (ii) we re-architect the GPU storage stack by introducing GPU io_uring to support asynchronous GPU direct object I/O; and (iii) we propose slack-aware I/O scheduling to avoid GPU resource contention. We have implemented Tutti and integrated it to vLLM. Extensive evaluation shows that compared to the state-of-the-art GDS-enabled, SSD-backed LMCache, Tutti reduces TTFT by 78.3% under strict SLO constraints and improves the achievable request rate by 2x. The serving cost is reduced by 27%. Tutti achieves nearly the same inference performance as DRAM-backed LMCache, while providing almost infinite capacity.", "authors": ["Shi Qiu", "Yifan Hu", "Xintao Wang", "Wenhao Zhu", "Jianqin Yan", "Hao Chen", "Kaiqiang Xu", "Kai Chen", "Yiming Zhang"], "categories": ["cs.OS"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-05", "url": "https://arxiv.org/abs/2605.03375", "pdf_url": "https://arxiv.org/pdf/2605.03375v1", "arxiv_id": "2605.03375", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "5710bc1c674e4e4fa1f57ef3ab578c81c256e398bfc745210197866a3b05608f", "sources": ["arxiv", "semantic_scholar"], "title": "AdapShot: Adaptive Many-Shot In-Context Learning with Semantic-Aware KV Cache Reuse", "abstract": "Many-Shot In-Context Learning (ICL) has emerged as a promising paradigm, leveraging extensive examples to unlock the reasoning potential of Large Language Models (LLMs). However, existing methods typically rely on a predetermined, fixed number of shots. This static approach often fails to adapt to the varying difficulty of different queries, leading to either insufficient context or interference from noise. Furthermore, the prohibitive computational and memory costs of long contexts severely limit Many-Shot's feasibility. To address the above limitations, we propose AdapShot, which dynamically optimizes shot counts and leverages KV cache reuse for efficient inference. Specifically, we design a probe-based evaluation mechanism that utilizes output entropy to determine the optimal number of shots. To bypass the redundant prefilling computation during both the probing and inference phases, we incorporate a semantics-aware KV cache reuse strategy. Within this reuse strategy, to address positional encoding incompatibilities, we introduce a decoupling and re-encoding method that enables the flexible reordering of cached key-value pairs. Extensive experiments demonstrate that AdapShot achieves an average performance gain of around 10% and a 4.64x speedup compared to state-of-the-art DBSA.", "authors": ["Jie Ou", "Jinyu Guo", "Shiyao Guo", "Yuang Li", "Ruiqi Wu", "Zhaokun Wang", "Wenyi Li", "Wenhong Tian"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-05", "url": "https://arxiv.org/abs/2605.03644", "pdf_url": "https://arxiv.org/pdf/2605.03644v2", "arxiv_id": "2605.03644", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "058d06f6fb91f52794d060f47ff3a9d2e48e81612af83efd77030f8e2c4ef2c8", "sources": ["arxiv", "semantic_scholar"], "title": "WindowQuant: Mixed-Precision KV Cache Quantization based on Window-Level Similarity for VLMs Inference Optimization", "abstract": "Recently, video language models (VLMs) have been applied in various fields. However, the visual token sequence of the VLM is too long, which may cause intolerant inference latency and GPU memory usage. Existing methods propose mixed-precision quantization to the key-value (KV) cache in VLMs based on token granularity, which is time-consuming in the search process and hardware inefficient during computation. This paper introduces a novel approach called WindowQuant, which employs window-adaptive mixed-precision quantization to optimize the KV cache. WindowQuant consists of two modules: window-level quantization search and window-level KV cache computation. Window-level quantization search quickly determines the optimal bit-width configuration of the KV cache windows based on the similarity scores between the corresponding visual token windows and the text prompt, maintaining the model accuracy. Furthermore, window-level KV cache computation reorders the KV cache windows before quantization, avoiding the hardware inefficiency caused by mixed-precision quantization in inference computation. Extensive experiments demonstrate that WindowQuant outperforms state-of-the-art VLM models and KV cache quantization methods on various datasets.", "authors": ["Wei Tao", "Xiaoyang Qu", "Peiqiang Wang", "Guokuan Li", "Jiguang Wan", "Kai Lu", "Jianzong Wang"], "categories": ["cs.CV", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-04", "url": "https://arxiv.org/abs/2605.02262", "pdf_url": "https://arxiv.org/pdf/2605.02262v1", "arxiv_id": "2605.02262", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "2652819c0cd0d1697133d380d567bab6f7e3e5b16904dba77b55d3f4278cfd5d", "sources": ["arxiv", "semantic_scholar"], "title": "Decouple and Cache: KV Cache Construction for Streaming Video Understanding", "abstract": "Streaming video understanding requires processing unbounded video streams with limited memory and computation, posing two key challenges. First, continuously constructing new and evicting old key-value(KV) caches is required for unbounded streams. Secondly, due to the high cost of collecting and training on unbounded streams, models must learn from short sequences while generalizing to long streams. Existing streaming VideoVLLMs fail to scale to unbounded video streams or focus on cache reuse strategies, leaving the impact of cache construction underexplored. In this paper, we propose Decoupled Streaming Cache(DSCache), a training-free cache construction mechanism that adapts pretrained offline models to streaming settings. DSCache maintains a cumulative past KV cache while constructing a separate instant cache on-demand, decoupled from past caches to preserve the informativeness of recent inputs. To enable position extrapolation beyond the training length, DSCache further incorporates a position-agnostic encoding strategy, ensuring KV caches to support unseen positions and preventing position overflow. Experiments on Streaming Video QA benchmarks demonstrate DSCache's state-of-the-art performance, with an average 2.5% accuracy gains over prior methods.", "authors": ["Zhanzhong Pang", "Dibyadip Chatterjee", "Fadime Sener", "Angela Yao"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-03", "url": "https://arxiv.org/abs/2605.01858", "pdf_url": "https://arxiv.org/pdf/2605.01858v1", "arxiv_id": "2605.01858", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e9c9995d3853dc898d39d10868e74f4d6225c4655fb9894ee9bcf5de47b82d72", "sources": ["arxiv", "semantic_scholar"], "title": "GETA-3DGS: Automatic Joint Structured Pruning and Quantization for 3D Gaussian Splatting", "abstract": "3D Gaussian splatting (3DGS) is a state-of-the-art representation for real-time photorealistic novel-view synthesis, yet a single high-fidelity scene typically occupies hundreds of megabytes to several gigabytes, exceeding the budgets of mobile, immersive, and volumetric video platforms. Existing 3DGS compression methods (e.g., HAC++, FlexGaussian, LP-3DGS) treat pruning, quantization, and entropy coding as separate stages and rely on hand-tuned heuristics (opacity thresholds, fixed bit-widths, SH truncation), limiting cross-scene generalization and preventing users from specifying a target rate or quality budget. We propose GETA-3DGS, to our knowledge the first end-to-end automatic joint structured pruning and quantization framework for 3DGS. Building on GETA for joint pruning-quantization of deep networks, we contribute: (i) a 3DGS-aware quantization-aware dependency graph (QADG) treating each Gaussian primitive as a group with five attribute sub-nodes and degree-aware SH sub-nodes; (ii) a render-aware saliency fusing transmittance-weighted contribution, screen-space gradient, and pixel coverage into a Gaussian-level importance score; and (iii) a heterogeneous per-attribute mixed-precision scheme co-optimized with structural sparsity under a projected partial saliency-guided (PPSG) descent guarantee. On Mip-NeRF 360, Tanks and Temples, and Deep Blending, GETA-3DGS operates directly on raw Gaussian primitives rather than a post-hoc anchor representation, delivering ~5x storage reduction over Vanilla 3DGS with no per-scene thresholds. Bit-width policy is the dominant rate-distortion lever: a uniform 6-bit cap costs up to -6.74 dB on view-dependent scenes versus our heterogeneous allocation, matching an information-theoretic reverse-water-filling analysis we develop. GETA-3DGS is complementary to existing codecs: entropy coding (HAC++, CompGS) is downstream, so the two can be composed.", "authors": ["Baobing Zhang", "Wanxin Sui"], "categories": ["cs.LG", "cs.AI", "cs.GR", "eess.IV"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-05-03", "url": "https://arxiv.org/abs/2605.02086", "pdf_url": "https://arxiv.org/pdf/2605.02086v1", "arxiv_id": "2605.02086", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "77d2252108ae94d30c4093eb8c20d4326da34389ac2fac5c6003706282abf742", "sources": ["arxiv", "semantic_scholar"], "title": "Shifted asymmetric Laplace mixtures of experts", "abstract": "Mixtures of experts (MoE) models provide a flexible framework for modelling heterogeneity in data for regression and model-based clustering and classification. MoE models for regression are typically based on the Gaussian assumption for the expert distributions. To robustify the MoE framework with respect to data exhibiting skewness, heavy tails and outliers, we propose a robust non-normal MoE model using the shifted asymmetric Laplace (SAL) distribution. The proposed SALMoE model overcomes the limitations of the Gaussian MoE model when the observed data are asymmetric and heavy-tailed. Through a combination of the minorization-maximization (MM) algorithm with the classical Expectation-Maximization (EM), we develop a dedicated hybrid EM-MM algorithm to estimate the parameters of the SALMoE model. The EM-MM algorithm is shown to yield a nondecreasing observed log-likelihood. A simulation study demonstrates the robustness and practical utility of the proposed model. Finally, the SALMoE model is applied to two real-world economic datasets.", "authors": ["Sphiwe B. Skhosana", "Hien Duy Nguyen"], "categories": ["stat.ME"], "fields_of_study": ["Mathematics"], "published_date": "2026-05-03", "url": "https://arxiv.org/abs/2605.02012", "pdf_url": "https://arxiv.org/pdf/2605.02012v1", "arxiv_id": "2605.02012", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "779c8e2110cd074617649fad0daeb570d1287783db28daac7a74041f7be65a33", "sources": ["arxiv", "semantic_scholar"], "title": "Rhamba: Region-Aware Hybrid Attention-Mamba Framework for Self-Supervised Learning in Resting-State fMRI", "abstract": "Self-supervised pretraining is promising for large-scale neuroimaging, yet the impact of region-aware masking and hybrid sequence modeling remains underexplored. In this work, we introduce Rhamba, a region-aware pretraining framework that integrates anatomically guided masking with hybrid Attention-Mamba architectures for resting state functional magnetic resonance imaging (fMRI) analysis. Models were pretrained on the ABIDE dataset using region-aligned patch embeddings and three masking strategies (Any, Majority, and Pure) with increasing spatial specificity. We evaluated four architectural variants: a Mamba only model, an Alternate architecture with interleaved Mamba and Attention blocks, and two hybrid encoder-decoder configurations (Attention-Mamba (AM) and Mamba-Attention (MA)). The pretrained models were fine-tuned on downstream classification tasks using the COBRE and ADHD-200 datasets for schizophrenia and attention-deficit/hyperactivity disorder discrimination. We employed Integrated Gradients, an explainable AI method, to identify the brain regions contributing to model predictions. Masking strategy strongly influenced reconstruction behavior, with reconstruction loss following a consistent ordering (Any > Majority > Pure). However, this trend did not directly translate into downstream performance, where differences were modest and dataset-dependent. The hybrid architecture with the MA configuration achieved the highest average AUROC across both datasets, and Rhamba outperformed state-of-the-art methods in comparative evaluation. Region-wise analysis showed that peak performance depends on the interaction between masking strategy and architecture rather than a single dominant configuration. Overall, Rhamba offers a flexible framework for balancing interpretability, scalability, and performance in large-scale fMRI representation learning.", "authors": ["Ruthwik Reddy Doodipala", "Pankaj Pandey", "Pratheek Eranki", "Carolina Torres-Rojas", "Manob Jyoti Saikia", "Ranganatha Sitaram"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-02", "url": "https://arxiv.org/abs/2605.01240", "pdf_url": "https://arxiv.org/pdf/2605.01240v2", "arxiv_id": "2605.01240", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "8465571aec1b6f3a88fe382be6c00f4b70db375fc863624818c68cbf65204c4b", "sources": ["arxiv", "semantic_scholar"], "title": "Make Your LVLM KV Cache More Lightweight", "abstract": "Key-Value (KV) cache has become a de facto component of modern Large Vision-Language Models (LVLMs) for inference. While it enhances decoding efficiency in Large Language Models (LLMs), its direct adoption in LVLMs introduces substantial GPU memory overhead due to the large number of vision tokens processed during the prefill stage. To tackle this problem, we propose LightKV, a novel approach that reduces KV cache size by exploiting the redundancy among vision-token embeddings. Guided by text prompts, LightKV employs cross-modality message passing to aggregate informative messages across vision tokens and progressively compress them during prefill. This prompt-aware guidance distinguishes our method from prior vision-only compression strategies. We evaluate LightKV on eight open-source LVLMs across eight public benchmark datasets, e.g., MME and SeedBench. Experimental results demonstrate that with only 55% of the original vision tokens, LightKV (a) halves the vision-token KV cache size, (b) reduces computation by up to 40%, and (c) preserves general-purpose performance while significantly outperforming existing baselines.", "authors": ["Xihao Chen", "Yangyang Guo", "Roger Zimmermann"], "categories": ["cs.CV", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-01", "url": "https://arxiv.org/abs/2605.00789", "pdf_url": "https://arxiv.org/pdf/2605.00789v1", "arxiv_id": "2605.00789", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.65} {"id": "3f90697cba1df1cf4315203cd881232aa35e1d68d1cea139ba7729df7b039269", "sources": ["arxiv", "semantic_scholar"], "title": "RouteHijack: Routing-Aware Attack on Mixture-of-Experts LLMs", "abstract": "Safety alignment is critical for the responsible deployment of large language models (LLMs). As Mixture-of-Experts (MoE) architectures are increasingly adopted to scale model capacity, understanding their safety robustness becomes essential. Existing adversarial attacks, however, have notable limitations. Prompt-based jailbreaks rely on heuristic search and transfer poorly, model intervention methods require privileged access to internal representations, and optimization-based input attacks remain output-centric and are fundamentally limited to MoE models due to the non-differentiable routing mechanism. In this paper, we present RouteHijack, a routing-aware jailbreak for MoE LLMs. Our key insight is that safety behavior is concentrated in a small subset of experts, creating an opportunity to steer model behavior by influencing routing decisions through input optimization. Building on this observation, RouteHijack first performs response-driven expert localization to identify safety-critical and harmful experts by contrasting activations under safe refusals and harmful completions. It then constructs adversarial suffixes with a routing-aware objective that suppresses safety experts, promotes harmful experts, and prevents early-stage refusal during generation. At inference time, the optimized suffix is appended to a malicious prompt, requiring only input access. Across seven MoE LLMs, RouteHijack achieves a 69.3\\% average attack success rate (ASR), outperforming prior optimization-based attack by $3.2\\times$. RouteHijack also transfers zero-shot across five sibling MoE variants, raising average ASR from 27.7\\% to 61.2\\%, and further generalizes to three MoE-based VLMs, increasing average ASR from 2.47\\% to 38.7\\%. These findings expose a fundamental vulnerability in sparse expert architectures and highlight the need for defenses beyond output-level alignment.", "authors": ["Zhiyuan Xu", "Joseph Gardiner", "Sana Belguith", "Lichao Wu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-01", "url": "https://arxiv.org/abs/2605.02946", "pdf_url": "https://arxiv.org/pdf/2605.02946v1", "arxiv_id": "2605.02946", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "12350b005ae0d1af0ca8f9d2d910aecc1682cd2b3a5be28f7c90a2a01578a1a3", "sources": ["arxiv", "semantic_scholar"], "title": "SpaceMoE: Realizing Distributed Mixture-of-Experts Inference over Space Networks", "abstract": "Leveraging continuous solar energy harvesting at high efficiency, space data centers are envisioned as a promising platform for executing energy-intensive large language models (LLMs). Recognizing this advantage, space and AI conglomerates (e.g., SpaceX, Google) are actively investing in this vision. One key challenge, however, is the efficient distributed deployment of a large-scale LLM in a satellite network due to the limited onboard computing and communication resources. This gives rise to a placement problem that involves partitioning and mapping model components to satellites such that the fundamentally different model architecture and network topology can be reconciled to ensure low-latency token generation. To address this problem, we present the Space Network of Mixture-of-Experts (SpaceMoE) framework targeting the distributed execution of a popular mixture-of-experts (MoE) model in space. The proposed placement strategies are two-level: (1) layer placement, which assigns MoE layers to satellite subnets; and (2) intra-layer expert placement, which assigns individual experts to satellites associated with the same layer/subnet. For layer placement, we exploit the ring-like communication pattern of autoregressive inference to partition the satellite constellation along the orbiting direction into subnets arranged on a ring, each hosting one MoE layer. Based on this architecture, we formulate and solve an optimization problem for intra-layer expert placement to map experts with heterogeneous activation probabilities onto satellites. The derived strategy reveals an intuitive principle: a frequently activated expert should be mapped to a satellite on a routing path with low expected latency. Experiments over a thousand-satellite constellation show that SpaceMoE achieves at least a threefold latency reduction compared with conventional random and ablation-based placement strategies.", "authors": ["Zhanwei Wang", "Huiling Yang", "Min Sheng", "Khaled B. Letaief", "Kaibin Huang"], "categories": ["cs.DC", "cs.AI", "cs.NI"], "fields_of_study": ["Computer Science"], "published_date": "2026-05-01", "url": "https://arxiv.org/abs/2605.00515", "pdf_url": "https://arxiv.org/pdf/2605.00515v2", "arxiv_id": "2605.00515", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "88cf2aa12c76834c90b46006e99c28101f8639f3bc30bcfa852d2417e63f9ec4", "sources": ["arxiv", "semantic_scholar"], "title": "Prediction-powered Inference by Mixture of Experts", "abstract": "The rapidly expanding artificial intelligence (AI) industry has produced diverse yet powerful prediction tools, each with its own network architecture, training strategy, data-processing pipeline, and domain-specific strengths. These tools create new opportunities for semi-supervised inference, in which labeled data are limited and expensive to obtain, whereas unlabeled data are abundant and widely available. Given a collection of predictors, we treat them as a mixture of experts (MOE) and introduce an MOE-powered semi-supervised inference framework built upon prediction-powered inference (PPI). Motivated by the variance reduction principle underlying PPI, the proposed framework seeks the mixture of experts that achieves the smallest possible variance. Compared with standard PPI, the MOE-powered inference framework adapts to the unknown performance of individual predictors, benefits from their collective predictive power, and enjoys a best-expert guarantee. The framework is flexible and applies to mean estimation, linear regression, quantile estimation, and general M-estimation. We develop non-asymptotic theory for the MOE-powered inference framework and establish upper bounds on the coverage error of the resulting confidence intervals. Numerical experiments demonstrate the practical effectiveness of MOE-powered inference and corroborate our theoretical findings.", "authors": ["Yanwu Gu", "Linglong Kong", "Dong Xia"], "categories": ["stat.ML", "cs.LG", "stat.AP"], "fields_of_study": ["Mathematics", "Computer Science"], "published_date": "2026-04-30", "url": "https://arxiv.org/abs/2604.27892", "pdf_url": "https://arxiv.org/pdf/2604.27892v1", "arxiv_id": "2604.27892", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "071a6f27c022d0a90db106c6e43458610ae70971112f4a13695f9d42dd802689", "sources": ["arxiv", "semantic_scholar"], "title": "Post-Optimization Adaptive Rank Allocation for LoRA", "abstract": "Exponential growth in the scale of modern foundation models has led to the widespread adoption of Low-Rank Adaptation (LoRA) as a parameter-efficient fine-tuning technique. However, standard LoRA implementations disregard the varying intrinsic dimensionality of model layers and enforce a uniform rank, leading to parameter redundancy. We propose Post-Optimization Adaptive Rank Allocation (PARA), a data-free compression method for LoRA that integrates seamlessly into existing fine-tuning pipelines. PARA leverages Singular Value Decomposition to prune LoRA ranks using a global threshold over singular values across all layers. This results in non-uniform rank allocation based on layer-wise spectral importance. As a post-hoc method, PARA circumvents the training modifications and resulting instabilities that dynamic architectures typically incur. We empirically demonstrate that PARA reduces parameter count by 75-90\\% while preserving the predictive performance of the original, uncompressed LoRA across multiple vision and language benchmarks. Code will be published upon acceptance.", "authors": ["Vishnuprasadh Kumaravelu", "Sunil Gupta", "P. K. Srijith"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-30", "url": "https://arxiv.org/abs/2604.27796", "pdf_url": "https://arxiv.org/pdf/2604.27796v1", "arxiv_id": "2604.27796", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "1ace4cef61ab2e297f54bce4d65226df0c6a5752ba199e684a26f4e3c8f45349", "sources": ["arxiv", "semantic_scholar"], "title": "Adaptive and Fine-grained Module-wise Expert Pruning for Efficient LoRA-MoE Fine-Tuning", "abstract": "LoRA-MoE has emerged as an effective paradigm for parameter-efficient fine-tuning, combining the low training cost of LoRA with the increased adaptation capacity of Mixture-of-Experts (MoE). However, existing LoRA-MoE frameworks typically adopt a fixed and uniform expert configuration across heterogeneous Transformer modules (\\eg, attention query/key projections and MLP gating networks), ignoring their distinct functional roles and capacity requirements. This design leads to localized over-provisioning, redundant trainable parameters, and unnecessary optimizer-state overhead. Moreover, prior methods enforce load balancing among experts throughout training. Although beneficial in the early stage, this constraint becomes restrictive once routing patterns stabilize, limiting expert specialization on downstream tasks. In this paper, we propose DMEP, a novel LoRA-MoE fine-tuning framework based on Dynamic Module-wise Expert Pruning. DMEP tracks expert utilization during training and physically removes low-utility experts on a per-module basis, yielding a more compact expert structure tailored to different modules. The pruned model then continues training without the load-balancing constraint, freeing the remaining experts to focus entirely on the downstream task and develop specialized expertise. By jointly adapting module-wise expert capacity and eliminating unnecessary balancing, DMEP improves both parameter efficiency and training efficiency. Extensive experiments on multiple reasoning benchmarks show that DMEP reduces trainable parameters by 35\\%--43\\% and improves training throughput by about 10\\%, while maintaining or surpassing the downstream reasoning accuracy of uniform LoRA-MoE baselines.", "authors": ["Weihang Li", "Jianchun Liu", "Hongli Xu"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-29", "url": "https://arxiv.org/abs/2604.26340", "pdf_url": "https://arxiv.org/pdf/2604.26340v1", "arxiv_id": "2604.26340", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "ba1a6fd3ced3912365c2aa0f8da889e89d98fc5d4fcdc47c9161d5cef9eb4ba1", "sources": ["arxiv", "semantic_scholar"], "title": "DUAL-BLADE: Dual-Path NVMe-Direct KV-Cache Offloading for Edge LLM Inference", "abstract": "The increasing deployment of Large Language Model (LLM) inference on edge AI systems demands efficient execution under tight memory budgets. A key challenge arises from Key-Value (KV) caches, which often exceed available device memory. Although NVMe-based offloading offers scalable capacity, existing file-based designs rely heavily on the kernel page cache, leading to cache thrashing, unpredictable latency, and high software overhead under memory pressure. We present DUAL-BLADE, a dual-path KV residency framework that dynamically assigns KV tensors to either a page-cache path or an NVMe-direct path based on runtime memory availability. The NVMe-direct path bypasses the filesystem by mapping KV tensors to contiguous logical block address (LBA) regions, enabling low-overhead direct storage access. DUAL-BLADE further incorporates adaptive pipeline parallelism to overlap storage I/O with GPU DMA, improving inference throughput. Our evaluation shows that DUAL-BLADE substantially mitigates I/O bottlenecks, reducing prefill and decode latency by up to 33.1% and 42.4%, respectively, while improving SSD utilization by 2.2x across diverse memory budgets.", "authors": ["Bodon Jeong", "Hongsu Byun", "Youngjae Kim", "Weikuan Yu", "Kyungkeun Lee", "Jihoon Yang", "Sungyong Park"], "categories": ["cs.DC", "cs.AI", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-29", "url": "https://arxiv.org/abs/2604.26557", "pdf_url": "https://arxiv.org/pdf/2604.26557v1", "arxiv_id": "2604.26557", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "460a2479e928c9b61782fb98c048b4f071996aab29820ffca4d2d6313b8e4995", "sources": ["arxiv", "semantic_scholar"], "title": "When Hidden States Drift: Can KV Caches Rescue Long-Range Speculative Decoding?", "abstract": "Speculative decoding accelerates LLM inference, but SOTA hidden-state-based drafters suffer from long-range decay: draft accuracy degrades as the speculative step increases. Existing work attributes this decay to train-inference mismatch and proposes test-time training (TTT) as a remedy, yet we observe that long-range decay persists even in TTT-trained drafters. We revisit long-range decay from the perspective of context information preservation. In hidden-state reuse, we argue the target hidden state acts as a biased context compression: it aggregates historical token information according to the attention query at the current position, yielding a compact representation optimized for immediate next-token prediction. This compression can suppress information less relevant to the current query but important for later speculative steps. In contrast, the target model's KV cache serves as an explicit context, retaining the complete set of token-wise KV representations. We therefore posit the KV-Reuse Hypothesis: allowing the draft model to reuse the target KV cache can provide richer signals for long-horizon drafting. To test this hypothesis, we introduce KVShot, a diagnostic framework that compares three reuse paradigms: hidden-only, KV-only, and hybrid. Extensive evaluations on Qwen3-8B show that KV-Reuse improves long-range acceptance, although end-to-end speedups remain marginal under current training pipelines. Our analysis identifies two key structural bottlenecks: shallow drafters struggle to estimate target queries accurately, and draft-side KV projections receive sparse gradient signals. These findings suggest that realizing the full potential of KV-aware decoding requires moving beyond TTT toward block-wise training paradigms. By exposing these bottlenecks, KVShot provides a foundational diagnostic testbed and a clear roadmap for designing next-generation inference architectures.", "authors": ["Tianyu Liu", "Yuhao Shen", "Xinyi Hu", "Baolin Zhang", "Hengxin Zhang", "Jun Dai", "Jun Zhang", "Shuang Ge", "Lei Chen", "Yue Li", "MingCheng Wan"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-29", "url": "https://arxiv.org/abs/2604.26412", "pdf_url": "https://arxiv.org/pdf/2604.26412v2", "arxiv_id": "2604.26412", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "073469c8aad8e4b04433602e16f0870a8f6d78d1d8a6ec2da76a4a7fbfdc720c", "sources": ["arxiv", "semantic_scholar"], "title": "FaaSMoE: A Serverless Framework for Multi-Tenant Mixture-of-Experts Serving", "abstract": "Mixture-of-Experts (MoE) models offer high capacity with efficient inference cost by activating a small subset of expert models per input. However, deploying MoE models requires all experts to reside in memory, creating a gap between the resource used by activated experts and the provisioned resources. This underutilization is further pronounced in multi-tenant scenarios. In this paper, we propose FaaSMoE, a multi-tenant MoE serving architecture built on Function-as-a-Service (FaaS) platforms. FaaSMoE decouples the control and execution planes of MoE by deploying experts as stateless FaaS functions, enabling on-demand and scale-to-zero expert invocation across tenants. FaaSMoE further supports configurable expert granularity within functions, trading off per-expert elasticity for reduced invocation overhead. We implement a prototype with an open-source edge-oriented FaaS platform and evaluate it using Qwen1.5-moe-2.7B under multi-tenant workloads. Compared to a full-model baseline, FaaSMoE uses less than one third of the resources, demonstrating a practical and resource-efficient path towards scalable MoE serving in a multi-tenant environment.", "authors": ["Minghe Wang", "Trever Schirmer", "Mohammadreza Malekabbasi", "David Bermbach"], "categories": ["cs.DC", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-29", "url": "https://arxiv.org/abs/2604.26881", "pdf_url": "https://arxiv.org/pdf/2604.26881v1", "arxiv_id": "2604.26881", "doi": "10.1145/3812836.3814785", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.65} {"id": "a6742c0ad6f3d453cf593b0211d176aae24863c5cb2ca570a892691a9ae0e993", "sources": ["arxiv", "semantic_scholar"], "title": "Rethinking KV Cache Eviction via a Unified Information-Theoretic Objective", "abstract": "Key-value (KV) caching is essential for large language model inference, yet its memory overhead poses a critical bottleneck for long-context generation. Existing eviction policies predominantly rely on empirical heuristics, lacking a rigorous theoretical foundation. This work rethinks KV cache eviction through the lens of the Information Bottleneck principle. Under a linear-Gaussian surrogate of attention, we derive a closed-form mutual information objective that characterizes the effective information capacity of a retained KV cache subset. This formulation reveals that a wide range of existing eviction strategies can be interpreted as different approximations of the same capacity-maximization principle. Guided by this insight, we introduce CapKV, a capacity-aware eviction method that directly targets information preservation via a log-determinant approximation using statistical leverage scores. This approach replaces heuristic selection with a theoretically grounded mechanism that preserves the maximum predictive signal. Extensive experiments across multiple models and long-context benchmarks show that CapKV consistently outperforms prior methods, achieving a better trade-off between memory efficiency and generational fidelity.", "authors": ["Jiaming Yang", "Chenwei Tang", "Liangli Zhen", "Jiancheng Lv"], "categories": ["cs.LG", "cs.AI", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-04-28", "url": "https://arxiv.org/abs/2604.25975", "pdf_url": "https://arxiv.org/pdf/2604.25975v1", "arxiv_id": "2604.25975", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d900d2b9ac00781cd8b11f7f0a9e074c43f41c0218b207e9f224bbff9775c1b7", "sources": ["arxiv", "semantic_scholar"], "title": "CacheFlow: Efficient LLM Serving with 3D-Parallel KV Cache Restoration", "abstract": "KV cache restoration has emerged as a dominant bottleneck in serving long-context LLM workloads, including multi-turn conversations, retrieval-augmented generation, and agentic pipelines. Existing approaches treat restoration as a per-request tradeoff between recomputation and I/O transfer, recomputing KV states from scratch or offloading them from external storage (e.g., CPU memory or remote machines). However, existing advances fail to exploit parallelism across tokens, layers, and distributed deployments, and critically ignore resource contention under batched serving. We present CacheFlow, a KV cache restoration framework that rethinks cache restoration as a multi-dimensional parallel execution problem. CacheFlow introduces a unified 3D parallelism abstraction across tokens, layers, and GPUs, enabling fine-grained overlap of recomputation and I/O along the structural dependencies of transformer inference. At the core of CacheFlow is a batch-aware two-pointer scheduler that jointly optimizes compute and I/O allocation across requests by prioritizing operations with the highest marginal reduction in recomputation cost. Our evaluations show that CacheFlow reduces Time-To-First-Token (TTFT) by 10%-62% over existing advances across diverse models, workloads, and hardware.", "authors": ["Sean Nian", "Jiahao Fang", "Qilong Feng", "Zhiyu Wu", "Fan Lai"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-28", "url": "https://arxiv.org/abs/2604.25080", "pdf_url": "https://arxiv.org/pdf/2604.25080v1", "arxiv_id": "2604.25080", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "0e37171d683f817f473813ed34c02d4200c8172ebf88cc8d74db3096c614837b", "sources": ["arxiv", "semantic_scholar"], "title": "PolyKV: A Shared Asymmetrically-Compressed KV Cache Pool for Multi-Agent LLM Inference", "abstract": "We present PolyKV, a system in which multiple concurrent inference agents share a single, asymmetrically compressed KV cache pool. Rather than allocating a separate KV cache per agent -- the standard paradigm -- PolyKV writes a compressed cache once and injects it into N independent agent contexts via HuggingFace DynamicCache objects. Compression is asymmetric: Keys are quantized at int8 (q8_0) to preserve softmax stability, while Values are compressed using TurboQuant MSE -- a Fast Walsh-Hadamard Transform (FWHT) rotation followed by 3-bit Lloyd-Max quantization with centroids tuned to N(0,1). We evaluate across two model scales (SmolLM2-1.7B-Instruct and Llama-3-8B-Instruct), three context lengths (600-7,194 tokens), and up to 15 concurrent agents. PolyKV achieves a stable 2.91x compression ratio across all configurations. On Llama-3-8B with 15 agents sharing a 4K-token context, PolyKV reduces KV cache memory from 19.8 GB to 0.45 GB -- a 97.7% reduction -- while maintaining only +0.57% perplexity degradation and a mean BERTScore F1 of 0.928. PPL delta does not grow with agent count and improves as context length increases, inverting to -0.26% at 1,851 coherent tokens. To our knowledge, no prior work combines a single shared, lossy-compressed KV pool with multi-reader concurrent agent access.", "authors": ["Ishan Patel", "Ishan Joshi"], "categories": ["cs.LG", "cs.CL", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-27", "url": "https://arxiv.org/abs/2604.24971", "pdf_url": "https://arxiv.org/pdf/2604.24971v1", "arxiv_id": "2604.24971", "doi": "10.5281/zenodo.19686729", "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/ishan1410/PolyKV", "venue": null, "quality_score": 0.65} {"id": "1411829aa4ced054bd9de6c6c3fc5016566c29464fb05d5ad03537c258a27207", "sources": ["arxiv", "semantic_scholar"], "title": "DepthKV: Layer-Dependent KV Cache Pruning for Long-Context LLM Inference", "abstract": "Long-context reasoning is a critical capability of large language models (LLMs), enabling applications such as long-document understanding, summarization, and code generation. However, efficient autoregressive inference relies on the key-value (KV) cache, whose memory footprint grows linearly with sequence length, leading to a major memory bottleneck. To mitigate this overhead, KV cache pruning methods discard cached tokens with low attention scores during inference. Most existing methods apply a uniform pruning ratio across layers, implicitly assuming that all layers contribute equally to overall model performance. We show that this assumption is suboptimal, as layers differ significantly in their sensitivity to pruning. We propose DepthKV, a layer-dependent pruning framework that allocates a fixed global KV budget across layers based on their sensitivity, rather than using a uniform allocation. Across multiple models and tasks, DepthKV consistently outperforms uniform pruning at the same global pruning ratio, demonstrating more effective utilization of the KV cache budget through layer-dependent allocation.", "authors": ["Zahra Dehghanighobadi", "Asja Fischer"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-27", "url": "https://arxiv.org/abs/2604.24647", "pdf_url": "https://arxiv.org/pdf/2604.24647v1", "arxiv_id": "2604.24647", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "0b4a79b5f4c35dfd1dc79a5feaf70ff7115e0de0550917d0aa554424d24131d8", "sources": ["arxiv", "semantic_scholar"], "title": "LearnPruner: Rethinking Attention-based Token Pruning in Vision Language Models", "abstract": "Vision-Language Models (VLMs) have recently demonstrated remarkable capabilities in visual understanding and reasoning, but they also impose significant computational burdens due to long visual sequence inputs. Recent works address this issue by pruning unimportant visual tokens, achieving substantial computational reduction while maintaining model performance. The core of token pruning lies in determining token importance, with current approaches primarily relying on attention scores from vision encoders or Large Language Models (LLMs). In this paper, we analyze the effectiveness of attention mechanisms in both vision encoders and LLMs. We find that vision encoders suffer from attention sink, leading to poor focus on informative foreground regions, while in LLMs, although prior studies have identified attention bias toward token positions, text-to-vision attention demonstrates resistance to this bias and enables effective pruning guidance in middle layers. Based on these observations, we propose LearnPruner, a two-stage token pruning framework that first removes redundant vision tokens via a learnable pruning module after the vision encoder, then retains only task-relevant tokens in the LLM's middle layer. Experimental results show that our LearnPruner can preserve approximately 95% of the original performance while using only 5.5% of vision tokens, and achieve 3.2$\\times$ inference acceleration, demonstrating a superior accuracy-efficiency trade-off.", "authors": ["Rinyoichi Takezoe", "Yaqian Li", "Zihao Bo", "Anzhou Hou", "Mo Guang", "Kaiwen Long"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-27", "url": "https://arxiv.org/abs/2604.23950", "pdf_url": "https://arxiv.org/pdf/2604.23950v1", "arxiv_id": "2604.23950", "doi": null, "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "f0240c09ec7a7a72930bc54a425e48eb4f65c8c4999c418282c85e1db0eae883", "sources": ["arxiv", "semantic_scholar"], "title": "Statistical Inference and Quality Measures of KV Cache Quantisations Inspired by TurboQuant", "abstract": "We analyse three KV cache quantization schemes under a fair bit budget: \\textbf{KV} (scalar MSE baseline), \\textbf{KQV} (WHT + MSE on $K$; WHT + MSE + QJL on $V$), and \\textbf{QKQV} (WHT + MSE + QJL on both). Starting from the Beta distribution on the hypersphere, we trace how QJL on $K$ inflates inner product variance by $π/2$, which softmax amplifies nonlinearly via Jensen's inequality, and we present statistical inference and information metrics to highlight practical differences. Three empirical findings emerge. (1)~At $n=4$ (the practically dominant budget), KQV wins on every measure -- KL divergence, geometric $K$ error, and 6D distance -- across all distributions and ranks tested. (2)~The K--V asymmetry is unconditional: QKQV is consistently worse than KQV in KL divergence at every budget and distribution. (3)~A budget-dependent crossover exists: QKQV achieves better geometric $K$ reconstruction at $n \\in \\{2,3,5\\}$, KQV at $n \\in \\{4,6\\}$, invariant to rank and tail weight -- an open rate-distortion problem. $\\mathrm{KL}(p_{\\mathrm{ref}} \\| p_{\\mathrm{quant}})$, K-only by construction, bridges K direction error to routing corruption and output collapse. We present a sufficient condition when the Jensen mechanism amplifies superlinearly through the softmax. At $n \\in \\{2,3,5\\}$, QKQV wins geometrically because this assumption does not bind. At $n=4$, elevated K error and KL divergence for QKQV strongly suggest the Jensen mechanism is the operative cause of the crossover, providing a new perspective and explanation.", "authors": ["Paolo D'Alberto"], "categories": ["cs.LG", "cs.IT", "cs.MS"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-04-27", "url": "https://arxiv.org/abs/2605.08114", "pdf_url": "https://arxiv.org/pdf/2605.08114v1", "arxiv_id": "2605.08114", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "819d2eb3f0cc7702fb53daebe933e4d2df11701be6e3d8b852cd64f6db70677c", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Heterogeneous Grouped Experts for Language Modeling", "abstract": "Large Language Models (LLMs) based on Mixture-of-Experts (MoE) are pivotal in industrial applications for their ability to scale performance efficiently. However, standard MoEs enforce uniform expert sizes,creating a rigidity that fails to align computational costs with varying token-level complexity. While heterogeneous expert architectures attempt to address this by diversifying expert sizes, they often suffer from significant system-level challenges, specifically unbalanced GPU utilization and inefficient parameter utilization, which hinder practical deployment. To bridge the gap between theoretical heterogeneity and robust industrial application, we propose Mixture of Heterogeneous Grouped Experts (MoHGE) which introduces a two-level routing mechanism to enable flexible, resource-aware expert combinations. To optimize inference efficiency, we propose a Group-Wise Auxiliary Loss, which dynamically steers tokens to the most parameter-efficient expert groups based on task difficulty. To address the critical deployment challenge of GPU load balancing, we introduce an All-size Group-decoupling Allocation strategy coupled with an Intra-Group Experts Auxiliary Loss. These mechanisms collectively ensure uniform computation distribution across GPUs. Extensive evaluations demonstrate that MoHGE matches the performance of MoE architectures while reducing the total parameters by approximately 20% and maintaining balanced GPU utilization. Our work establishes a scalable paradigm for resource-efficient MoE design, offering a practical solution for optimizing inference costs in real-world scenarios. The code is publicly available at https://github.com/UnicomAI/MoHGE.", "authors": ["Zhicheng Ma", "Xiang Liu", "Zhaoxiang Liu", "Ning Wang", "Yi Shen", "Kai Wang", "Shuming Shi", "Shiguo Lian"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-25", "url": "https://arxiv.org/abs/2604.23108", "pdf_url": "https://arxiv.org/pdf/2604.23108v2", "arxiv_id": "2604.23108", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/UnicomAI/MoHGE", "venue": null, "quality_score": 0.65} {"id": "3170acf79e656e981aa20fe8fdfbb66b68e9cd120a20de1cf988694d4ee7c9e0", "sources": ["arxiv", "semantic_scholar"], "title": "Scaling Multi-Node Mixture-of-Experts Inference Using Expert Activation Patterns", "abstract": "Most recent state-of-the-art (SOTA) large language models (LLMs) use Mixture-of-Experts (MoE) architectures to scale model capacity without proportional per-token compute, enabling higher-quality outputs at manageable serving costs. However, MoE inference at scale is fundamentally bottlenecked by expert load imbalance and inefficient token routing, especially in multi-node deployments where tokens are not guaranteed to be routed to local experts, resulting in significant inter-node all-to-all communication overhead. To systematically characterize these challenges, we profile SOTA open-source MoE models, including Llama 4 Maverick, DeepSeek V3-671B, and Qwen3-230B-A22B, on various datasets and collected over 100k real expert activation traces. Upon studying the expert activation patterns, we uncover various persistent properties across all the frontier MoE models: variable expert load imbalance, domain-specific expert activation where expert popularity shifts across task families (code, math, chat, general), and a strong correlation between prefill and decode expert activations. Motivated by these findings, we propose workload-aware micro-batch grouping and an expert placement strategy to maximize token locality to the destination expert, thereby reducing inter-node communication. Across models and datasets, these optimizations help reduce all2all communication data up to 20, resulting in lower MoE decode latency and better accelerator utilization.", "authors": ["Abhimanyu Bambhaniya", "Geonhwa Jeong", "Jason Park", "Jiecao Yu", "Jaewon Lee", "Pengchao Wang", "Changkyu Kim", "Chunqiang Tang", "Tushar Krishna"], "categories": ["cs.LG", "cs.AI", "cs.AR"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-25", "url": "https://arxiv.org/abs/2604.23150", "pdf_url": "https://arxiv.org/pdf/2604.23150v1", "arxiv_id": "2604.23150", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.65} {"id": "a86313b756645e110dc904f6cd6efe0971d58cdd910ac3152dbb2ddbae6d1cf2", "sources": ["arxiv", "semantic_scholar"], "title": "Where Should LoRA Go? Component-Type Placement in Hybrid Language Models", "abstract": "Hybrid language models that interleave attention with recurrent components are increasingly competitive with pure Transformers, yet standard LoRA practice applies adapters uniformly without considering the distinct functional roles of each component type. We systematically study component-type LoRA placement across two hybrid architectures -- Qwen3.5-0.8B (sequential, GatedDeltaNet + softmax attention) and Falcon-H1-0.5B (parallel, Mamba-2 SSM + attention) -- fine-tuned on three domains and evaluated on five benchmarks. We find that the attention pathway -- despite being the minority component -- consistently outperforms full-model adaptation with 5-10x fewer trainable parameters. Crucially, adapting the recurrent backbone is destructive in sequential hybrids (-14.8 pp on GSM8K) but constructive in parallel ones (+8.6 pp). We further document a transfer asymmetry: parallel hybrids exhibit positive cross-task transfer while sequential hybrids suffer catastrophic forgetting. These results establish that hybrid topology fundamentally determines adaptation response, and that component-aware LoRA placement is a necessary design dimension for hybrid architectures.", "authors": ["Hector Borobia", "Elies Seguí-Mas", "Guillermina Tormo-Carbó"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-24", "url": "https://arxiv.org/abs/2604.22127", "pdf_url": "https://arxiv.org/pdf/2604.22127v1", "arxiv_id": "2604.22127", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/hecboar/lora-placement-hybrid", "venue": null, "quality_score": 0.65} {"id": "55caf3cf72eeaa5ce78d52e1fbae8cb056bc4095a00fa07f0c9a64fb97f87395", "sources": ["arxiv", "semantic_scholar"], "title": "Rethinking Cross-Domain Evaluation for Face Forgery Detection with Semantic Fine-grained Alignment and Mixture-of-Experts", "abstract": "Nowadays, visual data forgery detection plays an increasingly important role in social and economic security with the rapid development of generative models. Existing face forgery detectors still can't achieve satisfactory performance because of poor generalization ability across datasets. The key factor that led to this phenomenon is the lack of suitable metrics: the commonly used cross-dataset AUC metric fails to reveal an important issue where detection scores may shift significantly across data domains. To explicitly evaluate cross-domain score comparability, we propose \\textbf{Cross-AUC}, an evaluation metric that can compute AUC across dataset pairs by contrasting real samples from one dataset with fake samples from another (and vice versa). It is interesting to find that evaluating representative detectors under the Cross-AUC metric reveals substantial performance drops, exposing an overlooked robustness problem. Besides, we also propose the novel framework \\textbf{S}emantic \\textbf{F}ine-grained \\textbf{A}lignment and \\textbf{M}ixture-of-Experts (\\textbf{SFAM}), consisting of a patch-level image-text alignment module that enhances CLIP's sensitivity to manipulation artifacts, and the facial region mixture-of-experts module, which routes features from different facial regions to specialized experts for region-aware forgery analysis. Extensive qualitative and quantitative experiments on the public datasets prove that the proposed method achieves superior performance compared with the state-of-the-art methods with various suitable metrics.", "authors": ["Yuhan Luo", "Tao Chen", "Decheng Liu"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-23", "url": "https://arxiv.org/abs/2604.21478", "pdf_url": "https://arxiv.org/pdf/2604.21478v1", "arxiv_id": "2604.21478", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Yuhan-Luo/Semantic-Fine-grained-Alignment-and-Mixture-of-Experts", "venue": null, "quality_score": 0.65} {"id": "566f4f5f44350f4e0e6a5acac83ecd1af628a006d254a6ee196e364f2df5bbc8", "sources": ["arxiv", "semantic_scholar"], "title": "Teacher-Guided Routing for Sparse Vision Mixture-of-Experts", "abstract": "Recent progress in deep learning has been driven by increasingly large-scale models, but the resulting computational cost has become a critical bottleneck. Sparse Mixture of Experts (MoE) offers an effective solution by activating only a small subset of experts for each input, achieving high scalability without sacrificing inference speed. Although effective, sparse MoE training exhibits characteristic optimization difficulties. Because the router receives informative gradients only through the experts selected in the forward pass, it suffers from gradient blocking and obtains little information from unselected routes. This limited, highly localized feedback makes it difficult for the router to learn appropriate expert-selection scores and often leads to unstable routing dynamics, such as fluctuating expert assignments during training. To address this issue, we propose TGR-MoE: Teacher-Guided Routing for Sparse Vision Mixture-of-Experts, a simple yet effective method that stabilizes router learning using supervision derived from a pretrained dense teacher model. TGR-MoE constructs a teacher router from the teacher's intermediate representations and uses its routing outputs as pseudo-supervision for the student router, suppressing frequent routing fluctuations during training and enabling knowledge-guided expert selection from the early stages of training. Extensive experiments on ImageNet-1K and CIFAR-100 demonstrate that TGR consistently improves both accuracy and routing consistency, while maintaining stable training even under highly sparse configurations.", "authors": ["Masahiro Kada", "Ryota Yoshihashi", "Satoshi Ikehata", "Rei Kawakami", "Ikuro Sato"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-23", "url": "https://arxiv.org/abs/2604.21330", "pdf_url": "https://arxiv.org/pdf/2604.21330v1", "arxiv_id": "2604.21330", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4e580b9eb81de616c03bfbc6e55cf46c21ecac6f426aceb407af2d9ec5494f08", "sources": ["arxiv", "semantic_scholar"], "title": "SparKV: Overhead-Aware KV Cache Loading for Efficient On-Device LLM Inference", "abstract": "Efficient inference for on-device Large Language Models (LLMs) remains challenging due to limited hardware resources and the high cost of the prefill stage, which processes the full input context to construct Key-Value (KV) caches. We present SparKV, an adaptive KV loading framework that combines cloud-based KV streaming with on-device computation. SparKV models the cost of individual KV chunks and decides whether each chunk should be streamed or computed locally, while overlapping the two execution paths to reduce latency. To handle fluctuations in wireless connectivity and edge resource availability, SparKV further refines offline-generated schedules at runtime to rebalance communication and computation costs. Experiments across diverse datasets, LLMs, and edge devices show that SparKV reduces Time-to-First-Token by 1.3$x-5.1x with negligible impact on response quality, while lowering per-request energy consumption by 1.5x to 3.3x, demonstrating its robustness and practicality for real-world on-device deployment.", "authors": ["Hongyao Liu", "Liuqun Zhai", "Junyi Wang", "Zhengru Fang"], "categories": ["cs.NI", "cs.AI", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-23", "url": "https://arxiv.org/abs/2604.21231", "pdf_url": "https://arxiv.org/pdf/2604.21231v2", "arxiv_id": "2604.21231", "doi": "10.1109/jiot.2026.3695763", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE Internet of Things Journal", "quality_score": 0.55} {"id": "15a7575896287527c860db3737c11b2c984e48c6d38912d9f94ebf467a5703c7", "sources": ["arxiv", "semantic_scholar"], "title": "RateQuant: Optimal Mixed-Precision KV Cache Quantization via Rate-Distortion Theory", "abstract": "Large language models cache all previously computed key-value (KV) pairs during generation, and this KV cache grows linearly with sequence length, making it a primary memory bottleneck for serving. Quantizing the KV cache to fewer bits reduces this cost, yet all current quantizers assign the same bit-width to every attention head, ignoring the large variation in head importance. A natural idea is to allocate more bits to important heads and fewer to the rest. We show, however, that such mixed-precision allocation has a hidden pitfall: each quantizer follows a different distortion curve D(b)=alpha*beta^{-b}, and the decay rate beta varies from 3.6 to 5.3 across quantizer designs. Applying one quantizer's distortion model to another inverts the allocation order and makes performance worse than uniform quantization. We call this failure mode distortion model mismatch and propose RateQuant to resolve it. RateQuant fits a per-quantizer distortion model from a small calibration set, then solves the resulting bit-allocation problem in closed form via reverse waterfilling from rate-distortion theory. On Qwen3-8B at 2.5 average bits, calibrated RateQuant reduces KIVI's perplexity from 49.3 to 14.9 (70% reduction) and improves QuaRot by 6.6 PPL. The entire calibration takes 1.6 s on a single GPU and adds zero overhead at inference time.", "authors": ["Fei Zuo", "Zikang Zhou", "Hao Cong", "Xiaoyan Xi", "Ho Fai Leung"], "categories": ["cs.LG", "cs.CL", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-04-22", "url": "https://arxiv.org/abs/2605.06675", "pdf_url": "https://arxiv.org/pdf/2605.06675v1", "arxiv_id": "2605.06675", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d179d517ea3d471ee520d77c3c408969d9fe11bacb26398a4af2eda2865f8e51", "sources": ["arxiv", "semantic_scholar"], "title": "LKV: End-to-End Learning of Head-wise Budgets and Token Selection for LLM KV Cache Eviction", "abstract": "Long-context inference in Large Language Models (LLMs) is bottlenecked by the linear growth of Key-Value (KV) cache memory. Existing KV cache compression paradigms are fundamentally limited by heuristics: heuristic budgeting relies on statistical priors rather than task objectives, causing resource misallocation, while heuristic selection relies on coupled query-key interactions or static inductive biases (e.g., attention sinks). To address this limitation, we introduce LKV (Learned KV Eviction), which formulates KV compression as an end-to-end differentiable optimization problem. LKV integrates LKV-H to learn task-optimized global budgets, and LKV-T to derive intrinsic KV importance without materializing attention matrices. This design bypasses heuristic proxies, strictly aligning compression with task objectives. Extensive evaluations demonstrate that LKV achieves state-of-the-art performance on both LongBench and RULER benchmarks at high compression rates. In particular, on LongBench, LKV achieves near-lossless performance with only 15\\% KV cache retention. Crucially, our analysis identifies learned budgeting as the dominant driver of fidelity, demonstrating that data-driven allocation is essential to overcome the limitations of hand-crafted heuristics.", "authors": ["Enshuai Zhou", "Yifan Hao", "Chao Wang", "Rui Zhang", "Di Huang", "Jiaming Guo", "Xing Hu", "Zidong Du", "Qi Guo", "Yunji Chen"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-22", "url": "https://arxiv.org/abs/2605.06676", "pdf_url": "https://arxiv.org/pdf/2605.06676v1", "arxiv_id": "2605.06676", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "87286d3810122409fce227910062f2e4bc7eef7c9da7c8acbe7a872474ad2fb0", "sources": ["arxiv", "semantic_scholar"], "title": "On Bayesian Softmax-Gated Mixture-of-Experts Models", "abstract": "Mixture-of-experts models provide a flexible framework for learning complex probabilistic input-output relationships by combining multiple expert models through an input-dependent gating mechanism. These models have become increasingly prominent in modern machine learning, yet their theoretical properties in the Bayesian framework remain largely unexplored. In this paper, we study Bayesian mixture-of-experts models, focusing on the ubiquitous softmax-based gating mechanism. Specifically, we investigate the asymptotic behavior of the posterior distribution for three fundamental statistical tasks: density estimation, parameter estimation, and model selection. First, we establish posterior contraction rates for density estimation, both in the regimes with a fixed, known number of experts and with a random learnable number of experts. We then analyze parameter estimation and derive convergence guarantees based on tailored Voronoi-type losses, which account for the complex identifiability structure of mixture-of-experts models. Finally, we propose and analyze two complementary strategies for selecting the number of experts. Taken together, these results provide one of the first systematic theoretical analyses of Bayesian mixture-of-experts models with softmax gating, and yield several theory-grounded insights for practical model design.", "authors": ["Nicola Bariletto", "Huy Nguyen", "Nhat Ho", "Alessandro Rinaldo"], "categories": ["stat.ML", "cs.LG"], "fields_of_study": ["Mathematics", "Computer Science"], "published_date": "2026-04-22", "url": "https://arxiv.org/abs/2604.20551", "pdf_url": "https://arxiv.org/pdf/2604.20551v1", "arxiv_id": "2604.20551", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "afc057cd18a848720641e0ca58eb03084d36e61e87f3501fb0f26b2086dd9175", "sources": ["arxiv", "semantic_scholar"], "title": "Temporally Extended Mixture-of-Experts Models", "abstract": "Mixture-of-Experts models, now popular for scaling capacity at fixed inference speed, switch experts at nearly every token. Once a model outgrows available GPU memory, this churn can render optimizations like offloading and pre-fetching ineffective. We make the case that the options framework in reinforcement learning is a perfect match to tackle this problem, and argue for temporally extended mixture-of-experts layers. Building on the option-critic framework with deliberation costs, we add a controller to each layer that learns when to switch expert sets and which to load. By applying this to gpt-oss-20b with low-rank adapters and a self-distillation reward, our method reduces switch rates from over 50% to below 5% while retaining up to 90% of base-model accuracy on MATH, MMLU, and MMMLU. This shows that even existing pre-trained models can be converted to temporally extended MoEs with lightweight training, with the deliberation cost allowing model trainers to trade off switching rates against capability. We hope this opens a principled path, grounded in the options framework, for memory-efficient serving and continual learning in ever-growing MoE models.", "authors": ["Zeyu Shen", "Peter Henderson"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-22", "url": "https://arxiv.org/abs/2604.20156", "pdf_url": "https://arxiv.org/pdf/2604.20156v1", "arxiv_id": "2604.20156", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "09598b48d6281a64768ac64f4d7f6640c535b18c81092f3db46baaf90b3d16f0", "sources": ["arxiv", "semantic_scholar"], "title": "SAW-INT4: System-Aware 4-Bit KV-Cache Quantization for Real-World LLM Serving", "abstract": "KV-cache memory is a major bottleneck in real-world LLM serving, where systems must simultaneously support latency-sensitive small-batch requests and high-throughput concurrent workloads. Although many KV-cache compression methods improve offline accuracy or compression ratio, they often violate practical serving constraints such as paged memory layouts, regular memory access, and fused attention execution, limiting their effectiveness in deployment. In this work, we identify the minimal set of 4-bit KV-cache quantization methods that remain viable under these constraints. Our central finding is that a simple design--token-wise INT4 quantization with block-diagonal Hadamard rotation--consistently achieves the best accuracy-efficiency trade-off. Across multiple models and benchmarks, this approach recovers nearly all of the accuracy lost by naive INT4, while more complex methods such as vector quantization and Hessian-aware quantization provide only marginal additional gains once serving compatibility is taken into account. To make this practical, we implement a fused rotation-quantization kernel that integrates directly into paged KV-cache layouts and introduces zero measurable end-to-end overhead, matching plain INT4 throughput across concurrency levels. Our results show that effective KV-cache compression is fundamentally a systems co-design problem: under real serving constraints, lightweight block-diagonal Hadamard rotation is a viable method that delivers near-lossless accuracy without sacrificing serving efficiency.", "authors": ["Jinda Jia", "Jisen Li", "Zhongzhu Zhou", "Jung Hwan Heo", "Jue Wang", "Tri Dao", "Shuaiwen Leon Song", "Ben Athiwaratkun", "Chenfeng Xu", "Tianyi Zhang", "Xiaoxia Wu"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-21", "url": "https://arxiv.org/abs/2604.19157", "pdf_url": "https://arxiv.org/pdf/2604.19157v1", "arxiv_id": "2604.19157", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "b55f3714e3706ee1e55f8d23461f73b224c12a2cf2d098d3d5a0ac94f106331d", "sources": ["arxiv", "semantic_scholar"], "title": "SAMoRA: Semantic-Aware Mixture of LoRA Experts for Task-Adaptive Learning", "abstract": "The combination of Mixture-of-Experts (MoE) and Low-Rank Adaptation (LoRA) has shown significant potential for enhancing the multi-task learning capabilities of Large Language Models. However, existing methods face two primary challenges: (1)Imprecise Routing in the current MoE-LoRA method fails to explicitly match input semantics with expert capabilities, leading to weak expert specialization. (2)Uniform weight fusion strategies struggle to provide adaptive update strengths, overlooking the varying complexity of different tasks. To address these limitations, we propose SAMoRA (Semantic-Aware Mixture of LoRA Experts), a novel parameter-efficient fine-tuning framework tailored for task-adaptive learning. Specifically, A Semantic-Aware Router is proposed to explicitly align textual semantics with the most suitable experts for precise routing. A Task-Adaptive Scaling mechanism is designed to regulate expert contributions based on specific task requirements dynamically. In addition, a novel regularization objective is proposed to jointly promote expert specialization and effective scaling. Extensive experiments on multiple multi-task benchmarks demonstrate that SAMoRA significantly outperforms the state-of-the-art methods and holds excellent task generalization capabilities. Code is available at https://github.com/boyan-code/SAMoRA", "authors": ["Boyan Shi", "Wei Chen", "Shuyuan Zhao", "Junfeng Shen", "Shengnan Guo", "Shaojiang Wang", "Huaiyu Wan"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-21", "url": "https://arxiv.org/abs/2604.19048", "pdf_url": "https://arxiv.org/pdf/2604.19048v1", "arxiv_id": "2604.19048", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/boyan-code/SAMoRA", "venue": null, "quality_score": 0.65} {"id": "9fd0f2d5d98f1cc2c5f55b96e02f3498db094a36d60be6973bc9b544ac9e590a", "sources": ["arxiv", "semantic_scholar"], "title": "DASH-KV: Accelerating Long-Context LLM Inference via Asymmetric KV Cache Hashing", "abstract": "The quadratic computational complexity of the standard attention mechanism constitutes a fundamental bottleneck for large language models in long-context inference. While existing KV cache compression methods alleviate memory pressure, they often sacrifice generation quality and fail to address the high overhead of floating-point arithmetic. This paper introduces DASH-KV, an innovative acceleration framework that reformulates attention as approximate nearest-neighbor search via asymmetric deep hashing. Under this paradigm, we design an asymmetric encoding architecture that differentially maps queries and keys to account for their distinctions in precision and reuse characteristics. To balance efficiency and accuracy, we further introduce a dynamic mixed-precision mechanism that adaptively retains full-precision computation for critical tokens. Extensive experiments on LongBench demonstrate that DASH-KV significantly outperforms state-of-the-art baseline methods while matching the performance of full attention, all while reducing inference complexity from O(N^2) to linear O(N).", "authors": ["Jinyu Guo", "Zhihan Zhang", "Jiehui Xie", "Md. Tamim Iqbal", "Dongshen Han", "Lik-Hang Lee", "Sung-Ho Bae", "Jie Zou", "Yang Yang", "Chaoning Zhang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-21", "url": "https://arxiv.org/abs/2604.19351", "pdf_url": "https://arxiv.org/pdf/2604.19351v4", "arxiv_id": "2604.19351", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "4bf5ad019c0d6007cf73a483f2544581c4a7d6e6b9926707837a1b09660fe97b", "sources": ["arxiv", "semantic_scholar"], "title": "Expert Upcycling: Shifting the Compute-Efficient Frontier of Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) has become the dominant architecture for scaling large language models: frontier models routinely decouple total parameters from per-token computation through sparse expert routing. Scaling laws show that under fixed active computation, model quality scales predictably with total parameters, and MoEs realize this by increasing expert count. However, training large MoEs is expensive, as memory requirements and inter-device communication both scale with total parameter count. We propose expert upcycling, a method for progressively expanding MoE capacity by increasing the number of experts during continued pre-training (CPT). Given a trained E-expert model, the upcycling operator constructs an mE-expert model through expert duplication and router extension while holding top-K routing fixed, preserving per-token inference cost. Duplication provides a warm initialization: the expanded model inherits the source checkpoint's learned representations, starting from a substantially lower loss than random initialization. Subsequent CPT then breaks the symmetry among duplicated experts to drive specialization. We formalize the upcycling operator and develop a theoretical framework decomposing the quality gap into a capacity term and an initialization term. We further introduce utility-based expert selection, which uses gradient-based importance scores to guide non-uniform duplication, more than tripling gap closure when CPT is limited. In our 7B-13B total parameter experiments, the upcycled model matches the fixed-size baseline on validation loss while saving 32% of GPU hours. Comprehensive ablations across model scales, activation ratios, MoE architectures, and training budgets yield a practical recipe for deploying expert upcycling, establishing it as a principled, compute-efficient alternative to training large MoE models from scratch.", "authors": ["Chaitanya Dwivedi", "Binxuan Huang", "Himanshu Gupta", "Pratik Jayarao", "Neeraj Varshney", "Bing Yin"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-21", "url": "https://arxiv.org/abs/2604.19835", "pdf_url": "https://arxiv.org/pdf/2604.19835v2", "arxiv_id": "2604.19835", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "14baf7547811cc8ad26e52b2f5ee178dc96f4c7e46b9e7e7a150b3f59e56cd75", "sources": ["arxiv", "semantic_scholar"], "title": "GRASPrune: Global Gating for Budgeted Structured Pruning of Large Language Models", "abstract": "Large language models (LLMs) are expensive to serve because model parameters, attention computation, and KV caches impose substantial memory and latency costs. We present GRASPrune, a structured pruning framework applied after pretraining that jointly prunes FFN channels and KV head groups under a single global budget. Instead of learning importance scores without constraints and applying the budget only after training, GRASPrune learns lightweight gate scores with a projected straight-through estimator that enforces a hard mask satisfying the budget at every step while keeping the backbone weights frozen. After the mask is fixed, we calibrate scaling factors on the retained units to mitigate scale mismatch caused by pruning, and fold these factors into the pruned weights to obtain a smaller dense checkpoint with no extra parameters at inference. On LLaMA-2-7B, GRASPrune removes 50% of parameters and achieves 12.18 perplexity on WikiText-2 while maintaining competitive average zero-shot accuracy on five benchmarks, using four epochs on 512 unlabeled calibration sequences on a single NVIDIA A100 80GB GPU without any full model fine-tuning.", "authors": ["Ziyang Wang", "Jiangfeng Xiao", "Chuan Xiao", "Ruoxiang Li", "Rui Mao", "Jianbin Qin"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-21", "url": "https://arxiv.org/abs/2604.19398", "pdf_url": "https://arxiv.org/pdf/2604.19398v1", "arxiv_id": "2604.19398", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "d97b7228a5e6972e30bf0371705bce4431a378635a81fcd6177d9e358b73dc45", "sources": ["arxiv", "semantic_scholar"], "title": "MoE-nD: Per-Layer Mixture-of-Experts Routing for Multi-Axis KV Cache Compression", "abstract": "KV cache memory is the dominant bottleneck for long-context LLM inference. Existing compression methods each act on a single axis of the four-dimensional KV tensor -- token eviction (sequence), quantization (precision), low-rank projection (head dimension), or cross-layer sharing -- but apply the same recipe to every layer. We show that this homogeneity leaves accuracy on the table: different layers respond very differently to each compression operation, and the optimal per-layer mix of eviction and quantization is far from uniform. We propose MoE-nD, a mixture-of-experts framework that routes each layer to its own (eviction-ratio, K-bits, V-bits) tuple under a global memory budget. An offline-calibrated greedy solver chooses the routing that minimizes predicted quality loss; at inference time, per-layer heterogeneous eviction and quantization are applied jointly through a single attention patch. On a 4-task subset of LongBench-v1 (16k inputs, n=50 per task, adapted reasoning-model protocol; see section Experiments), MoE-nD's hetero variant matches our uncompressed 1.9~GB baseline at 14x compression (136~MB) while every other compressed baseline we tested (1d, 2d_uniform, 2d) at comparable or smaller memory stays under 8/100. The gains hold on AIME reasoning benchmarks (+6 to +27 pts over the strongest per-layer-quantization baseline across eight configurations). Two null results -- MATH-500 and LongBench's TREC -- share a principled cause (short inputs, solver picks keep=1.0 on most layers), cleanly characterizing when per-layer eviction routing has headroom to help.", "authors": ["Libo Sun", "Peixiong He", "Po-Wei Harn", "Xiao Qin"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-20", "url": "https://arxiv.org/abs/2604.17695", "pdf_url": "https://arxiv.org/pdf/2604.17695v1", "arxiv_id": "2604.17695", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "944bb7c1a2a3c856e511fd3fdd193924734ced8b18c72cdc0f3ef09e32d03dd1", "sources": ["arxiv", "semantic_scholar"], "title": "Evolutionary Negative Module Pruning for Better LoRA Merging", "abstract": "Merging multiple Low-Rank Adaptation (LoRA) experts into a single backbone is a promising approach for efficient multi-task deployment. While existing methods strive to alleviate interference via weight interpolation or subspace alignment, they rest upon the implicit assumption that all LoRA matrices contribute constructively to the merged model. In this paper, we uncover a critical bottleneck in current merging paradigms: the existence of $\\textit{negative modules}$ -- specific LoRA layers that inherently degrade global performance upon merging. We propose $\\textbf{E}$volutionary $\\textbf{N}$egative $\\textbf{M}$odule $\\textbf{P}$runing ($\\textbf{ENMP}$), a plug-and-play LoRA pruning method to locate and exclude these detrimental modules prior to merging. By leveraging an evolutionary search strategy, ENMP effectively navigates the discrete, non-differentiable landscape of module selection to identify optimal pruning configurations. Extensive evaluations demonstrate that ENMP consistently boosts the performance of existing merging algorithms, achieving a new state-of-the-art across both language and vision domains. Code is available at https://github.com/CaoAnda/ENMP-LoRAMerging.", "authors": ["Anda Cao", "Zhuo Gou", "Yi Wang", "Kaixuan Chen", "Yu Wang", "Can Wang", "Mingli Song", "Jie Song"], "categories": ["cs.AI", "cs.CL", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-20", "url": "https://arxiv.org/abs/2604.17753", "pdf_url": "https://arxiv.org/pdf/2604.17753v1", "arxiv_id": "2604.17753", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/CaoAnda/ENMP-LoRAMerging", "venue": null, "quality_score": 0.65} {"id": "4cc7b39a586590a37a12212890b059bc9748fb4600d52d5c57413b9546ad8c2b", "sources": ["arxiv", "semantic_scholar"], "title": "How Much Cache Does Reasoning Need? Depth-Cache Tradeoffs in KV-Compressed Transformers", "abstract": "The key-value (KV) cache is the dominant memory bottleneck during Transformer inference, yet little is known theoretically about how aggressively it can be compressed before multi-step reasoning degrades. We study this through $k$-hop pointer chasing on $n$ tokens under a shared KV cache of size $s$, attention dimension $m$, $H$ heads, $p$-bit precision, and a locality-respecting cache controller (satisfied by all standard KV-compression methods). We give three results. (1) Product depth lower bound (conjectured). We conjecture that any such Transformer ($n \\geq 4k$, $s \\leq \\sqrt{n}/4$) requires depth $L = Ω(\\lceil k/s \\rceil \\cdot \\lceil \\log_2 n/(Hmp) \\rceil)$, and isolate the sole remaining gap as a probabilistic step on the joint distribution of cache trace and pointer chain. Unconditionally, we prove a matching upper bound $L = O(\\min(k, \\lceil k/s \\rceil \\log s) \\cdot \\log n/(mp))$ via windowed pointer doubling, and a max-bound $L = Ω(\\max(\\lceil k/s \\rceil, \\log n/(Hmp)))$. Closing the conjecture amounts to upgrading max to product. (2) Bandwidth barrier. The product bound binds only when $Hmp \\lesssim \\log n$. Any lower bound provable via per-window distinguishability counting -- including reachability, bandwidth, and combinations -- cannot exceed $\\lceil k/s \\rceil$ once $Hmp \\geq \\log_2 n$. Breaking this requires lifting unconditional communication-complexity bounds for pointer chasing to Cache-Transformer depth. (3) Adaptive vs oblivious error scaling. Under random cache over $T = \\lceil \\log_2 k \\rceil$ doubling stages, oblivious caches give $\\Pr[\\mathcal{E}] \\leq (s/(n-T))^T + 2T^3/n$ (exponential in $T$), while adaptive locality-respecting caches achieve $\\Pr[\\mathcal{E}] = s/n$ exactly, independent of $T$. The $Ω((n/s)^{T-1})$ separation explains why heavy-hitter eviction empirically dominates random eviction for multi-hop reasoning.", "authors": ["Xiao Wang"], "categories": ["cs.LG", "cs.AI", "cs.CC"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-20", "url": "https://arxiv.org/abs/2604.17935", "pdf_url": "https://arxiv.org/pdf/2604.17935v1", "arxiv_id": "2604.17935", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e3309643bc3fcd71d8e4043679f3ad0cc54123a6bb8495797bb20bdbb6ad3099", "sources": ["arxiv", "semantic_scholar"], "title": "Soft Label Pruning and Quantization for Large-Scale Dataset Distillation", "abstract": "Large-scale dataset distillation requires storing auxiliary soft labels that can be 30-40x larger on ImageNet-1K and 200x larger on ImageNet-21K than the condensed images, undermining the goal of dataset compression. We identify two fundamental issues necessitating such extensive labels: (1) insufficient image diversity, where high within-class similarity in synthetic images requires extensive augmentation, and (2) insufficient supervision diversity, where limited variety in supervisory signals during training leads to performance degradation at high compression rates. To address these challenges, we propose Label Pruning and Quantization for Large-scale Distillation (LPQLD). We enhance image diversity via class-wise batching and batch-normalization supervision during synthesis. For supervision diversity, we introduce Label Pruning with Dynamic Knowledge Reuse to improve label-per-augmentation diversity, and Label Quantization with Calibrated Student-Teacher Alignment to improve augmentation-per-image diversity. Our approach reduces soft label storage by 78x on ImageNet-1K and 500x on ImageNet-21K while improving accuracy by up to 7.2% and 2.8%, respectively. Extensive experiments validate the superiority of LPQLD across different network architectures and dataset distillation methods. Code is available at https://github.com/he-y/soft-label-pruning-quantization-for-dataset-distillation.", "authors": ["Xiao Lingao", "Yang He"], "categories": ["cs.CV", "cs.AI", "cs.LG"], "fields_of_study": ["Medicine", "Computer Science"], "published_date": "2026-04-20", "url": "https://arxiv.org/abs/2604.18135", "pdf_url": "https://arxiv.org/pdf/2604.18135v1", "arxiv_id": "2604.18135", "doi": "10.1109/TPAMI.2026.3664488", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/he-y/soft-label-pruning-quantization-for-dataset-distillation", "venue": "IEEE Transactions on Pattern Analysis and Machine Intelligence", "quality_score": 0.85} {"id": "7b4a7be9493a7453dc6a9ceefef97e09a7b065ae832c493c599f7400da41c581", "sources": ["arxiv", "semantic_scholar"], "title": "Six Llamas: Comparative Religious Ethics Through LoRA-Adapted Language Models", "abstract": "We present Six Llamas, a comparative study examining whether large language models fine-tuned on distinct religious corpora encode systematically different patterns of ethical reasoning. Six variants of Meta-Llama-3.1-8B are constructed: one unmodified control and five LoRA-adapted models trained exclusively on the sacred and theological texts of Christianity, Islam, Judaism, Hinduism, or Buddhism. All six models are probed with an identical battery of 17 standardized ethical prompts spanning moral dilemmas, game-theoretic scenarios, public policy questions, and moral-psychological self-assessments. To assess robustness and reproducibility, we implement a multi-temperature sampling design spanning ten temperature settings. We compute response consistency metrics, pairwise inter-model agreement rates, temperature sensitivity coefficients across four prompt domains, and run-to-run stability analyses. Findings show that LoRA-adapted models produce ethical reasoning patterns that are (a) systematically differentiated from the base model, (b) consistent with the moral logics of their training traditions, (c) structured along interpretable dimensions in moral-philosophical space, (d) core ethical positions remain stable across temperature variations for high-consensus dilemmas. The Trolley Problem achieves 100% consistency across all models and temperatures, while (e) tradition-specific divergence intensifies at higher temperatures in morally contested domains, and (f) the base model exhibits the highest overall response consistency (mean 88.3%), suggesting LoRA adaptation introduces both tradition-specific signal and increased sampling sensitivity. The study offers a proof-of-concept for the condensate comparative method using differentially trained language models as instruments for cultural and ethical analysis and identifies specific criteria for falsification and planned extensions.", "authors": ["Chad Coleman", "W. Russell Neuman", "Manan Shah", "Ali Dasdan", "Matthew Crispi", "Morris Chiang", "Zack Leitman", "Mustafa Poonawala"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-20", "url": "https://arxiv.org/abs/2604.18404", "pdf_url": "https://arxiv.org/pdf/2604.18404v1", "arxiv_id": "2604.18404", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "535f207b12e3c5db6d356d572ff15bcfdce5c0c227949ebf7a292ee113dd989e", "sources": ["arxiv", "semantic_scholar"], "title": "Domain-Specialized Object Detection via Model-Level Mixtures of Experts", "abstract": "Mixture-of-Experts (MoE) models provide a structured approach to combining specialized neural networks and offer greater interpretability than conventional ensembles. While MoEs have been successfully applied to image classification and semantic segmentation, their use in object detection remains limited due to challenges in merging dense and structured predictions. In this work, we investigate model-level mixtures of object detectors and analyze their suitability for improving performance and interpretability in object detection. We propose an MoE architecture that combines YOLO-based detectors trained on semantically disjoint data subsets, with a learned gating network that dynamically weights expert contributions. We study different strategies for fusing detection outputs and for training the gating mechanism, including balancing losses to prevent expert collapse. Experiments on the BDD100K dataset demonstrate that the proposed MoE consistently outperforms standard ensemble approaches and provides insights into expert specialization across domains, highlighting model-level MoEs as a viable alternative to traditional ensembling for object detection. Our code is available at https://github.com/KASTEL-MobilityLab/mixtures-of-experts/.", "authors": ["Svetlana Pavlitska", "Malte Stüven", "Beyza Keskin", "J. Marius Zöllner"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-20", "url": "https://arxiv.org/abs/2604.18256", "pdf_url": "https://arxiv.org/pdf/2604.18256v1", "arxiv_id": "2604.18256", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/KASTEL-MobilityLab/mixtures-of-experts/", "venue": null, "quality_score": 0.65} {"id": "158dc6ca943fb8437ce10b495f2a7f99848c5c18a831e6c4e8485e87ed02b799", "sources": ["arxiv", "semantic_scholar"], "title": "Towards Joint Quantization and Token Pruning of Vision-Language Models", "abstract": "Deploying Vision-Language Models (VLMs) under aggressive low-bit inference remains challenging because inference cost is dominated by the long visual-token prefix during prefill and the growing KV cache during autoregressive decoding. Token pruning and low-bit quantization are complementary for reducing these costs, yet naive stage-wise combinations are often brittle due to a mismatch between quantization calibration and pruning execution. We present a collaborative quantization-and-pruning framework that unifies low-bit inference and deterministic visual-token pruning in a single deployable pipeline. The framework introduces the \\textbf{Q}uantization \\textbf{U}nified \\textbf{O}ffline \\textbf{T}oken \\textbf{A}llocator (\\textbf{QUOTA}), which converts low-bit calibration signals into a layer-wise token allocation schedule and materializes it as a pruning recipe. Token importance is evaluated under deployed W4A4 operators with a quantized KV cache by combining activation magnitude, attention cues, and an explicit low-bit risk signal, enabling consistent budgeted top-$k$ selection. Experiments on standard VLM benchmarks show improved robustness over stage-wise baselines under the same low-bit regime, achieving 95.65\\% average retention while retaining only 30\\% of visual tokens, compared with about 94.3\\% retention for representative stage-wise combinations. The code will be released.", "authors": ["Xinqing Li", "Xin He", "Xindong Zhang", "Ming-Ming Cheng", "Lei Zhang", "Yun Liu"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-19", "url": "https://arxiv.org/abs/2604.17320", "pdf_url": "https://arxiv.org/pdf/2604.17320v1", "arxiv_id": "2604.17320", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "2cc97ea717fd897bfe3ce60c9770134cdb2c18324a5a46980264d32b03298319", "sources": ["arxiv", "semantic_scholar"], "title": "Predictive Multi-Tier Memory Management for KV Cache in Large-Scale GPU Inference", "abstract": "Key-value (KV) cache memory management is the primary bottleneck limiting throughput and cost-efficiency in large-scale GPU inference serving. Current systems suffer from three compounding inefficiencies: (1) the absence of unified KV cache sizing across all attention architectures--particularly multi-head latent attention (MLA), which is unsupported in general-purpose frameworks, resulting in up to 57x memory over-provisioning; (2) confinement of KV cache to a single memory tier (GPU HBM) despite the availability of a rich hierarchy spanning CPU DRAM, CXL-attached memory, NVMe via GPUDirect Storage, RDMA fabric, and parallel filesystems; and (3) reactive eviction policies that discard reusable state, forcing redundant recomputation. We present a unified system that addresses all three problems. Our architecture-variant-aware sizing engine computes exact memory requirements per attention type, enabling up to 7.4x higher batch sizes. A six-tier memory hierarchy extends effective KV cache capacity from 40 GB to over 38 TB per node while maintaining sub-millisecond time-to-first-token (TTFT) for hot entries. A Bayesian reuse predictor with Beta conjugate priors over 16 (block-type, transition-type) pairs achieves 70-84% cache hit rates, combined with EMA-scored head-granular eviction and RoPE-aware prefetching. Component-level validation on trace replay using ShareGPT, LMSYS-Chat-1M, and agentic workloads demonstrates 70-84% cache hit rates. Analytical projections combining validated component behavior with published hardware specifications indicate 1.4-2.1x projected TTFT reduction, 1.7-2.9x throughput improvement, and 47% cost reduction compared to state-of-the-art baselines.", "authors": ["Sanjeev Rao Ganjihal"], "categories": ["cs.AR", "cs.AI", "cs.DC", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-19", "url": "https://arxiv.org/abs/2604.26968", "pdf_url": "https://arxiv.org/pdf/2604.26968v1", "arxiv_id": "2604.26968", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "3d1f5d001658da4a52772636eb74e595d11eddff1c7b5d585dc5ca3684b2f43b", "sources": ["arxiv", "semantic_scholar"], "title": "Bit-Flip Vulnerability of Shared KV-Cache Blocks in LLM Serving Systems", "abstract": "Rowhammer on GPU DRAM has enabled adversarial bit flips in model weights; shared KV-cache blocks in LLM serving systems present an analogous but previously unexamined target. In vLLM's Prefix Caching, these blocks exist as a single physical copy without integrity protection. Using software fault injection under ideal bit targeting, we characterize worst-case severity and identify three properties: (1) Silent divergence - 13 of 16 BF16 bit positions produce coherent but altered outputs, indistinguishable from legitimate responses without a clean baseline. (2) Selective propagation - only requests sharing the targeted prefix are affected. (3) Persistent accumulation - no temporal decay occurs, so cumulative damage grows linearly with subsequent requests. Together, these constitute a threat profile distinct from weight corruption: silent divergence and selective propagation enable detection evasion; persistent accumulation then proceeds unchecked, yielding damage amplification bounded only by how long the block remains cached. A checksum-based countermeasure detects any single-bit corruption at scheduling time, bounding cumulative damage to one batch independent of the block's cache lifetime, with negligible overhead. These results argue for integrity protection of prefix blocks before end-to-end exploitation is demonstrated.", "authors": ["Yuji Yamamoto", "Satoshi Matsuura"], "categories": ["cs.CR", "cs.AR", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-19", "url": "https://arxiv.org/abs/2604.17249", "pdf_url": "https://arxiv.org/pdf/2604.17249v2", "arxiv_id": "2604.17249", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "859db27e02a0753772942b853209312b85e46debae8cbaa6f9b1f48bb63c93e4", "sources": ["arxiv", "semantic_scholar"], "title": "MoVE: Translating Laughter and Tears via Mixture of Vocalization Experts in Speech-to-Speech Translation", "abstract": "Recent Speech-to-Speech Translation (S2ST) systems achieve strong semantic accuracy yet consistently strip away non-verbal vocalizations (NVs), such as laughter and crying that convey pragmatic intent, which severely limits real-world utility. We address this via three contributions. First, we propose a synthesis pipeline for building scalable expressive datasets to overcome the data scarcity limitation. Second, we propose MoVE, a Mixture-of-LoRA-Experts architecture with expressive-specialized adapters and a soft-weighting router that blends experts for capturing hybrid expressive states. Third, we show pretrained AudioLLMs enable striking data efficiency: 30 minutes of curated data is enough for strong performance. On English-Chinese S2ST, while comparing with strong baselines, MoVE reproduces target NVs in 76% of cases and achieves the highest human-rated naturalness and emotional fidelity among all compared systems, where existing S2ST systems preserve at most 14% of NVs.", "authors": ["Szu-Chi Chen", "I-Ning Tsai", "Yi-Cheng Lin", "Sung-Feng Huang", "Hung-yi Lee"], "categories": ["cs.CL", "cs.AI", "cs.SD", "eess.AS"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-04-19", "url": "https://arxiv.org/abs/2604.17435", "pdf_url": "https://arxiv.org/pdf/2604.17435v1", "arxiv_id": "2604.17435", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "a0ea47cf6f200cf6028fc80134c311b7f04bf507c4c0c0b909d205a05470b913", "sources": ["arxiv", "semantic_scholar"], "title": "HieraSparse: Hierarchical Semi-Structured Sparse KV Attention", "abstract": "The deployment of long-context Large Language Models (LLMs) poses significant challenges due to the intense computational cost of self-attention and the substantial memory overhead of the Key-Value Cache (KV Cache). In this paper, we introduce HieraSparse, a hierarchical KV Cache compression framework with acceleration kernels that leverage GPU sparse tensor cores to speed up semi-structured KV Cache attention for both the prefill and decode phases. With the hierarchical design, our method allows for a flexible quality-sparsity trade-off and successfully converts sparsity into efficiency. Compared to the state-of-the-art decode method that utilizes unstructured sparsity, HieraSparse achieves $\\mathbf{1.2\\times}$ KV compression ratio and $\\mathbf{4.57\\times}$ attention speedup at the same sparsity level. Furthermore, we extended the semi-structured KV Cache pruning to the prefill stage, which demonstrated up to $\\mathbf{1.85\\times}$ attention speedup at the highest sparsity. Lastly, we evaluate the generation quality of HieraSparse with a simple magnitude-based pruning method, and the results show that $\\mathbf{1.37\\times}$ prefill speedup and $\\mathbf{1.77\\times}$ decode speedup can be achieved without significant quality drop. The codebase can be found at https://github.com/psl-ntu/HieraSparse.", "authors": ["Haoxuan Wang", "Chen Wang"], "categories": ["cs.DC", "cs.AR"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-18", "url": "https://arxiv.org/abs/2604.16864", "pdf_url": "https://arxiv.org/pdf/2604.16864v1", "arxiv_id": "2604.16864", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/psl-ntu/HieraSparse", "venue": null, "quality_score": 0.65} {"id": "202cadd1a6aebb28f9d7d67988c10bb22a2d8aae4d312d8bdf452787c892ebd2", "sources": ["arxiv", "semantic_scholar"], "title": "Graph-Guided Adaptive Channel Elimination for KV Cache Compression", "abstract": "Large Language Models have revolutionized natural language processing, achieving unprecedented success across a vast range of tasks. However, their practical application in long-context scenarios is severely hampered by the formidable memory footprint of the Key-Value cache. While channel pruning has emerged as a promising compression strategy, existing methods evaluate channel importance in isolation, fundamentally ignoring the inter-channel interactions that collectively dictate model performance. This oversight leads to suboptimal pruning decisions. To address this, we introduce \\textbf{GRACE} (\\textbf{GR}aph-guided \\textbf{A}daptive \\textbf{C}hannel \\textbf{E}limination), a novel framework that reframes KV cache compression as a graph-based optimization problem. GRACE models channels as nodes and their interactions as weighted edges, enabling the identification of a near-optimal channel subset for pruning by minimizing the reconstruction error of the attention weight matrix. Furthermore, GRACE incorporates an adaptive protection mechanism that shields salient key channels from removal, ensuring a robust autoregressive decoding process. Extensive experiments show that GRACE can reduce KV cache size by 60\\% with negligible performance degradation, consistently outperforming the state-of-the-art method.", "authors": ["Enwei Tong", "Yao Zhu", "Yuanchao Bai", "Kai Wang", "Xianming Liu", "Xiangyang Ji"], "categories": ["eess.SP"], "fields_of_study": ["Engineering"], "published_date": "2026-04-18", "url": "https://arxiv.org/abs/2604.16983", "pdf_url": "https://arxiv.org/pdf/2604.16983v1", "arxiv_id": "2604.16983", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.35} {"id": "e5695158bda68c82d5fcd87f732cca08949abdfb6cbab718ec443e10592475e0", "sources": ["arxiv", "semantic_scholar"], "title": "The Illusion of Equivalence: Systematic FP16 Divergence in KV-Cached Autoregressive Inference", "abstract": "KV caching is a ubiquitous optimization in autoregressive transformer inference, long presumed to be numerically equivalent to cache-free computation. This assumption fails under standard FP16 precision: cache-ON and cache-OFF execution paths employ different floating-point accumulation orderings which, due to FP16 non-associativity, produce a deterministic divergence in decoded token sequences. Across three open-weight models (LLaMA-2-7B, Mistral-7B-v0.3, Gemma-2-2B) evaluated on GSM8K, we observe a 100\\% token divergence rate across all sampling strategies, including greedy decoding, which rules out sampling randomness as a cause, and also with cache-ON yielding higher accuracy in 8 of 9 conditions, where the accuracy difference serves as an indicator that the divergence direction is systematic rather than random. Controlled FP32 falsification reduces divergence by eight orders of magnitude, eliminates token flips, and drops the flip rate to exactly 0.0\\%, confirming FP16 non-associativity as the sole causal driver. Layer-wise drift profiling reveals architecturally predictable propagation patterns: models using Grouped-Query Attention exhibit sharp divergence at the first layer, while Gemma's larger head dimension and sliding window attention produce uniform accumulation across all layers. Finally, activation patching of the entire residual stream fails to recover the cache-free trajectory, localizing the causal variable to the stateful KV cache. These findings establish that FP16 KV cache inference is fundamentally non-equivalent to recomputation and provide a mechanistic framework for understanding numerical instability in modern LLM inference systems.", "authors": ["Ranjith Chodavarapu", "Lei Xu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-16", "url": "https://arxiv.org/abs/2604.15409", "pdf_url": "https://arxiv.org/pdf/2604.15409v1", "arxiv_id": "2604.15409", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3493} {"id": "a77969075b58e608a7413c17a31718e8aa89e32d39277b2f865d4061d97bfa06", "sources": ["arxiv", "semantic_scholar"], "title": "Dispatch-Aware Ragged Attention for Pruned Vision Transformers", "abstract": "Token pruning methods for Vision Transformers (ViTs) promise quadratic reductions in attention FLOPs by dropping uninformative patches. Yet standard variable-length attention APIs -- including FlashAttention-2's varlen and PyTorch's NestedTensor SDPA -- fail to translate these savings into proportional wall-clock gains at the short post-pruning sequence lengths typical of ViTs ($\\leq$197 tokens). We identify a dispatch-overhead bottleneck: at these lengths, host-side kernel dispatch consumes ${\\sim}$50\\,$μ$s regardless of workload, exceeding the actual GPU compute time at moderate-to-high pruning rates. We present a lightweight bidirectional Triton attention kernel whose dispatch floor is ${\\sim}$24\\,$μ$s -- roughly 2.17$\\times$ lower than FlashAttention-2 varlen -- allowing pruning savings to become visible in wall-clock time. Integrated into a complete pack-attend-unpack pipeline and evaluated on an NVIDIA RTX 4000 Ada Generation GPU, our system achieves 1.88$\\times$ end-to-end throughput over padded PyTorch SDPA at standard 224$\\times$224 inputs, scaling to 2.51$\\times$ at 384$\\times$384. Against FlashAttention-2 varlen -- the strongest baseline -- our kernel delivers 9-12\\% higher throughput at serving batch sizes (BS=1-4), and 2.17$\\times$ lower kernel latency at 80\\% token pruning. Numerical correctness is verified with max absolute logit difference $<$0.004 and bit-exact top-1 predictions.", "authors": ["Seifeldin Abdellatif", "Ahmad Almasri"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-16", "url": "https://arxiv.org/abs/2604.15408", "pdf_url": "https://arxiv.org/pdf/2604.15408v2", "arxiv_id": "2604.15408", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3493} {"id": "c12ba085126bb19f4fab5642a6d2bede59b56436b172294c944991f85470b666", "sources": ["arxiv", "semantic_scholar"], "title": "Geometric Routing Enables Causal Expert Control in Mixture of Experts", "abstract": "Sparse Mixture-of-Experts (MoE) models scale parameters while fixing active computation per token, but the specialization of individual experts remains opaque. In a companion paper we showed that routing topology is quality-neutral: five structurally different configurations converge to statistically equivalent language modeling quality. Here we show that expert identity is nonetheless causally meaningful: individual rank-1 experts are monosemantic by construction, and cosine-similarity routing in a low-dimensional metric space makes their specialization directly inspectable. We present four lines of evidence. First, projecting expert output vectors through the unembedding matrix yields a Semantic Dictionary: 15% of experts are monosemantic specialists spanning 10 categories (temporal, geographic, cardinal, discourse, emotional, financial, military, scientific). Second, routing exhibits a frequency-to-syntax gradient: early layers separate tokens by word frequency, deeper layers by syntactic class (Zipf-confound controls, all $p < 0.001$). Third, causal interventions confirm these labels: steering toward a temporal expert's centroid increases P(temporal) by +321% (median across 44 prompts); suppressing a geographic expert drops P(geographic) by -23%; rewriting an expert's output vector halves target-category probability, and effects compose additively across layers. Fourth, the interventions are not unique to cosine routing: linear routers support comparable steering, but only cosine routing provides geometric transparency -- expert specialization is readable directly from the centroid matrix. MoE expert-level specialization is a first-class interpretability primitive: architecturally monosemantic, causally validated, and controllable at inference with zero overhead.", "authors": ["Ivan Ternovtsii", "Yurii Bilak"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-15", "url": "https://arxiv.org/abs/2604.14434", "pdf_url": "https://arxiv.org/pdf/2604.14434v1", "arxiv_id": "2604.14434", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3485} {"id": "188d979b73119021af4835fed38b86e7ea88d7c79ad04b41645cee6c7771f55d", "sources": ["arxiv", "semantic_scholar"], "title": "ART: Attention Run-time Termination for Efficient Large Language Model Decoding", "abstract": "Long-context decoding in Large Language Models (LLMs) is constrained by the cost of accessing and processing the Key-Value (KV) cache. Despite the evidence that attention outputs depend jointly on keys and values, most existing KV management methods rely on key-only pruning, as incorporating values incurs prohibitive additional overhead. In this paper, we propose Attention Run-time Termination (ART), a lightweight run-time mechanism that tracks accumulated attention outputs during kernel execution and terminates subsequent KV block accesses once further contributions become negligible. Rather than replacing KV selection, ART dynamically terminates redundant KV traversal on top of existing dense or sparse attention policies. We introduce a stability-based criterion that monitors both magnitude and directional changes of intermediate attention outputs, and provide a theoretical characterization of the resulting truncation error. Experiments on LongBench and RULER Needle-in-a-Haystack tasks show that ART increases the generation throughput of existing KV-cache methods by up to 20%, without compromising the quality of the results.", "authors": ["Chen Qiu", "Guozhong Li", "Cristian McGee", "Aritra Dutta", "Panos Kalnis"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-15", "url": "https://arxiv.org/abs/2606.00024", "pdf_url": "https://arxiv.org/pdf/2606.00024v2", "arxiv_id": "2606.00024", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3485} {"id": "e8074ce7501acb1df0cdf17d52da8641dcfe2259cfef9e8edae5b0cc682aff93", "sources": ["arxiv", "semantic_scholar"], "title": "KV Packet: Recomputation-Free Context-Independent KV Caching for LLMs", "abstract": "Large Language Models (LLMs) rely heavily on Key-Value (KV) caching to minimize inference latency. However, standard KV caches are context-dependent: reusing a cached document in a new context requires recomputing KV states to account for shifts in attention distribution. Existing solutions such as CacheBlend, EPIC, and SAM-KV mitigate this issue by selectively recomputing a subset of tokens; however, they still incur non-negligible computational overhead (FLOPs) and increased Time-to-First-Token (TTFT) latency. In this paper, we propose KV Packet, a recomputation-free cache reuse framework that treats cached documents as immutable ``packets'' wrapped in light-weight trainable soft-token adapters, which are trained via self-supervised distillation to bridge context discontinuities. Experiments on Llama-3.1 and Qwen2.5 demonstrate that the proposed KV Packet method achieves near-zero FLOPs and lower TTFT than recomputation-based baselines, while retaining F1 scores comparable to those of the full recomputation baseline.", "authors": ["Chuangtao Chen", "Grace Li Zhang", "Xunzhao Yin", "Cheng Zhuo", "Bing Li", "Ulf Schlichtmann"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-14", "url": "https://arxiv.org/abs/2604.13226", "pdf_url": "https://arxiv.org/pdf/2604.13226v2", "arxiv_id": "2604.13226", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3478} {"id": "32da91b91c77332e072107884e57c07d2e5adf9e50641274ad5aab9d3a9c68a1", "sources": ["arxiv", "semantic_scholar"], "title": "RetentiveKV: State-Space Memory for Uncertainty-Aware Multimodal KV Cache Eviction", "abstract": "Multimodal Large Language Models face severe challenges in computational efficiency and memory consumption due to the substantial expansion of the visual KV cache when processing long visual contexts. Existing KV cache compression methods typically rely on the \"persistence of importance\" hypothesis to prune tokens. However, this approach proves fragile in multimodal settings due to two key issues: 1) Visual tokens display \"deferred importance,\" initially exhibiting low salience but becoming pivotal during later decoding, which can lead to premature eviction. 2) Discrete pruning disrupts the inherent spatial continuity of visual cues. To address these challenges, we propose RetentiveKV, an entropy-driven KV cache optimization method that reformulates KV eviction from \"discrete context truncation\" to \"continuous memory evolution\" based on State Space Models. Our method leverages information entropy to quantify the information potential of low-attention tokens and integrates tokens scheduled for eviction into a continuous state space through entropy-guided state transitions, enabling their dynamic reactivation when semantic relevance arises during subsequent decoding. Extensive experiments on multimodal benchmarks demonstrate that RetentiveKV achieves 5.0 times KV cache compression and 1.5 times decoding acceleration.", "authors": ["Sihao Liu", "YuFan Xiong", "Zhonghua Jiang", "Zhaode Wang", "chengfei lv Shengyu Zhang"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-14", "url": "https://arxiv.org/abs/2605.04075", "pdf_url": "https://arxiv.org/pdf/2605.04075v1", "arxiv_id": "2605.04075", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3478} {"id": "250d618f444b25194b1d614c4452b160d50a97b36f468ad705875b94234b2399", "sources": ["arxiv", "semantic_scholar"], "title": "Nemotron 3 Super: Open, Efficient Mixture-of-Experts Hybrid Mamba-Transformer Model for Agentic Reasoning", "abstract": "We describe the pre-training, post-training, and quantization of Nemotron 3 Super, a 120 billion (active 12 billion) parameter hybrid Mamba-Attention Mixture-of-Experts model. Nemotron 3 Super is the first model in the Nemotron 3 family to 1) be pre-trained in NVFP4, 2) leverage LatentMoE, a new Mixture-of-Experts architecture that optimizes for both accuracy per FLOP and accuracy per parameter, and 3) include MTP layers for inference acceleration through native speculative decoding. We pre-trained Nemotron 3 Super on 25 trillion tokens followed by post-training using supervised fine tuning (SFT) and reinforcement learning (RL). The final model supports up to 1M context length and achieves comparable accuracy on common benchmarks, while also achieving up to 2.2x and 7.5x higher inference throughput compared to GPT-OSS-120B and Qwen3.5-122B, respectively. Nemotron 3 Super datasets, along with the base, post-trained, and quantized checkpoints, are open-sourced on HuggingFace.", "authors": [" NVIDIA", " :", "Aakshita Chandiramani", "Aaron Blakeman", "Abdullahi Olaoye", "Abhibha Gupta", "Abhilash Somasamudramath", "Abhinav Khattar", "Adeola Adesoba", "Adi Renduchintala", "Adil Asif", "Aditya Agrawal", "Aditya Vavre", "Ahmad Kiswani", "Aishwarya Padmakumar", "Ajay Hotchandani", "Akanksha Shukla", "Akhiad Bercovich", "Aleksander Ficek", "Aleksandr Shaposhnikov", "Alex Gronskiy", "Alex Kondratenko", "Alex Neefus", "Alex Steiner", "Alex Yang", "Alexander Bukharin", "Alexander Young", "Ali Hatamizadeh", "Ali Taghibakhshi", "Alina Galiautdinova", "Alisa Liu", "Alok Kumar", "Ameya Sunil Mahabaleshwarkar", "Amir Klein", "Amit Zuker", "Amnon Geifman", "Anahita Bhiwandiwalla", "Ananth Subramaniam", "Andrew Tao", "Anjaney Shrivastava", "Anjulie Agrusa", "Ankur Srivastava", "Ankur Verma", "Ann Guan", "Anna Shors", "Annamalai Chockalingam", "Anubhav Mandarwal", "Aparnaa Ramani", "Arham Mehta", "Arti Jain", "Arun Venkatesan", "Asha Anoosheh", "Ashwath Aithal", "Ashwin Poojary", "Asif Ahamed", "Asit Mishra", "Asli Sabanci Demiroz", "Asma Kuriparambil Thekkumpate", "Atefeh Sohrabizadeh", "Avinash Kaur", "Ayush Dattagupta", "Barath Subramaniam Anandan", "Bardiya Sadeghi", "Barnaby Simkin", "Ben Lanir", "Benedikt Schifferer", "Benjamin Chislett", "Besmira Nushi", "Bilal Kartal", "Bill Thiede", "Bita Darvish Rouhani", "Bobby Chen", "Boris Ginsburg", "Brandon Norick", "Branislav Kisacanin", "Brian Yu", "Bryan Catanzaro", "Buvaneswari Mani", "Carlo del Mundo", "Chankyu Lee", "Chanran Kim", "Chantal Hwang", "Chao Ni", "Charles Wang", "Charlie Truong", "Cheng-Ping Hsieh", "Chenhan Yu", "Chenjie Luo", "Cherie Wang", "Chetan Mungekar", "Chintan Patel", "Chris Alexiuk", "Chris Holguin", "Chris Wing", "Christian Munley", "Christopher Parisien", "Chuck Desai", "Chunyang Sheng", "Collin Neale", "Cyril Meurillon", "Dakshi Kumar", "Dan Gil", "Dan Su", "Dane Corneil", "Daniel Afrimi", "Daniel Burkhardt Eliuth Triana", "Daniel Egert", "Daniel Fatade", "Daniel Lo", "Daniel Rohrer", "Daniel Serebrenik", "Daniil Sorokin", "Daria Gitman", "Daria Levy", "Darko Stosic", "David Edelsohn", "David Messina", "David Mosallanezhad", "David Tamok", "Deena Donia", "Deepak Narayanan", "Devin O'Kelly", "Dheeraj Peri", "Dhruv Nathawani", "Di Wu", "Dima Rekesh", "Dina Yared", "Divyanshu Kakwani", "Dmitry Konyagin Brandon Tuttle", "Dong Ahn", "Dongfu Jiang", "Dorrin Poorkay", "Douglas O'Flaherty", "Duncan Riach", "Dusan Stosic", "Dustin Van Stee", "Edgar Minasyan", "Edward Lin", "Eileen Peters Long", "Elad Segal", "Elena Lantz", "Elena Lewis", "Ellie Evans", "Elliott Ning", "Eric Chung", "Eric Harper", "Eric Pham-Hung", "Eric W. Tramel", "Erick Galinkin", "Erik Pounds", "Esti Etrog", "Evan Briones", "Evan Wu", "Evelina Bakhturina", "Evgeny Tsykunov", "Ewa Dobrowolska", "Farshad Saberi Movahed", "Farzan Memarian", "Fay Wang", "Fei Jia", "Felipe Soares", "Felipe Vieira Frujeri", "Feng Chen", "Fengguang Lin", "Ferenc Galko", "Fortuna Zhang", "Frankie Siino", "Frida Hou", "Gantavya Bhatt", "Gargi Prasad", "Geethapriya Venkataramani", "Geetika Gupta", "George Armstrong", "Gerald Shen", "Giulio Borghesi", "Gordana Neskovic", "Gorkem Batmaz", "Grace Lam", "Grace Wu", "Greg Pauloski", "Greyson Davis", "Grigor Nalbandyan", "Guoming Zhang", "Guy Farber", "Guyue Huang", "Haifeng Qian", "Haran Kumar Shiv Kumar", "Harry Kim", "Harsh Sharma", "Hayate Iso", "Hayley Ross", "Herbert Hum", "Herman Sahota", "Hexin Wang", "Himanshu Soni", "Hiren Upadhyay", "Huy Nguyen", "Iain Cunningham", "Ido Galil", "Ido Shahaf", "Igino Padovani", "Igor Gitman", "Igor Shovkun", "Ikroop Dhillon", "Ilya Loshchilov", "Ingrid Kelly", "Itamar Schen", "Itay Levy", "Ivan Moshkov", "Izik Golan", "Izzy Putterman", "Jain Tu", "Jan Baczek", "Jan Kautz", "Jane Polak Scowcroft", "Janica Rosenberg", "Jared Casper", "Jarrod Pflum", "Jason Grant", "Jason Sewall", "Jatin Mitra", "Jeffrey Glick", "Jenny Chen", "Jesse Oliver", "Jiacheng Xu", "Jiafan Zhu", "Jialin Song", "Jian Zhang", "Jiaqi Zeng", "Jie Lou", "Jill Milton", "Jim Chow", "Jimmy Zhang", "Jinhang Choi", "Jining Huang", "Jocelyn Huang", "Joel Caruso", "Joey Conway", "Joey Guman", "Johan Jatko", "John Kamalu", "Johnny Greco", "Jonathan Cohen", "Jonathan Raiman", "Joseph Jennings", "Joyjit Daw", "Juan Yu", "Julio Tapia", "Junkeun Yi", "Jupinder Parmar", "Jyothi Achar", "Kari Briski", "Kartik Mattoo", "Katherine Cheung", "Katherine Luna", "Keith Wyss", "Kevin Shih", "Kezhi Kong", "Khanh Nguyen", "Khushi Bhardwaj", "Kirill Buryak", "Kirthi Shankar Sivamani", "Konstantinos Krommydas", "Kris Murphy", "Krishna C. Puvvada", "Krzysztof Pawelec", "Kumar Anik", "Laikh Tewari", "Laya Sleiman", "Leo Du", "Leon Derczynski", "Li Ding", "Lilach Ilan", "Lingjie Wu", "Lizzie Wei", "Luis Vega", "Lun Su", "Maarten Van Segbroeck", "Maer Rodrigues de Melo", "Magaret Zhang", "Mahan Fathi", "Makesh Narsimhan Sreedhar", "Makesh Sreedhar", "Makesh Tarun Chandran", "Manuel Reyes Gomez", "Maor Ashkenazi", "Marc Cuevas", "Marc Romeijn", "Margaret Zhang", "Mark Cai", "Mark Gabel", "Markus Kliegl", "Martyna Patelka", "Maryam Moosaei", "Matthew Varacalli", "Matvei Novikov", "Mauricio Ferrato", "Mehrzad Samadi", "Melissa Corpuz", "Meng Xin", "Mengdi Wang", "Mengru Wang", "Meredith Price", "Micah Schaffer", "Michael Andersch", "Michael Boone", "Michael Evans", "Michael Z Wang", "Miguel Martinez", "Mikail Khona", "Mike Chrzanowski", "Mike Hollinger", "Mingyuan Ma", "Minseok Lee", "Mohammad Dabbah", "Mohammad Shoeybi", "Mostofa Patwary", "Nabin Mulepati", "Nader Khalil", "Najeeb Nabwani", "Nancy Agarwal", "Nanthini Balasubramaniam", "Narimane Hennouni", "Narsi Kodukula", "Natalie Hereth", "Nathaniel Pinckney", "Nave Assaf", "Negar Habibi", "Nestor Qin", "Neta Zmora", "Netanel Haber", "Nick Reamaroon", "Nickson Quak", "Nidhi Bhatia", "Nikhil Jukar", "Nikki Pope", "Nikolai Ludwig", "Nima Tajbakhsh", "Nir Ailon", "Nirmal Juluru", "Nirmalya De", "Nowel Pitt", "Oleg Rybakov", "Oleksii Hrinchuk", "Oleksii Kuchaiev", "Olivier Delalleau", "Oluwatobi Olabiyi", "Omer Ullman Argov", "Omri Almog", "Omri Puny", "Oren Tropp", "Otavio Padovani", "Ouye Xie", "Parth Chadha", "Pasha Shamis", "Paul Gibbons", "Pavlo Molchanov", "Peter Belcak", "Peter Jin", "Pinky Xu", "Piotr Januszewski", "Pooya Jannaty", "Prachi Shevate", "Pradeep Thalasta", "Pranav Prashant Thombre", "Prasoon Varshney", "Prerana Gambhir", "Pritam Gundecha", "Przemek Tredak", "Qing Miao", "Qiyu Wan", "Quan Tran Minh", "Rabeeh Karimi Mahabadi", "Rachel Oberman", "Rachit Garg", "Rahul Kandu", "Raina Zhong", "Ran El-Yaniv", "Ran Zilberstein", "Rasoul Shafipour", "Renee Yao", "Renjie Pi", "Richard Mazzarese", "Richard Wang", "Rick Izzo", "Ridhima Singla", "Rima Shahbazyan", "Rishabh Garg", "Ritika Borkar", "Ritu Gala", "Riyad Islam", "Robert Clark", "Robert Hesse", "Roger Waleffe", "Rohit Varma Kalidindi", "Rohit Watve", "Roi Koren", "Ron Fan", "Ruchika Kharwar", "Ruisi Cai", "Ruoxi Zhang", "Russell J. Hewett", "Ryan Prenger", "Ryan Timbrook", "Ryota Egashira", "Sadegh Mahdavi", "Sagar Singh Ashutosh Joshi", "Sahil Modi", "Samuel Kriman", "Sandeep Pombra", "Sanjay Kariyappa", "Sanjeev Satheesh", "Santiago Pombo", "Saori Kaji", "Satish Pasumarthi", "Saurav Mishra", "Saurav Muralidharan", "Scott Hara", "Sean Narenthiran", "Sebastian Rogawski", "Seonjin Na", "Seonmyeong Bak", "Sepehr Sameni", "Seth Poulos", "Shahar Mor", "Shantanu Acharya", "Shaona Ghosh Adam Lord", "Sharath Turuvekere Sreenivas", "Shaun Kotek", "Shaya Gharghabi", "Shelby Thomas", "Sheng-Chieh Lin", "Shibani Likhite", "Shiqing Fan", "Shiyang Chen", "Shreya Gopal", "Shrimai Prabhumoye", "Shubham Pachori", "Shubham Toshniwal", "Shuo Zhang", "Shuoyang Ding", "Shyam Renjith", "Shyamala Prayaga", "Siddhartha Jain", "Simeng Sun", "Sirisha Rella", "Sirshak Das", "Smita Ithape", "Sneha Harishchandra S", "Somshubra Majumdar", "Soumye Singhal", "Sri Harsha Singudasu", "Sriharsha Niverty", "Stas Sergienko", "Stefana Gloginic", "Stefania Alborghetti", "Stephen Ge", "Stephen McCullough", "Sugam Dipak Devare", "Suguna Varshini Velury", "Sukrit Rao", "Sumeet Kumar Barua", "Sunny Gai", "Suseella Panguluri", "Sushil Koundinyan", "Swathi Patnam", "Sweta Priyadarshi", "Swetha Bhendigeri", "Syeda Nahida Akter", "Sylendran Arunagiri", "Tailling Yuan", "Talor Abramovich", "Tan Bui", "Tan Yu", "Terry Kong", "Thanh Do", "Thomas Gburek", "Thorgane Marques", "Tiffany Moore", "Tijmen Blankevoort", "Tim Moon", "Timothy Ma", "Tiyasa Mitra", "Tomasz Grzegorzek", "Tomer Asida", "Tomer Bar Natan", "Tomer Keren", "Tomer Ronen", "Traian Rebedea", "Trenton Starkey", "Tugrul Konuk", "Twinkle Vashishth", "Tyler Condensa", "Udi Karpas", "Ushnish De", "Vahid Noorozi", "Vahid Noroozi", "Vanshil Atul Shah", "Veena Vaidyanathan", "Venkat Srinivasan", "Venmugil Elango", "Victor Cui", "Vijay Korthikanti", "Vikas Mehta", "Virginia Adams", "Virginia Wu", "Vitaly Kurin", "Vitaly Lavrukhin", "Vladimir Anisimov", "Wan Seo", "Wanli Jiang", "Wasi Uddin Ahmad", "Wei Du", "Wei Ping", "Wei-Ming Chen", "Wendy Quan", "Wenliang Dai", "Wenwen Gao", "Will Jennings", "William Zhang", "Xiaowei Ren", "Xiaowen Xin", "Xin Li", "Yang Yu", "Yangyi Chen", "Yaniv Galron", "Yashaswi Karnati", "Yejin Choi", "Yev Meyer", "Yi-Fu Wu", "Yian Zhang", "Ying Lin", "Yonatan Geifman", "Yonggan Fu", "Yoshi Suhara", "Youngeun Kwon", "Yuan Zhang", "Yuki Huang", "Zach Moshe", "Zhilin Wang", "Zhiyu Cheng", "Zhongbo Zhu", "Zhuolin Yang", "Zihan Liu", "Zijia Chen", "Zijie Yan", "Zuhair Ahmed"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-14", "url": "https://arxiv.org/abs/2604.12374", "pdf_url": "https://arxiv.org/pdf/2604.12374v1", "arxiv_id": "2604.12374", "doi": null, "citation_count": 9, "influential_citation_count": 1, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.6459} {"id": "9ea6c3415ec79ba1f9a593eb79f8408b74ca0fac1d802159bc8ed7d248305991", "sources": ["arxiv", "semantic_scholar"], "title": "Efficient Handwriting-Based Alzheimer,s Disease Diagnosis Using a Low-Rank Mixture of Experts Deep Learning Framework", "abstract": "Early and reliable detection of Alzheimer's disease (AD) is crucial for timely clinical intervention and improved patient management. It also supports the evaluation of emerging therapeutic strategies. In this paper, we propose a Low-Rank Mixture of Experts (LoRA-MoE) deep learning framework for Alzheimer's disease diagnosis based on handwriting analysis. Handwriting signals provide a non-invasive and scalable digital biomarker that captures subtle cognitive-motor impairments associated with early AD progression. The proposed architecture allows multiple experts to specialize in different handwriting patterns while sharing a common base network. This design enables efficient learning of general representations while reducing interference between experts. Each expert is equipped with lightweight low-rank adapters. This mechanism significantly reduces the number of trainable parameters compared with standard Mixture of Experts (MoE) models and improves training stability. The proposed framework is evaluated on the Diagnosis AlzheimeR WIth haNdwriting (DARWIN) dataset. Extensive experiments are conducted, including ablation studies on key architectural parameters such as hidden dimension size, number of experts, and LoRA rank. The method is compared with multilayer perceptron (MLP) and conventional MoE architectures. In addition, stacking ensemble strategies (StackMean and StackMax) are investigated to improve robustness and predictive performance. Experimental results show that the LoRA-MoE framework achieves powerful diagnostic performance while activating significantly fewer parameters during inference. These results highlight the potential of the proposed approach as an accurate and computationally efficient solution for handwriting-based Alzheimer's disease screening and digital health applications.", "authors": ["Wu Wang", "Yuang Cheng", "Fouzi Harrou", "Ying Sun"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-14", "url": "https://arxiv.org/abs/2605.04079", "pdf_url": "https://arxiv.org/pdf/2605.04079v1", "arxiv_id": "2605.04079", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3478} {"id": "20733de7296219368726d254373eb2d05e325e8c9d51c44d639a0de467111885", "sources": ["arxiv", "semantic_scholar"], "title": "VFA: Relieving Vector Operations in Flash Attention with Global Maximum Pre-computation", "abstract": "FlashAttention-style online softmax enables exact attention computation with linear memory by streaming score tiles through on-chip memory and maintaining a running maximum and normalizer. However, as attention kernels approach peak tensor-core/cube-core throughput on modern accelerators, non-matmul components of online softmax -- especially per-tile rowmax and rowsum reductions and rescale chains -- can become vector or SIMD limited and dominate latency. This paper revisits FlashAttention and proposes Vector Relieved Flash Attention (VFA), a hardware-friendly method that reduces rowmax-driven updates of the running maximum while retaining the online-softmax structure. VFA initializes the running maximum via a cheap approximation from key-block representations, reorders key-block traversal to prioritize high-impact sink and local blocks, and freezes the maximum for remaining blocks to avoid repeated reductions and rescaling. We further integrate VFA with block-sparse skipping methods such as BLASST to form Vector Relieved Sparse Attention (VSA), which reduces both block count and per-block overhead. Notably, VFA and VSA completely avoid the conditional rescale operation in the update stage used in FA4.0. Extensive evaluations on benchmarks including MMLU and MATH500, together with attention statistics, verify our design: (i) sink and local reordering stabilizes the running maximum early; (ii) simple Q and K block summaries fail due to intra-block heterogeneity; (iii) m-initialization is required when maxima appear in middle blocks. Overall, VFA and VSA efficiently alleviate online-softmax reduction bottlenecks without performance loss. Compared to the C16V32 baseline, C8V32, C4V32 and C4V16 achieve nearly two times speedup on modern hardware while hitting the vector bottleneck. With upcoming architecture improvements, C4V16 will deliver six times speedup by enhancing exponent capacity.", "authors": ["Yupeng Sun", "Yanzhao Li", "Zhiqiang Zou", "Bai Du", "Zhiyuan Zhang", "Hui Dong", "Gaoyige Fan", "Hui Wang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-14", "url": "https://arxiv.org/abs/2604.12798", "pdf_url": "https://arxiv.org/pdf/2604.12798v1", "arxiv_id": "2604.12798", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3478} {"id": "db441711f721eaf21d7ec517f2356278827128ba7c329def52275f52ac36afa8", "sources": ["arxiv", "semantic_scholar"], "title": "Quantization Dominates Rank Reduction for KV-Cache Compression", "abstract": "We compare two strategies for compressing the KV cache in transformer inference: rank reduction (discard dimensions) and quantization (keep all dimensions, reduce precision). At matched storage budgets across five models (124M-14B, MHA and GQA), we find that quantization consistently outperforms rank reduction by 4-364 PPL depending on model and compression level. The gap persists even when rank reduction is combined with quantization in hybrid baselines, and it grows with GQA aggressiveness. On LAMBADA, INT4 matches FP16 accuracy (+0.23 PPL on Mistral 7B, +0.58 on GPT-2) while rank-32 at identical storage collapses to 0.4%. We trace this gap to a structural asymmetry: under softmax attention routing, removing a dimension can flip which token is attended (a discrete failure), while quantization noise is bounded and typically preserves score ordering. We formalize this via a perturbation result showing projection damage exceeds quantization damage by 3 x 2^(2b) per direction under the softmax Fisher metric. A basis ablation confirms the finding is basis-independent (spread <0.4 PPL), establishing that the advantage comes from preserving dimensions, not from a better coordinate system. Joint K+V INT4 quantization achieves 75% total KV reduction at only +0.18 PPL on Mistral 7B.", "authors": ["Samuel Salfati"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-13", "url": "https://arxiv.org/abs/2604.11501", "pdf_url": "https://arxiv.org/pdf/2604.11501v1", "arxiv_id": "2604.11501", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3471} {"id": "328931df37dae3043ade81bda07eefbc99e26b02f26672b633e769dfcf46ce90", "sources": ["arxiv", "semantic_scholar"], "title": "Transactional Attention: Semantic Sponsorship for KV-Cache Retention", "abstract": "At K=16 tokens (0.4% of a 4K context), every existing KV-cache compression method achieves 0% on credential retrieval. The failure mode is dormant tokens: credentials, API keys, and configuration values that receive near-zero attention but become essential at generation time. Because these tokens lack the statistical signals that eviction policies rely on, no method based on attention scores, reconstruction loss, or learned retention gates retains them. We introduce Transactional Attention (TA), a sponsorship mechanism in which structural anchor patterns (e.g., \"key:\", \"password:\") protect adjacent value-bearing tokens from eviction. TA achieves 100% credential retrieval at K=16 where six baselines (H2O, TOVA, SnapKV, StreamingLLM, PyramidKV, DynamicKV) achieve 0%, and sustains 100% accuracy across 200 function-calling trials. TA-Fast, an attention-free variant, reduces memory overhead by 52% and is compatible with SDPA and FlashAttention. TA is orthogonal to existing compression methods and adds less than 1% latency overhead.", "authors": ["Abhinaba Basu"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-13", "url": "https://arxiv.org/abs/2604.11288", "pdf_url": "https://arxiv.org/pdf/2604.11288v1", "arxiv_id": "2604.11288", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3471} {"id": "7f2ad71fb3e250b2d09ea81831e0360fb49920b09e9c8976bdc9feefcf20fd07", "sources": ["arxiv", "semantic_scholar"], "title": "Beyond Attention Scores: SVD-Based Vision Token Pruning for Efficient Vision-Language Models", "abstract": "Vision-Language Models (VLMs) have revolutionized multi-modal learning by jointly processing visual and textual information. Yet, they face significant challenges due to the high computational and memory demands of processing long sequences of vision tokens. Many existing methods rely on local heuristics, such as attention scores or token norms. However, these criteria suffer from positional bias and information dispersion, limiting their ability to preserve essential content at high pruning ratios and leading to performance degradation on visually detailed images. To address these issues, we propose SVD-Prune, a training-free, plug-and-play token pruning method based on Singular Value Decomposition. It decomposes the vision token feature matrix and selects the top-k tokens using statistical leverage scores, ensuring only tokens contributing most to the dominant global variance are preserved. Experiments show that SVD-Prune consistently outperforms prior pruning methods under extreme vision token budgets, maintaining strong performance even with 32 and 16 vision tokens.", "authors": ["Yvon Apedo", "Martyna Poreba", "Michal Szczepanski", "Samia Bouchafa"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-13", "url": "https://arxiv.org/abs/2604.11530", "pdf_url": "https://arxiv.org/pdf/2604.11530v2", "arxiv_id": "2604.11530", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3471} {"id": "d7f90706e9b6252fa790b9581d101e0256907f82016c713753de1448d20aac6d", "sources": ["arxiv", "semantic_scholar"], "title": "IceCache: Memory-efficient KV-cache Management for Long-Sequence LLMs", "abstract": "Key-Value (KV) cache plays a crucial role in accelerating inference in large language models (LLMs) by storing intermediate attention states and avoiding redundant computation during autoregressive generation. However, its memory footprint scales linearly with sequence length, often leading to severe memory bottlenecks on resource-constrained hardware. Prior work has explored offloading KV cache to the CPU while retaining only a subset on the GPU, but these approaches often rely on imprecise token selection and suffer performance degradation in long-generation tasks such as chain-of-thought reasoning. In this paper, we propose a novel KV cache management strategy, IceCache, which integrates semantic token clustering with PagedAttention. By organizing semantically related tokens into contiguous memory regions managed by a hierarchical, dynamically updatable data structure, our method enables more efficient token selection and better utilization of memory bandwidth during CPU-GPU transfers. Experimental results on LongBench show that, with a 256-token budget, IceCache maintains 99% of the original accuracy achieved by the full KV cache model. Moreover, compared to other offloading-based methods, IceCache attains competitive or even superior latency and accuracy while using only 25% of the KV cache token budget, demonstrating its effectiveness in long-sequence scenarios. The code is available on our project website at https://yuzhenmao.github.io/IceCache/.", "authors": ["Yuzhen Mao", "Qitong Wang", "Martin Ester", "Ke Li"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-12", "url": "https://arxiv.org/abs/2604.10539", "pdf_url": "https://arxiv.org/pdf/2604.10539v1", "arxiv_id": "2604.10539", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": null, "quality_score": 0.6432} {"id": "9dc1d3bb0c7037cb3b58fcfd79bfa815247b2d780592aaffe16030d6cc3563b4", "sources": ["arxiv", "semantic_scholar"], "title": "CodeQuant: Unified Clustering and Quantization for Enhanced Outlier Smoothing in Low-Precision Mixture-of-Experts", "abstract": "Outliers have emerged as a fundamental bottleneck in preserving accuracy for low-precision large models, particularly within Mixture-of-Experts (MoE) architectures that are increasingly central to large-scale language modeling. Under post-training quantization (PTQ), these outliers induce substantial quantization errors, leading to severe accuracy degradation. While recent rotation-based smoothing techniques alleviate the problem by redistributing outlier magnitudes, residual errors remain and continue to impede reliable low-precision deployment. In this work, we tackle this challenge by introducing \\textit{CodeQuant}, a unified quantization-and-clustering scheme that contains smoothing activation outliers via learnable rotation and absorbing weight outliers into fine-tuned cluster centroids for MoE. This design reduces the influence of extreme values by fitting them within cluster centroids, thereby lowering quantization error while maintaining expressive capacity. Coupled with a dedicated kernel design for GPU and CPU, CodeQuant achieves up to $4.15\\times$ speedup while delivering significantly higher accuracy than state-of-the-art quantization approaches across diverse MoE models. Our results highlight CodeQuant as a promising direction for efficient and accurate deployment of MoE-based large language models under low-precision constraints. Our code is available at https://github.com/SAI-Lab-NYU/CodeQuant.", "authors": ["Xiangyang Yin", "Xingyu Liu", "Tianhua Xia", "Bo Bao", "Vithursan Thangarasa", "Valavan Manohararajah", "Eric Sather", "Sai Qian Zhang"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-12", "url": "https://arxiv.org/abs/2604.10496", "pdf_url": "https://arxiv.org/pdf/2604.10496v1", "arxiv_id": "2604.10496", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/SAI-Lab-NYU/CodeQuant", "venue": null, "quality_score": 0.6432} {"id": "d91605ca1bb23809af027978644388951ac497adf326fc6b78b32796ce6684b0", "sources": ["arxiv", "semantic_scholar"], "title": "LoopGuard: Breaking Self-Reinforcing Attention Loops via Dynamic KV Cache Intervention", "abstract": "Through systematic experiments on long-context generation, we observe a damaging failure mode in which decoding can collapse into persistent repetition loops. We find that this degeneration is driven by collapsed attention patterns, where a subset of heads locks onto a narrow suffix of the history, and is further stabilized by inference-time KV cache reuse. Crucially, since many existing KV cache policies rely on attention-based importance, this collapse can produce spuriously high scores for repetitive tokens, causing cache management to inadvertently amplify repetition. To study this phenomenon in a controlled and reproducible manner, we introduce LoopBench, a benchmark with explicit loop-inducing conditions and loop-oriented metrics that quantify repetition severity and generation instability beyond downstream task scores. Building on these insights, we propose LoopGuard, a lightweight, plug-in KV cache guard that detects loop onset online and disrupts the feedback cycle by pruning repetitive tail spans under a fixed cache budget. Experiments on LoopBench show that LoopGuard reduces loop incidence by over 90 percentage points, while restoring output diversity and reducing token waste.", "authors": ["Dongjie Xu", "Hao Wu", "Weijie Shi", "Yue Cui", "Yuanjun Liu", "Jiawei Li", "Haolun Ma", "An Liu", "Jia Zhu", "Jiajie Xu"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-11", "url": "https://arxiv.org/abs/2604.10044", "pdf_url": "https://arxiv.org/pdf/2604.10044v1", "arxiv_id": "2604.10044", "doi": null, "citation_count": 1, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3456} {"id": "cf5bfcfeac6d374a606385eac18eedd3c7f9aa80bb3f602ca266d9d73a9c4ae5", "sources": ["arxiv", "semantic_scholar"], "title": "CodeComp: Structural KV Cache Compression for Agentic Coding", "abstract": "Agentic code tasks such as fault localization and patch generation require processing long codebases under tight memory constraints, where the Key-Value (KV) cache becomes the primary inference bottleneck. Existing compression methods rely exclusively on attention signals to estimate token importance, systematically discarding structurally critical tokens such as call sites, branch conditions, and assignments that are essential for code understanding. We present CodeComp, a training-free KV cache compression framework that incorporates static program analysis into LLM inference via Code Property Graph priors extracted by Joern. Across bug localization and code generation benchmarks, CodeComp consistently outperforms attention-only compression baselines under equal memory budgets, recovering the majority of full-context accuracy under aggressive KV cache compression, while matching the patch generation quality of uncompressed full-context inference and integrating seamlessly into SGLang-based agentic coding pipelines without model modification.", "authors": ["Qiujiang Chen", "Jing Xiong", "Chenyang Zhao", "Sidi Yang", "Ngai Wong"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-11", "url": "https://arxiv.org/abs/2604.10235", "pdf_url": "https://arxiv.org/pdf/2604.10235v1", "arxiv_id": "2604.10235", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3456} {"id": "7e126645626e22d06233927d125b67fcddc74d9ff5e1c5489616c789ded2c114", "sources": ["arxiv", "semantic_scholar"], "title": "MoRI: Mixture of RL and IL Experts for Long-Horizon Manipulation Tasks", "abstract": "Reinforcement Learning (RL) and Imitation Learning (IL) are the standard frameworks for policy acquisition in manipulation. While IL offers efficient policy derivation, it suffers from compounding errors and distribution shift. Conversely, RL facilitates autonomous exploration but is frequently hindered by low sample efficiency and the high cost of trial and error. Since existing hybrid methods often struggle with complex tasks, we introduce Mixture of RL and IL Experts (MoRI). This system dynamically switches between IL and RL experts based on the variance of expert actions to handle coarse movements and fine-grained manipulations. MoRI employs an offline pre-training stage followed by online fine-tuning to accelerate convergence. To maintain exploration safety and minimize human intervention, the system applies IL-based regularization to the RL component. Evaluation across four complex real-world tasks shows that MoRI achieves an average success rate of 97.5% within 2 to 5 hours of fine-tuning. Compared to baseline RL algorithms, MoRI reduces human intervention by 85.8% and shortens convergence time by 21%, demonstrating its capability in robotic manipulation.", "authors": ["Yaohang Xu", "Lianjie Ma", "Gewei Zuo", "Wentao Zhang", "Han Ding", "Lijun Zhu"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-11", "url": "https://arxiv.org/abs/2604.10165", "pdf_url": "https://arxiv.org/pdf/2604.10165v1", "arxiv_id": "2604.10165", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3456} {"id": "70382e8338b39bceeb4a88e95f5dc07733d26ad2fe40e1f033e2b6919a39c82f", "sources": ["arxiv", "semantic_scholar"], "title": "Sequential KV Cache Compression via Probabilistic Language Tries: Beyond the Per-Vector Shannon Limit", "abstract": "Recent work on KV cache quantization, culminating in TurboQuant, has approached the Shannon entropy limit for per-vector compression of transformer key-value caches. We observe that this limit applies to a strictly weaker problem than the one that actually matters: compressing the KV cache as a sequence. The tokens stored in a KV cache are not arbitrary floating-point data -- they are samples from the exact formal language the model was trained on, and the model is by construction a near-optimal predictor of that language. We introduce sequential KV compression, a two-layer architecture that exploits this structure. The first layer, probabilistic prefix deduplication, identifies semantically equivalent shared prefixes across sessions using the trie metric d_T(s, s') = -log_2 P_M(s ^ s') from Probabilistic Language Tries (PLTs). The second layer, predictive delta coding, stores only the residual of each new KV vector from the model's own prediction of it, achieving a per-token entropy bound of H(KV_{i+1} | KV_{<=i}) <= H(token_{i+1} | token_{<=i}). We prove that at typical language model perplexity -- approximately 10-20 for fluent English text -- this bound is 3.3-4.3 bits on average per token position, compared to TurboQuant's 3 bits per vector component (with typical attention heads having 64-128 components). The theoretical compression ratio over TurboQuant is approximately 914,000x at the Shannon limit. Even at 1000x above the entropy floor -- a deliberately pessimistic worst-case overhead, two orders of magnitude above the 2-5x typical of practical source coders -- the ratio remains approximately 914x over TurboQuant, with compression improving rather than degrading as context length grows. The two layers are orthogonal and compose with existing per-vector quantization methods including TurboQuant.", "authors": ["Gregory Magarshak"], "categories": ["cs.LG", "cs.AI", "cs.IT", "cs.NE"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-04-10", "url": "https://arxiv.org/abs/2604.15356", "pdf_url": "https://arxiv.org/pdf/2604.15356v1", "arxiv_id": "2604.15356", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3449} {"id": "62f0fbad79b75697b733e3d1e5e929869892cee2399efea8e9411d62e7d0b361", "sources": ["arxiv", "semantic_scholar"], "title": "MP-ISMoE: Mixed-Precision Interactive Side Mixture-of-Experts for Efficient Transfer Learning", "abstract": "Parameter-efficient transfer learning (PETL) has emerged as a pivotal paradigm for adapting pre-trained foundation models to downstream tasks, significantly reducing trainable parameters yet suffering from substantial memory overhead caused by gradient backpropagation during fine-tuning. While memory-efficient transfer learning (METL) circumvents this challenge by bypassing backbone gradient computation via lightweight small side networks, its stringent memory constraint severely limits learning capacity of side networks, thereby significantly compromising performance. To address these limitations, we propose a novel Mixed-Precision Interactive Side Mixture-of-Experts framework (MP-ISMoE). Specifically, we first propose a Gaussian Noise Perturbed Iterative Quantization (GNP-IQ) scheme to quantize weights into lower-bits while effectively decreasing quantization errors. By leveraging memory conserved from GNP-IQ, we subsequently employ Interactive Side Mixture-of-Experts (ISMoE) to scaling up side networks without sacrificing overall memory efficiency. Different from conventional mixture-of-experts, ISMoE learns to select optimal experts by interacting with salient features from frozen backbones, thus suppressing knowledge forgetting and boosting performance. Extensive experiments across diverse vision-language and language-only tasks demonstrate that MP-ISMoE remarkably promotes accuracy compared to state-of-the-art METL approaches, while maintaining comparable parameter and memory efficiency.", "authors": ["Yutong Zhang", "Zimeng Wu", "Shangcai Liao", "Shujiang Wu", "Jiaxin Chen"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-10", "url": "https://arxiv.org/abs/2605.04058", "pdf_url": "https://arxiv.org/pdf/2605.04058v1", "arxiv_id": "2605.04058", "doi": "10.1609/aaai.v40i34.40084", "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "AAAI Conference on Artificial Intelligence", "quality_score": 0.542} {"id": "192e1da6ca291ee2ed760d051906dc9c663fb8b4db9c7955a5c9df1fab3bbc4f", "sources": ["arxiv", "semantic_scholar"], "title": "Modality-Aware Zero-Shot Pruning and Sparse Attention for Efficient Multimodal Edge Inference", "abstract": "Edge devices increasingly run multimodal sensing pipelines that must remain accurate despite fluctuating power budgets and unpredictable sensor dropout. Existing pruning methods fail under these conditions: they generally require fine-tuning after compression, consuming over $10\\times$ the deployment energy, and they assign static importance scores that are blind to which sensors are present. We present the SentryFuse framework, which addresses both challenges jointly through two key components. First, SentryGate learns modality-conditioned importance scores during training via first-order saliency supervision and then prunes attention heads and feed-forward channels at deployment without fine-tuning. Second, SentryAttend replaces dense self-attention, a key bottleneck in contemporary multimodal architectures, with sparse grouped-query attention, yielding a net 15% reduction in GFLOPs across three different multimodal architectures. Across three applications and multimodal backbones, SentryGate achieves a 12.7% average accuracy improvement over the strongest pruning baseline, and upto to 18% under modality dropout conditions. Together, SentryFuse reduces memory by 28.2% and lowers latency by up to $1.63\\times$ without further fine-tuning, establishing modality-aware zero-shot compression as a practical path to multimodal intelligence on heterogeneous edge hardware.", "authors": ["Yueyuan Sui", "Payal Mohapatra", "Doğaç Eldenk", "Haodong Yang", "Yiting Zhang", "Haoyan Zhang", "Qi Zhu", "Stephen Xia"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-10", "url": "https://arxiv.org/abs/2604.08971", "pdf_url": "https://arxiv.org/pdf/2604.08971v1", "arxiv_id": "2604.08971", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3449} {"id": "9f3b30754b59503a5fb09b8f44edb9d4e81a1d520ab2e4cbe653017dbdd1c6f7", "sources": ["arxiv", "semantic_scholar"], "title": "Plasticity-Enhanced Multi-Agent Mixture of Experts for Dynamic Objective Adaptation in UAVs-Assisted Emergency Communication Networks", "abstract": "Unmanned aerial vehicles serving as aerial base stations can rapidly restore connectivity after disasters, yet abrupt changes in user mobility and traffic demands shift the quality of service trade-offs and induce strong non-stationarity. Deep reinforcement learning policies suffer from plasticity loss under such shifts, as representation collapse and neuron dormancy impair adaptation. We propose plasticity enhanced multi-agent mixture of experts (PE-MAMoE), a centralized training with decentralized execution framework built on multi-agent proximal policy optimization. PE-MAMoE equips each UAV with a sparsely gated mixture of experts actor whose router selects a single specialist per step. A non-parametric Phase Controller injects brief, expert-only stochastic perturbations after phase switches, resets the action log-standard-deviation, anneals entropy and learning rate, and schedules the router temperature, all to re-plasticize the policy without destabilizing safe behaviors. We derive a dynamic regret bound showing the tracking error scales with both environment variation and cumulative noise energy. In a phase-driven simulator with mobile users and 3GPP-style channels, PE-MAMoE improves normalized interquartile mean return by 26.3\\% over the best baseline, increases served-user capacity by 12.8\\%, and reduces collisions by approximately 75\\%. Diagnostics confirm persistently higher expert feature rank and periodic dormant-neuron recovery at regime switches.", "authors": ["Wen Qiu", "Zhiqiang He", "Wei Zhao", "Hiroshi Masui"], "categories": ["cs.MA", "cs.LG", "cs.NI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-10", "url": "https://arxiv.org/abs/2604.09028", "pdf_url": "https://arxiv.org/pdf/2604.09028v1", "arxiv_id": "2604.09028", "doi": "10.1109/jiot.2026.3696834", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE Internet of Things Journal", "quality_score": 0.542} {"id": "3c29bc3970a7e4bce1ef512ff5c627ee2526ee0c79a7f5d3ccea0eca8d89907f", "sources": ["arxiv", "semantic_scholar"], "title": "KV Cache Offloading for Context-Intensive Tasks", "abstract": "With the growing demand for long-context LLMs across a wide range of applications, the key-value (KV) cache has become a critical bottleneck for both latency and memory usage. Recently, KV-cache offloading has emerged as a promising approach to reduce memory footprint and inference latency while preserving accuracy. Prior evaluations have largely focused on tasks that do not require extracting large amounts of information from the context. In this work, we study KV-cache offloading on context-intensive tasks: problems where the solution requires looking up a lot of information from the input prompt. We create and release the Text2JSON benchmark, a highly context-intensive task that requires extracting structured knowledge from raw text. We evaluate modern KV offloading on Text2JSON and other context-intensive tasks and find significant performance degradation on both Llama 3 and Qwen 3 models. Our analysis identifies two key reasons for poor accuracy: low-rank projection of keys and unreliable landmarks, and proposes a simpler alternative strategy that significantly improves accuracy across multiple LLM families and benchmarks. These findings highlight the need for a comprehensive and rigorous evaluation of long-context compression techniques.", "authors": ["Andrey Bocharnikov", "Ivan Ermakov", "Denis Kuznedelev", "Vyacheslav Zhdanovskiy", "Yegor Yershov"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-09", "url": "https://arxiv.org/abs/2604.08426", "pdf_url": "https://arxiv.org/pdf/2604.08426v4", "arxiv_id": "2604.08426", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3442} {"id": "219ab6374d4916c7e505d4a442b1d9194b034d9b45dbe0e21202df45f44a28bc", "sources": ["arxiv", "semantic_scholar"], "title": "Seeing but Not Thinking: Routing Distraction in Multimodal Mixture-of-Experts", "abstract": "Multimodal Mixture-of-Experts (MoE) models have achieved remarkable performance on vision-language tasks. However, we identify a puzzling phenomenon termed Seeing but Not Thinking: models accurately perceive image content yet fail in subsequent reasoning, while correctly solving identical problems presented as pure text. Through systematic analysis, we first verify that cross-modal semantic sharing exists in MoE architectures, ruling out semantic alignment failure as the sole explanation. We then reveal that visual experts and domain experts exhibit layer-wise separation, with image inputs inducing significant routing divergence from text inputs in middle layers where domain experts concentrate. Based on these findings, we propose the Routing Distraction hypothesis: when processing visual inputs, the routing mechanism fails to adequately activate task-relevant reasoning experts. To validate this hypothesis, we design a routing-guided intervention method that enhances domain expert activation. Experiments on three multimodal MoE models across six benchmarks demonstrate consistent improvements, with gains of up to 3.17% on complex visual reasoning tasks. Our analysis further reveals that domain expert identification locates cognitive functions rather than sample-specific solutions, enabling effective transfer across tasks with different information structures.", "authors": ["Haolei Xu", "Haiwen Hong", "Hongxing Li", "Rui Zhou", "Yang Zhang", "Longtao Huang", "Hui Xue", "Yongliang Shen", "Weiming Lu", "Yueting Zhuang"], "categories": ["cs.CV", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-09", "url": "https://arxiv.org/abs/2604.08541", "pdf_url": "https://arxiv.org/pdf/2604.08541v1", "arxiv_id": "2604.08541", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3442} {"id": "65aed9717acda0620036cb5f78ef6e1169172f9fdd76d78de1148e6cd5d41a8c", "sources": ["arxiv", "semantic_scholar"], "title": "Can LoRA Fusion Support Cross-Domain Tasks in Cloud-Edge Collaboration?", "abstract": "Cloud-hosted large language models (LLMs) commonly rely on LoRA for domain adaptation, yet domain data are distributed across multiple edge devices and cannot be uploaded due to privacy constraints. This raises a fundamental question: how can knowledge from multiple private edges be integrated into a cloud LLM for cross-domain problem solving? A natural solution is to train LoRA adapters locally and fuse them in the cloud; however, existing pipelines rely on unrealistic assumptions that edge devices can host cloud-scale LLMs and are evaluated mainly on single-domain tasks. To address these limitations, we propose a prune-train-recover framework that enables local LoRA training on pruned models and privacy-preserving cloud integration. We further introduce MMLU-CD, a cross-domain benchmark that composes multiple domain samples into a single instance, enabling explicit evaluation of cross-domain problem solving. This allows us to ask a concrete question: Can existing LoRA fusion methods support cross-domain tasks in cloud-edge collaboration? Our empirical answer is negative. Existing LoRA fusion methods perform poorly on MMLU-CD, often underperforming the base LLM, revealing their inability to support cross-domain problem solving. We attribute this failure to parameter conflicts among LoRA adapters and propose a simple conflict-resolution module, LoRA-CR, which mitigates conflicting updates and improves LoRA fusion performance by up to 3.8%. These results identify conflict mitigation as a critical yet largely overlooked factor in cloud-edge LoRA fusion, warranting further investigation in future research.", "authors": ["Yatong Wang", "Fali Wang", "Naibin Gu", "Zheng Lin", "Zhengxiao Liu", "Dingyu Yao", "Zhiwei Zhang", "Jianxin Shi", "Weiping Wang"], "categories": ["cs.DC", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-09", "url": "https://arxiv.org/abs/2605.23913", "pdf_url": "https://arxiv.org/pdf/2605.23913v1", "arxiv_id": "2605.23913", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3442} {"id": "ccf6bb1000107964a5995f139d4f2cfcbaa98bb25485eb1072079be16f54bff3", "sources": ["arxiv", "semantic_scholar"], "title": "MoBiE: Efficient Inference of Mixture of Binary Experts under Post-Training Quantization", "abstract": "Mixture-of-Experts (MoE) based large language models (LLMs) offer strong performance but suffer from high memory and computation costs. Weight binarization provides extreme efficiency, yet existing binary methods designed for dense LLMs struggle with MoE-specific issues, including cross-expert redundancy, task-agnostic importance estimation, and quantization-induced routing shifts. To this end, we propose MoBiE, the first binarization framework tailored for MoE-based LLMs. MoBiE is built on three core innovations: 1. using joint SVD decomposition to reduce cross-expert redundancy; 2. integrating global loss gradients into local Hessian metrics to enhance weight importance estimation; 3. introducing an error constraint guided by the input null space to mitigate routing distortion. Notably, MoBiE achieves these optimizations while incurring no additional storage overhead, striking a balance between efficiency and model performance. Extensive experiments demonstrate that MoBiE consistently outperforms state-of-the-art binary methods across multiple MoE-based LLMs and benchmarks. For example, on Qwen3-30B-A3B, MoBiE reduces perplexity by 52.2$\\%$, improves average zero-shot performance by 43.4$\\%$, achieves over 2 $\\times$ inference speedup, and further shortens quantization time. The code is available at https://github.com/Kishon-zzx/MoBiE.", "authors": ["Zhixiong Zhao", "Zukang Xu", "Zhixuan Chen", "Dawei Yang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-08", "url": "https://arxiv.org/abs/2604.06798", "pdf_url": "https://arxiv.org/pdf/2604.06798v4", "arxiv_id": "2604.06798", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Kishon-zzx/MoBiE", "venue": null, "quality_score": 0.6378} {"id": "308bfc05e454a554872a2cf602f14ef95577800ee6dcaa03e87b73c2035daeee", "sources": ["arxiv", "semantic_scholar"], "title": "AudioKV: KV Cache Eviction in Efficient Large Audio Language Models", "abstract": "Large Audio-Language Models (LALMs) have set new benchmarks in speech processing, yet their deployment is hindered by the memory footprint of the Key-Value (KV) cache during long-context inference. While general KV cache compression techniques excel in LLMs, they often fail in the audio domain by overlooking the intrinsic temporal continuity of acoustic signals. To bridge this gap, we propose AudioKV, a novel framework that robustly prioritizes audio-critical attention heads through a hardware-friendly semantic-acoustic alignment mechanism. Specifically, we identify these modality-specialized heads by analyzing attention scores in ASR tasks and dynamically allocate KV cache budgets preferentially to them. Furthermore, we introduce Spectral Score Smoothing (SSS), an FFT-based global filtering strategy designed to suppress high-frequency noise and recover smooth global trends from importance scores, ensuring more balanced token selection with unprecedented precision. Extensive evaluations across multiple LALMs, including Qwen and Gemma series, demonstrate that AudioKV significantly outperforms baselines while enhancing computational efficiency. Notably, at a 40% compression ratio, AudioKV maintains near-full accuracy on Qwen3-Omni-30B with only a 0.45% drop, whereas traditional methods suffer from catastrophic performance degradation and repetition. Our code will be released after acceptance.", "authors": ["Yuxuan Wang", "Peize He", "Xiyan Gui", "Xiaoqian Liu", "Junhao He", "Xuyang Liu", "Zichen Wen", "Xuming Hu", "Linfeng Zhang"], "categories": ["cs.SD"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-08", "url": "https://arxiv.org/abs/2604.06694", "pdf_url": "https://arxiv.org/pdf/2604.06694v1", "arxiv_id": "2604.06694", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3434} {"id": "6cbfcfa948788f6c102de75255ea891114756250d835c043a13f3614ea31947e", "sources": ["arxiv", "semantic_scholar"], "title": "Does a Global Perspective Help Prune Sparse MoEs Elegantly?", "abstract": "Empirical scaling laws for language models have encouraged the development of ever-larger LLMs, despite their growing computational and memory costs. Sparse Mixture-of-Experts (MoEs) offer a promising alternative by activating only a subset of experts per forward pass, improving efficiency without sacrificing performance. However, the large number of expert parameters still leads to substantial memory consumption. Existing pruning methods typically allocate budgets uniformly across layers, overlooking the heterogeneous redundancy that arises in sparse MoEs. We propose GRAPE (Global Redundancy-Aware Pruning of Experts, a global pruning strategy that dynamically allocates pruning budgets based on cross-layer redundancy. Experiments on Mixtral-8x7B, Mixtral-8x22B, DeepSeek-MoE, Qwen-MoE, and GPT-OSS show that, under the same pruning budget, GRAPE consistently achieves the best average performance. On the three main models reported in the paper, it improves average accuracy over the strongest local baseline by 1.40% on average across pruning settings, with gains of up to 2.45%.", "authors": ["Zeliang Zhang", "Nikhil Ghosh", "Jiani Liu", "Bin Yu", "Xiaodong Liu"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-08", "url": "https://arxiv.org/abs/2604.06542", "pdf_url": "https://arxiv.org/pdf/2604.06542v1", "arxiv_id": "2604.06542", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3434} {"id": "17a3008c95aaa5ef05bc9849d9b88037f9e3cdc5efb3c45430990406554f06fa", "sources": ["arxiv", "semantic_scholar"], "title": "Region-Graph Optimal Transport Routing for Mixture-of-Experts Whole-Slide Image Classification", "abstract": "Multiple Instance Learning (MIL) is the dominant framework for gigapixel whole-slide image (WSI) classification in computational pathology. However, current MIL aggregators route all instances through a shared pathway, constraining their capacity to specialise across the pathological heterogeneity inherent in each slide. Mixture-of-Experts (MoE) methods offer a natural remedy by partitioning instances across specialised expert subnetworks; yet unconstrained softmax routing may yield highly imbalanced utilisation, where one or a few experts absorb most routing mass, collapsing the mixture back to a near-single-pathway solution. To address these limitations, we propose ROAM (Region-graph OptimAl-transport Mixture-of-experts), a spatially aware MoE-MIL aggregator that routes region tokens to expert poolers via capacity-constrained entropic optimal transport, promoting balanced expert utilisation by construction. ROAM operates on spatial region tokens, obtained by compressing dense patch bags into spatially binned units that align routing with local tissue neighbourhoods and introduces two key mechanisms: (i) region-to-expert assignment formulated as entropic optimal transport (Sinkhorn) with explicit per slide capacity marginals, enforcing balanced expert utilisation without auxiliary load-balancing losses; and (ii) graph-regularised Sinkhorn iterations that diffuse routing assignments over the spatial region graph, encouraging neighbouring regions to coherently route to the same experts. Evaluated on four WSI benchmarks with frozen foundation-model patch embeddings, ROAM achieves performance competitive against strong MIL and MoE baselines, and on NSCLC generalisation (TCGA-CPTAC) reaches external AUC 0.845 +- 0.019.", "authors": ["Xin Tian", "Jiuliu Lu", "Ephraim Tsalik", "Bart Wanders", "Colleen Knoth", "Julian Knight"], "categories": ["cs.CV", "cs.AI", "eess.IV"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-04-08", "url": "https://arxiv.org/abs/2604.07298", "pdf_url": "https://arxiv.org/pdf/2604.07298v1", "arxiv_id": "2604.07298", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3434} {"id": "51229331cfd93bfc4842bf4203772d54017495689fe97703c5201ea146216d21", "sources": ["arxiv", "semantic_scholar"], "title": "ForkKV: Scaling Multi-LoRA Agent Serving via Copy-on-Write Disaggregated KV Cache", "abstract": "The serving paradigm of large language models (LLMs) is rapidly shifting towards complex multi-agent workflows where specialized agents collaborate over massive shared contexts. While Low-Rank Adaptation (LoRA) enables the efficient co-hosting of these specialized agents on a single base model, it introduces a critical memory footprint bottleneck during serving. Specifically, unique LoRA activations cause Key-Value (KV) cache divergence across agents, rendering traditional prefix caching ineffective for shared contexts. This forces redundant KV cache maintenance, rapidly saturating GPU capacity and degrading throughput. To address this challenge, we introduce ForkKV, a serving system for multi-LoRA agent workflows centered around a novel memory management paradigm in OS: fork with copy-on-write (CoW). By exploiting the structural properties of LoRA, ForkKV physically decouples the KV cache into a massive shared component (analogous to the parent process's memory pages) and lightweight agent-specific components (the child process's pages). To support this mechanism, we propose a DualRadixTree architecture that allows newly forked agents to inherit the massive shared cache and apply CoW semantics for their lightweight unique cache. Furthermore, to guarantee efficient execution, we design ResidualAttention, a specialized kernel that reconstructs the disaggregated KV cache directly within on-chip SRAM. Comprehensive evaluations across diverse language models and practical datasets of different tasks demonstrate that ForkKV achieves up to 3.0x the throughput of state-of-the-art multi-LoRA serving systems with a negligible impact on generation quality.", "authors": ["Shao Wang", "Rui Ren", "Lin Gui"], "categories": ["cs.DC", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-07", "url": "https://arxiv.org/abs/2604.06370", "pdf_url": "https://arxiv.org/pdf/2604.06370v1", "arxiv_id": "2604.06370", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3427} {"id": "5a4211aedb271a766a363d381406bad463e14e3d760dc9966a47580e74f27e5e", "sources": ["arxiv", "semantic_scholar"], "title": "Efficient Quantization of Mixture-of-Experts with Theoretical Generalization Guarantees", "abstract": "Sparse Mixture-of-Experts (MoE) allows scaling of language and vision models efficiently by activating only a small subset of experts per input. While this reduces computation, the large number of parameters still incurs substantial memory overhead during inference. Post-training quantization has been explored to address this issue. Because uniform quantization suffers from significant accuracy loss at low bit-widths, mixed-precision methods have been recently explored; however, they often require substantial computation for bit-width allocation and overlook the varying sensitivity of model performance to the quantization of different experts. We propose a theoretically grounded expert-wise mixed precision strategy that assigns bit-width to each expert primarily based on their change in routers l2 norm during training. Experts with smaller changes are shown to capture less frequent but critical features, and model performance is more sensitive to the quantization of these experts, thus requiring higher precision. Furthermore, to avoid allocating experts to lower precision that inject high quantization noise, experts with large maximum intra-neuron variance are also allocated higher precision. Experiments on large-scale MoE models, including Switch Transformer and Mixtral, show that our method achieves higher accuracy than existing approaches, while also reducing inference cost and incurring only negligible overhead for bit-width assignment.", "authors": ["Mohammed Nowaz Rabbani Chowdhury", "Kaoutar El Maghraoui", "Hsinyu Tsai", "Naigang Wang", "Geoffrey W. Burr", "Liu Liu", "Meng Wang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-07", "url": "https://arxiv.org/abs/2604.06515", "pdf_url": "https://arxiv.org/pdf/2604.06515v1", "arxiv_id": "2604.06515", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "The Fourteenth International Conference on Learning Representations, 2026", "quality_score": 0.5385} {"id": "1e395dce6b6afe0baf0fb281b998d39c30dad6a021f50e828371daf53c8d0d9d", "sources": ["arxiv", "semantic_scholar"], "title": "HybridKV: Hybrid KV Cache Compression for Efficient Multimodal Large Language Model Inference", "abstract": "Multimodal Large Language Models (MLLMs) have advanced unified reasoning over text, images, and videos, but their inference is hindered by the rapid growth of key-value (KV) caches. Each visual input expands into thousands of tokens, causing caches to scale linearly with context length and remain resident in GPU memory throughout decoding, which leads to prohibitive memory overhead and latency even on high-end GPUs. A common solution is to compress caches under a fixed allocated budget at different granularities: token-level uniformly discards less important tokens, layer-level varies retention across layers, and head-level redistributes budgets across heads. Yet these approaches stop at allocation and overlook the heterogeneous behaviors of attention heads that require distinct compression strategies. We propose HybridKV, a hybrid KV cache compression framework that integrates complementary strategies in three stages: heads are first classified into static or dynamic types using text-centric attention; then a top-down budget allocation scheme hierarchically assigns KV budgets; finally, static heads are compressed by text-prior pruning and dynamic heads by chunk-wise retrieval. Experiments on 11 multimodal benchmarks with Qwen2.5-VL-7B show that HybridKV reduces KV cache memory by up to $7.9\\times$ and achieves $1.52\\times$ faster decoding, with almost no performance drop or even higher relative to the full-cache MLLM.", "authors": ["Bowen Zeng", "Feiyang Ren", "Jun Zhang", "Xiaoling Gu", "Ke Chen", "Lidan Shou", "Huan Li"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-07", "url": "https://arxiv.org/abs/2604.05887", "pdf_url": "https://arxiv.org/pdf/2604.05887v1", "arxiv_id": "2604.05887", "doi": null, "citation_count": 6, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3427} {"id": "37a5f2fa34e7cc188961d2c2c2725bf22dc9c89b1f2479af0e936e6f4fc943e8", "sources": ["arxiv", "semantic_scholar"], "title": "Agentic AI-Based Joint Computing and Networking via Mixture of Experts and Large Language Models", "abstract": "Future sixth-generation (6G) mobile networks are envisioned to be equipped with a diverse set of powerful, yet highly specialized, optimization experts. Such a promising vision is concurrently expected to give rise to the need for scalable mechanisms that can select, combine, and orchestrate such experts based on high-level intent and uncertainty descriptions. In this paper, we propose an agentic artificial intelligence (AI)-based network optimization framework that integrates mixture of experts (MoE) architectures with large language models (LLMs). Under the proposed framework, the employed LLM acts as a semantic gate to reason over operator objectives and dynamically compose suitable optimization agents. The proposed framework is formulated in a model-agnostic manner and bridges human-readable network intents with low-level resource allocation decisions, enabling flexible optimization across heterogeneous objectives and operating conditions. As a representative instantiation, we apply the framework to a joint communication and computing network and design a library of specialized optimization experts covering throughput, fairness, and delay-driven objectives under both regular and robust conditions. Numerical simulations demonstrate that the proposed agentic MoE framework consistently achieves near-optimal performance compared to exhaustive expert combinations while outperforming individual experts across diverse objectives, including delay minimization and throughput maximization.", "authors": ["Robert-Jeron Reifert", "Alaa Alameer Ahmad", "Hayssam Dahrouj", "Aydin Sezgin"], "categories": ["cs.LG", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-04-07", "url": "https://arxiv.org/abs/2605.02911", "pdf_url": "https://arxiv.org/pdf/2605.02911v1", "arxiv_id": "2605.02911", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3427} {"id": "6474c051b7f535373c023060984142a39c5237dd3f132abe95ce2f8051a722f1", "sources": ["arxiv", "semantic_scholar"], "title": "ALTO: Adaptive LoRA Tuning and Orchestration for Heterogeneous LoRA Training Workloads", "abstract": "Low-Rank Adaptation (LoRA) is now the dominant method for parameter-efficient fine-tuning of large language models, but achieving a high-quality adapter often requires systematic hyperparameter tuning because LoRA performance is highly sensitive to configuration choices. In practice, this leads to many concurrent LoRA jobs, often spanning heterogeneous tasks in multi-tenant environments. Existing systems largely handle these jobs independently, which both wastes computation on weak candidates and leaves GPUs underutilized. We present ALTO (Adaptive LoRA Tuning and Orchestration), a co-designed training system that accelerates LoRA hyperparameter tuning while enabling efficient cluster sharing across heterogeneous tasks. The central insight behind ALTO is that when multiple tuning jobs run concurrently over a shared frozen backbone, they expose optimization opportunities that single-job designs cannot exploit. Building on this, ALTO monitors loss trajectories to terminate unpromising configurations early, uses fused grouped GEMM together with a new rank-local adapter parallelism to co-locate surviving adapters and reclaim freed GPU capacity, and combines intra-task and inter-task scheduling to improve multi-task placement by leveraging the predictable duration of LoRA jobs. Extensive evaluation shows that ALTO achieves up to $13.8\\times$ speedup over state-of-the-art without sacrificing adapter quality.", "authors": ["Jingwei Zuo", "Xinze Feng", "Zien Liu", "Kaijian Wang", "Fanjiang Ye", "Ye Cao", "Zhuang Wang", "Yuke Wang"], "categories": ["cs.LG", "cs.AI", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-07", "url": "https://arxiv.org/abs/2604.05426", "pdf_url": "https://arxiv.org/pdf/2604.05426v2", "arxiv_id": "2604.05426", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3427} {"id": "36fef3816df51c37bee1ad8250c6c85afc4b0d91665c2044c740b6b9140b7372", "sources": ["arxiv", "semantic_scholar"], "title": "Don't Waste Bits! Adaptive KV-Cache Quantization for Lightweight On-Device LLMs", "abstract": "Large Language Models (LLMs) have achieved remarkable progress across reasoning, generation, and decision-making tasks, yet deploying them on mobile, embedded, and edge devices remains particularly challenging. On-device LLM inference is heavily constrained by the memory and bandwidth overhead of the key-value (KV) cache, which grows linearly with context length and often dominates decoding cost. Existing KV-cache quantization schemes typically rely on fixed precision or hand-crafted heuristics, thereby wasting bits on low-impact tokens while over-compressing informative ones, leading to avoidable accuracy degradation. Inspired by Huffman coding's principle of variable-length allocation, we propose adaptive KV-cache quantization, a learned policy that assigns bit-width proportional to token importance, minimizing expected memory and latency without sacrificing competitive accuracy. Our framework extracts lightweight token-level features, including token frequency, quality score, attention variance, and entropy-based uncertainty, and feeds them into a compact data-driven controller that dynamically selects KV precision from {2-bit, 4-bit, 8-bit, FP16} during decoding. This adaptive precision policy reduces KV memory footprint and latency while improving accuracy compared to static KV quantization and rule-based baselines, and maintaining competitive accuracy close to FP16 inference across standard LLM benchmarks. Extensive experiments across multiple commonsense reasoning benchmarks using SmolLM-135M, SmolLM-360M, and SmolLM-1.7B demonstrate that our controller consistently improves the accuracy-latency trade-off. For instance, with SmolLM-360M on HellaSwag, our method reduces decoding latency (ms/token) by 17.75% relative to static KV quantization, improves accuracy by 7.60 points, and remains within only 0.30 points of FP16 inference.", "authors": ["Sayed Pedram Haeri Boroujeni", "Niloufar Mehrabi", "Patrick Woods", "Gabriel Hillesheim", "Abolfazl Razi"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-06", "url": "https://arxiv.org/abs/2604.04722", "pdf_url": "https://arxiv.org/pdf/2604.04722v1", "arxiv_id": "2604.04722", "doi": null, "citation_count": 5, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.342} {"id": "6bcc5b6491f28096042705d410186d8320757c3d1bf65176e49602fc85b231d5", "sources": ["arxiv", "semantic_scholar"], "title": "REAM: Merging Improves Pruning of Experts in LLMs", "abstract": "Mixture-of-Experts (MoE) large language models (LLMs) are among the top-performing architectures. The largest models, often with hundreds of billions of parameters, pose significant memory challenges for deployment. Traditional approaches to reduce memory requirements include weight pruning and quantization. Motivated by the Router-weighted Expert Activation Pruning (REAP) that prunes experts, we propose a novel method, Router-weighted Expert Activation Merging (REAM). Instead of removing experts, REAM groups them and merges their weights, better preserving original performance. We evaluate REAM against REAP and other baselines across multiple MoE LLMs on diverse multiple-choice (MC) question answering and generative (GEN) benchmarks. Our results reveal a trade-off between MC and GEN performance that depends on the mix of calibration data. By controlling the mix of general, math and coding data, we examine the Pareto frontier of this trade-off and show that REAM often outperforms the baselines and in many cases is comparable to the original uncompressed models.", "authors": ["Saurav Jha", "Maryam Hashemzadeh", "Ali Saheb Pasand", "Ali Parviz", "Min-Joong Lee", "Boris Knyazev"], "categories": ["cs.AI", "cs.CL", "cs.LG", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-06", "url": "https://arxiv.org/abs/2604.04356", "pdf_url": "https://arxiv.org/pdf/2604.04356v1", "arxiv_id": "2604.04356", "doi": null, "citation_count": 2, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/SamsungSAILMontreal/ream", "venue": null, "quality_score": 0.6351} {"id": "d9dbc10430bf6f734e04ca85badd470cab1a792eba28e69786560fb49a85cc6e", "sources": ["arxiv", "semantic_scholar"], "title": "eOptShrinkQ: Near-Lossless KV Cache Compression Through Optimal Spectral Denoising and Quantization", "abstract": "We show that the key-value (KV) cache in transformer attention heads admits a natural decomposition into a low-rank \\emph{shared context} component and a full-rank \\emph{per-token} residual, well described by the spiked random matrix model. This observation leads to eOptShrinkQ, a two-stage compression pipeline: optimal singular value shrinkage (eOptShrink) automatically extracts the shared structure, and the residual -- which satisfies the \\emph{thin shell property} with delocalized coordinates -- is quantized by TurboQuant~\\citep{zandieh2025turboquant}, a recently proposed per-vector scalar quantizer with near-optimal distortion guarantees. By restoring the isotropy that scalar quantization assumes, spectral denoising eliminates the need for both outlier handling and dedicated inner product bias correction, freeing those bits for improved reconstruction. The theoretical grounding in random matrix theory provides three guarantees: automatic rank selection via the BBP phase transition, provably near-zero inner product bias on the residual, and coordinate delocalization ensuring near-optimal quantization distortion. Experimentally, we validate eOptShrinkQ on Llama-3.1-8B and Ministral-8B across three levels: per-head MSE and inner product fidelity, where eOptShrinkQ saves nearly one bit per entry over TurboQuant at equivalent quality; end-to-end on LongBench (16 tasks), where eOptShrinkQ at $\\sim$2.2 bits per entry outperforms TurboQuant at 3.0 bits; and multi-needle retrieval, where eOptShrinkQ at 2.2 bits closely matches or exceeds uncompressed FP16, suggesting that spectral denoising can act as a beneficial regularizer for retrieval-intensive tasks.", "authors": ["Pei-Chun Su"], "categories": ["cs.LG", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-04-06", "url": "https://arxiv.org/abs/2605.02905", "pdf_url": "https://arxiv.org/pdf/2605.02905v1", "arxiv_id": "2605.02905", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.342} {"id": "9c0aee3dfabc0aeeb633a14a1afa1e698326f29e460b541457faded15a1621b4", "sources": ["arxiv", "semantic_scholar"], "title": "Comparative Characterization of KV Cache Management Strategies for LLM Inference", "abstract": "Efficient inference with Large Language Models (LLMs) increasingly relies on Key-Value (KV) caches to store previously computed key and value vectors at each layer. These caches are essential to minimize redundant computation during autoregressive token generation, lowering computational complexity from quadratic to linear. However, the growth of KV caches has posed significant system-level challenges, particularly as model sizes increase, context lengths grow, and concurrent requests compete for limited memory resources. Even though several recent frameworks for KV cache management have emerged, their comparative trade-offs in memory consumption and inference performance have not been fully understood, especially under varying request sizes and model configurations. In this work, we conduct an empirical study of three state-of-the-art KV cache management frameworks: vLLM, InfiniGen, and H2O. These frameworks employ techniques such as tensor offloading, token eviction heuristics, and speculative scheduling to balance memory usage and performance. We evaluate their performance in terms of a range of metrics such as latency, throughput, and memory usage across a spectrum of key parameters including request rates, model sizes, and sparsity levels. Our results pinpoint the conditions for each framework to perform the best, revealing the most suitable selection and configuration of KV cache strategies under memory and performance constraints.", "authors": ["Oteo Mamo", "Olga Kogiou", "Hyunjin Yi", "Weikuan Yu"], "categories": ["cs.AR", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-06", "url": "https://arxiv.org/abs/2604.05012", "pdf_url": "https://arxiv.org/pdf/2604.05012v1", "arxiv_id": "2604.05012", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.342} {"id": "5acb70ba0d37755d9dd17c8aa87a6c1028581d0aefa80f36972b3915d2b0696e", "sources": ["arxiv", "semantic_scholar"], "title": "Rényi Attention Entropy for Patch Pruning", "abstract": "Transformers are strong baselines in both vision and language because self-attention captures long-range dependencies across tokens. However, the cost of self-attention grows quadratically with the number of tokens. Patch pruning mitigates this cost by estimating per-patch importance and removing redundant patches. To identify informative patches for pruning, we introduce a criterion based on the Shannon entropy of the attention distribution. Low-entropy patches, which receive selective and concentrated attention, are kept as important, while high-entropy patches with attention spread across many locations are treated as redundant. We also extend the criterion from Shannon to Rényi entropy, which emphasizes sharp attention peaks and supports pruning strategies that adapt to task needs and computational limits. In experiments on fine-grained image recognition, where patch selection is critical, our method reduced computation while preserving accuracy. Moreover, adjusting the pruning policy through the Rényi entropy measure yields further gains and improves the trade-off between accuracy and computation.", "authors": ["Hiroaki Aizawa", "Yuki Igaue"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-04", "url": "https://arxiv.org/abs/2604.03803", "pdf_url": "https://arxiv.org/pdf/2604.03803v1", "arxiv_id": "2604.03803", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3405} {"id": "093508dcf98330e7145f1b62d18510fb0be2be570700e7ca54d10912969ba7a5", "sources": ["arxiv", "semantic_scholar"], "title": "Stochastic KV Routing: Enabling Adaptive Depth-Wise Cache Sharing", "abstract": "Serving transformer language models with high throughput requires caching Key-Values (KVs) to avoid redundant computation during autoregressive generation. The memory footprint of KV caching is significant and heavily impacts serving costs. This work proposes to lessen these memory requirements. While recent work has largely addressed KV cache reduction via compression and eviction along the temporal axis, we argue that the \\emph{depth} dimension offers an orthogonal and robust avenue for optimization. Although prior research suggests that a full cache for every layer is redundant, implementing cross-layer cache sharing remains a practical challenge; existing methods typically suffer from reduced throughput or increased time-to-first-token. In this paper, we demonstrate that dropping a layer's cache offers efficient optimization without information loss. We propose a simple training approach: random cross-layer attention. During training, layers randomly choose to attend either to their own KV states or those of a preceding layer. This stochastic process adapts the model to be robust to various depth-wise cache sharing strategies, ensuring flexibility for unknown hardware constraints at deployment time. Our evaluations show that applying this scheme during pre-training or fine-tuning enables depth-wise cache sharing for various model families. Furthermore, for larger models in data-constrained settings, this approach is suggestive of a regularization-like effect, frequently preserving or improving performance while significantly reducing the cache's memory footprint.", "authors": ["Anastasiia Filippova", "David Grangier", "Marco Cuturi", "João Monteiro"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-03", "url": "https://arxiv.org/abs/2604.22782", "pdf_url": "https://arxiv.org/pdf/2604.22782v1", "arxiv_id": "2604.22782", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3398} {"id": "a1734fcfed2f160ad1549680e3c0d790c51a4eb3268a023689317cac831cdd64", "sources": ["arxiv", "semantic_scholar"], "title": "QAPruner: Quantization-Aware Vision Token Pruning for Multimodal Large Language Models", "abstract": "Multimodal Large Language Models (MLLMs) have shown strong reasoning ability, but their high computational and memory costs hinder deployment in resource-constrained settings. While Post-Training Quantization (PTQ) and vision token pruning are standard compression techniques, they are usually treated as independent optimizations. In this paper, we show that these two techniques are strongly coupled: naively applying semantic-based token pruning to PTQ-optimized MLLMs can discard activation outliers that are important for numerical stability and thus worsen quantization errors in low-bit regimes (\\textit{e.g.}, W4A4). To address this issue, we propose a quantization-aware vision token pruning framework. Our method introduces a lightweight hybrid sensitivity metric that combines simulated group-wise quantization error with outlier intensity. By combining this metric with standard semantic relevance scores, the method retains tokens that are both semantically informative and robust to quantization. Experiments on standard LLaVA architectures show that our method consistently outperforms naive integration baselines. At an aggressive pruning ratio that retains only 12.5\\% of visual tokens, our framework improves accuracy by 2.24\\% over the baseline and even surpasses dense quantization without pruning. To the best of our knowledge, this is the first method that explicitly co-optimizes vision token pruning and PTQ for accurate low-bit MLLM inference.", "authors": ["Xinhao Wang", "Zhonyu Xia", "Zhiwei Lin", "Zhe Li", "Yongtao Wang"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-03", "url": "https://arxiv.org/abs/2604.02816", "pdf_url": "https://arxiv.org/pdf/2604.02816v1", "arxiv_id": "2604.02816", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3398} {"id": "910adb7abaebfa3718d2e3b741bf4c3747dce8c460da00a598cb4e60e5f4acca", "sources": ["arxiv", "semantic_scholar"], "title": "TokenDance: Scaling Multi-Agent LLM Serving via Collective KV Cache Sharing", "abstract": "Multi-agent LLM applications organize execution in synchronized rounds where a central scheduler gathers outputs from all agents and redistributes the combined context. This All-Gather communication pattern creates massive KV Cache redundancy, because every agent's prompt contains the same shared output blocks, yet existing reuse methods fail to exploit it efficiently. We present TokenDance, a system that scales the number of concurrent agents by exploiting the All-Gather pattern for collective KV Cache sharing. TokenDance's KV Collector performs KV Cache reuse over the full round in one collective step, so the cost of reusing a shared block is paid once regardless of agent count. Its Diff-Aware Storage encodes sibling caches as block-sparse diffs against a single master copy, achieving 11-17x compression on representative workloads. Evaluation on GenerativeAgents and AgentSociety shows that TokenDance supports up to 2.7x more concurrent agents than vLLM with prefix caching under SLO requirement, reduces per-agent KV Cache storage by up to 17.5x, and achieves up to 1.9x prefill speedup over per-request position-independent caching.", "authors": ["Zhuohang Bian", "Feiyang Wu", "Chengrui Zhang", "Hangcheng Dong", "Yun Liang", "Youwei Zhuo"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-03", "url": "https://arxiv.org/abs/2604.03143", "pdf_url": "https://arxiv.org/pdf/2604.03143v1", "arxiv_id": "2604.03143", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3398} {"id": "a324edd365652390c578a5f03d72bfdc8719e5241e636c188f87adbd45f89fbd", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture-of-Experts in Remote Sensing: A Survey", "abstract": "Remote sensing data analysis and interpretation present unique challenges due to the diversity in sensor modalities and spatiotemporal dynamics of Earth observation data. Mixture-of-Experts (MoE) model has emerged as a powerful paradigm that addresses these challenges by dynamically routing inputs to specialized experts designed for different aspects of a task. However, despite rapid progress, the community still lacks a comprehensive review of MoE for remote sensing. This survey provides the first systematic overview of MoE applications in remote sensing, covering fundamental principles, architectural designs, and key applications across a variety of remote sensing tasks. The survey also outlines future trends to inspire further research and innovation in applying MoE to remote sensing.", "authors": ["Yongchuan Cui", "Peng Liu", "Lajiao Chen"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-03", "url": "https://arxiv.org/abs/2604.03342", "pdf_url": "https://arxiv.org/pdf/2604.03342v1", "arxiv_id": "2604.03342", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "https://www.icck.org/article/abs/jgrs.2025.140654", "quality_score": 0.534} {"id": "a62dab8eb8e64f4c5e996644409c8b60bd38b04c9876d49cf6b00644f12629f7", "sources": ["arxiv", "semantic_scholar"], "title": "The Expert Strikes Back: Interpreting Mixture-of-Experts Language Models at Expert Level", "abstract": "Mixture-of-Experts (MoE) architectures have become the dominant choice for scaling Large Language Models (LLMs), activating only a subset of parameters per token. While MoE architectures are primarily adopted for computational efficiency, it remains an open question whether their sparsity makes them inherently easier to interpret than dense feed-forward networks (FFNs). We compare MoE experts and dense FFNs using $k$-sparse probing and find that expert neurons are consistently less polysemantic, with the gap widening as routing becomes sparser. This suggests that sparsity pressures both individual neurons and entire experts toward monosemanticity. Leveraging this finding, we zoom out from the neuron to the expert level as a more effective unit of analysis. We validate this approach by automatically interpreting hundreds of experts. This analysis allows us to resolve the debate on specialization: experts are neither broad domain specialists (e.g., biology) nor simple token-level processors. Instead, they function as fine-grained task experts, specializing in linguistic operations or semantic tasks (e.g., closing brackets in $\\LaTeX{}$). Our findings suggest that MoEs are inherently interpretable at the expert level, providing a clearer path toward large-scale model interpretability. Code is available at: https://github.com/jerryy33/MoE_analysis.", "authors": ["Jeremy Herbst", "Stefan Wermter", "Jae Hee Lee"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-02", "url": "https://arxiv.org/abs/2604.02178", "pdf_url": "https://arxiv.org/pdf/2604.02178v2", "arxiv_id": "2604.02178", "doi": null, "citation_count": 5, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/jerryy33/MoE_analysis", "venue": null, "quality_score": 0.6297} {"id": "f60562b1504d3ed5cb95bc02897ba005ed8fdaf8f74f86f08730c4fcd0d70658", "sources": ["arxiv", "semantic_scholar"], "title": "Attention to Mamba: A Recipe for Cross-Architecture Distillation", "abstract": "State Space Models (SSMs) such as Mamba have become a popular alternative to Transformer models, due to their reduced memory consumption and higher throughput at generation compared to their Attention-based counterparts. On the other hand, the community has built up a considerable body of knowledge on how to train Transformers, and many pretrained Transformer models are readily available. To facilitate the adoption of SSMs while leveraging existing pretrained Transformers, we aim to identify an effective recipe to distill an Attention-based model into a Mamba-like architecture. In prior work on cross-architecture distillation, however, it has been shown that a naïve distillation procedure from Transformers to Mamba fails to preserve the original teacher performance, a limitation often overcome with hybrid solutions combining Attention and SSM blocks. The key argument from our work is that, by equipping Mamba with a principled initialization, we can recover an overall better recipe for cross-architectural distillation. To this end, we propose a principled two-stage approach: first, we distill knowledge from a traditional Transformer into a linearized version of Attention, using an adaptation of the kernel trick. Then, we distill the linearized version into an adapted Mamba model that does not use any Attention block. Overall, the distilled Mamba model is able to preserve the original Pythia-1B Transformer performance in downstream tasks, maintaining a perplexity of 14.11 close to the teacher's 13.86. To show the efficacy of our recipe, we conduct thorough ablations at 1B scale with 10B tokens varying sequence mixer architecture, scaling analysis on model sizes and total distillation tokens, and a sensitivity analysis on tokens allocation between stages.", "authors": ["Abhinav Moudgil", "Ningyuan Huang", "Eeshan Gunesh Dhekane", "Pau Rodríguez", "Luca Zappella", "Federico Danieli"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-01", "url": "https://arxiv.org/abs/2604.14191", "pdf_url": "https://arxiv.org/pdf/2604.14191v1", "arxiv_id": "2604.14191", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3383} {"id": "1d2e9986934d368ad386fc2e878f262e2c5616acbfca731dceb5fe1e507ad859", "sources": ["arxiv", "semantic_scholar"], "title": "Routing-Free Mixture-of-Experts", "abstract": "Standard Mixture-of-Experts (MoE) models rely on centralized routing mechanisms that introduce rigid inductive biases. We propose Routing-Free MoE which eliminates any hard-coded centralized designs including external routers, Softmax, Top-K and load balancing, instead encapsulating all activation functionalities within individual experts and directly optimized through continuous gradient flow, enabling each expert to determine its activation entirely on its own. We introduce a unified adaptive load-balancing framework to simultaneously optimize both expert-balancing and token-balancing objectives through a configurable interpolation, allowing flexible and customizable resource allocation. Extensive experiments show that Routing-Free MoE can consistently outperform baselines with better scalability and robustness. We analyze its behavior in detail and offer insights that may facilitate future MoE design ad optimization.", "authors": ["Yilun Liu", "Jinru Han", "Sikuan Yan", "Volker Tresp", "Yunpu Ma"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-01", "url": "https://arxiv.org/abs/2604.00801", "pdf_url": "https://arxiv.org/pdf/2604.00801v1", "arxiv_id": "2604.00801", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/liuyilun2000/RoutingFreeMoE/tree/release", "venue": null, "quality_score": 0.6283} {"id": "011fd8755dbdc3b571d133cc955add35d6a97cd5aa0e16945a88b68857cd44de", "sources": ["arxiv", "semantic_scholar"], "title": "Cost-Penalized Fitness in FMA-Orchestrated Mixture of Experts: Experimental Evidence for Molecular Memory in Domain Adaptation", "abstract": "We present experimental results from seven controlled runs of nanoFMT, a Free-Market Algorithm (FMA) orchestrated transformer with dynamic Mixture-of-Experts (MoE) management. The experiments address a fundamental question for advanced LLM development: how should an MoE system manage its expert pool when operating at full capacity under changing data distributions? We demonstrate that cost-penalized fitness metrics, combined with a linear grace period for newborn experts, produce a system that accumulates domain expertise through diversification rather than replacement. The central result is a round-trip domain shift experiment showing 9-11x faster recovery when returning to a previously learned domain, with zero expert births or replacements required. This \"molecular memory\" effect -- where dormant experts survive and reactivate when their domain returns -- has no analogue in current MoE management approaches. A preliminary cost analysis estimates annual savings of $39.1M and 27.1 GWh energy reduction for an OpenAI-scale provider under a moderate scenario.", "authors": ["Martin Jaraiz"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-01", "url": "https://arxiv.org/abs/2604.00812", "pdf_url": "https://arxiv.org/pdf/2604.00812v1", "arxiv_id": "2604.00812", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3383} {"id": "b8aecc7782f427271f02090f4830d1029c9afffe3a1be42efda589167dbdcb3f", "sources": ["arxiv", "semantic_scholar"], "title": "IWP: Token Pruning as Implicit Weight Pruning in Large Vision Language Models", "abstract": "Large Vision Language Models show impressive performance across image and video understanding tasks, yet their computational cost grows rapidly with the number of visual tokens. Existing token pruning methods mitigate this issue through empirical approaches while overlooking the internal mechanism of attention. In this paper, we propose a novel training free token pruning framework grounded in the dual form perspective of attention. We reformulate attention as an implicit linear layer whose weight matrix is the sum of rank 1 outer products, each generated by a single token's key value pair. Token pruning thus reduces to selecting an optimal subset of these rank 1 updates that best approximates the original dual weight matrix. Extending this perspective to standard softmax attention in LVLMs, we derive a novel metric quantifying both a token's information magnitude and information duplication. To efficiently select the subset with the proposed metric, we introduce Progressive Chunked Maximal Marginal Relevance. Extensive experiments demonstrate that our method achieves a better trade off between performance and efficiency, while providing another perspective on existing pruning approaches.", "authors": ["Dong-Jae Lee", "Sunghyun Baek", "Junmo Kim"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-04-01", "url": "https://arxiv.org/abs/2604.00757", "pdf_url": "https://arxiv.org/pdf/2604.00757v1", "arxiv_id": "2604.00757", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3383} {"id": "4feedb03b6b9207675d85a30b385886576a915f156dce9f8375467c65f26112c", "sources": ["arxiv", "semantic_scholar"], "title": "Quantization with Unified Adaptive Distillation to enable multi-LoRA based one-for-all Generative Vision Models on edge", "abstract": "Generative Artificial Intelligence (GenAI) features such as image editing, object removal, and prompt-guided image transformation are increasingly integrated into mobile applications. However, deploying Large Vision Models (LVMs) for such tasks on resource-constrained devices remains challenging due to their high memory and compute requirements. While Low-Rank Adapters (LoRAs) enable parameter-efficient task adaptation, existing Mobile deployment pipelines typically compile separate model binaries for each LoRA + a copy of the foundation model, resulting in redundant storage and increased runtime overhead. In this work, we present a unified framework for enabling multi-task GenAI inference on edge devices using a single shared model. Our key idea is to treat LoRA weights as runtime inputs rather than embedding them into the compiled model graph, allowing dynamic task switching at runtime without recompilation. Then, to support efficient on-device execution, we introduce QUAD (Quantization with Unified Adaptive Distillation), a quantizationaware training strategy that aligns multiple LoRA adapters under a shared quantization profile. We implement the proposed system with a lightweight runtime stack compatible with mobile NPUs and evaluate it across multiple chipsets. Experimental results demonstrate up to 6x and 4x reduction in memory footprint and latency improvements, respectively, while maintaining high visual quality across multiple GenAI tasks.", "authors": ["Sowmya Vajrala", "Aakash Parmar", "Prasanna R", "Sravanth Kodavanti", "Manjunath Arveti", "Srinivas Soumitri Miriyala", "Ashok Senapati"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-31", "url": "https://arxiv.org/abs/2603.29535", "pdf_url": "https://arxiv.org/pdf/2603.29535v1", "arxiv_id": "2603.29535", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3376} {"id": "fd27f171f34c8f163c221f6302243f1560363adf5287ed45cd2482786ee9cd70", "sources": ["arxiv", "semantic_scholar"], "title": "On the Role of Encoder Depth: Pruning Whisper and LoRA Fine-Tuning in SLAM-ASR", "abstract": "Automatic speech recognition (ASR) has advanced rapidly in recent years, driven by large-scale pretrained models and end-to-end architectures such as SLAM-ASR. A key component of SLAM-ASR systems is the Whisper speech encoder, which provides robust acoustic representations. While model pruning has been explored for the full Whisper encoder-decoder architecture, its impact within the SLAM-ASR setting remains under-investigated. In this work, we analyze the effects of layer pruning in the Whisper encoder when used as the acoustic backbone of SLAM-ASR. We further examine the extent to which LoRA-based fine-tuning can recover performance degradation caused by pruning. Experiments conducted across three Whisper variants (Small, Medium, Large-v2), three languages representing distinct resource levels (Danish, Dutch, English), and over 200 training runs demonstrate that pruning two encoder layers causes only 2-4% WER degradation, and that combining this pruning with LoRA adaptation consistently outperforms the unpruned baseline while reducing total parameters by 7-14%. Moreover, our error analysis reveals that LoRA primarily compensates through the language model's linguistic priors, reducing total word errors by 11-21% for Dutch and English, with substitutions and deletions showing the largest reductions. However, for low-resource Danish, the reduction is smaller (4-7%), and LoRA introduces increased insertion errors, indicating that compensation effectiveness depends on the LLM's pre-existing language proficiency and available training data.", "authors": ["Ganesh Pavan Kartikeya Bharadwaj Kolluri", "Michael Kampouridis", "Ravi Shekhar"], "categories": ["cs.CL", "cs.SD"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-30", "url": "https://arxiv.org/abs/2603.27981", "pdf_url": "https://arxiv.org/pdf/2603.27981v1", "arxiv_id": "2603.27981", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3369} {"id": "c75bedd21fe657046b7aacafac1a6f00ab2e41bcedcf9662dce2ef498807745d", "sources": ["arxiv", "semantic_scholar"], "title": "IsoQuant: Hardware-Aligned SO(4) Isoclinic Rotations for LLM KV Cache Compression", "abstract": "Orthogonal feature decorrelation is effective for low-bit online vector quantization, but dense random orthogonal transforms incur prohibitive $O(d^2)$ storage and compute. RotorQuant reduces this cost with blockwise $3$D Clifford rotors, yet the resulting $3$D partition is poorly aligned with modern hardware and offers limited local mixing. We propose \\textbf{IsoQuant}, a blockwise rotation framework based on quaternion algebra and the isoclinic decomposition of $SO(4)$. It represents each $4$D block as a quaternion and applies a closed-form transform $T(v)=q_L v \\overline{q_R}$. This yields two main variants: \\emph{IsoQuant-Full}, which realizes the full $SO(4)$ rotation, and \\emph{IsoQuant-Fast}, which keeps only one isoclinic factor for lower cost; the framework also admits a lightweight $2$D special case. At $d=128$, IsoQuant-Full reduces forward rotation cost from about $2{,}408$ FMAs in RotorQuant to $1{,}024$, while IsoQuant-Fast further reduces it to $512$. Across $18$ fused CUDA settings with $d \\in {128,256,512}$, bit widths ${2,3,4}$, and FP16/FP32 execution, IsoQuant achieves mean kernel-level speedups of about $4.5\\times$--$4.7\\times$ over RotorQuant while maintaining comparable reconstruction MSE, with peak speedups above $6\\times$. Current validation is limited to the stage-1 quantize--dequantize path on synthetic normalized vectors; end-to-end KV-cache evaluation remains future work.", "authors": ["Zhongping Ji"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-30", "url": "https://arxiv.org/abs/2603.28430", "pdf_url": "https://arxiv.org/pdf/2603.28430v1", "arxiv_id": "2603.28430", "doi": null, "citation_count": 2, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3369} {"id": "6b37f8878e1b8c13df5c169f008fea4531d46e0cd1f1d61cd090a68aa9da925a", "sources": ["arxiv", "semantic_scholar"], "title": "Low-Latency Edge LLM Handover via Joint KV Cache Transfer and Token Prefill", "abstract": "Edge deployment of large language models (LLMs) can reduce latency for interactive services, but mobility introduces service interruptions when an user equipment (UE) hands over between base stations (BSs). To promptly resume decoding, the target-side edge server must recover the UE context state, which can be provisioned either by token forwarding followed by prefill computation or by direct key-value (KV) cache transmission over backhaul. This paper proposes a unified handover (HO) design that jointly selects the prefill length and schedules backhaul KV cache delivery to minimize the worst-user LLM HO delay for multiple UEs. The resulting scheme admits a tractable step-wise solution with explicit feasibility conditions and a constructive rate-scheduling policy. Simulations show that the proposed method consistently outperforms baselines across a wide range of backhaul capacities, prefill speeds, and context sizes, providing practical guidelines for mobility-aware Edge LLM token streaming.", "authors": ["Seunghun Lee", "Jihong Park", "Ce Zheng", "Hyuncheol Park"], "categories": ["eess.SP"], "fields_of_study": ["Engineering"], "published_date": "2026-03-30", "url": "https://arxiv.org/abs/2603.28018", "pdf_url": "https://arxiv.org/pdf/2603.28018v1", "arxiv_id": "2603.28018", "doi": null, "citation_count": 1, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3369} {"id": "45f5bec4189d537fc0ceb1a84d25d17b1df005f2eab557b46525ebb8b5d668fd", "sources": ["arxiv", "semantic_scholar"], "title": "KV Cache Quantization for Self-Forcing Video Generation: A 33-Method Empirical Study", "abstract": "Self-forcing video generation extends a short-horizon video model to longer rollouts by repeatedly feeding generated content back in as context. This scaling path immediately exposes a systems bottleneck: the key-value (KV) cache grows with rollout length, so longer videos require not only better generation quality but also substantially better memory behavior. We present a comprehensive empirical study of KV-cache compression for self-forcing video generation on a Wan2.1-based Self-Forcing stack. Our study covers 33 quantization and cache-policy variants, 610 prompt-level observations, and 63 benchmark-level summaries across two evaluation settings: MovieGen for single-shot 10-second generation and StoryEval for longer narrative-style stability. We jointly evaluate peak VRAM, runtime, realized compression ratio, VBench imaging quality, BF16-referenced fidelity (SSIM, LPIPS, PSNR), and terminal drift. Three findings are robust. First, the strongest practical operating region is a FlowCache-inspired soft-prune INT4 adaptation, which reaches 5.42-5.49x compression while reducing peak VRAM from 19.28 GB to about 11.7 GB with only modest runtime overhead. Second, the highest-fidelity compressed methods, especially PRQ_INT4 and QUAROT_KV_INT4, are not the best deployment choices because they preserve quality at severe runtime or memory cost. Third, nominal compression alone is not sufficient: several methods shrink KV storage but still exceed BF16 peak VRAM because the current integration reconstructs or retains large BF16 buffers during attention and refresh stages. The result is a benchmark harness, analysis workflow, and empirical map of which KV-cache ideas are practical today and which are promising research directions for better memory integration. Code, data products, and the presentation dashboard are available at https://github.com/suraj-ranganath/kv-quant-longhorizon/.", "authors": ["Suraj Ranganath", "Vaishak Menon", "Anish Patnaik"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-29", "url": "https://arxiv.org/abs/2603.27469", "pdf_url": "https://arxiv.org/pdf/2603.27469v1", "arxiv_id": "2603.27469", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/suraj-ranganath/kv-quant-longhorizon/", "venue": null, "quality_score": 0.6243} {"id": "de79a316f833cba93384f952cde4c399b561cc29f2f6bd0d7a84a425e4583bae", "sources": ["arxiv", "semantic_scholar"], "title": "KVSculpt: KV Cache Compression as Distillation", "abstract": "KV cache compression is critical for efficient long-context LLM inference. Approaches that reduce the per-pair footprint -- quantization and low-rank decomposition -- are orthogonal to those that reduce the sequence length of the cache. Along the sequence-length dimension, existing methods range from pure eviction -- selecting which KV pairs to keep -- to merging, which combines similar pairs into fewer ones. Both remain anchored to the original cache entries. We propose KVSculpt, which moves to the other end of this spectrum: instead of selecting or combining original pairs, we optimize a smaller set of unconstrained KV pairs in continuous embedding space to preserve each layer's attention behavior. Keys are optimized via L-BFGS and values are solved in closed form via least squares, alternating every few steps. On top of this, we introduce adaptive budget allocation, which uses a cheap pilot compression run to redistribute the compression budget across layers and KV heads based on per-component difficulty. On Qwen2.5-1.5B-Instruct with 2048-token contexts, KVSculpt reduces KL divergence by 3.5-4.1x compared to Select+Fit -- attention-score eviction with least-squares value fitting -- across compression ratios r in {0.3, 0.5, 0.7}. Adaptive allocation provides an additional 1.3x KL reduction at no extra inference cost. Analysis reveals that compression difficulty is highly non-uniform: per-layer pilot MSE varies by up to 100x across layers, and the two KV heads within a single layer can differ by up to 467x -- demonstrating that fine-grained budget allocation is essential.", "authors": ["Bo Jiang", "Sian Jin"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-29", "url": "https://arxiv.org/abs/2603.27819", "pdf_url": "https://arxiv.org/pdf/2603.27819v1", "arxiv_id": "2603.27819", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3361} {"id": "195271ef729656e923cf5f02544ee6086b42e078b17382ad0228b602e4cbbd9e", "sources": ["arxiv", "semantic_scholar"], "title": "TurboAngle: Near-Lossless KV Cache Compression via Uniform Angle Quantization", "abstract": "We compress KV cache entries by quantizing angles in the Fast Walsh-Hadamard domain, where a random diagonal rotation makes consecutive element pairs approximately uniformly distributed on the unit circle. We extend this angular quantizer with per-layer early-boost, which independently configures K and V codebook sizes at each layer, allocating higher precision to a model-specific subset of critical layers. Across seven models (1B to 7B parameters), per-layer early-boost achieves lossless compression on four models and near-lossless quality on six of seven, at 3.28 to 3.67 angle bits per element. Asymmetric norm quantization (8-bit for keys, 4-bit log-space for values) yields 6.56 total bits per element on Mistral-7B with perplexity degradation of +0.0014 and no calibration data. A layer-group sensitivity analysis reveals model-specific bottleneck patterns, including K-dominated versus V-dominated layers and negative-transfer layers where increased precision degrades quality.", "authors": ["Dipkumar Patel"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-29", "url": "https://arxiv.org/abs/2603.27467", "pdf_url": "https://arxiv.org/pdf/2603.27467v1", "arxiv_id": "2603.27467", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3361} {"id": "dddaee0a13abd30e37ea3ffd2f1facd8d17bdcddb97e29a535dbb97fe6cf0e83", "sources": ["arxiv", "semantic_scholar"], "title": "ScoutAttention: Efficient KV Cache Offloading via Layer-Ahead CPU Pre-computation for LLM Inference", "abstract": "Large language models encounter critical GPU memory capacity constraints during long-context inference, where KV cache memory consumption severely limits decode batch sizes. While existing research has explored offloading KV cache to DRAM, these approaches either demand frequent GPU-CPU data transfers or impose extensive CPU computation requirements, resulting in poor GPU utilization as the system waits for I/O operations or CPU processing to complete. We propose ScoutAttention, a novel KV cache offloading framework that accelerates LLM inference through collaborative GPU-CPU attention computation. To prevent CPU computation from bottlenecking the system, ScoutAttention introduces GPU-CPU collaborative block-wise sparse attention that significantly reduces CPU load. Unlike conventional parallel computing approaches, our framework features a novel layer-ahead CPU pre-computation algorithm, enabling the CPU to initiate attention computation one layer in advance, complemented by asynchronous periodic recall mechanisms to maintain minimal CPU compute load. Experimental results demonstrate that ScoutAttention maintains accuracy within 2.4% of baseline while achieving 2.1x speedup compared to existing offloading methods.", "authors": ["Qiuyang Zhang", "Kai Zhou", "Ding Tang", "Kai Lu", "Cheng Li", "Zhenyu Yang", "Peng Xu", "Jiguang Wan"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-28", "url": "https://arxiv.org/abs/2603.27138", "pdf_url": "https://arxiv.org/pdf/2603.27138v1", "arxiv_id": "2603.27138", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3354} {"id": "29ac0b5282c6eef232598d0df8e417496472c94112baad74f59aa6a81b4325ab", "sources": ["arxiv", "semantic_scholar"], "title": "TurboESM: Ultra-Efficient 3-Bit KV Cache Quantization for Protein Language Models with Orthogonal Rotation and QJL Correction", "abstract": "The rapid scaling of Protein Language Models (PLMs) has unlocked unprecedented accuracy in protein structure prediction and design, but the quadratic memory growth of the Key-Value (KV) cache during inference remains a prohibitive barrier for single-GPU deployment and high-throughput generation. While 8-bit quantization is now standard, 3-bit quantization remains elusive due to severe numerical outliers in activations. This paper presents TurboESM, an adaptation of Google's TurboQuant to the PLM domain. We solve the fundamental incompatibility between Rotary Position Embeddings (RoPE) and orthogonal transformations by deriving a RoPE-first rotation pipeline. We introduce a head-wise SVD calibration method tailored to the amino acid activation manifold, a dual look-up table (LUT) strategy for asymmetric K/V distributions, and a 1-bit Quantized Johnson-Lindenstrauss (QJL) residual correction. All experiments are conducted on ESM-2 650M, where our implementation achieves a 7.1x memory reduction (330 MB to 47 MB) while maintaining cosine similarity > 0.96 in autoregressive decoding across diverse protein families, including short peptides, transmembrane helices, enzyme active site fragments, and intrinsically disordered regions. We further implement a Triton-based fused decode attention kernel that eliminates intermediate dequantization memory allocations, achieving a 1.96x speedup over the PyTorch two-step path for the KV fetch operation alone; however, TurboESM incurs a prefill overhead of 21-27 ms relative to the original model due to KV quantization and packing, making it most suitable for memory-bound scenarios rather than latency-critical short-sequence workloads. Analysis reveals that PLMs exhibit sharper outlier profiles than large language models (LLMs) due to amino acid vocabulary sparsity, and our method effectively addresses these distributions.", "authors": ["Yue Hu", "Junqing Wang", "Yingchao Liu"], "categories": ["q-bio.QM"], "fields_of_study": ["Biology"], "published_date": "2026-03-27", "url": "https://arxiv.org/abs/2603.26110", "pdf_url": "https://arxiv.org/pdf/2603.26110v1", "arxiv_id": "2603.26110", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3347} {"id": "afed2caba7ddda81f5c0da9f292ebf40a68ef5edd83468504f10576a804e3c1a", "sources": ["arxiv", "semantic_scholar"], "title": "TTKV: Temporal-Tiered KV Cache for Long-Context LLM Inference", "abstract": "Key-value (KV) caching is critical for efficient inference in large language models (LLMs), yet its memory footprint scales linearly with context length, resulting in a severe scalability bottleneck. Existing approaches largely treat KV states as equally important across time, implicitly assuming uniform precision and accessibility. However, this assumption contrasts with human memory systems, where memories vary in clarity, recall frequency, and relevance with temporal proximity.Motivated by this insight, we propose TTKV, a KV cache management framework that maps the human memory system onto the KV cache. TTKV partitions the KV cache into temporal tiers with heterogeneous capacity and precision. The design addresses three aspects: (1) Tier Layout, decoupling fast and slow memory using HBM and DRAM; (2) Tier Content, assigning more recent KV states to faster, higher-precision tiers based on temporal proximity; and (3) Tier Interaction, employing block-wise streaming attention to overlap communication and computation when accessing slow tiers. Experiments show that TTKV reduces cross-tier traffic by 5.94x on 128K-context tasks, achieving up to 76% latency reduction and 2x throughput improvement over strong baselines.", "authors": ["Gradwell Dzikanyanga", "Weihao Yang", "Hao Huang", "Donglei Wu", "Shihao Wang", "Wen Xia", "Sanjeeb K C"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-27", "url": "https://arxiv.org/abs/2604.19769", "pdf_url": "https://arxiv.org/pdf/2604.19769v1", "arxiv_id": "2604.19769", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3347} {"id": "6c4934016b13a0b356a18c4473ac9eecda572f44dc87c41d9301485ed767a327", "sources": ["arxiv", "semantic_scholar"], "title": "Bayesian estimation of optical constants using mixtures of Gaussian process experts", "abstract": "We propose modeling absorption spectrum measurements as mixtures of Gaussian process experts. This enables us to construct a flexible statistical model for interpolating and extrapolating measurements, facilitating statistical integration of Kramers-Kronig relations to estimate the whole complex refractive index. Additionally, we statistically model the anchoring points used in subtractive Kramers-Kronig relations to account for possible measurement errors of the anchor point. In addition to flexible statistical modeling, the mixtures of Gaussian process formulation enables automatic selection of measurement points to use for extrapolation. We apply the method to experimental absorption spectrum measurements of gallium arsenide, potassium chloride, and transparent wood.", "authors": ["Teemu Härkönen", "Hui Chen", "Erik Vartiainen"], "categories": ["stat.AP", "physics.data-an"], "fields_of_study": ["Mathematics", "Physics"], "published_date": "2026-03-27", "url": "https://arxiv.org/abs/2603.26334", "pdf_url": "https://arxiv.org/pdf/2603.26334v1", "arxiv_id": "2603.26334", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3347} {"id": "f3b5b82a8737ec2dc0b25dce7e024e60ff54d8cf0fdaf797a73a193e81137698", "sources": ["arxiv", "semantic_scholar"], "title": "How Pruning Reshapes Features: Sparse Autoencoder Analysis of Weight-Pruned Language Models", "abstract": "Weight pruning is a standard technique for compressing large language models, yet its effect on learned internal representations remains poorly understood. We present the first systematic study of how unstructured pruning reshapes the feature geometry of language models, using Sparse Autoencoders (SAEs) as interpretability probes. Across three model families (Gemma 3 1B, Gemma 2 2B, Llama 3.2 1B), two pruning methods (magnitude and Wanda), and six sparsity levels (0--60%), we investigate five research questions spanning seed stability, feature survival, SAE transferability, feature fragility, and causal relevance. Our most striking finding is that rare SAE features--those with low firing rates--survive pruning far better than frequent ones, with within-condition Spearman correlations of rho = -1.0 in 11 of 17 experimental conditions. This counter-intuitive result suggests that pruning acts as implicit feature selection, preferentially destroying high-frequency generic features while preserving specialized rare ones. We further show that Wanda pruning preserves feature structure up to 3.7x better than magnitude pruning, that pre-trained SAEs remain viable on Wanda-pruned models up to 50% sparsity, and that geometric feature survival does not predict causal importance--a dissociation with implications for interpretability under compression.", "authors": ["Hector Borobia", "Elies Seguí-Mas", "Guillermina Tormo-Carbó"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-26", "url": "https://arxiv.org/abs/2603.25325", "pdf_url": "https://arxiv.org/pdf/2603.25325v1", "arxiv_id": "2603.25325", "doi": null, "citation_count": 2, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/hborobia/sae-pruning-paper", "venue": null, "quality_score": 0.6202} {"id": "bcf6a3e028a27d0e6c9e7c0b3c711b4019234fcd93e71ef99136128515d40236", "sources": ["arxiv", "semantic_scholar"], "title": "MoE-Sieve: Routing-Guided LoRA for Efficient MoE Fine-Tuning", "abstract": "Standard LoRA fine-tuning of Mixture-of-Experts (MoE) models applies adapters to every expert, yet our profiling shows that per-layer expert routing is highly skewed: a small subset of experts handles most tokens in each layer, while many others are rarely activated (\"cold\"). We propose MoE-Sieve, a simple routing-guided framework for LoRA fine-tuning, and pair it with a systematic profiling study of expert routing across architectures and tasks. The method is simple: profile routing counts on a small calibration set, select the top-k most-routed experts per layer, and apply LoRA only to those experts. Across two architecturally distinct MoE models and three diverse tasks, tuning only the top 25% routed experts per layer remains competitive with full LoRA, with mean differences within +/-1 percentage point across all conditions. This reduces LoRA trainable parameters by 70-73%, adapter checkpoint size by 71-73%, and wall-clock training time by up to 50%. We also observe a non-monotonic relationship between expert count and seed-to-seed variance, consistent with the hypothesis that adapting cold experts can introduce gradient noise without improving accuracy. Further ablations show that random expert selection at matched budget is about 2.5 percentage points worse, indicating that the routing signal matters, while greedy per-layer budget optimization does not improve over uniform top-k.", "authors": ["Andrea Manzoni"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-25", "url": "https://arxiv.org/abs/2603.24044", "pdf_url": "https://arxiv.org/pdf/2603.24044v1", "arxiv_id": "2603.24044", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3332} {"id": "62df5e004553baa4d283ee0b70c1b4eeeec422d0d171e20a5ce568623093473b", "sources": ["arxiv", "semantic_scholar"], "title": "EchoKV: Efficient KV Cache Compression via Similarity-Based Reconstruction", "abstract": "The increasing memory demand of the Key-Value (KV) cache poses a significant bottleneck for Large Language Models (LLMs) in long-context applications. Existing low-rank KV compression methods reduce this footprint by modifying model projections, limiting the flexibility to switch back to standard full-cache inference when sufficient memory is available. In this paper, we propose EchoKV, a flexible KV cache compression framework that supports on-demand transitions from full KV caching to compressed caching. Unlike traditional compression-decompression paradigms, EchoKV utilizes a lightweight network to reconstruct the discarded KV components from a partial subset, exploiting intrinsic inter-layer and intra-layer similarities among attention heads. We further introduce a lightweight two-stage fine-tuning strategy, requiring only a few minutes on a single A100 GPU for a 7B model. Experimental results on LongBench and RULER demonstrate that EchoKV consistently outperforms existing methods across multiple compression ratios and backbone models while preserving the throughput of full-cache inference in short-context scenarios.", "authors": ["Shiyu Ji", "Yixuan Wang", "Yijun Liu", "Qingfu Zhu", "Wanxiang Che"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-24", "url": "https://arxiv.org/abs/2603.22910", "pdf_url": "https://arxiv.org/pdf/2603.22910v2", "arxiv_id": "2603.22910", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3325} {"id": "dec77340d7e040a40a873747bdb5bd3cb23b234de68ffb37624da3b3ac4fa688", "sources": ["arxiv", "semantic_scholar"], "title": "PCR: A Prefetch-Enhanced Cache Reuse System for Low-Latency RAG Serving", "abstract": "Retrieval-Augmented Generation (RAG) systems enhance the performance of large language models (LLMs) by incorporating supplementary retrieved documents, enabling more accurate and context-aware responses. However, integrating these external documents often results in very long input sequences, which significantly increases computation costs during the prefill stage, where key-value (KV) representations for all input tokens are generated. This latency bottleneck becomes especially pronounced under high-throughput serving scenarios. KV-cache reuse offers a promising solution by storing previously computed KV states for shared input prefixes, thereby avoiding redundant computation across requests that contain overlapping context. Yet, the effectiveness of cache reuse is often limited by three practical challenges: low cache hit rates due to naive eviction policies, high CPU-GPU data transfer overhead, and slow SSD I/O when caches spill to storage. To address these issues, we propose PCR, a system designed to maximize KV-cache reuse efficiency through intelligent prefetching and pipelined data movement. Specifically, PCR introduces three key techniques: (1) a prefix-tree caching structure with a look-ahead LRU replacement policy that uses pending requests in the scheduler queue to improve cache hit ratios; (2) layer-wise overlapping that pipelines KV-cache loading and GPU computation across CUDA streams to hide communication latency; and (3) queue-based prefetching that proactively loads relevant KV caches from SSD into DRAM before they are needed. Extensive experiments show that PCR outperforms existing KV-cache reuse methods, achieving up to a 2.47x speedup in terms of average TTFT.", "authors": ["Wenfeng Wang", "Xiaofeng Hou", "Peng Tang", "Hengyi Zhou", "Jing Wang", "Xinkai Wang", "Chao Li", "Minyi Guo"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-24", "url": "https://arxiv.org/abs/2603.23049", "pdf_url": "https://arxiv.org/pdf/2603.23049v1", "arxiv_id": "2603.23049", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3325} {"id": "f25c2bf34020c76bf7e0dd7b28de3e3c3d51026e3ce76f6505ed71994b7adea1", "sources": ["arxiv", "semantic_scholar"], "title": "Knowledge Packs: Zero-Token Knowledge Delivery via KV Cache Injection", "abstract": "RAG wastes tokens. We propose Knowledge Packs: pre-computed KV caches that deliver the same knowledge at zero token cost. For causal transformers, the KV cache from a forward pass on text F is identical to what a joint pass on F+q would produce - this follows directly from the causal mask. The equivalence is exact but fragile: wrong chat template formatting causes 6-7pp degradation, which we believe explains prior claims of KV outperforming RAG. With correct formatting: zero divergences across 700 questions on Qwen3-8B and Llama-3.1-8B, up to 95% token savings. The KV interface also enables behavioral steering that RAG cannot do. Because RoPE rotates keys but leaves values untouched, contrastive deltas on cached values can nudge model behavior while key arithmetic destroys coherence. The effect sits in mid-layer values (33-66%), independent directions are nearly orthogonal (cos~0) and compose, and both channels - knowledge and steering - run simultaneously at alpha<=0.7 without interference. No training, no weight modification.", "authors": ["Andrey Pustovit"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-22", "url": "https://arxiv.org/abs/2604.03270", "pdf_url": "https://arxiv.org/pdf/2604.03270v1", "arxiv_id": "2604.03270", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/cnails/kv-knowledge-packs", "venue": null, "quality_score": 0.6148} {"id": "912b19da08c9ca08ebdcf35648f0ee66f59e9de9f271f3d5d81510bada193aef", "sources": ["arxiv", "semantic_scholar"], "title": "HELIX: Scaling Raw Audio Understanding with Hybrid Mamba-Attention Beyond the Quadratic Limit", "abstract": "Audio representation learning typically evaluates design choices such as input frontend, sequence backbone, and sequence length in isolation. We show that these axes are coupled, and conclusions from one setting often do not transfer to others. We introduce HELIX, a controlled framework comparing pure Mamba, pure attention, and a minimal hybrid with a single attention bottleneck. All models are parameter-matched at about 8.3M parameters to isolate architectural effects. Across six datasets, we find that the preferred input representation depends on the backbone, and that attention hurts performance on short, stationary audio but becomes important at longer sequence lengths. On a 5-minute speaker identification task with 30,000 tokens, pure attention fails with out-of-memory errors, while HELIX closes an 11.5-point gap over pure Mamba.", "authors": [" Khushiyant", "Param Thakkar"], "categories": ["cs.SD", "cs.LG", "eess.AS"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-03-22", "url": "https://arxiv.org/abs/2603.21316", "pdf_url": "https://arxiv.org/pdf/2603.21316v1", "arxiv_id": "2603.21316", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.331} {"id": "a0e433d3b6b7886b962a68ddb00bfe5a79a718a5e9893fab7604f24f34e805d9", "sources": ["arxiv", "semantic_scholar"], "title": "Beyond Token Eviction: Mixed-Dimension Budget Allocation for Efficient KV Cache Compression", "abstract": "Key-value (KV) caching is widely used to accelerate transformer inference, but its memory cost grows linearly with input length, limiting long-context deployment. Existing token eviction methods reduce memory by discarding less important tokens, which can be viewed as a coarse form of dimensionality reduction that assigns each token either zero or full dimension. We propose MixedDimKV, a mixed-dimension KV cache compression method that allocates dimensions to tokens at a more granular level, and MixedDimKV-H, which further integrates head-level importance information. Experiments on long-context benchmarks show that MixedDimKV outperforms prior KV cache compression methods that do not rely on head-level importance profiling. When equipped with the same head-level importance information, MixedDimKV-H consistently outperforms HeadKV. Notably, our approach achieves comparable performance to full attention on LongBench with only 6.25% of the KV cache. Furthermore, in the Needle-in-a-Haystack test, our solution maintains 100% accuracy at a 50K context length while using as little as 0.26% of the cache.", "authors": ["Ruijie Miao", "Zhiming Wang", "Wang Li", "Shiwei Wu", "Shufan Liu", "Yanbing Jiang", "Tong Yang"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-21", "url": "https://arxiv.org/abs/2603.20616", "pdf_url": "https://arxiv.org/pdf/2603.20616v1", "arxiv_id": "2603.20616", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3303} {"id": "59ca1cb0036a67455fcc20e04efbce80ffa00238eb739f7304e3bf32f38e62f6", "sources": ["arxiv", "semantic_scholar"], "title": "KV Cache Optimization Strategies for Scalable and Efficient LLM Inference", "abstract": "The key-value (KV) cache is a foundational optimization in Transformer-based large language models (LLMs), eliminating redundant recomputation of past token representations during autoregressive generation. However, its memory footprint scales linearly with context length, imposing critical bottlenecks on GPU memory capacity, memory bandwidth, and inference throughput as production LLMs push context windows from thousands to millions of tokens. Efficient KV cache management has thus become a first-order challenge for scalable LLM deployment. This paper provides a systematic review of recent KV cache optimization techniques, organizing them into five principal directions: cache eviction, cache compression, hybrid memory solutions, novel attention mechanisms, and combination strategies. For each category we analyze the underlying mechanisms, deployment trade-offs, and empirical performance across memory reduction, throughput, and model accuracy metrics. We further map techniques to seven practical deployment scenarios, including long-context single requests, high-throughput datacenter serving, edge devices, multi-turn conversations, and accuracy-critical reasoning, providing actionable guidance for practitioners selecting among competing approaches. Our analysis reveals that no single technique dominates across all settings; instead, the optimal strategy depends on context length, hardware constraints, and workload characteristics, pointing toward adaptive, multi-stage optimization pipelines as a promising direction for future research.", "authors": ["Yichun Xu", "Navjot K. Khaira", "Tejinder Singh"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-20", "url": "https://arxiv.org/abs/2603.20397", "pdf_url": "https://arxiv.org/pdf/2603.20397v1", "arxiv_id": "2603.20397", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3296} {"id": "29d2bec40fe3070d962991082a5d3e20871d93a9cc36aac85d2a82a41a4adc8d", "sources": ["arxiv", "semantic_scholar"], "title": "The Residual Stream Is All You Need: On the Redundancy of the KV Cache in Transformer Inference", "abstract": "The key-value (KV) cache is widely treated as essential state in transformer inference, and a large body of work engineers policies to compress, evict, or approximate its entries. We prove that this state is entirely redundant: keys and values at every layer are deterministic projections of the residual stream, and recomputing them from a single residual vector per token incurs exactly zero reconstruction error, not approximately, but bit-identically. We verify this across six models from four architecture families (135M to 4B parameters). Cross-task residual patching at every layer produces D_KL = 0 between patched and original output distributions, confirming that the residual stream satisfies a Markov property and is the sole information-carrying state. Removing the cache entirely and recomputing from scratch yields token-identical output under greedy decoding on all models tested. We build on this result with KV-Direct, a bounded-memory inference scheme that checkpoints residual vectors (5 KB per token on Gemma 3-4B) instead of full KV pairs (136 KB), recomputing keys and values on demand. Over 20 conversation turns, KV-Direct holds peak memory at 42 MB while the standard cache grows past 103 MB. Against five eviction baselines (H2O, StreamingLLM, SnapKV, TOVA, window-only), KV-Direct maintains 100% token match at every cache budget; all baselines degrade to 5-28%. A per-operation latency analysis shows recomputation runs up to 5x faster than reading cached tensors at moderate batch sizes. Code is available at https://github.com/Kaleemullahqasim/KV-Direct.", "authors": ["Kaleem Ullah Qasim", "Jiashu Zhang", "Muhammad Kafeel Shaheen", "Razan Alharith", "Heying Zhang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-20", "url": "https://arxiv.org/abs/2603.19664", "pdf_url": "https://arxiv.org/pdf/2603.19664v1", "arxiv_id": "2603.19664", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Kaleemullahqasim/KV-Direct", "venue": null, "quality_score": 0.6121} {"id": "184cb8a2cfcc3629fd3cdbf524eea69b8b4bb7fad1d4eff7095a5288de5fa696", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Experts with Soft Nearest Neighbor Loss: Resolving Expert Collapse via Representation Disentanglement", "abstract": "The Mixture-of-Experts (MoE) model uses a set of expert networks that specialize on subsets of a dataset under the supervision of a gating network. A common issue in MoE architectures is ``expert collapse'' where overlapping class boundaries in the raw input feature space cause multiple experts to learn redundant representations, thus forcing the gating network into rigid routing to compensate. We propose an enhanced MoE architecture that utilizes a feature extractor network optimized using Soft Nearest Neighbor Loss (SNNL) prior to feeding input features to the gating and expert networks. By pre-conditioning the latent space to minimize distances among class-similar data points, we resolve structural expert collapse which results to experts learning highly orthogonal weights. We employ Expert Specialization Entropy and Pairwise Embedding Similarity to quantify this dynamic. We evaluate our experimental approach across four benchmark image classification datasets (MNIST, FashionMNIST, CIFAR10, and CIFAR100), and we show our SNNL-augmented MoE models demonstrate structurally diverse experts which allow the gating network to adopt a more flexible routing strategy. This paradigm significantly improves classification accuracy on the FashionMNIST, CIFAR10, and CIFAR100 datasets.", "authors": ["Abien Fred Agarap", "Arnulfo P. Azcarraga"], "categories": ["cs.NE", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-20", "url": "https://arxiv.org/abs/2603.26734", "pdf_url": "https://arxiv.org/pdf/2603.26734v1", "arxiv_id": "2603.26734", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3296} {"id": "505e1a8e965845c6e4a5ceb2d5777a1e8a7d9508dda4192e4697f2fdd5caadba", "sources": ["arxiv", "semantic_scholar"], "title": "EntropyCache: Decoded Token Entropy Guided KV Caching for Diffusion Language Models", "abstract": "Diffusion-based large language models (dLLMs) rely on bidirectional attention, which prevents lossless KV caching and requires a full forward pass at every denoising step. Existing approximate KV caching methods reduce this cost by selectively updating cached states, but their decision overhead scales with context length or model depth. We propose EntropyCache, a training-free KV caching method that uses the maximum entropy of newly decoded token distributions as a constant-cost signal for deciding when to recompute. Our design is grounded in two empirical observations: (1) decoded token entropy correlates with KV cache drift, providing a cheap proxy for cache staleness, and (2) feature volatility of decoded tokens persists for multiple steps after unmasking, motivating recomputation of the $k$ most recently decoded tokens. The skip-or-recompute decision requires only $O(V)$ computation per step, independent of context length and model scale. Experiments on LLaDA-8B-Instruct and Dream-7B-Instruct show that EntropyCache achieves $15.2\\times$-$26.4\\times$ speedup on standard benchmarks and $22.4\\times$-$24.1\\times$ on chain-of-thought benchmarks, with competitive accuracy and decision overhead accounting for only $0.5\\%$ of inference time. Code is available at https://github.com/mscheong01/EntropyCache.", "authors": ["Minsoo Cheong", "Donghyun Son", "Woosang Lim", "Sungjoo Yoo"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-19", "url": "https://arxiv.org/abs/2603.18489", "pdf_url": "https://arxiv.org/pdf/2603.18489v1", "arxiv_id": "2603.18489", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/mscheong01/EntropyCache", "venue": null, "quality_score": 0.6107} {"id": "c0380f0d11c31a45214ba7131ec6637859c727b80e9233598d9d881bfd15d4ec", "sources": ["arxiv", "semantic_scholar"], "title": "Prune-then-Quantize or Quantize-then-Prune? Understanding the Impact of Compression Order in Joint Model Compression", "abstract": "What happens when multiple compression methods are combined-does the order in which they are applied matter? Joint model compression has emerged as a powerful strategy to achieve higher efficiency by combining multiple methods such as pruning and quantization. A central but underexplored factor in joint model compression is the compression order, or the sequence of different methods within the compression pipeline. Most prior studies have either sidestepped the issue by assuming orthogonality between techniques, while a few have examined them only in highly constrained cases. Consequently, the broader role of compression order in shaping model performance remains poorly understood. In this paper, we address the overlooked problem of compression order and provide both theoretical and empirical analysis. We formulate the problem of optimizing the compression order and introduce the Progressive Intensity Hypothesis, which states that weaker perturbations should precede stronger ones. We provide theoretical guarantees showing that the relative benefit of one order increases with the underlying performance gap. Extensive experiments on both language and vision models validate the hypothesis, and further show its generality to broader setups such as multi-stage compression and mixed-precision quantization.", "authors": ["Minjun Kim", "Jaehyeon Choi", "Hyunwoo Yang", "Jongjin Kim", "Jinho Song", "U Kang"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-19", "url": "https://arxiv.org/abs/2603.18426", "pdf_url": "https://arxiv.org/pdf/2603.18426v1", "arxiv_id": "2603.18426", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3289} {"id": "2bafc89e70d327ebae6bd46cce96bc73e1cc5b86ca09c6bfd3703d252c892d1e", "sources": ["arxiv", "semantic_scholar"], "title": "AIMER: Calibration-Free Task-Agnostic MoE Pruning", "abstract": "Mixture-of-Experts (MoE) language models increase parameter capacity without proportional per-token compute, but the deployment still requires storing all experts, making expert pruning important for reducing memory and serving overhead. Existing task-agnostic expert pruning methods are typically calibration-dependent: they estimate expert importance from routing or activation statistics on a calibration set, which makes pruning outcomes sensitive to the choice of calibration set and adds substantial preprocessing cost. We introduce AIMER (\\textbf{A}bsolute mean over root mean square \\textbf{IM}portance for \\textbf{E}xpert \\textbf{R}anking), a simple calibration-free criterion that yields clear within-layer score separation and distinct expert stratification. Across 7B to 30B MoE language models at 25\\% and 50\\% pruning ratios over 16 benchmarks, AIMER consistently delivers competitive or stronger overall performance against state-of-the-art calibration-based expert pruning baselines with only 0.22--1.27 seconds for scoring the experts.", "authors": ["Zongfang Liu", "Shengkun Tang", "Yifan Shen", "Huan Wang", "Xin Yuan"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-19", "url": "https://arxiv.org/abs/2603.18492", "pdf_url": "https://arxiv.org/pdf/2603.18492v2", "arxiv_id": "2603.18492", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3289} {"id": "d5826824fb9625f03c2bc48b0891d0a16ff27cae15ceb86b1b9e3a7e0dc3eb44", "sources": ["arxiv", "semantic_scholar"], "title": "DyMoE: Dynamic Expert Orchestration with Mixed-Precision Quantization for Efficient MoE Inference on Edge", "abstract": "Despite the computational efficiency of MoE models, the excessive memory footprint and I/O overhead inherent in multi-expert architectures pose formidable challenges for real-time inference on resource-constrained edge platforms. While existing static methods struggle with a rigid latency-accuracy trade-off, we observe that expert importance is highly skewed and depth-dependent. Motivated by these insights, we propose DyMoE, a dynamic mixed-precision quantization framework designed for high-performance edge inference. Leveraging insights into expert importance skewness and depth-dependent sensitivity, DyMoE introduces: (1) importance-aware prioritization to dynamically quantize experts at runtime; (2) depth-adaptive scheduling to preserve semantic integrity in critical layers; and (3) look-ahead prefetching to overlap I/O stalls. Experimental results on commercial edge hardware show that DyMoE reduces Time-to-First-Token (TTFT) by 3.44x-22.7x and up to a 14.58x speedup in Time-Per-Output-Token (TPOT) compared to state-of-the-art offloading baselines, enabling real-time, accuracy-preserving MoE inference on resource-constrained edge devices.", "authors": ["Yuegui Huang", "Zhiyuan Fang", "Weiqi Luo", "Ruoyu Wu", "Wuhui Chen", "Zibin Zheng"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-19", "url": "https://arxiv.org/abs/2603.19172", "pdf_url": "https://arxiv.org/pdf/2603.19172v1", "arxiv_id": "2603.19172", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3289} {"id": "edecef9494ffc7ff8a6f1b3e9f2a2e42b0cbd6fdf33f919d51a66512ad4b170e", "sources": ["arxiv", "semantic_scholar"], "title": "Path-Constrained Mixture-of-Experts", "abstract": "Sparse Mixture-of-Experts (MoE) architectures route each token through a subset of experts at each layer independently. We propose viewing MoE computation through the lens of \\emph{expert paths} -- the sequence of expert selections a token makes across all layers. This perspective reveals that, despite $N^L$ possible paths for $N$ experts across $L$ layers, tokens in practice cluster into a small fraction of paths that align with linguistic function, yet the vast majority of paths remain unexplored, representing a statistical inefficiency. This motivates architectures that constrain the effective path space to amplify this natural concentration. As one instantiation, we introduce \\pathmoe{}, which shares router parameters across blocks of consecutive layers. Analysis confirms that \\pathmoe{} amplifies the emergent path structure: it produces more concentrated path clusters, better cross-layer consistency, and greater robustness to routing perturbations. Experiments on 0.9B and 16B parameter \\pathmoe{} models demonstrate consistent improvements on perplexity and downstream tasks over independent routing, while eliminating the need for auxiliary losses. These results establish expert paths as a useful design axis for MoE architectures, complementary to existing work on independent routing mechanisms.", "authors": ["Zijin Gu", "Tatiana Likhomanenko", "Vimal Thilak", "Jason Ramapuram", "Navdeep Jaitly"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-18", "url": "https://arxiv.org/abs/2603.18297", "pdf_url": "https://arxiv.org/pdf/2603.18297v2", "arxiv_id": "2603.18297", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3281} {"id": "b7ba6ad5fa85713fd7297c51c54422d952690b12f87badb8ec451851174c9f93", "sources": ["arxiv", "semantic_scholar"], "title": "FEMBA on the Edge: Physiologically-Aware Pre-Training, Quantization, and Deployment of a Bidirectional Mamba EEG Foundation Model on an Ultra-low Power Microcontroller", "abstract": "Objective: To enable continuous, long-term neuro-monitoring on wearable devices by overcoming the computational bottlenecks of Transformer-based Electroencephalography (EEG) foundation models and the quantization challenges inherent to State-Space Models (SSMs). Methods: We present FEMBA, a bidirectional Mamba architecture pre-trained on over 21,000 hours of EEG. We introduce a novel Physiologically-Aware pre-training objective, consisting of a reconstruction with low-pass filtering, to prioritize neural oscillations over high-frequency artifacts. To address the activation outliers common in SSMs, we employ Quantization-Aware Training (QAT) to compress the model to 2-bit weights. The framework is deployed on a parallel ultra-low-power RISC-V microcontroller (GAP9) using a custom double-buffered memory streaming scheme. Results: The proposed low-pass pre-training improves downstream AUROC on TUAB from 0.863 to 0.893 and AUPR from 0.862 to 0.898 compared to the best contrastive baseline. QAT successfully compresses weights with negligible performance loss, whereas standard post-training quantization degrades accuracy by approximately \\textbf{30\\%}. The embedded implementation achieves deterministic real-time inference (\\textbf{1.70~s} per 5~s window) and reduces the memory footprint by \\textbf{74\\%} (to $\\approx$2~MB), achieving competitive accuracy with up to \\textbf{27$\\times$} fewer FLOPs than Transformer benchmarks. Conclusion: FEMBA demonstrates that Mamba-based foundation models can be effectively quantized and deployed on extreme-edge hardware without sacrificing the representation quality required for robust clinical analysis. Significance: This work establishes the first full-stack framework for deploying large-scale EEG foundation models on ultra-low-power wearables, facilitating continuous, SSM based monitoring for epilepsy and sleep disorders.", "authors": ["Anna Tegon", "Nicholas Lehmann", "Yawei Li", "Andrea Cossettini", "Luca Benini", "Thorir Mar Ingolfsson"], "categories": ["eess.SP", "cs.LG"], "fields_of_study": ["Medicine", "Engineering", "Computer Science"], "published_date": "2026-03-18", "url": "https://arxiv.org/abs/2603.26716", "pdf_url": "https://arxiv.org/pdf/2603.26716v1", "arxiv_id": "2603.26716", "doi": "10.1109/tbme.2026.3683482", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3281} {"id": "7ecf1ba867b0007e1516b3029303e6402d54604bbb40f1d38c557828acdcbc6e", "sources": ["arxiv", "semantic_scholar"], "title": "VQKV: High-Fidelity and High-Ratio Cache Compression via Vector-Quantization", "abstract": "The growing context length of Large Language Models (LLMs) enlarges the Key-Value (KV) cache, limiting deployment in resource-limited environments. Prior training-free approaches for KV cache compression typically rely on low-rank approximation or scalar quantization, which fail to simultaneously achieve high compression ratios and high reconstruction fidelity. We propose VQKV, a novel, training-free method introducing vector quantization (VQ) to obtain highly compressed KV representations while preserving high model fidelity, allowing for the representation of thousands of floating-point values with just a few integer indices. As a result, VQKV achieves an 82.8\\% compression ratio on LLaMA3.1-8B while retaining 98.6\\% of the baseline performance on LongBench and enabling 4.3x longer generation length on the same memory footprint.", "authors": ["Yixuan Wang", "Qingyu Shi", "Jiayu Zhou", "Dianbo Liu", "Ziwei He", "Zhouhan Lin"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-17", "url": "https://arxiv.org/abs/2603.16435", "pdf_url": "https://arxiv.org/pdf/2603.16435v1", "arxiv_id": "2603.16435", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3274} {"id": "87ad767d85ab2cba95f89ccd152b39026819399144b726e289237fb7f09697ef", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Style Experts for Diverse Image Stylization", "abstract": "Diffusion-based stylization has advanced significantly, yet existing methods are limited to color-driven transformations, neglecting complex semantics and material details. We introduce StyleExpert, a semantic-aware framework based on the Mixture of Experts (MoE). Our framework employs a unified style encoder, trained on our large-scale dataset of content-style-stylized triplets, to embed diverse styles into a consistent latent space. This embedding is then used to condition a similarity-aware gating mechanism, which dynamically routes styles to specialized experts within the MoE architecture. Leveraging this MoE architecture, our method adeptly handles diverse styles spanning multiple semantic levels, from shallow textures to deep semantics. Extensive experiments show that StyleExpert outperforms existing approaches in preserving semantics and material details, while generalizing to unseen styles. Our code and collected images are available at the project page: https://hh-lg.github.io/StyleExpert-Page/.", "authors": ["Shihao Zhu", "Ziheng Ouyang", "Yijia Kang", "Qilong Wang", "Mi Zhou", "Bo Li", "Ming-Ming Cheng", "Qibin Hou"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-17", "url": "https://arxiv.org/abs/2603.16649", "pdf_url": "https://arxiv.org/pdf/2603.16649v3", "arxiv_id": "2603.16649", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3274} {"id": "bbc2f2a580c4694e729e3902134e7945e870c799bbea61f7b4184b4627cd2368", "sources": ["arxiv", "semantic_scholar"], "title": "Frequency Matters: Fast Model-Agnostic Data Curation for Pruning and Quantization", "abstract": "Post-training model compression is essential for enhancing the portability of Large Language Models (LLMs) while preserving their performance. While several compression approaches have been proposed, less emphasis has been placed on selecting the most suitable set of data (the so-called \\emph{calibration data}) for finding the compressed model configuration. The choice of calibration data is a critical step in preserving model capabilities both intra- and inter-tasks. In this work, we address the challenge of identifying high-performance calibration sets for both pruning and quantization by analyzing intrinsic data properties rather than model-specific signals. We introduce \\texttt{\\textbf{ZipCal}}, a model-agnostic data curation strategy that maximizes lexical diversity based on Zipfian power laws. Experiments demonstrate that our method consistently outperforms standard uniform random sampling across various pruning benchmarks. Notably, it also performs on par, in terms of downstream performance, with a state-of-the-art method that relies on model perplexity. The latter becomes prohibitively expensive at large-scale models and datasets, while \\texttt{\\textbf{ZipCal}} is on average $\\sim$240$\\times$ faster due to its tractable linear complexity\\footnote{We make the code and the experiments available at https://github.com/FrancescoMonaco/ZipCal.}.", "authors": ["Francesco Pio Monaco", "Elia Cunegatti", "Flavio Vella", "Giovanni Iacca"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-17", "url": "https://arxiv.org/abs/2603.16105", "pdf_url": "https://arxiv.org/pdf/2603.16105v3", "arxiv_id": "2603.16105", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/FrancescoMonaco/ZipCal.}", "venue": null, "quality_score": 0.608} {"id": "73a6c57ab61a3d6802ae33462d4ba4d3c57ae63152da5fcbb770245e3be57e25", "sources": ["arxiv", "semantic_scholar"], "title": "Mostly Text, Smart Visuals: Asymmetric Text-Visual Pruning for Large Vision-Language Models", "abstract": "Network pruning is an effective technique for enabling lightweight Large Vision-Language Models (LVLMs), which primarily incorporates both weights and activations into the importance metric. However, existing efforts typically process calibration data from different modalities in a unified manner, overlooking modality-specific behaviors. This raises a critical challenge: how to address the divergent behaviors of textual and visual tokens for accurate pruning of LVLMs. To this end, we systematically investigate the sensitivity of visual and textual tokens to the pruning operation by decoupling their corresponding weights, revealing that: (i) the textual pathway should be calibrated via text tokens, since it exhibits higher sensitivity than the visual pathway; (ii) the visual pathway exhibits high redundancy, permitting even 50% sparsity. Motivated by these insights, we propose a simple yet effective Asymmetric Text-Visual Weight Pruning method for LVLMs, dubbed ATV-Pruning, which establishes the importance metric for accurate weight pruning by selecting the informative tokens from both textual and visual pathways. Specifically, ATV-Pruning integrates two primary innovations: first, a calibration pool is adaptively constructed by drawing on all textual tokens and a subset of visual tokens; second, we devise a layer-adaptive selection strategy to yield important visual tokens. Finally, extensive experiments across standard multimodal benchmarks verify the superiority of our ATV-Pruning over state-of-the-art methods.", "authors": ["Sijie Li", "Biao Qian", "Jungong Han"], "categories": ["cs.CV", "cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-16", "url": "https://arxiv.org/abs/2603.16001", "pdf_url": "https://arxiv.org/pdf/2603.16001v1", "arxiv_id": "2603.16001", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/LezJ/ATV-Pruning", "venue": null, "quality_score": 0.6067} {"id": "943a64d8001b65702238b54306a6c7b8e336656930e75411ac05ae1dc913342c", "sources": ["arxiv", "semantic_scholar"], "title": "Bridging Local and Global Knowledge: Cascaded Mixture-of-Experts Learning for Near-Shortest Path Routing", "abstract": "While deep learning models that leverage local features have demonstrated significant potential for near-optimal routing in dense Euclidean graphs, they struggle to generalize well in sparse networks where topological irregularities require broader structural awareness. To address this limitation, we train a Cascaded Mixture of Experts (Ca-MoE) to solve the all-pairs near-shortest path (APNSP) routing problem. Our Ca-MoE is a modular two-tier architecture that supports the decision-making for forwarder selection with lower-tier experts relying on local features and upper-tier experts relying on global features. It performs adaptive inference wherein the upper-tier experts are triggered only when the lower-tier ones do not suffice to achieve adequate decision quality. Computational efficiency is thus achieved by escalating model capacity only when necessitated by topological complexity, and parameter redundancy is avoided. Furthermore, we incorporate an online meta-learning strategy that facilitates independent expert fine-tuning and utilizes a stability-focused update mechanism to prevent catastrophic forgetting as new graph environments are encountered. Experimental evaluations demonstrate that Ca-MoE routing improves accuracy by up to 29.1% in sparse networks compared to single-expert baselines and maintains performance within 1%-6% of the theoretical upper bound across diverse graph densities.", "authors": ["Yung-Fu Chen", "Anish Arora"], "categories": ["cs.LG", "cs.NI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-16", "url": "https://arxiv.org/abs/2603.15541", "pdf_url": "https://arxiv.org/pdf/2603.15541v1", "arxiv_id": "2603.15541", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3267} {"id": "4fc59cfa68ba8cce5c5e3f44cdf82e25a4ae633fd0a96c9f95dd611ef236dfba", "sources": ["arxiv", "semantic_scholar"], "title": "ASAP: Attention-Shift-Aware Pruning for Efficient LVLM Inference", "abstract": "While Large Vision-Language Models (LVLMs) demonstrate exceptional multi-modal capabilities, the quadratic computational cost of processing high-resolution visual tokens remains a critical bottleneck. Though recent token reduction strategies attempt to accelerate inference, such methods inadequately exploit attention values and fail to address token redundancy. More critically, they overlook the ``attention shift'' phenomenon inherent in LVLMs, which skews token attention scores. In this work, we propose ASAP, a novel training-free, KV-Cache-compatible pruning recipe that comprehensively addresses these limitations. First, we mitigate the attention shift by utilizing a dynamic bidirectional soft attention mask, ensuring the selection of genuinely informative tokens rather than naive attention-based selection. Second, we posit that high semantic redundancy within the token set degrades performance. We therefore introduce a weighted soft merging component that merges semantically similar tokens, preserving only the most feature-dense visual patches for subsequent layers. ASAP achieves virtually lossless compression of visual context, retaining 99.02% of the original LLaVA-NeXT-7B performance while aggressively slashing computational FLOPs by ~80%.", "authors": ["Surendra Pathak", "Bo Han"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-15", "url": "https://arxiv.org/abs/2603.14549", "pdf_url": "https://arxiv.org/pdf/2603.14549v2", "arxiv_id": "2603.14549", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3259} {"id": "0a71a7ce56e0e696fe4c5519909e4f79843a225ea39dac30b0e23d3314d40ab1", "sources": ["arxiv", "semantic_scholar"], "title": "OxyGen: Unified KV Cache Management for VLA Inference under Multi-Task Parallelism", "abstract": "Embodied AI agents increasingly require parallel execution of multiple tasks, such as manipulation, conversation, and memory construction, from shared observations under distinct time constraints. Recent Mixture-of-Transformers (MoT) Vision-Language-Action Models (VLAs) architecturally support such heterogeneous outputs, yet existing inference systems fail to achieve efficient multi-task parallelism for on-device deployment because of redundant computation and resource contention. We identify isolated KV cache management as the root cause. To address this, we propose unified KV cache management, an inference design that treats the KV cache as a first-class shared resource across tasks and over time. This abstraction enables two key optimizations: cross-task KV sharing eliminates redundant prefill of shared observations, while cross-frame continuous batching decouples variable-length language decoding from fixed-rate action generation across control cycles. We implement this design for $π_{0.5}$, a popular MoT VLA, and evaluate it on both NVIDIA GeForce RTX 4090 and Jetson AGX Thor, two representative platforms for on-device VLA inference. OxyGen achieves up to 3.7$\\times$ speedup over isolated execution, delivering over 200 tokens/s language throughput and 70 Hz action frequency simultaneously without degrading action quality, and we further validate the gains on a real humanoid robot with on-board Jetson AGX Thor.", "authors": ["Xiangyu Li", "Huaizhi Tang", "Xin Ding", "Weijun Wang", "Ting Cao", "Yunxin Liu"], "categories": ["cs.RO", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-15", "url": "https://arxiv.org/abs/2603.14371", "pdf_url": "https://arxiv.org/pdf/2603.14371v2", "arxiv_id": "2603.14371", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3259} {"id": "c1302e1af1fe9142aad81a012d3adea61c5891458cc967ac2f3d8f1ae9876018", "sources": ["arxiv", "semantic_scholar"], "title": "Flood Risk Follows Valleys, Not Grids: Graph Neural Networks for Flash Flood Susceptibility Mapping in Himachal Pradesh with Conformal Uncertainty Quantification", "abstract": "Flash floods are the most destructive natural hazard in Himachal Pradesh (HP), India, causing over 400 fatalities and $1.2 billion in losses in the 2023 monsoon season alone. Existing risk maps treat every pixel independently, ignoring the basic fact that flooding upstream raises risk downstream. We address this with a Graph Neural Network (GraphSAGE) trained on a watershed connectivity graph (460 sub-watersheds, 1,700 directed edges), built from a six-year Sentinel-1 SAR flood inventory (2018-2023, 3,000 events) and 12 environmental variables at 30 m resolution. Four pixel-based ML models (RF, XGBoost, LightGBM, stacking ensemble) serve as baselines. All models are evaluated with leave-one-basin-out spatial cross-validation to avoid the 5-15% AUC inflation of random splits. Conformal prediction produces the first HP susceptibility maps with statistically guaranteed 90% coverage intervals. The GNN achieved AUC = 0.978 +/- 0.017, outperforming the best baseline (AUC = 0.881) and the published HP benchmark (AUC = 0.88). The +0.097 gain confirms that river connectivity carries predictive signal that pixel-based models miss. High-susceptibility zones overlap 1,457 km of highways (including 217 km of the Manali-Leh corridor), 2,759 bridges, and 4 major hydroelectric installations. Conformal intervals achieved 82.9% empirical coverage on the held-out 2023 test set; lower coverage in high-risk zones (45-59%) points to SAR label noise as a target for future work.", "authors": ["Paras Sharma", "Swastika Sharma"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-15", "url": "https://arxiv.org/abs/2603.15681", "pdf_url": "https://arxiv.org/pdf/2603.15681v1", "arxiv_id": "2603.15681", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Parassharmaa/flash-flood-zones-hp", "venue": null, "quality_score": 0.6053} {"id": "c75f50d846f9cb1c4b64eab5fa7875ca11c39204effdbbf0d0f2325a0f6ae2cb", "sources": ["arxiv", "semantic_scholar"], "title": "SemantiCache: Efficient KV Cache Compression via Semantic Chunking and Clustered Merging", "abstract": "Existing KV cache compression methods generally operate on discrete tokens or non-semantic chunks. However, such approaches often lead to semantic fragmentation, where linguistically coherent units are disrupted, causing irreversible information loss and degradation in model performance. To address this, we introduce SemantiCache, a novel compression framework that preserves semantic integrity by aligning the compression process with the semantic hierarchical nature of language. Specifically, we first partition the cache into semantically coherent chunks by delimiters, which are natural semantic boundaries. Within each chunk, we introduce a computationally efficient Greedy Seed-Based Clustering (GSC) algorithm to group tokens into semantic clusters. These clusters are further merged into semantic cores, enhanced by a Proportional Attention mechanism that rebalances the reduced attention contributions of the merged tokens. Extensive experiments across diverse benchmarks and models demonstrate that SemantiCache accelerates the decoding stage of inference by up to 2.61 times and substantially reduces memory footprint, while maintaining performance comparable to the original model.", "authors": ["Shunlong Wu", "Hai Lin", "Shaoshen Chen", "Tingwei Lu", "Yongqin Zeng", "Shaoxiong Zhan", "Hai-Tao Zheng", "Hong-Gee Kim"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-15", "url": "https://arxiv.org/abs/2603.14303", "pdf_url": "https://arxiv.org/pdf/2603.14303v1", "arxiv_id": "2603.14303", "doi": "10.1109/icassp55912.2026.11464823", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE International Conference on Acoustics, Speech, and Signal Processing", "quality_score": 0.5122} {"id": "8a35ce815134b0eb7c9379640f1b13c463bdea33e44353a7b9292700326225fd", "sources": ["arxiv", "semantic_scholar"], "title": "LightMoE: Reducing Mixture-of-Experts Redundancy through Expert Replacing", "abstract": "Mixture-of-Experts (MoE) based Large Language Models (LLMs) have demonstrated impressive performance and computational efficiency. However, their deployment is often constrained by substantial memory demands, primarily due to the need to load numerous expert modules. While existing expert compression techniques like pruning or merging attempt to mitigate this, they often suffer from irreversible knowledge loss or high training overhead. In this paper, we propose a novel expert compression paradigm termed expert replacing, which replaces redundant experts with parameter-efficient modules and recovers their capabilities with low training costs. We find that even a straightforward baseline of this paradigm yields promising performance. Building on this foundation, we introduce LightMoE, a framework that enhances the paradigm by introducing adaptive expert selection, hierarchical expert construction, and an annealed recovery strategy. Experimental results show that LightMoE matches the performance of LoRA fine-tuning at a 30% compression ratio. Even under a more aggressive 50% compression rate, it outperforms existing methods and achieves average performance improvements of 5.6% across five diverse tasks. These findings demonstrate that LightMoE strikes a superior balance among memory efficiency, training efficiency, and model performance.", "authors": ["Jiawei Hao", "Zhiwei Hao", "Jianyuan Guo", "Li Shen", "Yong Luo", "Han Hu", "Dan Zeng"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-13", "url": "https://arxiv.org/abs/2603.12645", "pdf_url": "https://arxiv.org/pdf/2603.12645v1", "arxiv_id": "2603.12645", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3245} {"id": "c5681253aeca3c3526727669d7ccd97b59709a5a19dde3ca709154d43b176ad1", "sources": ["arxiv", "semantic_scholar"], "title": "MoEKD: Mixture-of-Experts Knowledge Distillation for Robust and High-Performing Compressed Code Models", "abstract": "Large language models for code have achieved strong performance across diverse software analytics tasks, yet their real-world adoption remains limited by high computational demands, slow inference speeds, significant energy consumption, and environmental impact. Knowledge distillation (KD) offers a practical solution by transferring knowledge from a large model to a smaller and more efficient model. Despite its effectiveness, recent studies show that models distilled from a single source often exhibit degraded adversarial robustness, even when robustness-aware distillation techniques are employed. These observations suggest a fundamental limitation of single-source distillation in simultaneously transferring high-quality and robust knowledge. To overcome this limitation, we propose Mixture of Experts Knowledge Distillation (MoEKD), a KD framework that leverages a Mixture of Experts (MoE) architecture to enable more effective and robust knowledge transfer from multiple specialized experts into a compact model. MoEKD decomposes the distillation process into expert and router training, aggregation of expert knowledge through a learned routing mechanism, and distillation from the aggregated knowledge. We evaluate MoEKD on the vulnerability detection task using CodeBERT and GraphCodeBERT models. Experimental results show that MoEKD not only improves adversarial robustness by up to 35.8%, but also enhances predictive performance by up to 13%, compared to state-of-the-art KD baselines, including Compressor and AVATAR. Furthermore, an ablation study demonstrates that aggregating expert knowledge enables ultra-compact models to maintain competitive performance even when their size is reduced by approximately half. Overall, these results highlight the effectiveness of multi-expert knowledge aggregation in addressing key limitations of existing single-source KD approaches.", "authors": ["Md. Abdul Awal", "Mrigank Rochan", "Chanchal K. Roy"], "categories": ["cs.SE"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-13", "url": "https://arxiv.org/abs/2603.13213", "pdf_url": "https://arxiv.org/pdf/2603.13213v1", "arxiv_id": "2603.13213", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3245} {"id": "62afd323071f0d51198d4e800fa9cd40bb245d855841b80f2031e4e146287b86", "sources": ["arxiv", "semantic_scholar"], "title": "LongFlow: Efficient KV Cache Compression for Reasoning Models", "abstract": "Recent reasoning models such as OpenAI-o1 and DeepSeek-R1 have shown strong performance on complex tasks including mathematical reasoning and code generation. However, this performance gain comes with substantially longer output sequences, leading to significantly increased deployment costs. In particular, long outputs require large KV caches, resulting in high memory consumption and severe bandwidth pressure during attention computation. Most existing KV cache optimization methods are designed for long-input, short-output scenarios and are ineffective for the long-output setting of reasoning models. Moreover, importance estimation in prior work is computationally expensive and becomes prohibitive when continuous re-evaluation is required during long generation. To address these challenges, we propose LongFlow, a KV cache compression method with an efficient importance estimation metric derived from an intermediate result of attention computation using only the current query. This design introduces negligible computational overhead and requires no auxiliary storage. We further develop a custom kernel that fuses FlashAttention, importance estimation, and token eviction into a single optimized operator, improving system-level efficiency. Experiments show that LongFlow achieves up to an 11.8 times throughput improvement with 80% KV cache compression with minimal impact on model accuracy.", "authors": ["Yi Su", "Zhenxu Tian", "Dan Qiao", "Yuechi Zhou", "Juntao Li", "Min Zhang"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-12", "url": "https://arxiv.org/abs/2603.11504", "pdf_url": "https://arxiv.org/pdf/2603.11504v2", "arxiv_id": "2603.11504", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3237} {"id": "6aff84c78c181251f6eeeb77ad0b6b4ece78cbc5be7da07d040fa99d080eedad", "sources": ["arxiv", "semantic_scholar"], "title": "Accelerating Suffix Jailbreak attacks with Prefix-Shared KV-cache", "abstract": "Suffix jailbreak attacks serve as a systematic method for red-teaming Large Language Models (LLMs) but suffer from prohibitive computational costs, as a large number of candidate suffixes need to be evaluated before identifying a jailbreak suffix. This paper presents Prefix-Shared KV Cache (PSKV), a plug-and-play inference optimization technique tailored for jailbreak suffix generation. Our method is motivated by a key observation that when performing suffix jailbreaking, while a large number of candidate prompts need to be evaluated, they share the same targeted harmful instruction as the prefix. Therefore, instead of performing redundant inference on the duplicated prefix, PSKV maintains a single KV cache for this prefix and shares it with every candidate prompt, enabling the parallel inference of diverse suffixes with minimal memory overhead. This design enables more aggressive batching strategies that would otherwise be limited by memory constraints. Extensive experiments on six widely used suffix attacks across five widely deployed LLMs demonstrate that PSKV reduces inference time by 40\\% and peak memory usage by 50\\%, while maintaining the original Attack Success Rate (ASR). The code has been submitted and will be released publicly.", "authors": ["Xinhai Wang", "Shaopeng Fu", "Shu Yang", "Liangyu Wang", "Tianhang Zheng", "Di Wang"], "categories": ["cs.CR", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-12", "url": "https://arxiv.org/abs/2603.13420", "pdf_url": "https://arxiv.org/pdf/2603.13420v2", "arxiv_id": "2603.13420", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3237} {"id": "5408c2ea0d17de6c9257d3dbc5f23288f22735208c6ff399b70106d19995cfff", "sources": ["arxiv", "semantic_scholar"], "title": "Where Matters More Than What: Decoding-aligned KV Cache Compression via Position-aware Pseudo Queries", "abstract": "The Key-Value (KV) cache is crucial for efficient Large Language Models (LLMs) inference, but excessively long contexts drastically increase KV cache memory footprint. Existing KV cache compression methods typically rely on input-side attention patterns within a prompt observation window to estimate token importance during the prefill stage. They fail to preserve critical tokens for future generation since these assessments are not derived from the decoding process. Intuitively, an effective observation window should mirror the decoding-stage queries to accurately reflect which tokens the generation process will attend to. However, ground-truth decoding queries are inherently unavailable during inference. For constructing pseudo queries to approximate them, we find that positional information plays a more critical role than semantic content. Motivated by this insight, we propose decoding-aligned KV cache compression via position-aware pseudo queries (DapQ), a novel and lightweight eviction framework that leverages position-aware pseudo queries to simulate the output tokens, thereby establishing an effective observation window for importance assessment. It aligns closely with the actual generation context and enables precise token eviction. Extensive evaluations across multiple benchmarks and LLMs demonstrate that DapQ achieves superior performance, particularly under strict memory constraints (e.g., up to nearly lossless performance 99.5% on NIAH with 3% KV cache budgets).", "authors": ["Zhenxu Tian", "Yi Su", "Juntao Li", "Min Zhang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-12", "url": "https://arxiv.org/abs/2603.11564", "pdf_url": "https://arxiv.org/pdf/2603.11564v1", "arxiv_id": "2603.11564", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3237} {"id": "bf0f16d8e660f4559def9b285d5c616764e7222fa47ee96e3ccdf52716efda04", "sources": ["arxiv", "semantic_scholar"], "title": "Task-Conditioned Routing Signatures in Sparse Mixture-of-Experts Transformers", "abstract": "Sparse Mixture-of-Experts (MoE) architectures enable efficient scaling of large language models through conditional computation, yet the routing mechanisms responsible for expert selection remain poorly understood. In this work, we introduce routing signatures, a vector representation summarizing expert activation patterns across layers for a given prompt, and use them to study whether MoE routing exhibits task-conditioned structure. Using OLMoE-1B-7B-0125-Instruct as an empirical testbed, we show that prompts from the same task category induce highly similar routing signatures, while prompts from different categories exhibit substantially lower similarity. Within-category routing similarity (0.8435 +/- 0.0879) significantly exceeds across-category similarity (0.6225 +/- 0.1687), corresponding to Cohen's d = 1.44. A logistic regression classifier trained solely on routing signatures achieves 92.5% +/- 6.1% cross-validated accuracy on four-way task classification. To ensure statistical validity, we introduce permutation and load-balancing baselines and show that the observed separation is not explained by sparsity or balancing constraints alone. We further analyze layer-wise signal strength and low-dimensional projections of routing signatures, finding that task structure becomes increasingly apparent in deeper layers. These results suggest that routing in sparse transformers is not merely a balancing mechanism, but a measurable task-sensitive component of conditional computation. We release MOE-XRAY, a lightweight toolkit for routing telemetry and analysis.", "authors": ["Mynampati Sri Ranganadha Avinash"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-11", "url": "https://arxiv.org/abs/2603.11114", "pdf_url": "https://arxiv.org/pdf/2603.11114v1", "arxiv_id": "2603.11114", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.323} {"id": "c9b6dafdbad61df80fa18fcf60b0597295f43516d54b8601ce8d673842787915", "sources": ["arxiv", "semantic_scholar"], "title": "Optimal Expert-Attention Allocation in Mixture-of-Experts: A Scalable Law for Dynamic Model Design", "abstract": "This paper presents a novel extension of neural scaling laws to Mixture-of-Experts (MoE) models, focusing on the optimal allocation of compute between expert and attention sub-layers. As MoE architectures have emerged as an efficient method for scaling model capacity without proportionally increasing computation, determining the optimal expert-attention compute ratio becomes critical. We define the ratio $r$ as the fraction of total FLOPs per token dedicated to the expert layers versus the attention layers, and explore how this ratio interacts with the overall compute budget and model sparsity. Through extensive experiments with GPT-style MoE Transformers, we empirically find that the optimal ratio $r^*$ follows a power-law relationship with total compute and varies with sparsity. Our analysis leads to an explicit formula for $r^*$, enabling precise control over the expert-attention compute allocation. We generalize the Chinchilla scaling law by incorporating this architectural parameter, providing a new framework for tuning MoE models beyond size and data. Our findings offer practical guidelines for designing efficient MoE models, optimizing performance while respecting fixed compute budgets.", "authors": ["Junzhuo Li", "Peijie Jiang", "Changxin Tian", "Jia Liu", "Zhiqiang Zhang", "Xuming Hu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-11", "url": "https://arxiv.org/abs/2603.10379", "pdf_url": "https://arxiv.org/pdf/2603.10379v1", "arxiv_id": "2603.10379", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.323} {"id": "004c0e3045d469626b727ab0354521a734e9eb15fba6a20724f141dc0a0976b0", "sources": ["arxiv", "semantic_scholar"], "title": "LookaheadKV: Fast and Accurate KV Cache Eviction by Glimpsing into the Future without Generation", "abstract": "Transformer-based large language models (LLMs) rely on key-value (KV) caching to avoid redundant computation during autoregressive inference. While this mechanism greatly improves efficiency, the cache size grows linearly with the input sequence length, quickly becoming a bottleneck for long-context tasks. Existing solutions mitigate this problem by evicting prompt KV that are deemed unimportant, guided by estimated importance scores. Notably, a recent line of work proposes to improve eviction quality by \"glimpsing into the future\", in which a draft generator produces a surrogate future response approximating the target model's true response, and this surrogate is subsequently used to estimate the importance of cached KV more accurately. However, these approaches rely on computationally expensive draft generation, which introduces substantial prefilling overhead and limits their practicality in real-world deployment. To address this challenge, we propose LookaheadKV, a lightweight eviction framework that leverages the strength of surrogate future response without requiring explicit draft generation. LookaheadKV augments transformer layers with parameter-efficient modules trained to predict true importance scores with high accuracy. Our design ensures negligible runtime overhead comparable to existing inexpensive heuristics, while achieving accuracy superior to more costly approximation methods. Extensive experiments on long-context understanding benchmarks, across a wide range of models, demonstrate that our method not only outperforms recent competitive baselines in various long-context understanding tasks, but also reduces the eviction cost by up to 14.5x, leading to significantly faster time-to-first-token. Our code is available at https://github.com/SamsungLabs/LookaheadKV.", "authors": ["Jinwoo Ahn", "Ingyu Seong", "Akhil Kedia", "Junhan Kim", "Hyemi Jang", "Kangwook Lee", "Yongkweon Jeon"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-11", "url": "https://arxiv.org/abs/2603.10899", "pdf_url": "https://arxiv.org/pdf/2603.10899v1", "arxiv_id": "2603.10899", "doi": null, "citation_count": 2, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/SamsungLabs/LookaheadKV", "venue": null, "quality_score": 0.5999} {"id": "d5e1c23d570d2ef80801ffd6403ec81b898e5120d46110b1c3ed283f27679c84", "sources": ["arxiv", "semantic_scholar"], "title": "ReMix: Reinforcement routing for mixtures of LoRAs in LLM finetuning", "abstract": "Low-rank adapters (LoRAs) are a parameter-efficient finetuning technique that injects trainable low-rank matrices into pretrained models to adapt them to new tasks. Mixture-of-LoRAs models expand neural networks efficiently by routing each layer input to a small subset of specialized LoRAs of the layer. Existing Mixture-of-LoRAs routers assign a learned routing weight to each LoRA to enable end-to-end training of the router. Despite their empirical promise, we observe that the routing weights are typically extremely imbalanced across LoRAs in practice, where only one or two LoRAs often dominate the routing weights. This essentially limits the number of effective LoRAs and thus severely hinders the expressive power of existing Mixture-of-LoRAs models. In this work, we attribute this weakness to the nature of learnable routing weights and rethink the fundamental design of the router. To address this critical issue, we propose a new router designed that we call Reinforcement Routing for Mixture-of-LoRAs (ReMix). Our key idea is using non-learnable routing weights to ensure all active LoRAs to be equally effective, with no LoRA dominating the routing weights. However, our routers cannot be trained directly via gradient descent due to our non-learnable routing weights. Hence, we further propose an unbiased gradient estimator for the router by employing the reinforce leave-one-out (RLOO) technique, where we regard the supervision loss as the reward and the router as the policy in reinforcement learning. Our gradient estimator also enables to scale up training compute to boost the predictive performance of our ReMix. Extensive experiments demonstrate that our proposed ReMix significantly outperform state-of-the-art parameter-efficient finetuning methods under a comparable number of activated parameters.", "authors": ["Ruizhong Qiu", "Hanqing Zeng", "Yinglong Xia", "Yiwen Meng", "Ren Chen", "Jiarui Feng", "Dongqi Fu", "Qifan Wang", "Jiayi Liu", "Jun Xiao", "Xiangjun Fan", "Benyu Zhang", "Hong Li", "Zhining Liu", "Hyunsik Yoo", "Zhichen Zeng", "Tianxin Wei", "Hanghang Tong"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-10", "url": "https://arxiv.org/abs/2603.10160", "pdf_url": "https://arxiv.org/pdf/2603.10160v1", "arxiv_id": "2603.10160", "doi": null, "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3223} {"id": "7092ad88ab03de00d64d5214d88498a96c7931d04dfbc270024b3743233d9408", "sources": ["arxiv", "semantic_scholar"], "title": "CORAL: Scalable Multi-Task Robot Learning via LoRA Experts", "abstract": "Deploying Vision-Language-Action (VLA) models in real-world robotics exposes a core multi-task learning challenge: reconciling task interference in multi-task robotic learning. When multiple tasks are jointly fine-tuned in a single stage, gradients from different tasks can conflict, causing negative transfer and reducing per-task performance. Yet maintaining a separate full checkpoint per task is often storage- and deployment-prohibitive. To address this dilemma, we present CORAL, a backbone- and embodiment-agnostic framework designed primarily to mitigate multi-task interference while remaining naturally extensible to a continuous stream of new tasks. CORAL freezes a single pre-trained VLA backbone and attaches one lightweight Low-Rank Adaptation (LoRA) expert per task; at runtime, a dynamic inference engine (the CORAL Manager) routes language instructions to the appropriate expert and swaps experts on the fly with zero inference overhead. This strict parameter isolation avoids complex gating networks and prevents parameter-level cross-task interference by construction; as an added capability, it also enables sequentially introducing new tasks without parameter overwriting caused by catastrophic forgetting. We validate CORAL on a real-world Galaxea R1 dual-arm mobile manipulator and three simulation benchmarks (LIBERO, WidowX, Google Robot), where CORAL overcomes fine-grained instructional ambiguity and substantially outperforms joint training, yielding a practical and scalable system for lifelong multi-task robot learning. Website: https://frontierrobo.github.io/CORAL", "authors": ["Yuankai Luo", "Woping Chen", "Tong Liang", "Zhenguo Li"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-10", "url": "https://arxiv.org/abs/2603.09298", "pdf_url": "https://arxiv.org/pdf/2603.09298v1", "arxiv_id": "2603.09298", "doi": null, "citation_count": 4, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3223} {"id": "a906ddc92db315267ecaa21ba80eef8074bc67d74d0d8580cbb8351ae1190927", "sources": ["arxiv", "semantic_scholar"], "title": "ForgeDreamer: Industrial Text-to-3D Generation with Multi-Expert LoRA and Cross-View Hypergraph", "abstract": "Current text-to-3D generation methods excel in natural scenes but struggle with industrial applications due to two critical limitations: domain adaptation challenges where conventional LoRA fusion causes knowledge interference across categories, and geometric reasoning deficiencies where pairwise consistency constraints fail to capture higher-order structural dependencies essential for precision manufacturing. We propose a novel framework named ForgeDreamer addressing both challenges through two key innovations. First, we introduce a Multi-Expert LoRA Ensemble mechanism that consolidates multiple category-specific LoRA models into a unified representation, achieving superior cross-category generalization while eliminating knowledge interference. Second, building on enhanced semantic understanding, we develop a Cross-View Hypergraph Geometric Enhancement approach that captures structural dependencies spanning multiple viewpoints simultaneously. These components work synergistically improved semantic understanding, enables more effective geometric reasoning, while hypergraph modeling ensures manufacturing-level consistency. Extensive experiments on a custom industrial dataset demonstrate superior semantic generalization and enhanced geometric fidelity compared to state-of-the-art approaches. Code is available at https://github.com/Junhaocai27/ForgeDreamer", "authors": ["Junhao Cai", "Deyu Zeng", "Junhao Pang", "Lini Li", "Zongze Wu", "Xiaopin Zhong"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-10", "url": "https://arxiv.org/abs/2603.09266", "pdf_url": "https://arxiv.org/pdf/2603.09266v4", "arxiv_id": "2603.09266", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Junhaocai27/ForgeDreamer", "venue": null, "quality_score": 0.5985} {"id": "abaf72d9dcb8237f170e98af3b8e9308c2e965d7c8234d464348ebbfec8e115b", "sources": ["arxiv", "semantic_scholar"], "title": "Speculating Experts Accelerates Inference for Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) models have gained popularity as a means of scaling the capacity of large language models (LLMs) while maintaining sparse activations and reduced per-token compute. However, in memory-constrained inference settings, expert weights must be offloaded to CPU, creating a performance bottleneck from CPU-GPU transfers during decoding. We propose an expert prefetching scheme that leverages currently computed internal model representations to speculate future experts, enabling memory transfers to overlap with computation. Across multiple MoE architectures, we demonstrate that future experts can be reliably predicted by these internal representations. We also demonstrate that executing speculated experts generally maintains downstream task accuracy, thus preserving more effective compute-memory overlap by eliminating the need to re-fetch true router-selected experts. Integrated into an optimized inference engine, our approach achieves up to 14\\% reduction in time per output token (TPOT) over on-demand loading of experts from CPU memory. For MoEs where speculative execution alone yields suboptimal accuracy, we further examine lightweight estimators that improve expert prediction hit rates, thereby reducing performance degradation. Our code is released in open-source at https://github.com/axonn-ai/yalis/tree/offload_prefetch.", "authors": ["Vivan Madan", "Prajwal Singhania", "Abhinav Bhatele", "Tom Goldstein", "Ashwinee Panda"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-09", "url": "https://arxiv.org/abs/2603.19289", "pdf_url": "https://arxiv.org/pdf/2603.19289v1", "arxiv_id": "2603.19289", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/axonn-ai/yalis/tree/offload_prefetch", "venue": null, "quality_score": 0.5972} {"id": "0100340ad49fd23fe58b9e0a96b3229672973e90dda2f753b21b72f518da7a91", "sources": ["arxiv", "semantic_scholar"], "title": "Scaling Machine Learning Interatomic Potentials with Mixtures of Experts", "abstract": "Machine Learning Interatomic Potentials (MLIPs) enable accurate large-scale atomistic simulations, yet improving their expressive capacity efficiently remains challenging. Here we systematically develop Mixture-of-Experts (MoE) and Mixture-of-Linear-Experts (MoLE) architectures for MLIPs and analyze the effects of routing strategies and expert designs. We show that sparse activation combined with shared experts yields substantial performance gains, and that nonlinear MoE formulations outperform MoLE when shared experts are present, underscoring the importance of nonlinear expert specialization. Furthermore, element-wise routing consistently surpasses configuration-level routing, while global MoE routing often leads to numerical instability. The resulting element-wise MoE model achieves state-of-the-art accuracy across the OMol25, OMat24, and OC20M benchmarks. Analysis of routing patterns reveals chemically interpretable expert specialization aligned with periodic-table trends, indicating that the model effectively captures element-specific chemical characteristics for precise interatomic modeling.", "authors": ["Yuzhi Liu", "Duo Zhang", "Anyang Peng", "Weinan E", "Linfeng Zhang", "Han Wang"], "categories": ["physics.chem-ph", "cs.LG", "physics.comp-ph"], "fields_of_study": ["Physics", "Computer Science"], "published_date": "2026-03-09", "url": "https://arxiv.org/abs/2603.07977", "pdf_url": "https://arxiv.org/pdf/2603.07977v2", "arxiv_id": "2603.07977", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3216} {"id": "e1f0fe191047317dca18254b9917abfe82eaff9ca8123b38100dbfa97f705e2d", "sources": ["arxiv", "semantic_scholar"], "title": "LAR-MoE: Latent-Aligned Routing for Mixture of Experts in Robotic Imitation Learning", "abstract": "Imitation learning enables robots to acquire manipulation skills from demonstrations, yet deploying a policy across tasks with heterogeneous dynamics remains challenging, as models tend to average over distinct behavioral modes present in the demonstrations. Mixture-of-Experts (MoE) architectures address this by activating specialized subnetworks, but requires meaningful skill decompositions for expert routing. We introduce Latent-Aligned Routing for Mixture of Experts (LAR-MoE), a two-stage framework that decouples unsupervised skill discovery from policy learning. In pre-training, we learn a joint latent representation between observations and future actions through student-teacher co-training. In a post-training stage, the expert routing is regularized to follow the structure of the learned latent space, preventing expert collapse while maintaining parameter efficiency. We evaluate LAR-MoE in simulation and on hardware. On the LIBERO benchmark, our method achieves a 95.2% average success rate with 150M parameters. On a surgical bowel grasping and retraction task, LAR-MoE matches a supervised MoE baseline without requiring any phase annotations, and transfers zero-shot to ex vivo porcine tissue. Our findings suggest that latent-aligned routing provides a principled alternative to supervised skill decomposition, enabling structured expert specialization from unlabeled demonstrations.", "authors": ["Ariel Rodriguez", "Chenpan Li", "Lorenzo Mazza", "Rayan Younis", "Ortrun Hellig", "Sebastian Bodenstedt", "Martin Wagner", "Stefanie Speidel"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-09", "url": "https://arxiv.org/abs/2603.08476", "pdf_url": "https://arxiv.org/pdf/2603.08476v1", "arxiv_id": "2603.08476", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3216} {"id": "88afee5d3a1760cf70d0adb717a86ab3074224599459a10e9763b9e102cd91ac", "sources": ["arxiv", "semantic_scholar"], "title": "LycheeCluster: Efficient Long-Context Inference with Structure-Aware Chunking and Hierarchical KV Indexing", "abstract": "The quadratic complexity of the attention mechanism and the substantial memory footprint of the Key-Value (KV) cache present severe computational and memory challenges for Large Language Models (LLMs) processing long contexts. Existing retrieval-based methods often compromise semantic integrity through fixed-size chunking and suffer from inefficient linear scanning. In this paper, we propose LycheeCluster, a novel method for efficient KV cache management. LycheeCluster preserves local semantic coherence via boundary-aware chunking and constructs a recursive hierarchical index rooted in the triangle inequality. This design transforms cache retrieval from a linear scan into a theoretically bounded, logarithmic-time pruning process, while a lazy update strategy supports efficient streaming generation. Experiments demonstrate that LycheeCluster achieves up to a 3.6x end-to-end inference speedup with negligible degradation in model performance, outperforming state-of-the-art KV cache management methods (e.g., Quest, ClusterKV). We will release our code and kernels after publication.", "authors": ["Dongfang Li", "Zixuan Liu", "Gang Lin", "Baotian Hu", "Min Zhang"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-09", "url": "https://arxiv.org/abs/2603.08453", "pdf_url": "https://arxiv.org/pdf/2603.08453v1", "arxiv_id": "2603.08453", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3216} {"id": "26d01da58259be37fc075a39a6ebfbf9d538e260923e9fc2abaf78f6d5b3957a", "sources": ["arxiv", "semantic_scholar"], "title": "IMSE: Intrinsic Mixture of Spectral Experts Fine-tuning for Test-Time Adaptation", "abstract": "Test-time adaptation (TTA) has been widely explored to prevent performance degradation when test data differ from the training distribution. However, fully leveraging the rich representations of large pretrained models with minimal parameter updates remains underexplored. In this paper, we propose Intrinsic Mixture of Spectral Experts (IMSE) that leverages the spectral experts inherently embedded in Vision Transformers. We decompose each linear layer via singular value decomposition (SVD) and adapt only the singular values, while keeping the singular vectors fixed. We further identify a key limitation of entropy minimization in TTA: it often induces feature collapse, causing the model to rely on domain-specific features rather than class-discriminative features. To address this, we propose a diversity maximization loss based on expert-input alignment, which encourages diverse utilization of spectral experts during adaptation. In the continual test-time adaptation (CTTA) scenario, beyond preserving pretrained knowledge, it is crucial to retain and reuse knowledge from previously observed domains. We introduce Domain-Aware Spectral Code Retrieval, which estimates input distributions to detect domain shifts, and retrieves adapted singular values for rapid adaptation. Consequently, our method achieves state-of-the-art performance on various distribution-shift benchmarks under the TTA setting. In CTTA and Gradual CTTA, it further improves accuracy by 3.4 percentage points (pp) and 2.4 pp, respectively, while requiring 385 times fewer trainable parameters. Our code is available at https://github.com/baek85/IMSE.", "authors": ["Sunghyun Baek", "Jaemyung Yu", "Seunghee Koh", "Minsu Kim", "Hyeonseong Jeon", "Junmo Kim"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-09", "url": "https://arxiv.org/abs/2603.07926", "pdf_url": "https://arxiv.org/pdf/2603.07926v3", "arxiv_id": "2603.07926", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/baek85/IMSE", "venue": null, "quality_score": 0.5972} {"id": "2f40f4bc136d02fadb202ace7509768d0c66e7dadf6f72a5a951b904cbf03ff0", "sources": ["arxiv", "semantic_scholar"], "title": "Mixed Effects Mixture of Experts: Modeling Double Heterogeneous Trajectories", "abstract": "Linear mixed-effects model (LMM) is a cornerstone of longitudinal data analysis, but is limited to adeptly make heterogeneous analyses predictable under both group-specific fixed effects and subject-specific random effects. To address this challenge, we propose a novel statistical framework by using a large model prototype: a mixed effects mixture of experts model (MEMoE). This framework integrates the divide-and-conquer paradigm of Mixture of Experts Models with classical mixed-effect modeling. In the proposed MEMoE, each expert is a full LMM dedicated to capturing the longitudinal trajectory of a specific latent subpopulation, while another model gating function learns to route subjects to the most appropriate expert in a data-driven manner based on baseline covariates. We develop a robust inferential procedure for parameter estimation based on the Laplace Expectation-Maximization algorithm, with standard errors calibrated using robust sandwich estimators to account for potential model misspecification. Extensive simulation studies and an empirical application demonstrate that MEMoE outperforms both traditional single-population LMM and conventional Mixture of Experts models in terms of parameter recovery, classification accuracy, and overall model fit.", "authors": ["Xinkai Yue", "Xiaodong Yan", "Haohui Han", "Liya Fu"], "categories": ["stat.ME"], "fields_of_study": ["Mathematics"], "published_date": "2026-03-08", "url": "https://arxiv.org/abs/2603.07479", "pdf_url": "https://arxiv.org/pdf/2603.07479v1", "arxiv_id": "2603.07479", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3208} {"id": "15d369a805ab9b6930c6e8660f43829401dda2d8ae25c1922c92070204890980", "sources": ["arxiv", "semantic_scholar"], "title": "EvoESAP: Non-Uniform Expert Pruning for Sparse MoE", "abstract": "Sparse Mixture-of-Experts (SMoE) language models achieve strong capability at low per-token compute, yet deployment remains constrained by memory footprint and throughput because the full expert pool must still be stored and served. Post-training expert pruning reduces this cost, but most methods focus on which experts to prune within each layer and default to a uniform layer-wise sparsity allocation, even though the layer-wise allocation can strongly affect performance. We decouple pruning into within-layer expert ranking and across-layer budget allocation, and introduce \\textbf{E}xpected \\textbf{S}peculative \\textbf{A}cceptance \\textbf{P}roxy (\\textbf{ESAP}), a speculative-decoding-inspired, teacher-forced metric that measures how well a pruned model matches the full model without costly autoregressive decoding. ESAP is bounded and stable, enabling cheap comparison of many candidates. Building on ESAP, we propose EvoESAP, an evolutionary search framework that finds an improved non-uniform layer-wise sparsity allocation under a fixed global budget while holding the within-layer pruning order fixed, making it a plug-and-play method for criteria such as Frequency, EAN, SEER, and REAP. Across 7B--30B SMoE LLMs at 25\\% and 50\\% sparsity, EvoESAP consistently discovers non-uniform allocations that improve open-ended generation (up to \\textbf{+19.6\\%} on MATH-500 at 50\\% sparsity) while preserving competitive multiple-choice accuracy compared with uniform pruning at the same sparsity. Code is available at https://github.com/ZongfangLiu/EvoESAP.", "authors": ["Zongfang Liu", "Shengkun Tang", "Boyang Sun", "Zhiqiang Shen", "Xin Yuan"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-06", "url": "https://arxiv.org/abs/2603.06003", "pdf_url": "https://arxiv.org/pdf/2603.06003v2", "arxiv_id": "2603.06003", "doi": null, "citation_count": 3, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/ZongfangLiu/EvoESAP", "venue": null, "quality_score": 0.5931} {"id": "e8b068df3f4ec9c9fd0283ab4a34ab5f9b49cb3c34a0f111ee05d0952c447e8c", "sources": ["arxiv", "semantic_scholar"], "title": "Video Compression Meets Video Generation: Latent Inter-Frame Pruning with Attention Recovery", "abstract": "Current video generation models suffer from high computational latency, making real-time applications prohibitively costly. In this paper, we address this limitation by exploiting the temporal redundancy inherent in video latent patches. To this end, we propose the Latent Inter-frame Pruning with Attention Recovery (LIPAR) framework, which detects and skips recomputing duplicated latent patches. Additionally, we introduce a novel Attention Recovery mechanism that approximates the attention values of pruned tokens, thereby removing visual artifacts arising from naively applying the pruning method. Empirically, our method increases video editing throughput by $1.53\\times$, achieving an average of 19.3 FPS on an NVIDIA RTX 4090 with the 1.3B Self-Forcing model (4-step denoising, FP16). The proposed method does not compromise generation quality and can be seamlessly integrated with the model without additional training. Our approach effectively bridges the gap between traditional compression algorithms and modern generative pipelines.", "authors": ["Dennis Menn", "Yuedong Yang", "Bokun Wang", "Xiwen Wei", "Mustafa Munir", "Feng Liang", "Radu Marculescu", "Chenfeng Xu", "Diana Marculescu"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-06", "url": "https://arxiv.org/abs/2603.05811", "pdf_url": "https://arxiv.org/pdf/2603.05811v2", "arxiv_id": "2603.05811", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3194} {"id": "a72ed7fcb916ff5f5e93f39f757a45ed90e967bec92066f1e8091d5025e5412c", "sources": ["arxiv", "semantic_scholar"], "title": "ButterflyViT: 354$\\times$ Expert Compression for Edge Vision Transformers", "abstract": "Deploying sparse Mixture of Experts(MoE) Vision Transformers remains a challenge due to linear expert memory scaling. Linear memory scaling stores $N$ independent expert weight matrices requiring $\\mathcal{O}(N_E \\cdot d^2)$ memory, which exceeds edge devices memory budget. Current compression methods like quantization, pruning and low-rank factorization reduce constant factors but leave the scaling bottleneck unresolved. We introduce ButterflyViT, a method that treats experts not as independent weight matrices but as geometric reorientations of a unified shared quantized substrate. Diversity among experts arises from viewing different angles of shared capacity, not from redundant storage. By applying learned rotations to a shared ternary prototype, each expert yields $\\mathcal{O}(d_{\\text{model}} \\cdot d_{\\text{ff}} + N_E \\cdot n_\\ell \\cdot d)$ memory which is sub-linear in the number of experts. To address the unique challenges of vision, a spatial smoothness regulariser is introduced that penalises routing irregularities between adjacent patch tokens, turning patch correlation into a training signal. Across image classification tasks on CIFAR-100, ButterflyViT achieves 354$\\times$ memory reduction at 64 experts with negligible accuracy loss. ButterflyViT allows multiple experts to fit on edge-constrained devices showing that geometric parameterization breaks linear scaling.", "authors": ["Aryan Karmore"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-06", "url": "https://arxiv.org/abs/2603.06746", "pdf_url": "https://arxiv.org/pdf/2603.06746v1", "arxiv_id": "2603.06746", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3194} {"id": "4b6300ee0dc9a714d53be5a8f22959b02d75ae8892ff1d79c5d22ccf884d7aa8", "sources": ["arxiv", "semantic_scholar"], "title": "MoE Lens -- An Expert Is All You Need", "abstract": "Mixture of Experts (MoE) models enable parameter-efficient scaling through sparse expert activations, yet optimizing their inference and memory costs remains challenging due to limited understanding of their specialization behavior. We present a systematic analysis of expert specialization in MoEs through two complementary approaches: domain-specific routing patterns and an early decoding framework that tracks expert contributions to output representations. Our analysis of the DeepSeekMoE model reveals that despite having 64 routed experts with 6 active for each layer's computation, the model predominantly relies on a few specialized experts, with the top-weighted expert's output closely approximating the full ensemble prediction. We quantitatively validate these findings through a systematic analysis of the token routing distribution, demonstrating that very few experts handle over 50\\% of routing decisions across different specialized domains. Hidden state similarity between single and ensemble experts for every layer is extremely high, with some layers having cosine similarity as high as 0.95 and perplexity increasing by only 5\\% when using a single expert across all three domains. Our results indicate that Mixture of Experts models exhibit concentrated expertise highlighting potential opportunities for inference optimization through targeted expert pruning while maintaining model performance and opening avenues towards studying localization of learned knowledge in these models.", "authors": ["Marmik Chaudhari", "Idhant Gulati", "Nishkal Hundia", "Pranav Karra", "Shivam Raval"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-06", "url": "https://arxiv.org/abs/2603.05806", "pdf_url": "https://arxiv.org/pdf/2603.05806v1", "arxiv_id": "2603.05806", "doi": null, "citation_count": 11, "influential_citation_count": 2, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3194} {"id": "5ec00039916aa4614b68a0a56d271285b5ab6d5c39cde89c38bb74fa8ca1b317", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Universal Experts: Scaling Virtual Width via Depth-Width Transformation", "abstract": "Mixture-of-Experts (MoE) decouples model capacity from per-token computation, yet their scalability remains limited by the physical dimensions of depth and width. To overcome this, we propose Mixture of Universal Experts (MOUE),a MoE generalization introducing a novel scaling dimension: Virtual Width. In general, MoUE aims to reuse a universal layer-agnostic expert pool across layers, converting depth into virtual width under a fixed per-token activation budget. However, two challenges remain: a routing path explosion from recursive expert reuse, and a mismatch between the exposure induced by reuse and the conventional load-balancing objectives. We address these with three core components: a Staggered Rotational Topology for structured expert sharing, a Universal Expert Load Balance for depth-aware exposure correction, and a Universal Router with lightweight trajectory state for coherent multi-step routing. Empirically, MoUE consistently outperforms matched MoE baselines by up to 1.3% across scaling regimes, enables progressive conversion of existing MoE checkpoints with up to 4.2% gains, and reveals a new scaling dimension for MoE architectures.", "authors": ["Yilong Chen", "Naibin Gu", "Junyuan Shang", "Zhenyu Zhang", "Yuchen Feng", "Jiawei Sheng", "Tingwen Liu", "Shuohuan Wang", "Yu Sun", "Hua Wu", "Haifeng Wang"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-05", "url": "https://arxiv.org/abs/2603.04971", "pdf_url": "https://arxiv.org/pdf/2603.04971v1", "arxiv_id": "2603.04971", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3186} {"id": "b91ddb7bd01ad9b7117b592fc66a228d564d5cbae85a0021e8501b288e95e6fb", "sources": ["arxiv", "semantic_scholar"], "title": "NeuronMoE: Neuron-Guided Mixture-of-Experts for Efficient Multilingual LLM Extension", "abstract": "Extending large language models to low-resource languages is essential for global accessibility, but training separate models per language is prohibitively expensive. Mixture-of-Experts (MoE) architectures address this by adding sparse language-specific parameters, but determining how many experts each layer needs remains an open question. Current approaches allocate experts based on layer-level similarity, yet language processing exhibits fine-grained specialization at individual neurons. We propose $\\textbf{NeuronMoE}$, a method that analyzes language-specific neurons across all transformer components to guide expert allocation per layer based on empirically measured cross-lingual neuron diversity. Applied to Llama-3.2-3B for low-resource languages (Greek, Turkish, and Hungarian), this approach achieves approximately 40% average parameter reduction while matching the performance of the LayerMoE baseline. We find that low-resource language experts independently develop neuron specialization patterns mirroring the high-resource language, which are concentrated in early and late layers. This reveals potential universal architectural principles in how multilingual models organize linguistic knowledge.", "authors": ["Rongzhi Li", "Hitomi Yanaka"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-05", "url": "https://arxiv.org/abs/2603.05046", "pdf_url": "https://arxiv.org/pdf/2603.05046v1", "arxiv_id": "2603.05046", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3186} {"id": "d8a5ee10a68837edb4d4cca12f443a5346e183ff7e334eadf63a06e699c86398", "sources": ["arxiv", "semantic_scholar"], "title": "CAMMSR: Category-Guided Attentive Mixture of Experts for Multimodal Sequential Recommendation", "abstract": "The explosion of multimedia data in information-rich environments has intensified the challenges of personalized content discovery, positioning recommendation systems as an essential form of passive data management. Multimodal sequential recommendation, which leverages diverse item information such as text and images, has shown great promise in enriching item representations and deepening the understanding of user interests. However, most existing models rely on heuristic fusion strategies that fail to capture the dynamic and context-sensitive nature of user-modal interactions. In real-world scenarios, user preferences for modalities vary not only across individuals but also within the same user across different items or categories. Moreover, the synergistic effects between modalities-where combined signals trigger user interest in ways isolated modalities cannot-remain largely underexplored. To this end, we propose CAMMSR, a Category-guided Attentive Mixture of Experts model for Multimodal Sequential Recommendation. At its core, CAMMSR introduces a category-guided attentive mixture of experts (CAMoE) module, which learns specialized item representations from multiple perspectives and explicitly models inter-modal synergies. This component dynamically allocates modality weights guided by an auxiliary category prediction task, enabling adaptive fusion of multimodal signals. Additionally, we design a modality swap contrastive learning task to enhance cross-modal representation alignment through sequence-level augmentation. Extensive experiments on four public datasets demonstrate that CAMMSR consistently outperforms state-of-the-art baselines, validating its effectiveness in achieving adaptive, synergistic, and user-centric multimodal sequential recommendation.", "authors": ["Jinfeng Xu", "Zheyu Chen", "Shuo Yang", "Jinze Li", "Hewei Wang", "Yijie Li", "Jianheng Tang", "Yunhuai Liu", "Edith C. H. Ngai"], "categories": ["cs.IR", "cs.MM"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-04", "url": "https://arxiv.org/abs/2603.04320", "pdf_url": "https://arxiv.org/pdf/2603.04320v1", "arxiv_id": "2603.04320", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3179} {"id": "54fb8a3bff1281d74187205935a92da17aaa4c4cbb204292856aa1c682d3b505", "sources": ["arxiv", "semantic_scholar"], "title": "ECG-MoE: Mixture-of-Expert Electrocardiogram Foundation Model", "abstract": "Electrocardiography (ECG) analysis is crucial for cardiac diagnosis, yet existing foundation models often fail to capture the periodicity and diverse features required for varied clinical tasks. We propose ECG-MoE, a hybrid architecture that integrates multi-model temporal features with a cardiac period-aware expert module. Our approach uses a dual-path Mixture-of-Experts to separately model beat-level morphology and rhythm, combined with a hierarchical fusion network using LoRA for efficient inference. Evaluated on five public clinical tasks, ECG-MoE achieves state-of-the-art performance with 40% faster inference than multi-task baselines.", "authors": ["Yuhao Xu", "Xiaoda Wang", "Yi Wu", "Wei Jin", "Xiao Hu", "Carl Yang"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-04", "url": "https://arxiv.org/abs/2603.04589", "pdf_url": "https://arxiv.org/pdf/2603.04589v1", "arxiv_id": "2603.04589", "doi": null, "citation_count": 4, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3179} {"id": "3accf6fe32d9c1ca71df0f6d48409ccaef178c723c8b3837d2fe7f426995ae09", "sources": ["arxiv", "semantic_scholar"], "title": "An experimental study of KV cache reuse strategies in chunk-level caching systems", "abstract": "Retrieval-augmented generation improves large language models' accuracy by adding relevant retrieved text to the prompt. Chunk level caching (CLC) accelerates inference by precomputing KV caches for these retrieved chunks and reusing them. However, these caches miss cross-attention dependencies between chunks, which can reduce output quality. Several methods try to improve CLC accuracy using different techniques. We make two main contributions. First, we show that existing CLC approaches have fundamental limitations that limit their accuracy or their applicability. We back this conclusion with an extensive CLC system experimental evaluation. Second, we observe that existing CLC techniques are complementary. We leverage this insight to propose a new CLC design that carefully combines them and achieves better accuracy.", "authors": ["Samuel Cestola", "Tianxiang Xia", "Zheng Weiyan", "Zheng Pengfei", "Diego Didona"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-03", "url": "https://arxiv.org/abs/2603.20218", "pdf_url": "https://arxiv.org/pdf/2603.20218v1", "arxiv_id": "2603.20218", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3172} {"id": "a245a0591d3e1a939d400b8e0872f0877f63ddd0453b8818f8cc968c7472c70a", "sources": ["arxiv", "semantic_scholar"], "title": "CMoE: Contrastive Mixture of Experts for Motion Control and Terrain Adaptation of Humanoid Robots", "abstract": "For effective deployment in real-world environments, humanoid robots must autonomously navigate a diverse range of complex terrains with abrupt transitions. While the Vanilla mixture of experts (MoE) framework is theoretically capable of modeling diverse terrain features, in practice, the gating network exhibits nearly uniform expert activations across different terrains, weakening the expert specialization and limiting the model's expressive power. To address this limitation, we introduce CMoE, a novel single-stage reinforcement learning framework that integrates contrastive learning to refine expert activation distributions. By imposing contrastive constraints, CMoE maximizes the consistency of expert activations within the same terrain while minimizing their similarity across different terrains, thereby encouraging experts to specialize in distinct terrain types. We validated our approach on the Unitree G1 humanoid robot through a series of challenging experiments. Results demonstrate that CMoE enables the robot to traverse continuous steps up to 20 cm high and gaps up to 80 cm wide, while achieving robust and natural gait across diverse mixed terrains, surpassing the limits of existing methods. To support further research and foster community development, we release our code publicly.", "authors": ["Shihao Ma", "Hongjin Chen", "Zijun Xu", "Yi Zhao", "Ke Wu", "Ruichen Yang", "Leyao Zou", "Zhongxue Gan", "Wenchao Ding"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-03", "url": "https://arxiv.org/abs/2603.03067", "pdf_url": "https://arxiv.org/pdf/2603.03067v1", "arxiv_id": "2603.03067", "doi": null, "citation_count": 2, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3172} {"id": "5fa715fe3a60a261934f2db77ad2cb2a8e1dbd2e5ecd82071b625a362ac62a45", "sources": ["arxiv", "semantic_scholar"], "title": "Robust Heterogeneous Analog-Digital Computing for Mixture-of-Experts Models with Theoretical Generalization Guarantees", "abstract": "Sparse Mixture-of-Experts (MoE) models enable efficient scalability by activating only a small sub-set of experts per input, yet their massive parameter counts lead to substantial memory and energy inefficiency during inference. Analog in-memory computing (AIMC) offers a promising solution by eliminating frequent data movement between memory and compute units. However, mitigating hardware nonidealities of AIMC typically requires noise-aware retraining, which is infeasible for large MoE models. In this paper, we propose a retraining-free heterogeneous computation framework in which noise-sensitive experts, which are provably identifiable by their maximum neuron norm, are computed digitally while the majority of the experts are executed on AIMC hardware. We further assign densely activated modules, such as attention layers, to digital computation due to their high noise sensitivity despite comprising a small fraction of parameters. Extensive experiments on large MoE language models, including DeepSeekMoE and OLMoE, across multiple benchmark tasks validate the robustness of our approach in maintaining accuracy under analog nonidealities.", "authors": ["Mohammed Nowaz Rabbani Chowdhury", "Hsinyu Tsai", "Geoffrey W. Burr", "Kaoutar El Maghraoui", "Liu Liu", "Meng Wang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-03", "url": "https://arxiv.org/abs/2603.02633", "pdf_url": "https://arxiv.org/pdf/2603.02633v1", "arxiv_id": "2603.02633", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3172} {"id": "a6274cf87866a614add422a8615eb0552b9259297c43a01d319520a6cf1fe347", "sources": ["arxiv", "semantic_scholar"], "title": "TenExp: Mixture-of-Experts-Based Tensor Decomposition Structure Search Framework", "abstract": "Recently, tensor decompositions continue to emerge and receive increasing attention. Selecting a suitable tensor decomposition to exactly capture the low-rank structures behind the data is at the heart of the tensor decomposition field, which remains a challenging and relatively under-explored problem. Current tensor decomposition structure search methods are still confined by a fixed factor-interaction family (e.g., tensor contraction) and cannot deliver the mixture of decompositions. To address this problem, we elaborately design a mixture-of-experts-based tensor decomposition structure search framework (termed as TenExp), which allows us to dynamically select and activate suitable tensor decompositions in an unsupervised fashion. This framework enjoys two unique advantages over the state-of-the-art tensor decomposition structure search methods. Firstly, TenExp can provide a suitable single decomposition beyond a fixed factor-interaction family. Secondly, TenExp can deliver a suitable mixture of decompositions beyond a single decomposition. Theoretically, we also provide the approximation error bound of TenExp, which reveals the approximation capability of TenExp. Extensive experiments on both synthetic and realistic datasets demonstrate the superiority of the proposed TenExp compared to the state-of-the-art tensor decomposition-based methods.", "authors": ["Ting-Wei Zhou", "Xi-Le Zhao", "Sheng Liu", "Wei-Hao Wu", "Yu-Bang Zheng", "Deyu Meng"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-03", "url": "https://arxiv.org/abs/2603.02720", "pdf_url": "https://arxiv.org/pdf/2603.02720v1", "arxiv_id": "2603.02720", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3172} {"id": "b594db8811b9bb51a110e1e70f8aa78c4414d303f4b2808f68e97c6821007d84", "sources": ["arxiv", "semantic_scholar"], "title": "Fed-GAME: Personalized Federated Learning with Graph Attention Mixture-of-Experts For Time-Series Forecasting", "abstract": "Federated learning (FL) on graphs shows promise for distributed time-series forecasting. Yet, existing methods rely on static topologies and struggle with client heterogeneity. We propose Fed-GAME, a framework that models personalized aggregation as message passing over a learnable dynamic implicit graph. The core is a decoupled parameter difference-based update protocol, where clients transmit parameter differences between their fine-tuned private model and a shared global model. On the server, these differences are decomposed into two streams: (1) averaged difference used to updating the global model for consensus (2) the selective difference fed into a novel Graph Attention Mixture-of-Experts (GAME) aggregator for fine-grained personalization. In this aggregator, shared experts provide scoring signals while personalized gates adaptively weight selective updates to support personalized aggregation. Experiments on two real-world electric vehicle charging datasets demonstrate that Fed-GAME outperforms state-of-the-art personalized FL baselines.", "authors": ["Yi Li", "Han Liu", "Mingfeng Fan", "Guo Chen", "Chaojie Li", "Biplab Sikdar"], "categories": ["cs.LG", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-02", "url": "https://arxiv.org/abs/2603.01363", "pdf_url": "https://arxiv.org/pdf/2603.01363v1", "arxiv_id": "2603.01363", "doi": "10.48550/arXiv.2603.01363", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE International Conference on Acoustics, Speech, and Signal Processing", "quality_score": 0.4973} {"id": "d6fbe78c27e4559fe6a1ff2f7f58a708e380a94f087247a5c37ade171e256c24", "sources": ["arxiv", "semantic_scholar"], "title": "Understanding the Physics of Key-Value Cache Compression for LLMs through Attention Dynamics", "abstract": "As context windows in LLMs scale to 100K+ tokens, the key-value (KV) cache becomes the dominant memory bottleneck, with recent methods claiming 80-90% savings and minimal benchmark degradation. We argue these evaluations miss a structural issue: attention is not just storage but routing, and retaining KV pairs does not guarantee semantic accessibility. We propose a physics-inspired view of KV compression as a controlled perturbation of token-level routing, distinguishing retention, accessibility, and utilization. Using synthetic tasks probing multi-entity tracking, disambiguation, coreference, and multi-hop reasoning, we find that moderate compression degrades internal representations with little accuracy loss, revealing redundancy; all models exhibit a sharp hallucination safety cliff near 90% compression, correlated with spikes in Global Eviction Ratio (GER), suggesting a phase transition in semantic reachability; and architectures differ in routing dynamics, with LLaMA showing early consensus and late diversification, and Qwen showing funnel-like late convergence, leading to distinct resilience profiles. Beyond erasure, we identify representational rigidity, where excessive head-level consensus collapses routing flexibility despite token survival. These results suggest sparse token-route structures govern compression tolerance, reframing KV compression as a structural probe of attention geometry and linking long-context scalability to sparsity and the lottery ticket hypothesis in self-attention.", "authors": ["Samhruth Ananthanarayanan", "Ayan Sengupta", "Tanmoy Chakraborty"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-02", "url": "https://arxiv.org/abs/2603.01426", "pdf_url": "https://arxiv.org/pdf/2603.01426v1", "arxiv_id": "2603.01426", "doi": "10.48550/arXiv.2603.01426", "citation_count": 3, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4973} {"id": "01cad438cf5f6c1b12989ed1529c26e188e9f119e201649e3dbfa5878b89f0b3", "sources": ["arxiv", "semantic_scholar"], "title": "AgilePruner: An Empirical Study of Attention and Diversity for Adaptive Visual Token Pruning in Large Vision-Language Models", "abstract": "Large Vision-Language Models (LVLMs) have adopted visual token pruning strategies to mitigate substantial computational overhead incurred by extensive visual token sequences. While prior works primarily focus on either attention-based or diversity-based pruning methods, in-depth analysis of these approaches' characteristics and limitations remains largely unexplored. In this work, we conduct thorough empirical analysis using effective rank (erank) as a measure of feature diversity and attention score entropy to investigate visual token processing mechanisms and analyze the strengths and weaknesses of each approach. Our analysis reveals two insights: (1) Our erank-based quantitative analysis shows that many diversity-oriented pruning methods preserve substantially less feature diversity than intended; moreover, analysis using the CHAIR dataset reveals that the diversity they do retain is closely tied to increased hallucination frequency compared to attention-based pruning. (2) We further observe that attention-based approaches are more effective on simple images where visual evidence is concentrated, while diversity-based methods better handle complex images with distributed features. Building on these empirical insights, we show that incorporating image-aware adjustments into existing hybrid pruning strategies consistently improves their performance. We also provide a minimal instantiation of our empirical findings through a simple adaptive pruning mechanism, which achieves strong and reliable performance across standard benchmarks as well as hallucination-specific evaluations. Our project page available at https://cvsp-lab.github.io/AgilePruner.", "authors": ["Changwoo Baek", "Jouwon Song", "Sohyeon Kim", "Kyeongbo Kong"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-03-01", "url": "https://arxiv.org/abs/2603.01236", "pdf_url": "https://arxiv.org/pdf/2603.01236v1", "arxiv_id": "2603.01236", "doi": "10.48550/arXiv.2603.01236", "citation_count": 2, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4961} {"id": "6aa880401d0e7ff960d95a3c16529fe191cbbfb9c62d35556712869aa302f50d", "sources": ["arxiv", "semantic_scholar"], "title": "CoMoL: Efficient Mixture of LoRA Experts via Dynamic Core Space Merging", "abstract": "Large language models (LLMs) achieve remarkable performance on diverse downstream and domain-specific tasks via parameter-efficient fine-tuning (PEFT). However, existing PEFT methods, particularly MoE-LoRA architectures, suffer from limited parameter efficiency and coarse-grained adaptation due to the proliferation of LoRA experts and instance-level routing. To address these issues, we propose Core Space Mixture of LoRA (\\textbf{CoMoL}), a novel MoE-LoRA framework that incorporates expert diversity, parameter efficiency, and fine-grained adaptation. Specifically, CoMoL introduces two key components: core space experts and core space routing. Core space experts store each expert in a compact core matrix, preserving diversity while controlling parameter growth. Core space routing dynamically selects and activates the appropriate core experts for each token, enabling fine-grained, input-adaptive routing. Activated core experts are then merged via a soft-merging strategy into a single core expert, which is combined with a shared LoRA to form a specialized LoRA module. Besides, the routing network is projected into the same low-rank space as the LoRA matrices, further reducing parameter overhead without compromising expressiveness. Extensive experiments demonstrate that CoMoL retains the adaptability of MoE-LoRA architectures while achieving parameter efficiency comparable to standard LoRA, consistently outperforming existing methods across multiple tasks.", "authors": ["Jie Cao", "Zhenxuan Fan", "Zhuonan Wang", "Tianwei Lin", "Ziyuan Zhao", "Rolan Yan", "Wenqiao Zhang", "Feifei Shao", "Hongwei Wang", "Jun Xiao", "Siliang Tang"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-28", "url": "https://arxiv.org/abs/2603.00573", "pdf_url": "https://arxiv.org/pdf/2603.00573v2", "arxiv_id": "2603.00573", "doi": "10.48550/arXiv.2603.00573", "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.495} {"id": "321c534d4778702af3893413698916ea849e7e6fc2250d4d2cac6e4fbbf2c701", "sources": ["arxiv", "semantic_scholar"], "title": "Exploring 3D Dataset Pruning", "abstract": "Dataset pruning has been widely studied for 2D images to remove redundancy and accelerate training, while particular pruning methods for 3D data remain largely unexplored. In this work, we study dataset pruning for 3D data, where its observed common long-tail class distribution nature make optimization under conventional evaluation metrics Overall Accuracy (OA) and Mean Accuracy (mAcc) inherently conflicting, and further make pruning particularly challenging. To address this, we formulate pruning as approximating the full-data expected risk with a weighted subset, which reveals two key errors: coverage error from insufficient representativeness and prior-mismatch bias from inconsistency between subset-induced class weights and target metrics. We propose representation-aware subset selection with per-class retention quotas for long-tail coverage, and prior-invariant teacher supervision using calibrated soft labels and embedding-geometry distillation. The retention quota also serves as a switch to control the OA-mAcc trade-off. Extensive experiments on 3D datasets show that our method can improve both metrics across multiple settings while adapting to different downstream preferences. Our code is available at https://github.com/XiaohanZhao123/3D-Dataset-Pruning.", "authors": ["Xiaohan Zhao", "Xinyi Shang", "Jiacheng Liu", "Zhiqiang Shen"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-28", "url": "https://arxiv.org/abs/2603.00651", "pdf_url": "https://arxiv.org/pdf/2603.00651v1", "arxiv_id": "2603.00651", "doi": "10.48550/arXiv.2603.00651", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/XiaohanZhao123/3D-Dataset-Pruning", "venue": "arXiv.org", "quality_score": 0.765} {"id": "693275a93f2e944f5dc229aa40ce8c02a5046294bc0a2c74708e5c17761f67a5", "sources": ["arxiv", "semantic_scholar"], "title": "MME: Mixture of Mesh Experts with Random Walk Transformer Gating", "abstract": "In recent years, various methods have been proposed for mesh analysis, each offering distinct advantages and often excelling on different object classes. We present a novel Mixture of Experts (MoE) framework designed to harness the complementary strengths of these diverse approaches. We propose a new gate architecture that encourages each expert to specialise in the classes it excels in. Our design is guided by two key ideas: (1) random walks over the mesh surface effectively capture the regions that individual experts attend to, and (2) an attention mechanism that enables the gate to focus on the areas most informative for each expert's decision-making. To further enhance performance, we introduce a dynamic loss balancing scheme that adjusts a trade-off between diversity and similarity losses throughout the training, where diversity prompts expert specialization, and similarity enables knowledge sharing among the experts. Our framework achieves state-of-the-art results in mesh classification, retrieval, and semantic segmentation tasks. Our code is available at: https://github.com/amirbelder/MME-Mixture-of-Mesh-Experts.", "authors": ["Amir Belder", "Ayellet Tal"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-28", "url": "https://arxiv.org/abs/2603.00828", "pdf_url": "https://arxiv.org/pdf/2603.00828v1", "arxiv_id": "2603.00828", "doi": "10.48550/arXiv.2603.00828", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/amirbelder/MME-Mixture-of-Mesh-Experts", "venue": "arXiv.org", "quality_score": 0.765} {"id": "560209751a2758cc7bfbdfec9761f7334bfb20d5bbc5f0c4dc4dc1de0675e905", "sources": ["arxiv", "semantic_scholar"], "title": "RelayCaching: Accelerating LLM Collaboration via Decoding KV Cache Reuse", "abstract": "The increasing complexity of AI tasks has shifted the paradigm from monolithic models toward multi-agent large language model (LLM) systems. However, these collaborative architectures introduce a critical bottleneck: redundant prefill computation for shared content generated by previous agents, which significantly increases KV cache memory usage and time-to-first-token (TTFT). While various KV cache methods have been proposed to mitigate prefill redundancy, they either fail to maintain accuracy on agent-generated outputs or exhibit low reuse rates due to rigid constraints. We present RelayCaching, a training-free inference method that directly reuses decoding phase KV caches from previous agents in subsequent prefill phases. Our key insight is that KV caches for identical content are highly consistent across phases, while prefix-induced deviations are sparse and localized within a limited range of layers and token positions. By selectively recomputing KV caches at these positions, RelayCaching preserves model accuracy with minimal overhead, yielding a superior accuracy-efficiency trade-off over existing methods. Experiments on diverse collaborative LLM tasks spanning mathematical reasoning, general knowledge, and code generation demonstrate that RelayCaching achieves over 80% KV cache reuse, reduces TTFT by up to $4.7\\times$ compared to the standard pipeline, all with negligible accuracy degradation.", "authors": ["Yingsheng Geng", "Yuchong Gao", "Weihong Wu", "Guyue Liu", "Jiang Liu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-28", "url": "https://arxiv.org/abs/2603.13289", "pdf_url": "https://arxiv.org/pdf/2603.13289v1", "arxiv_id": "2603.13289", "doi": null, "citation_count": 2, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.315} {"id": "563e46200c1f576f04300c48ac2e41b3c684afa3c576328eef82a2612e0af6aa", "sources": ["arxiv", "semantic_scholar"], "title": "Specializing Foundation Models via Mixture of Low-Rank Experts for Comprehensive Head CT Analysis", "abstract": "Foundation models pre-trained on large-scale datasets demonstrate strong transfer learning capabilities; however, their adaptation to complex multi-label diagnostic tasks-such as comprehensive head CT finding detection-remains understudied. Standard parameter-efficient fine-tuning methods such as LoRA apply uniform adaptations across pathology types, which may limit performance for diverse medical findings. We propose a Mixture of Low-Rank Experts (MoLRE) framework that extends LoRA with multiple specialized low-rank adapters and unsupervised soft routing. This approach enables conditional feature adaptation with less than 0.5% additional parameters and without explicit pathology supervision. We present a comprehensive benchmark of MoLRE across six state-of-the-art medical imaging foundation models spanning 2D and 3D architectures, general-domain, medical-domain, and head CT-specific pretraining, and model sizes ranging from 7M to 431M parameters. Using over 70,000 non-contrast head CT scans with 75 annotated findings-including hemorrhage, infarction, trauma, mass lesions, structural abnormalities, and chronic changes-our experiments demonstrate consistent performance improvements across all models. Gains vary substantially: general-purpose and medical-domain models show the largest improvements (DINOv3-Base: +4.6%; MedGemma: +4.3%), whereas 3D CT-specialized or very large models show more modest gains (+0.2-1.3%). The combination of MoLRE and MedGemma achieves the highest average detection AUC of 0.917. These findings highlight the importance of systematic benchmarking on target clinical tasks, as pretraining domain, architecture, and model scale interact in non-obvious ways.", "authors": ["Youngjin Yoo", "Han Liu", "Bogdan Georgescu", "Yanbo Zhang", "Sasa Grbic", "Michael Baumgartner", "Thomas J. Re", "Jyotipriya Das", "Poikavila Ullaskrishnan", "Eva Eibenberger", "Andrei Chekkoury", "Uttam K. Bodanapally", "Savvas Nicolaou", "Pina C. Sanelli", "Thomas J. Schroeppel", "Yvonne W. Lui", "Eli Gibson"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-28", "url": "https://arxiv.org/abs/2603.00675", "pdf_url": "https://arxiv.org/pdf/2603.00675v1", "arxiv_id": "2603.00675", "doi": "10.48550/arXiv.2603.00675", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.495} {"id": "cfc930e8bc7d7b84ea9f2e118429a9bfc73724c4f778b7470e7c87392522d593", "sources": ["arxiv", "semantic_scholar"], "title": "Quant Experts: Token-aware Adaptive Error Reconstruction with Mixture of Experts for Large Vision-Language Models Quantization", "abstract": "Post-Training Quantization (PTQ) has emerged as an effective technique for alleviating the substantial computational and memory overheads of Vision-Language Models (VLMs) by compressing both weights and activations without retraining the full model. Existing PTQ methods primarily rely on static identification and global compensation of sensitive or outlier channels, yet they often overlook the distributional differences of these important channels across inputs, leading to unsatisfactory quantization. In this work, we observe that the distributions and occurrence frequencies of important channels vary significantly both across modalities and among tokens, even within the same modality. Accordingly, we propose \\textbf{Quant Experts (QE)}, a token-aware adaptive error compensation with mixture-of-experts for VLMs quantization. QE divides the important channels into token-independent and token-dependent groups. For the former, a shared expert is designed for most tokens to compensate for global quantization error using a low-rank adapter. For the latter, routed experts including multiple routed low-rank adapters are elaborated to compensate for local quantization error related to specific tokens. Extensive experiments demonstrate that QE consistently enhances task accuracy across various quantization settings and model scales, ranging from 2B to 70B parameters, while maintaining performance comparable to full-precision models.", "authors": ["Chenwei Jia", "Baoting Li", "Xuchong Zhang", "Mingzhuo Wei", "Bochen Lin", "Hongbin Sun"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-27", "url": "https://arxiv.org/abs/2602.24059", "pdf_url": "https://arxiv.org/pdf/2602.24059v1", "arxiv_id": "2602.24059", "doi": "10.48550/arXiv.2602.24059", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4939} {"id": "4f1add3f314a1f834981e5549eed1560344a3745f23b1f2e050bfa89cd519a78", "sources": ["arxiv", "semantic_scholar"], "title": "KEEP: A KV-Cache-Centric Memory Management System for Efficient Embodied Planning", "abstract": "Memory-augmented Large Language Models (LLMs) have demonstrated remarkable capability for complex and long-horizon embodied planning. By keeping track of past experiences and environmental states, memory enables LLMs to maintain a global view, thereby avoiding repetitive exploration. However, existing approaches often store the memory as raw text, leading to excessively long prompts and high prefill latency. While it is possible to store and reuse the KV caches, the efficiency benefits are greatly undermined due to frequent KV cache updates. In this paper, we propose KEEP, a KV-cache-centric memory management system for efficient embodied planning. KEEP features 3 key innovations: (1) a Static-Dynamic Memory Construction algorithm that reduces KV cache recomputation by mixed-granularity memory group; (2) a Multi-hop Memory Re-computation algorithm that dynamically identifies important cross-attention among different memory groups and reconstructs memory interactions iteratively; (3) a Layer-balanced Memory Loading that eliminates unbalanced KV cache loading and cross-attention computation across different layers. Extensive experimental results have demonstrated that KEEP achieves 2.68x speedup with negligible accuracy loss compared with text-based memory methods on ALFRED dataset. Compared with the KV re-computation method CacheBlend (EuroSys'25), KEEP shows 4.13% success rate improvement and 1.90x time-to-first-token (TTFT) reduction. Our code is available on https://github.com/PKU-SEC-Lab/KEEP_Embodied_Memory.", "authors": ["Zebin Yang", "Tong Xie", "Baotong Lu", "Shaoshan Liu", "Bo Yu", "Meng Li"], "categories": ["cs.RO", "cs.AI", "cs.SE"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-27", "url": "https://arxiv.org/abs/2602.23592", "pdf_url": "https://arxiv.org/pdf/2602.23592v2", "arxiv_id": "2602.23592", "doi": "10.48550/arXiv.2602.23592", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/PKU-SEC-Lab/KEEP_Embodied_Memory", "venue": "arXiv.org", "quality_score": 0.7632} {"id": "3a7f5029f60d0fe3aee5e0f68d18a64724004bc96e2d77d3128e62a0a1125fa6", "sources": ["arxiv", "semantic_scholar"], "title": "Efficient Long-Horizon GUI Agents via Training-Free KV Cache Compression", "abstract": "Large Vision-Language Models (VLMs) have emerged as powerful engines for autonomous GUI agents, yet their deployment is severely constrained by the substantial memory footprint and latency of the Key-Value (KV) cache during long-horizon interactions. While existing cache compression methods have proven effective for LLMs, we empirically demonstrate that they suffer from suboptimal performance in GUI scenarios due to a fundamental misalignment: unlike general visual tasks where attention sparsity varies across layers, GUI attention patterns exhibit uniform high-sparsity across all transformer layers. Motivated by this insight, we propose ST-Lite, a training-free KV cache compression framework tailored for efficient GUI agents that explicitly addresses the dynamic spatio-trajectory dependencies within GUI data streams. ST-Lite introduces a novel dual-branch scoring policy incorporating Component-centric Spatial Saliency (CSS) and Trajectory-aware Semantic Gating (TSG). Specifically, CSS preserves the structural integrity of interactive UI elements by evaluating local neighborhood saliency, while TSG mitigates historical redundancy by dynamically filtering visually repetitive KV pairs within the interaction trajectory. Extensive evaluations demonstrate that with only a 10-20% cache budget, ST-Lite achieves a 2.45x decoding acceleration while maintaining comparable or even superior performance compared to full-cache baselines, offering a scalable solution for resource-constrained GUI agents.", "authors": ["Bowen Zhou", "Zhou Xu", "Wanli Li", "Jingyu Xiao", "Haoqian Wang"], "categories": ["cs.CV", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-27", "url": "https://arxiv.org/abs/2603.00188", "pdf_url": "https://arxiv.org/pdf/2603.00188v1", "arxiv_id": "2603.00188", "doi": "10.48550/arXiv.2603.00188", "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4939} {"id": "333710e563850bb48541a6296b807135aac4571a4ef83f44439b230759a4791a", "sources": ["arxiv", "semantic_scholar"], "title": "ICaRus: Identical Cache Reuse for Efficient Multi Model Inference", "abstract": "Multi model inference has recently emerged as a prominent paradigm, particularly in the development of agentic AI systems. However, in such scenarios, each model must maintain its own Key-Value (KV) cache for the identical prompt, leading to substantial memory consumption. This explosive growth of KV caches forces LLM serving systems to evict previously stored caches, which in turn introduces significant recomputation overhead whenever the evicted caches are required again. Moreover, prefix caching is inherently infeasible across different models, forcing each model to recompute KV cache for the identical prompt, which leads to significant overhead. To alleviate these issues, we propose Identical Cache Reuse (ICaRus), a novel architecture that allows multiple models to share identical KV caches across all layers. ICaRus is based on the key observation that a decoder-only Transformer can be conceptually decomposed into a logical encoder, which generates KV caches, and a logical decoder, which predicts output tokens from the KV caches. ICaRus fine-tunes only the logical decoder while freezing the logical encoder, enabling multiple models to share an identical KV cache. This eliminates cache memory explosion and unexpected evictions while also allowing cross-model reuse of KV caches for new input tokens, thereby removing redundant recomputation in multi model inference achieving both efficiency and scalability. Moreover, by incorporating lightweight adapters such as LoRA, ICaRus parallelizes KV cache generation and next-token prediction during decoding. ICaRus achieves comparable accuracy to task-specific fine-tuned model across a diverse set of tasks, while allowing multiple specialized models to fully share KV caches. ICaRus achieves up to 11.1x lower P95 latency and 3.8x higher throughput in multi agent workflow with 8 different models, compared to conventional multi model system.", "authors": ["Sunghyeon Woo", "Jaeeun Kil", "Hoseung Kim", "Minsub Kim", "Joonghoon Kim", "Ahreum Seo", "Sungjae Lee", "Minjung Jo", "Jiwon Ryu", "Baeseong Park", "Se Jung Kwon", "Dongsoo Lee"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-27", "url": "https://arxiv.org/abs/2603.13281", "pdf_url": "https://arxiv.org/pdf/2603.13281v1", "arxiv_id": "2603.13281", "doi": null, "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3143} {"id": "41b834de31ac4148a0fcbf58977f08fb2d19f3306a4a7bf86dd655b77e689731", "sources": ["arxiv", "semantic_scholar"], "title": "FedRot-LoRA: Mitigating Rotational Misalignment in Federated LoRA", "abstract": "Federated LoRA provides a communication-efficient mechanism for fine-tuning large language models on decentralized data. In practice, however, a discrepancy between the factor-wise averaging used to preserve low rank and the mathematically correct aggregation of local updates can cause significant aggregation error and unstable training. We argue that a major source of this problem is rotational misalignment, arising from the rotational invariance of low-rank factorizations -- semantically equivalent updates can be represented in different latent subspaces across clients since $(B_i R_i)(R_i^\\top A_i) = B_i A_i$. When such misaligned factors are averaged directly, they interfere destructively and degrade the global update. To address this issue, we propose FedRot-LoRA, a federated LoRA framework that aligns client updates via orthogonal transformations prior to aggregation. This alignment preserves the semantic update while reducing cross-client subspace mismatch, without increasing communication cost or restricting model expressivity. We provide a convergence analysis that examines the aggregation error induced by factor-wise averaging and shows how rotational alignment yields a tighter upper bound on this error. Extensive experiments on natural language understanding and generative tasks demonstrate that FedRot-LoRA consistently outperforms existing federated LoRA baselines across a range of heterogeneity levels and LoRA ranks.", "authors": ["Haoran Zhang", "Dongjun Kim", "Seohyeon Cha", "Haris Vikalo"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-27", "url": "https://arxiv.org/abs/2602.23638", "pdf_url": "https://arxiv.org/pdf/2602.23638v2", "arxiv_id": "2602.23638", "doi": "10.48550/arXiv.2602.23638", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4939} {"id": "93b370782b0fe6c8cbde7cc087d43136e3760299400ea7ed1f6f0bc0200c8a18", "sources": ["arxiv", "semantic_scholar"], "title": "InnerQ: Hardware-Aware Tuning-Free Quantization of KV Cache for Large Language Models", "abstract": "When transformer-based language models are deployed for text generation, most of the inference time is spent in the decoding stage, where output tokens are generated sequentially. Reducing the hardware cost of each decoding step is therefore critical for efficient long-context generation. A major bottleneck is the key-value (KV) cache, whose size grows with sequence length and often dominates the model's memory footprint. Prior work has proposed quantization methods to compress the KV cache while minimizing its loss of precision. We present InnerQ, a hardware-aware KV cache quantization scheme that reduces decode latency without compromising evaluation performance. InnerQ performs group-wise quantization by grouping cache matrices along their inner dimension. This grouping strategy aligns dequantization with vector-matrix multiplication and increases data reuse across GPU compute units. As a result, InnerQ reduces memory access and accelerates dequantization, achieving an average $1.3\\times$ speedup over prior KV cache quantization methods and $2.7\\times$ over the non-quantized baseline. To maintain fidelity under aggressive compression, InnerQ incorporates three techniques: (i) hybrid quantization, which chooses symmetric or asymmetric quantization for each group based on local statistics; (ii) high-precision windows for both recent tokens and attention sink tokens to mitigate outlier leakage; and (iii) per-channel normalization of the key cache, computed once during prefill and folded into the model parameters to eliminate runtime overhead. Beyond reducing latency, experiments on Llama and Mistral models show that InnerQ also improves few-shot evaluation scores relative to prior KV cache quantization methods.", "authors": ["Sayed Mohammadreza Tayaranian Hosseini", "Amir Ardakani", "Warren J. Gross"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-26", "url": "https://arxiv.org/abs/2602.23200", "pdf_url": "https://arxiv.org/pdf/2602.23200v2", "arxiv_id": "2602.23200", "doi": "10.48550/arXiv.2602.23200", "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4927} {"id": "1bdd38e73856d198e7e49b8dcd98548d7deb09f876838e097a96e17f9fce7539", "sources": ["arxiv", "semantic_scholar"], "title": "SideQuest: Model-Driven KV Cache Management for Long-Horizon Agentic Reasoning", "abstract": "Long-running agentic tasks, such as deep research, require multi-hop reasoning over information distributed across multiple webpages and documents. In such tasks, the LLM context is dominated by tokens from external retrieval, causing memory usage to grow rapidly and limiting decode performance. While several KV cache compression techniques exist for long-context inputs, we find that existing heuristics fail to support multi-step reasoning models effectively. We address this challenge with SideQuest -- a novel approach that leverages the Large Reasoning Model (LRM) itself to perform KV cache compression by reasoning about the usefulness of tokens in its context. To prevent the tokens associated with this management process from polluting the model's memory, we frame KV cache compression as an auxiliary task executed in parallel to the main reasoning task. Our evaluations, using a model trained with just 215 samples, show that SideQuest reduces peak token usage by up to 65% on agentic tasks with minimal degradation in accuracy, outperforming heuristic-based KV cache compression techniques.", "authors": ["Sanjay Kariyappa", "G. Edward Suh"], "categories": ["cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-26", "url": "https://arxiv.org/abs/2602.22603", "pdf_url": "https://arxiv.org/pdf/2602.22603v2", "arxiv_id": "2602.22603", "doi": "10.48550/arXiv.2602.22603", "citation_count": 5, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4927} {"id": "bb87aff0b9e29a3add7cc254f36ac293e4e89501783f4254ff03db86d279a694", "sources": ["arxiv", "semantic_scholar"], "title": "A Mixture-of-Experts Model for Multimodal Emotion Recognition in Conversations", "abstract": "Emotion Recognition in Conversations (ERC) presents unique challenges, requiring models to capture the temporal flow of multi-turn dialogues and to effectively integrate cues from multiple modalities. We propose Mixture of Speech-Text Experts for Recognition of Emotions (MiSTER-E), a modular Mixture-of-Experts (MoE) framework designed to decouple two core challenges in ERC: modality-specific context modeling and multimodal information fusion. MiSTER-E leverages large language models (LLMs) fine-tuned for both speech and text to provide rich utterance-level embeddings, which are then enhanced through a convolutional-recurrent context modeling layer. The system integrates predictions from three experts-speech-only, text-only, and cross-modal-using a learned gating mechanism that dynamically weighs their outputs. To further encourage consistency and alignment across modalities, we introduce a supervised contrastive loss between paired speech-text representations and a KL-divergence-based regulariza-tion across expert predictions. Importantly, MiSTER-E does not rely on speaker identity at any stage. Experiments on three benchmark datasets-IEMOCAP, MELD, and MOSI-show that our proposal achieves 70.9%, 69.5%, and 87.9% weighted F1-scores respectively, outperforming several baseline speech-text ERC systems. We also provide various ablations to highlight the contributions made in the proposed approach.", "authors": ["Soumya Dutta", "Smruthi Balaji", "Sriram Ganapathy"], "categories": ["cs.CL", "eess.AS"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-02-26", "url": "https://arxiv.org/abs/2602.23300", "pdf_url": "https://arxiv.org/pdf/2602.23300v1", "arxiv_id": "2602.23300", "doi": "10.1016/j.csl.2026.101965", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3135} {"id": "a1daf266bda742d9b81532f4b41843da58388050567cade5688b7835d2791492", "sources": ["arxiv"], "title": "XStreamVGGT: Extremely Memory-Efficient Streaming Vision Geometry Grounded Transformer with KV Cache Compression", "abstract": "Learning-based 3D visual geometry models have significantly advanced with the advent of large-scale transformers. Among these, StreamVGGT leverages frame-wise causal attention to deliver robust and efficient streaming 3D reconstruction. However, it suffers from unbounded growth in the Key-Value (KV) cache due to the massive influx of vision tokens from multi-image and long-video inputs, leading to increased memory consumption and inference latency as input frames accumulate. This ultimately limits its scalability for long-horizon applications. To address this gap, we propose XStreamVGGT, a tuning-free approach that seamlessly integrates pruning and quantization to systematically compress the KV cache, enabling extremely memory-efficient streaming inference. Specifically, redundant KVs generated from multi-frame inputs are initially pruned to conform to a fixed KV memory budget using an efficient token-importance identification mechanism that maintains full compatibility with high-performance attention kernels (e.g., FlashAttention). Additionally, leveraging the inherent distribution patterns of KV tensors, we apply dimension-adaptive KV quantization within the pruning pipeline to further minimize memory overhead while preserving numerical accuracy. Extensive evaluations show that XStreamVGGT achieves mostly negligible performance degradation while substantially reducing memory usage by 4.42$\\times$ and accelerating inference by 5.48$\\times$, enabling practical and scalable streaming 3D applications. The code is available at https://github.com/ywh187/XStreamVGGT/.", "authors": ["Zunhai Su", "Weihao Ye", "Hansen Feng", "Keyu Fan", "Jing Zhang", "Dahai Yu", "Zhengwu Liu", "Ngai Wong"], "categories": ["cs.CV"], "fields_of_study": [], "published_date": "2026-02-25", "url": "https://arxiv.org/abs/2602.21780", "pdf_url": "https://arxiv.org/pdf/2602.21780v1", "arxiv_id": "2602.21780", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/ywh187/XStreamVGGT/", "venue": null, "quality_score": 0.5809} {"id": "847243af4e3f3877a7a465d7402b380bcc4e52af8dacf5a204702c6bdf7bdf20", "sources": ["arxiv", "semantic_scholar"], "title": "Adaptive Multi-Objective Tiered Storage Configuration for KV Cache in LLM Service", "abstract": "The memory-for-computation paradigm of KV caching is essential for accelerating large language model (LLM) inference service, but limited GPU high-bandwidth memory (HBM) capacity motivates offloading the KV cache to cheaper external storage tiers. While this expands capacity, it introduces the challenge of dynamically managing heterogeneous storage resources to balance cost, throughput, and latency under varying workloads. We formulate this as a multi-objective optimization problem: identifying the Pareto frontier across these metrics within the storage configuration space. Using a high-fidelity end-to-end simulator, we observe that the objective functions are non-analytic and exhibit complex variable coupling, making the Pareto frontier difficult to approximate analytically. To obtain the frontier, we introduce Kareto, a KV-cache Adaptive REsource managemenT Optimizer. Kareto leverages a diminishing-return-guided pruning method to efficiently navigate the large configuration space and approximate the Pareto frontier. Additionally, it incorporates a fine-grained adaptive tuner that uses eviction policies in tier storage and KV block access patterns for group-specific cache management, improving cache efficiency. Experiments on real-world traces show that Kareto adapts to workload and can identify configurations of better cost efficiency, covering static strategies. Compared to the fixed setup with 1024 GB DRAM, Kareto can improve throughput by up to 9.3%, or reduce latency by up to 58.3%, or lower cost by up to 20.2% under respective optimization objectives.", "authors": ["Xianzhe Zheng", "Zhengheng Wang", "Ruiyan Ma", "Rui Wang", "Xiyu Wang", "Rui Chen", "Peng Zhang", "Sicheng Pan", "Zhangheng Huang", "Chenxin Wu", "Yi Zhang", "Bo Cai", "Kan Liu", "Teng Ma", "Yin Du", "Dong Deng", "Sai Wu", "Guoyun Zhu", "Wei Zhang", "Feifei Li"], "categories": ["cs.AR", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-25", "url": "https://arxiv.org/abs/2603.08739", "pdf_url": "https://arxiv.org/pdf/2603.08739v1", "arxiv_id": "2603.08739", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3128} {"id": "eafabe1139c966d6d214bd5c683fd581a5578106342d3b1086463af9d92674d1", "sources": ["arxiv", "semantic_scholar"], "title": "TiMi: Empower Time Series Transformers with Multimodal Mixture of Experts", "abstract": "Multimodal time series forecasting has garnered significant attention for its potential to provide more accurate predictions than traditional single-modality models by leveraging rich information inherent in other modalities. However, due to fundamental challenges in modality alignment, existing methods often struggle to effectively incorporate multimodal data into predictions, particularly textual information that has a causal influence on time series fluctuations, such as emergency reports and policy announcements. In this paper, we reflect on the role of textual information in numerical forecasting and propose Time series transformers with Multimodal Mixture-of-Experts, TiMi, to unleash the causal reasoning capabilities of LLMs. Concretely, TiMi utilizes LLMs to generate inferences on future developments, which serve as guidance for time series forecasting. To seamlessly integrate both exogenous factors and time series into predictions, we introduce a Multimodal Mixture-of-Experts (MMoE) module as a lightweight plug-in to empower Transformer-based time series models for multimodal forecasting, eliminating the need for explicit representation-level alignment. Experimentally, our proposed TiMi demonstrates consistent state-of-the-art performance on sixteen real-world multimodal forecasting benchmarks, outperforming advanced baselines while offering both strong adaptability and interpretability.", "authors": ["Jiafeng Lin", "Yuxuan Wang", "Huakun Luo", "Zhongyi Pei", "Jianmin Wang"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-25", "url": "https://arxiv.org/abs/2602.21693", "pdf_url": "https://arxiv.org/pdf/2602.21693v1", "arxiv_id": "2602.21693", "doi": "10.48550/arXiv.2602.21693", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4916} {"id": "619657738455ef4f5b2af3ede59c9885bfcbd07968ee8e05a72343baa5afebe5", "sources": ["arxiv", "semantic_scholar"], "title": "Sensitivity-Guided Framework for Pruned and Quantized Reservoir Computing Accelerators", "abstract": "This paper presents a compression framework for Reservoir Computing that enables systematic design-space exploration of trade-offs among quantization levels, pruning rates, model accuracy, and hardware efficiency. The proposed approach leverages a sensitivity-based pruning mechanism to identify and remove less critical quantized weights with minimal impact on model accuracy, thereby reducing computational overhead while preserving accuracy. We perform an extensive trade-off analysis to validate the effectiveness of the proposed framework and the impact of pruning and quantization on model performance and hardware parameters. For this evaluation, we employ three time-series datasets, including both classification and regression tasks. Experimental results across selected benchmarks demonstrate that our proposed approach maintains high accuracy while substantially improving computational and resource efficiency in FPGA-based implementations, with variations observed across different configurations and time series applications. For instance, for the MELBOEN dataset, an accelerator quantized to 4-bit at a 15\\% pruning rate reduces resource utilization by 1.2\\% and the Power Delay Product (PDP) by 50.8\\% compared to an unpruned model, without any noticeable degradation in accuracy.", "authors": ["Atousa Jafari", "Mahdi Taheri", "Hassan Ghasemzadeh Mohammadi", "Christian Herglotz", "Marco Platzner"], "categories": ["cs.AR", "cs.AI", "cs.DC", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-24", "url": "https://arxiv.org/abs/2603.08737", "pdf_url": "https://arxiv.org/pdf/2603.08737v1", "arxiv_id": "2603.08737", "doi": null, "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3121} {"id": "c6782d8c86d1ce181bdd4433644e93baeaea622c64803a9e6e3a89dacc07b1c8", "sources": ["arxiv", "semantic_scholar"], "title": "Modality-Guided Mixture of Graph Experts with Entropy-Triggered Routing for Multimodal Recommendation", "abstract": "Multimodal recommendation enhances ranking by integrating user-item interactions with item content, which is particularly effective under sparse feedback and long-tail distributions. However, multimodal signals are inherently heterogeneous and can conflict in specific contexts, making effective fusion both crucial and challenging. Existing approaches often rely on shared fusion pathways, leading to entangled representations and modality imbalance. To address these issues, we propose MAGNET, a Modality-Guided Mixture of Adaptive Graph Experts Network with Progressive Entropy-Triggered Routing for Multimodal Recommendation, designed to enhance controllability, stability, and interpretability in multimodal fusion. MAGNET couples interaction-conditioned expert routing with structure-aware graph augmentation, so that both what to fuse and how to fuse are explicitly controlled and interpretable. At the representation level, a dual-view graph learning module augments the interaction graph with content-induced edges, improving coverage for sparse and long-tail items while preserving collaborative structure via parallel encoding and lightweight fusion. At the fusion level, MAGNET employs structured experts with explicit modality roles-dominant, balanced, and complementary-enabling a more interpretable and adaptive combination of behavioral, visual, and textual cues. To further stabilize sparse routing and prevent expert collapse, we introduce a two-stage entropy-weighting mechanism that monitors routing entropy. This mechanism automatically transitions training from an early coverage-oriented regime to a later specialization-oriented regime, progressively balancing expert utilization and routing confidence. Extensive experiments on public benchmarks demonstrate consistent improvements over strong baselines.", "authors": ["Ji Dai", "Quan Fang", "Dengsheng Cai"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-24", "url": "https://arxiv.org/abs/2602.20723", "pdf_url": "https://arxiv.org/pdf/2602.20723v2", "arxiv_id": "2602.20723", "doi": "10.48550/arXiv.2602.20723", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4904} {"id": "8d4e0d766aa7178ee3264d47cca931984e5394f867867e3616b7c70b6b3895e8", "sources": ["arxiv", "semantic_scholar"], "title": "A Replicate-and-Quantize Strategy for Plug-and-Play Load Balancing of Sparse Mixture-of-Experts LLMs", "abstract": "Sparse Mixture-of-Experts (SMoE) architectures are increasingly used to scale large language models efficiently, delivering strong accuracy under fixed compute budgets. However, SMoE models often suffer from severe load imbalance across experts, where a small subset of experts receives most tokens while others are underutilized. Prior work has focused mainly on training-time solutions such as routing regularization or auxiliary losses, leaving inference-time behavior, which is critical for deployment, less explored. We present a systematic analysis of expert routing during inference and identify three findings: (i) load imbalance persists and worsens with larger batch sizes, (ii) selection frequency does not reliably reflect expert importance, and (iii) overall expert workload and importance can be estimated using a small calibration set. These insights motivate inference-time mechanisms that rebalance workloads without retraining or router modification. We propose Replicate-and-Quantize (R&Q), a training-free and near-lossless framework for dynamic workload rebalancing. In each layer, heavy-hitter experts are replicated to increase parallel capacity, while less critical experts and replicas are quantized to remain within the original memory budget. We also introduce a Load-Imbalance Score (LIS) to measure routing skew by comparing heavy-hitter load to an equal allocation baseline. Experiments across representative SMoE models and benchmarks show up to 1.4x reduction in imbalance with accuracy maintained within +/-0.6%, enabling more predictable and efficient inference.", "authors": ["Zijie Liu", "Jie Peng", "Jinhao Duan", "Zirui Liu", "Kaixiong Zhou", "Mingfu Liang", "Luke Simon", "Xi Liu", "Zhaozhuo Xu", "Tianlong Chen"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-23", "url": "https://arxiv.org/abs/2602.19938", "pdf_url": "https://arxiv.org/pdf/2602.19938v1", "arxiv_id": "2602.19938", "doi": "10.48550/arXiv.2602.19938", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4893} {"id": "2a213c36a0be521e0ef047a0696661189963c84681f9ccb430360e75a805b3ad", "sources": ["arxiv", "semantic_scholar"], "title": "Flash-VAED: Plug-and-Play VAE Decoders for Efficient Video Generation", "abstract": "Latent diffusion models have enabled high-quality video synthesis, yet their inference remains costly and time-consuming. As diffusion transformers become increasingly efficient, the latency bottleneck inevitably shifts to VAE decoders. To reduce their latency while maintaining quality, we propose a universal acceleration framework for VAE decoders that preserves full alignment with the original latent distribution. Specifically, we propose (1) an independence-aware channel pruning method to effectively mitigate severe channel redundancy, and (2) a stage-wise dominant operator optimization strategy to address the high inference cost of the widely used causal 3D convolutions in VAE decoders. Based on these innovations, we construct a Flash-VAED family. Moreover, we design a three-phase dynamic distillation framework that efficiently transfers the capabilities of the original VAE decoder to Flash-VAED. Extensive experiments on Wan and LTX-Video VAE decoders demonstrate that our method outperforms baselines in both quality and speed, achieving approximately a 6$\\times$ speedup while maintaining the reconstruction performance up to 96.9%. Notably, Flash-VAED accelerates the end-to-end generation pipeline by up to 36% with negligible quality drops on VBench-2.0.", "authors": ["Lunjie Zhu", "Yushi Huang", "Xingtong Ge", "Yufei Xue", "Zhening Liu", "Yumeng Zhang", "Zehong Lin", "Jun Zhang"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-22", "url": "https://arxiv.org/abs/2602.19161", "pdf_url": "https://arxiv.org/pdf/2602.19161v1", "arxiv_id": "2602.19161", "doi": "10.48550/arXiv.2602.19161", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Aoko955/Flash-VAED", "venue": "arXiv.org", "quality_score": 0.7544} {"id": "52b1b3ad5eb18edf5f47250fbebd6a09e8a5ecd0bbf3edf9d5616a3544fa68e2", "sources": ["arxiv", "semantic_scholar"], "title": "Routing-Aware Explanations for Mixture of Experts Graph Models in Malware Detection", "abstract": "Mixture-of-Experts (MoE) offers flexible graph reasoning by combining multiple views of a graph through a learned router. We investigate routing-aware explanations for MoE graph models in malware detection using control flow graphs (CFGs). Our architecture builds diversity at two levels. At the node level, each layer computes multiple neighborhood statistics and fuses them with an MLP, guided by a degree reweighting factor rho and a pooling choice lambda in {mean, std, max}, producing distinct node representations that capture complementary structural cues in CFGs. At the readout level, six experts, each tied to a specific (rho, lambda) view, output graph-level logits that the router weights into a final prediction. Post-hoc explanations are generated with edge-level attributions per expert and aggregated using the router gates so the rationale reflects both what each expert highlights and how strongly it is selected. Evaluated against single-expert GNN baselines such as GCN, GIN, and GAT on the same CFG dataset, the proposed MoE achieves strong detection accuracy while yielding stable, faithful attributions under sparsity-based perturbations. The results indicate that making the router explicit and combining multi-statistic node encoding with expert-level diversity can improve the transparency of MoE decisions for malware analysis.", "authors": ["Hossein Shokouhinejad", "Roozbeh Razavi-Far", "Griffin Higgins", "Ali. A Ghorbani"], "categories": ["cs.CR", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-22", "url": "https://arxiv.org/abs/2602.19025", "pdf_url": "https://arxiv.org/pdf/2602.19025v1", "arxiv_id": "2602.19025", "doi": "10.48550/arXiv.2602.19025", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4881} {"id": "aa7b102e6dd7fe6ce6204cf14ec350faa07a1cd75ea3b62631a12ac254e86d20", "sources": ["arxiv", "semantic_scholar"], "title": "Sink-Aware Pruning for Diffusion Language Models", "abstract": "Diffusion Language Models (DLMs) incur high inference cost due to iterative denoising, motivating efficient pruning. Existing pruning heuristics largely inherited from autoregressive (AR) LLMs, typically preserve attention sink tokens because AR sinks serve as stable global anchors. We show that this assumption does not hold for DLMs: the attention-sink position exhibits substantially higher variance over the full generation trajectory (measured by how the dominant sink locations shift across timesteps), indicating that sinks are often transient and less structurally essential than in AR models. Based on this observation, we propose ${\\bf \\texttt{Sink-Aware Pruning}}$, which automatically identifies and prunes unstable sinks in DLMs (prior studies usually keep sinks for AR LLMs). Without retraining, our method achieves a better quality-efficiency trade-off and outperforms strong prior pruning baselines under matched compute. Our code is available at https://github.com/VILA-Lab/Sink-Aware-Pruning.", "authors": ["Aidar Myrzakhan", "Tianyi Li", "Bowei Guo", "Shengkun Tang", "Zhiqiang Shen"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-19", "url": "https://arxiv.org/abs/2602.17664", "pdf_url": "https://arxiv.org/pdf/2602.17664v1", "arxiv_id": "2602.17664", "doi": "10.48550/arXiv.2602.17664", "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/VILA-Lab/Sink-Aware-Pruning", "venue": "arXiv.org", "quality_score": 0.7491} {"id": "89825c64e037aa9c0e06a6cc615ab129a6ad01aa1d1ee180d5936b305e4572e0", "sources": ["arxiv", "semantic_scholar"], "title": "Phase-Aware Mixture of Experts for Agentic Reinforcement Learning", "abstract": "Reinforcement learning (RL) has equipped LLM agents with a strong ability to solve complex tasks. However, existing RL methods normally use a \\emph{single} policy network, causing \\emph{simplicity bias} where simple tasks occupy most parameters and dominate gradient updates, leaving insufficient capacity for complex tasks. A plausible remedy could be employing the Mixture-of-Experts (MoE) architecture in the policy network, as MoE allows different parameters (experts) to specialize in different tasks, preventing simple tasks from dominating all parameters. However, a key limitation of traditional MoE is its token-level routing, where the router assigns each token to specialized experts, which fragments phase-consistent patterns into scattered expert assignments and thus undermines expert specialization. In this paper, we propose \\textbf{Phase-Aware Mixture of Experts (PA-MoE)}. It first features a lightweight \\emph{phase router} that learns latent phase boundaries directly from the RL objective without pre-defining phase categories. Then, the phase router allocates temporally consistent assignments to the same expert, allowing experts to preserve phase-specific expertise. Experimental results demonstrate the effectiveness of our proposed PA-MoE.", "authors": ["Shengtian Yang", "Yu Li", "Shuo He", "Yewen Li", "Qingpeng Cai", "Peng Jiang", "Lei Feng"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-19", "url": "https://arxiv.org/abs/2602.17038", "pdf_url": "https://arxiv.org/pdf/2602.17038v3", "arxiv_id": "2602.17038", "doi": "10.48550/arXiv.2602.17038", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4847} {"id": "bcb067e50c3f6de230c1df078b0830de05aa16da7efb59dc13305bab50b400f9", "sources": ["arxiv", "semantic_scholar"], "title": "ARKV: Adaptive and Resource-Efficient KV Cache Management under Limited Memory Budget for Long-Context Inference in LLMs", "abstract": "Large Language Models (LLMs) are increasingly deployed in scenarios demanding ultra-long context reasoning, such as agentic workflows and deep research understanding. However, long-context inference is constrained by the KV cache, a transient memory structure that grows linearly with sequence length and batch size, quickly dominating GPU memory usage. Existing memory reduction techniques, including eviction and quantization, often rely on static heuristics and suffer from degraded quality under tight budgets. In this paper, we propose ARKV, a lightweight and adaptive framework that dynamically allocates precision levels to cached tokens based on per-layer attention dynamics and token-level importance. During a short prefill phase, ARKV estimates the original quantization (OQ) ratio of each layer by computing statistical scores such as attention entropy, variance and kurtosis. During decoding, tokens are assigned to one of three states, Original (full precision), Quantization (low precision), or Eviction, according to a fast heavy-hitter scoring strategy. Our experiments on LLaMA3 and Qwen3 models across diverse long- and short-context tasks demonstrate that ARKV preserves ~97% of baseline accuracy on long-context benchmarks while reducing KV memory usage by 4x, with minimal throughput loss. On short-context tasks, ARKV matches full-precision baselines; on GSM8K math reasoning, it significantly outperforms uniform quantization. These results highlight the practical viability of ARKV for scalable LLM deployment, offering fine-grained, data-driven memory control without retraining or architectural modifications. The source code and artifacts can be found in: https://github.com/Large-scale-Sustainable-Computing-LSC/ARKV", "authors": ["Jianlong Lei", "Shashikant Ilager"], "categories": ["cs.AR", "cs.AI", "cs.DC", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-19", "url": "https://arxiv.org/abs/2603.08727", "pdf_url": "https://arxiv.org/pdf/2603.08727v1", "arxiv_id": "2603.08727", "doi": null, "citation_count": 3, "influential_citation_count": 2, "has_code": true, "code_url": "https://github.com/Large-scale-Sustainable-Computing-LSC/ARKV", "venue": null, "quality_score": 0.5728} {"id": "0cc3f2c90ec6f0e37139eea420a6776034cd71e82a5590278a8b89f3c812c940", "sources": ["arxiv", "semantic_scholar"], "title": "Grassmannian Mixture-of-Experts: Concentration-Controlled Routing on Subspace Manifolds", "abstract": "Mixture-of-Experts models rely on learned routers to assign tokens to experts, yet standard softmax gating provides no principled mechanism to control the tradeoff between sparsity and utilization. We propose Grassmannian MoE (GrMoE), a routing framework that operates on the Grassmannian manifold of subspaces, where gating weights arise from the concentration parameters of Matrix Bingham distributions. This construction yields a single, interpretable knob -- the concentration matrix $Λ$ -- that continuously controls routing entropy, replacing discrete top-$k$ selection with a smooth, geometrically principled sparsity mechanism. We further develop an amortized variational inference procedure for posterior routing distributions, enabling uncertainty-aware expert assignment that naturally resists expert collapse. We formally prove tight bounds relating the Bingham concentration spectrum to routing entropy, expected top-$k$ mass, and an exponential bound on expert collapse, establishing the first formal theory of concentration-controlled sparsity. On synthetic routing tasks, a 350M-parameter MoE language model with 8 experts, a 1.3B-parameter model with 16 experts, and a 2.7B-parameter model with 32 experts, GrMoE achieves 0\\% routing collapse across all seeds, comparable or better perplexity with 15--30\\% improved load balance, and a smooth monotonic relationship between concentration and effective sparsity that enables post-hoc sparsity tuning without retraining. Token-level analysis reveals that experts learn heterogeneous concentration values that correlate with linguistic specialization, providing interpretable routing behavior.", "authors": ["Ibne Farabi Shihab", "Sanjeda Akter", "Anuj Sharma"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-19", "url": "https://arxiv.org/abs/2602.17798", "pdf_url": "https://arxiv.org/pdf/2602.17798v1", "arxiv_id": "2602.17798", "doi": "10.48550/arXiv.2602.17798", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4847} {"id": "26fca49392145b70da1dc794cc093d5acf46713001a940a6ea3c3b06bd1d00f1", "sources": ["arxiv", "semantic_scholar"], "title": "Fast KV Compaction via Attention Matching", "abstract": "Scaling language models to long contexts is often bottlenecked by the size of the key-value (KV) cache. In deployed settings, long contexts are typically managed through compaction in token space via summarization. However, summarization can be highly lossy, substantially harming downstream performance. Recent work on Cartridges has shown that it is possible to train highly compact KV caches in latent space that closely match full-context performance, but at the cost of slow and expensive end-to-end optimization. This work describes an approach for fast context compaction in latent space through Attention Matching, which constructs compact keys and values to reproduce attention outputs and preserve attention mass at a per-KV-head level. We show that this formulation naturally decomposes into simple subproblems, some of which admit efficient closed-form solutions. Within this framework, we develop a family of methods that significantly push the Pareto frontier of compaction time versus quality, achieving up to 50x compaction in seconds on some datasets with little quality loss.", "authors": ["Adam Zweiger", "Xinghong Fu", "Han Guo", "Yoon Kim"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-18", "url": "https://arxiv.org/abs/2602.16284", "pdf_url": "https://arxiv.org/pdf/2602.16284v2", "arxiv_id": "2602.16284", "doi": "10.48550/arXiv.2602.16284", "citation_count": 8, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4835} {"id": "5c0db29e0c4622e69425febb1a88fb7986f524ee0e1d0a2b75107c7fcc1aa275", "sources": ["arxiv", "semantic_scholar"], "title": "Agent Memory Below the Prompt: Persistent Q4 KV Cache for Multi-Agent LLM Inference on Edge Devices", "abstract": "Multi-agent LLM systems on edge devices face a memory management problem: device RAM is too small to hold every agent's KV cache simultaneously. On Apple M4 Pro with 10.2 GB of cache budget, only 3 agents fit at 8K context in FP16. A 10-agent workflow must constantly evict and reload caches. Without persistence, every eviction forces a full re-prefill through the model -- 15.7 seconds per agent at 4K context. We address this by persisting each agent's KV cache to disk in 4-bit quantized format and reloading it directly into the attention layer, eliminating redundant O(n) prefill computation via direct cache restoration. The system comprises three components: a block pool providing per-agent isolated Q4 KV caches in safetensors format, a BatchQuantizedKVCache for concurrent inference over multiple agents' quantized caches, and cross-phase context injection that accumulates attention state across conversation phases without re-computation. Evaluated on three architectures (Gemma 3 12B, dense GQA, 48 layers; DeepSeek-Coder-V2-Lite 16B, MoE MLA, 27 layers; Llama 3.1 8B, dense GQA, 32 layers), cache restoration reduces time-to-first-token by up to 136x (Gemma: 22--136x at 4K--32K; DeepSeek: 11--76x at 4K--32K; Llama: 24--111x at 4K--16K; 3--10x at 1K). Q4 quantization fits 4x more agent contexts into fixed device memory than FP16. Perplexity measured with actual Q4 KV caches shows -0.7% for Gemma, +2.8% for Llama, and +3.0% for DeepSeek. Open-source at https://github.com/yshk-mxim/agent-memory", "authors": ["Yakov Pyotr Shkolnikov"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-17", "url": "https://arxiv.org/abs/2603.04428", "pdf_url": "https://arxiv.org/pdf/2603.04428v1", "arxiv_id": "2603.04428", "doi": null, "citation_count": 3, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/yshk-mxim/agent-memory", "venue": null, "quality_score": 0.5701} {"id": "c250a273463f13badd38b0985637fe1cfd52cd376de4ac12c1c9c898ddd6303c", "sources": ["arxiv", "semantic_scholar"], "title": "Thin Keys, Full Values: Reducing KV Cache via Low-Dimensional Attention Selection", "abstract": "Standard Transformer attention uses identical dimensionality for queries, keys, and values, yet these components serve different roles: queries and keys produce scalar attention weights (selection), while values carry rich representations (value transfer). We show that selection requires only $O(\\log N)$ dimensions to distinguish among $N$ relevant token categories (e.g., syntactic roles, semantic clusters, positional patterns) -- far fewer than value transfer needs. We introduce factored keys, which exploit this asymmetry to physically shrink the KV cache of any pretrained model without retraining from scratch -- unlike Grouped-Query Attention (GQA) and Multi-Head Latent Attention (MLA), which must be designed into the architecture before pretraining. We factorize each key projection $W_K \\approx A_{d \\times r} B_{r \\times d}$ via truncated singular value decomposition (SVD) (where $r$ is the chosen compression dimension), set $W_K' = A$ as the new key projection producing compact $r$-dimensional keys for the cache, and absorb $B^\\top$ into the query projection ($W_Q' = W_Q B^\\top$) at zero cost -- since queries are never cached. At the 7B scale, training from scratch with $r = d/4$ (where $d$ is the model dimension) matches full-attention perplexity ($9.24$ vs $9.25$ PPL after 20B tokens, mean over two seeds) while using 12% fewer parameters and training 8% faster. For existing models, SVD followed by QK fine-tuning (3 epochs, less than 1% of pretraining data) achieves 75% key cache savings at roughly 2% quality cost on both GPT-2 and Mistral-7B. The approach composes with GQA and quantization for up to $16\\times$ combined key cache compression. For a 7B model serving a 128K context, factored keys save 25 GB of KV cache per user, enabling roughly 60% more concurrent users on identical hardware.", "authors": ["Hengshuai Yao", "Xing Chen", "Ahmed Murtadha", "Guan Wang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-16", "url": "https://arxiv.org/abs/2603.04427", "pdf_url": "https://arxiv.org/pdf/2603.04427v4", "arxiv_id": "2603.04427", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3062} {"id": "014591f595f53721d88489052644e7412ccb02980d3acefaacbae172550e5504", "sources": ["arxiv", "semantic_scholar"], "title": "Parameter-Efficient Fine-Tuning of LLMs with Mixture of Space Experts", "abstract": "Large Language Models (LLMs) have achieved remarkable progress, with Parameter-Efficient Fine-Tuning (PEFT) emerging as a key technique for downstream task adaptation. However, existing PEFT methods mainly operate in Euclidean space, fundamentally limiting their capacity to capture complex geometric structures inherent in language data. While alternative geometric spaces, like hyperbolic geometries for hierarchical data and spherical manifolds for circular patterns, offer theoretical advantages, forcing representations into a single manifold type ultimately limits expressiveness, even when curvature parameters are learnable. To address this, we propose Mixture of Space (MoS), a unified framework that leverages multiple geometric spaces simultaneously to learn richer, curvature-aware representations. Building on this scheme, we develop MoSLoRA, which extends Low-Rank Adaptation (LoRA) with heterogeneous geometric experts, enabling models to dynamically select or combine appropriate geometric spaces based on input context. Furthermore, to address the computational overhead of frequent manifold switching, we develop a lightweight routing mechanism. Moreover, we provide empirical insights into how curvature optimization impacts training stability and model performance. Our experiments across diverse benchmarks demonstrate that MoSLoRA consistently outperforms strong baselines, achieving up to 5.6% improvement on MATH500 and 15.9% on MAWPS.", "authors": ["Buze Zhang", "Jinkai Tao", "Zilang Zeng", "Neil He", "Ali Maatouk", "Menglin Yang", "Rex Ying"], "categories": ["cs.LG", "cs.AI", "cs.CL", "cs.NE"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-16", "url": "https://arxiv.org/abs/2602.14490", "pdf_url": "https://arxiv.org/pdf/2602.14490v1", "arxiv_id": "2602.14490", "doi": "10.48550/arXiv.2602.14490", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4813} {"id": "56f91b1d295b543affa4ba5e8da0fb68c25860151d09b9874075168944469197", "sources": ["arxiv", "semantic_scholar"], "title": "Dual-Signal Adaptive KV-Cache Optimization for Long-Form Video Understanding in Vision-Language Models", "abstract": "Vision-Language Models (VLMs) face a critical memory bottleneck when processing long-form video content due to the linear growth of the Key-Value (KV) cache with sequence length. Existing solutions predominantly employ reactive eviction strategies that compute full attention matrices before discarding tokens, resulting in substantial computational waste. We propose Sali-Cache, a novel a priori optimization framework that implements dual-signal adaptive caching through proactive memory management. By integrating a temporal filter based on optical flow analysis for detecting inter-frame redundancy and a spatial filter leveraging saliency detection for identifying visually significant regions, Sali-Cache intelligently manages memory allocation before entering computationally expensive attention operations. Experimental evaluation on the LLaVA 1.6 architecture demonstrates that our method achieves a 2.20x compression ratio in effective memory usage while maintaining 100% accuracy across BLEU, ROUGE-L, and Exact Match metrics. Furthermore, under identical memory budget constraints, Sali-Cache preserves context-rich features over extended temporal durations without degrading model performance, enabling efficient processing of long-form video content on consumer-grade hardware.", "authors": ["Vishnu Sai", "Dheeraj Sai", "Srinath B", "Girish Varma", "Priyesh Shukla"], "categories": ["cs.CV", "cs.AI", "cs.LG", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-15", "url": "https://arxiv.org/abs/2602.14236", "pdf_url": "https://arxiv.org/pdf/2602.14236v1", "arxiv_id": "2602.14236", "doi": "10.48550/arXiv.2602.14236", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4801} {"id": "66946a8b7501d1da8bb409317595e6fd842a31f7d3797e18d0d2736d65bcbeac", "sources": ["arxiv", "semantic_scholar"], "title": "Lamer-SSL: Layer-aware Mixture of LoRA Experts for Continual Multilingual Expansion of Self-supervised Models without Forgetting", "abstract": "Despite their impressive performance, self-supervised speech models often struggle to generalize to new languages and tend to forget previously acquired knowledge during continual training. To address this, we propose Lamer-SSL, a parameter-efficient framework that integrates a Layer-Aware MixturE of LoRA Experts (Lamer) module with a replay strategy. The Lamer module enables flexible balancing between shared and language-specific representations, while layer-aware expert allocation assigns more experts to deeper layers where semantic information is richer. Meanwhile, the replay strategy retains prior knowledge using minimal data, mitigating forgetting during continual training. Experiments on automatic speech recognition (ASR) and language identification (LID) demonstrate that Lamer-SSL extends self-supervised models to new languages effectively while maintaining strong performance on previously learned languages with only 2.14% parameters being trainable.", "authors": ["Jing Xu", "Minglin Wu", "Xueyuan Chen", "Xixin Wu", "Helen Meng"], "categories": ["cs.CL", "eess.AS"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-02-13", "url": "https://arxiv.org/abs/2602.12746", "pdf_url": "https://arxiv.org/pdf/2602.12746v1", "arxiv_id": "2602.12746", "doi": "10.48550/arXiv.2602.12746", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE International Conference on Acoustics, Speech, and Signal Processing", "quality_score": 0.4778} {"id": "a64b4f13b2a7b3791276a2a8b84d750f33b0634fb923c17562adb35f17abe269", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Predefined Experts: Maximizing Data Usage on Vertical Federated Learning", "abstract": "Vertical Federated Learning (VFL) has emerged as a critical paradigm for collaborative model training in privacy-sensitive domains such as finance and healthcare. However, most existing VFL frameworks rely on the idealized assumption of full sample alignment across participants, a premise that rarely holds in real-world scenarios. To bridge this gap, this work introduces Split-MoPE, a novel framework that integrates Split Learning with a specialized Mixture of Predefined Experts (MoPE) architecture. Unlike standard Mixture of Experts (MoE), where routing is learned dynamically, MoPE uses predefined experts to process specific data alignments, effectively maximizing data usage during both training and inference without requiring full sample overlap. By leveraging pretrained encoders for target data domains, Split-MoPE achieves state-of-the-art performance in a single communication round, significantly reducing the communication footprint compared to multi-round end-to-end training. Furthermore, unlike existing proposals that address sample misalignment, this novel architecture provides inherent robustness against malicious or noisy participants and offers per-sample interpretability by quantifying each collaborator's contribution to each prediction. Extensive evaluations on vision (CIFAR-10/100) and tabular (Breast Cancer Wisconsin) datasets demonstrate that Split-MoPE consistently outperforms state-of-the-art systems such as LASER and Vertical SplitNN, particularly in challenging scenarios with high data missingness.", "authors": ["Jon Irureta", "Gorka Azkune", "Jon Imaz", "Aizea Lojo", "Javier Fernandez-Marques"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-13", "url": "https://arxiv.org/abs/2602.12708", "pdf_url": "https://arxiv.org/pdf/2602.12708v2", "arxiv_id": "2602.12708", "doi": "10.48550/arXiv.2602.12708", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4778} {"id": "1a27ea726206efd0d279f03246087d06ba9fb2168932b09891ba381aaa5db7b6", "sources": ["arxiv", "semantic_scholar"], "title": "Doc-to-LoRA: Learning to Instantly Internalize Contexts", "abstract": "Long input sequences are central to in-context learning, document understanding, and multi-step reasoning of Large Language Models (LLMs). However, the quadratic attention cost of Transformers makes inference memory-intensive and slow. While context distillation (CD) can transfer information into model parameters, per-prompt distillation is impractical due to training costs and latency. To address these limitations, we propose Doc-to-LoRA (D2L), a lightweight hypernetwork that meta-learns to perform approximate CD within a single forward pass. Given an unseen prompt, D2L generates a LoRA adapter for a target LLM, enabling subsequent queries to be answered without re-consuming the original context, reducing latency and KV-cache memory consumption during inference of the target LLM. On a long-context needle-in-a-haystack task, D2L successfully learns to map contexts into adapters that store the needle information, achieving near-perfect zero-shot accuracy at sequence lengths exceeding the target LLM's native context window by more than 4x. On real-world QA datasets with limited compute, D2L outperforms standard CD while significantly reducing peak memory consumption and update latency. We envision that D2L can facilitate rapid adaptation of LLMs, opening up the possibility of frequent knowledge updates and personalized chat behavior.", "authors": ["Rujikorn Charakorn", "Edoardo Cetin", "Shinnosuke Uesaka", "Robert Tjarko Lange"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-13", "url": "https://arxiv.org/abs/2602.15902", "pdf_url": "https://arxiv.org/pdf/2602.15902v1", "arxiv_id": "2602.15902", "doi": "10.48550/arXiv.2602.15902", "citation_count": 16, "influential_citation_count": 3, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4778} {"id": "c4612ae6d47b10c378cf414ac6e614e08ae05f7d084757921439521afbcf24b5", "sources": ["arxiv", "semantic_scholar"], "title": "Cachemir: Fully Homomorphic Encrypted Inference of Generative Large Language Model with KV Cache", "abstract": "Generative large language models (LLMs) have revolutionized multiple domains. Modern LLMs predominantly rely on an autoregressive decoding strategy, which generates output tokens sequentially and employs a key-value cache (KV cache) to avoid redundant computation. However, the widespread deployment of LLMs has raised serious privacy concerns, as users are feeding all types of data into the model, motivating the development of secure inference frameworks based on fully homomorphic encryption (FHE). A major limitation of existing FHE-based frameworks is their inability to effectively integrate the KV cache, resulting in prohibitively high latency for autoregressive decoding. In this paper, we propose Cachemir, a KV Cache Accelerated Homomorphic Encrypted LLM Inference Regime to overcome this limitation. Cachemir comprises three key technical contributions: 1) a set of novel HE packing algorithms specifically designed to leverage the computational advantages of the KV cache; 2) an interleaved replicated packing algorithm to efficiently compute the vector-matrix multiplications that result from using the KV cache in Transformer linear layers; and 3) an augmented bootstrapping placement strategy that accounts for the KV cache to minimize bootstrapping cost. We demonstrate that Cachemir achieves $48.83\\times$ and $67.16\\times$ speedup over MOAI (ICML'25) and THOR (CCS'25) respectively on CPU and consumes less than 100 seconds on GPU to generate an output token for Llama-3-8B.", "authors": ["Ye Yu", "Yifan Zhou", "Yi Chen", "Pedro Soto", "Wenjie Xiong", "Meng Li"], "categories": ["cs.CR"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-12", "url": "https://arxiv.org/abs/2602.11470", "pdf_url": "https://arxiv.org/pdf/2602.11470v1", "arxiv_id": "2602.11470", "doi": "10.48550/arXiv.2602.11470", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4767} {"id": "d65dcea243cce2e939a358fb8b0efb323a8b66a129c4bed35ada3bbf2df79d83", "sources": ["arxiv", "semantic_scholar"], "title": "GORGO: Maximizing KV-Cache Reuse While Minimizing Network Latency in Cross-Region LLM Load Balancing", "abstract": "Distributing LLM inference across geographical regions can improve Time-to-First-Token (TTFT) by regionalizing service deployments. While existing multi-region load balancers save prefill computation by prioritizing Key--Value (KV) Cache hit rate, they ignore cluster networking latency, a critical factor in routing decisions. We introduce GORGO, a method for minimizing TTFT by optimizing a total serving cost as a function of available compute, network latency, and prefix caching. Using extensive profiling on custom infrastructure, we analyze component-level latency bottlenecks and benchmark GORGO against three baselines: (1) naive least-load routing, which ignores prefix-cache overlap; (2) prefix-similarity routing, which selectively pushes requests to the replica with the highest cached-prefix overlap; and (3) a centralized HTTP proxy that runs the GORGO policy while tracking requests across all nodes. We demonstrate that GORGO reduces P99 TTFT through network-aware routing and improves average TTFT by preventing pathological cross-region forwarding. Additionally, we find that GORGO-proxy overcomes synchronization overhead in previous methods and is 2.5x faster on median TTFT, demonstrating the success of a centralized router.", "authors": ["Alessio Ricci Toniolo", "Abinaya Dinesh", "Rome Thorstenson"], "categories": ["cs.NI", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-12", "url": "https://arxiv.org/abs/2602.11688", "pdf_url": "https://arxiv.org/pdf/2602.11688v1", "arxiv_id": "2602.11688", "doi": "10.48550/arXiv.2602.11688", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/atoniolo76/gotoni/tree/benchmark-load-balancing", "venue": "arXiv.org", "quality_score": 0.7367} {"id": "20aed9382dfe0e743c409c346f4acbc869d5e9215670840d7e51b1309b860ec9", "sources": ["arxiv", "semantic_scholar"], "title": "LAER-MoE: Load-Adaptive Expert Re-layout for Efficient Mixture-of-Experts Training", "abstract": "Expert parallelism is vital for effectively training Mixture-of-Experts (MoE) models, enabling different devices to host distinct experts, with each device processing different input data. However, during expert parallel training, dynamic routing results in significant load imbalance among experts: a handful of overloaded experts hinder overall iteration, emerging as a training bottleneck. In this paper, we introduce LAER-MoE, an efficient MoE training framework. The core of LAER-MoE is a novel parallel paradigm, Fully Sharded Expert Parallel (FSEP), which fully partitions each expert parameter by the number of devices and restores partial experts at expert granularity through All-to-All communication during training. This allows for flexible re-layout of expert parameters during training to enhance load balancing. In particular, we perform fine-grained scheduling of communication operations to minimize communication overhead. Additionally, we develop a load balancing planner to formulate re-layout strategies of experts and routing schemes for tokens during training. We perform experiments on an A100 cluster, and the results indicate that our system achieves up to 1.69x acceleration compared to the current state-of-the-art training systems. Source code available at https://github.com/PKU-DAIR/Hetu-Galvatron/tree/laer-moe.", "authors": ["Xinyi Liu", "Yujie Wang", "Fangcheng Fu", "Xuefeng Xiao", "Huixia Li", "Jiashi Li", "Bin Cui"], "categories": ["cs.DC", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-12", "url": "https://arxiv.org/abs/2602.11686", "pdf_url": "https://arxiv.org/pdf/2602.11686v1", "arxiv_id": "2602.11686", "doi": "10.1145/3779212.3790180", "citation_count": 4, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/PKU-DAIR/Hetu-Galvatron/tree/laer-moe", "venue": "International Conference on Architectural Support for Programming Languages and Operating Systems", "quality_score": 0.7367} {"id": "e6418dc0dab9ff2eb91c4f1924d3082c47471e9288149c276e46eab7621f5780", "sources": ["arxiv", "semantic_scholar"], "title": "Step 3.5 Flash: Open Frontier-Level Intelligence with 11B Active Parameters", "abstract": "We introduce Step 3.5 Flash, a sparse Mixture-of-Experts (MoE) model that bridges frontier-level agentic intelligence and computational efficiency. We focus on what matters most when building agents: sharp reasoning and fast, reliable execution. Step 3.5 Flash pairs a 196B-parameter foundation with 11B active parameters for efficient inference. It is optimized with interleaved 3:1 sliding-window/full attention and Multi-Token Prediction (MTP-3) to reduce the latency and cost of multi-round agentic interactions. To reach frontier-level intelligence, we design a scalable reinforcement learning framework that combines verifiable signals with preference feedback, while remaining stable under large-scale off-policy training, enabling consistent self-improvement across mathematics, code, and tool use. Step 3.5 Flash demonstrates strong performance across agent, coding, and math tasks, achieving 85.4% on IMO-AnswerBench, 86.4% on LiveCodeBench-v6 (2024.08-2025.05), 88.2% on tau2-Bench, 69.0% on BrowseComp (with context management), and 51.0% on Terminal-Bench 2.0, comparable to frontier models such as GPT-5.2 xHigh and Gemini 3.0 Pro. By redefining the efficiency frontier, Step 3.5 Flash provides a high-density foundation for deploying sophisticated agents in real-world industrial environments.", "authors": ["Ailin Huang", "Ang Li", "Aobo Kong", "Bin Wang", "Binxing Jiao", "Bo Dong", "Bojun Wang", "Boyu Chen", "Brian Li", "Buyun Ma", "Chang Su", "Changxin Miao", "Changyi Wan", "Chao Lou", "Chen Hu", "Chen Xu", "Chenfeng Yu", "Chengting Feng", "Chengyuan Yao", "Chunrui Han", "Dan Ma", "Dapeng Shi", "Daxin Jiang", "Dehua Ma", "Deshan Sun", "Di Qi", "Enle Liu", "Fajie Zhang", "Fanqi Wan", "Guanzhe Huang", "Gulin Yan", "Guoliang Cao", "Guopeng Li", "Han Cheng", "Hangyu Guo", "Hanshan Zhang", "Hao Nie", "Haonan Jia", "Haoran Lv", "Hebin Zhou", "Hekun Lv", "Heng Wang", "Heung-Yeung Shum", "Hongbo Huang", "Hongbo Peng", "Hongyu Zhou", "Hongyuan Wang", "Houyong Chen", "Huangxi Zhu", "Huimin Wu", "Huiyong Guo", "Jia Wang", "Jian Zhou", "Jianjian Sun", "Jiaoren Wu", "Jiaran Zhang", "Jiashu Lv", "Jiashuo Liu", "Jiayi Fu", "Jiayu Liu", "Jie Cheng", "Jie Luo", "Jie Yang", "Jie Zhou", "Jieyi Hou", "Jing Bai", "Jingcheng Hu", "Jingjing Xie", "Jingwei Wu", "Jingyang Zhang", "Jishi Zhou", "Junfeng Liu", "Junzhe Lin", "Ka Man Lo", "Kai Liang", "Kaibo Liu", "Kaijun Tan", "Kaiwen Yan", "Kaixiang Li", "Kang An", "Kangheng Lin", "Lei Yang", "Liang Lv", "Liang Zhao", "Liangyu Chen", "Lieyu Shi", "Liguo Tan", "Lin Lin", "Lina Chen", "Luck Ma", "Mengqiang Ren", "Michael Li", "Ming Li", "Mingliang Li", "Mingming Zhang", "Mingrui Chen", "Mitt Huang", "Na Wang", "Peng Liu", "Qi Han", "Qian Zhao", "Qinglin He", "Qinxin Du", "Qiuping Wu", "Quan Sun", "Rongqiu Yang", "Ruihang Miao", "Ruixin Han", "Ruosi Wan", "Ruyan Guo", "Shan Wang", "Shaoliang Pang", "Shaowen Yang", "Shengjie Fan", "Shijie Shang", "Shiliang Yang", "Shiwei Li", "Shuangshuang Tian", "Siqi Liu", "Siye Wu", "Siyu Chen", "Song Yuan", "Tiancheng Cao", "Tianchi Yue", "Tianhao Cheng", "Tianning Li", "Tingdan Luo", "Wang You", "Wei Ji", "Wei Yuan", "Wei Zhang", "Weibo Wu", "Weihao Xie", "Wen Sun", "Wenjin Deng", "Wenzhen Zheng", "Wuxun Xie", "Xiangfeng Wang", "Xiangwen Kong", "Xiangyu Liu", "Xiangyu Zhang", "Xiaobo Yang", "Xiaojia Liu", "Xiaolan Yuan", "Xiaoran Jiao", "Xiaoxiao Ren", "Xiaoyun Zhang", "Xin Li", "Xin Liu", "Xin Wu", "Xing Chen", "Xingping Yang", "Xinran Wang", "Xu Zhao", "Xuan He", "Xuanti Feng", "Xuedan Cai", "Xuqiang Zhou", "Yanbo Yu", "Yang Li", "Yang Xu", "Yanlin Lai", "Yanming Xu", "Yaoyu Wang", "Yeqing Shen", "Yibo Zhu", "Yichen Lv", "Yicheng Cao", "Yifeng Gong", "Yijing Yang", "Yikun Yang", "Yin Zhao", "Yingxiu Zhao", "Yinmin Zhang", "Yitong Zhang", "Yixuan Zhang", "Yiyang Chen", "Yongchi Zhao", "Yongshen Long", "Yongyao Wang", "Yousong Guan", "Yu Zhou", "Yuang Peng", "Yuanhao Ding", "Yuantao Fan", "Yuanwei Lu", "Yuanzhen Yang", "Yuchu Luo", "Yudi Zhao", "Yue Peng", "Yueqiang Lin", "Yufan Lu", "Yuling Zhao", "Yunzhou Ju", "Yurong Zhang", "Yusheng Li", "Yuxiang Yang", "Yuyang Chen", "Yuzhu Cai", "Zejia Weng", "Zetao Hong", "Zexi Li", "Zhe Xie", "Zheng Ge", "Zheng Gong", "Zheng Zeng", "Zhenyi Lu", "Zhewei Huang", "Zhichao Chang", "Zhiguo Huang", "Zhiheng Hu", "Zidong Yang", "Zili Wang", "Ziqi Ren", "Zixin Zhang", "Zixuan Wang"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-11", "url": "https://arxiv.org/abs/2602.10604", "pdf_url": "https://arxiv.org/pdf/2602.10604v2", "arxiv_id": "2602.10604", "doi": null, "citation_count": 13, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3026} {"id": "7fd563609643de05b2ff35c85eff8cb33f44d41cc6cc44286c74ab3826098985", "sources": ["arxiv", "semantic_scholar"], "title": "LoRA-Squeeze: Simple and Effective Post-Tuning and In-Tuning Compression of LoRA Modules", "abstract": "Despite its huge number of variants, standard Low-Rank Adaptation (LoRA) is still a dominant technique for parameter-efficient fine-tuning (PEFT). Nonetheless, it faces persistent challenges, including the pre-selection of an optimal rank and rank-specific hyper-parameters, as well as the deployment complexity of heterogeneous-rank modules and more sophisticated LoRA derivatives. In this work, we introduce LoRA-Squeeze, a simple and efficient methodology that aims to improve standard LoRA learning by changing LoRA module ranks either post-hoc or dynamically during training}. Our approach posits that it is better to first learn an expressive, higher-rank solution and then compress it, rather than learning a constrained, low-rank solution directly. The method involves fine-tuning with a deliberately high(er) source rank, reconstructing or efficiently approximating the reconstruction of the full weight update matrix, and then using Randomized Singular Value Decomposition (RSVD) to create a new, compressed LoRA module at a lower target rank. Extensive experiments across 13 text and 10 vision-language tasks show that post-hoc compression often produces lower-rank adapters that outperform those trained directly at the target rank, especially if a small number of fine-tuning steps at the target rank is allowed. Moreover, a gradual, in-tuning rank annealing variant of LoRA-Squeeze consistently achieves the best LoRA size-performance trade-off.", "authors": ["Ivan Vulić", "Adam Grycner", "Quentin de Laroussilhe", "Jonas Pfeiffer"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-11", "url": "https://arxiv.org/abs/2602.10993", "pdf_url": "https://arxiv.org/pdf/2602.10993v2", "arxiv_id": "2602.10993", "doi": "10.48550/arXiv.2602.10993", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4755} {"id": "fa15b2ab435ec4fdbaee7a2c790c9955ba3b6f2af9ab9de5ed2375907a71a7c9", "sources": ["arxiv", "semantic_scholar"], "title": "Efficient Remote KV Cache Reuse with GPU-native Video Codec", "abstract": "Remote KV cache reuse fetches KV cache for identical contexts from remote storage, avoiding recomputation, accelerating LLM inference. While it excels in high-speed networks, its performance degrades significantly in bandwidth-limited scenarios. Recent studies address this by transmitting KV caches in compressed form, but the associated heavyweight decompression counteracts the KV reuse benefits. In this paper, we propose an efficient and widely deployable remote KV cache reuse solution that leverages GPU-native video codecs. Our system, KVCodec, enables effective KV cache coding with two techniques. The codec-friendly tensor layout compresses the KV cache in a highly compact video format, enabling fast transmission. The efficient KV fetcher orchestrates the transmission, decoding, and restoration of compressed KV caches in an efficient pipelined manner, eliminating resource contention, masking network fluctuations, and achieving minimum time-to-first-token (TTFT). We prototype KVCodec on diverse GPUs from high- to low-end. Experiments reveal that it reduces TTFT by up to 3.51 times while maintaining lossless accuracy, compared to SOTA methods.", "authors": ["Liang Mi", "Weijun Wang", "Jinghan Chen", "Ting Cao", "Haipeng Dai", "Yunxin Liu"], "categories": ["cs.DC", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-10", "url": "https://arxiv.org/abs/2602.09725", "pdf_url": "https://arxiv.org/pdf/2602.09725v3", "arxiv_id": "2602.09725", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.3019} {"id": "16e331efa97df667084fd7c711121237f215b2155f9edcf770090d225733805e", "sources": ["arxiv", "semantic_scholar"], "title": "Generalizing GNNs with Tokenized Mixture of Experts", "abstract": "Deployed graph neural networks (GNNs) are frozen at deployment yet must fit clean data, generalize under distribution shifts, and remain stable to perturbations. We show that static inference induces a fundamental tradeoff: improving stability requires reducing reliance on shift-sensitive features, leaving an irreducible worst-case generalization floor. Instance-conditional routing can break this ceiling, but is fragile because shifts can mislead routing and perturbations can make routing fluctuate. We capture these effects via two decompositions separating coverage vs selection, and base sensitivity vs fluctuation amplification. Based on these insights, we propose STEM-GNN, a pretrain-then-finetune framework with a mixture-of-experts encoder for diverse computation paths, a vector-quantized token interface to stabilize encoder-to-head signals, and a Lipschitz-regularized head to bound output amplification. Across nine node, link, and graph benchmarks, STEM-GNN achieves a stronger three-way balance, improving robustness to degree/homophily shifts and to feature/edge corruptions while remaining competitive on clean graphs.", "authors": ["Xiaoguang Guo", "Zehong Wang", "Jiazheng Li", "Shawn Spitzel", "Qi Yang", "Kaize Ding", "Jundong Li", "Chuxu Zhang"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.09258", "pdf_url": "https://arxiv.org/pdf/2602.09258v1", "arxiv_id": "2602.09258", "doi": "10.48550/arXiv.2602.09258", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "c34b6bc4329d87eb962b3c7a7c6fb2bb6dbcd5180f1c048a533cef1ecddaaa41", "sources": ["arxiv", "semantic_scholar"], "title": "CryptoGen: Secure Transformer Generation with Encrypted KV-Cache Reuse", "abstract": "The widespread deployment of cloud-hosted generative models raises a fundamental challenge: enabling efficient autoregressive generation while preserving the privacy of both user prompts and model parameters in untrusted environments. We address this challenge in a client-server setting where an untrusted server hosts an autoregressive Transformer and the client requires cryptographic protection for both inputs and inference. We present CryptoGen, the first system to enable scalable privacy-preserving neural generation with persistent encrypted key-value (KV) cache reuse. Discriminative-task secure inference systems incur quadratic latency and memory growth when adapted to autoregressive decoding due to the lack of native encrypted KV-cache support. In contrast, CryptoGen achieves near-linear scaling by securely reusing and updating encrypted KV caches throughout generation. CryptoGen integrates homomorphic encryption and secret sharing to support both prefilling and generation. Key techniques include a unified encrypted KV-cache framework, heterogeneous SIMD encodings for different phases, optimized cipher-cipher matrix-matrix and matrix-vector operations, and efficient noise refresh and ciphertext concatenation mechanisms. Evaluation on generative Transformer models trained on WikiText-2, PTB, and LAMBADA shows that for input lengths of 128-512 tokens, CryptoGen achieves 4.4x-7.6x lower per-token latency than state-of-the-art discriminative secure inference systems, while maintaining near-linear latency and memory scaling, with advantages increasing for longer sequences. CryptoGen is released as an open-source library.", "authors": ["Hedong Zhang", "Neusha Javidnia", "Shweta Pardeshi", "Qian Lou", "Farinaz Koushanfar"], "categories": ["cs.CR"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.08798", "pdf_url": "https://arxiv.org/pdf/2602.08798v2", "arxiv_id": "2602.08798", "doi": "10.48550/arXiv.2602.08798", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": null, "venue": "arXiv.org", "quality_score": 0.7314} {"id": "6c779e752c5fdb6d8574e4ef6e2f57a37beef189cd2b13482627f3b73c5a8b57", "sources": ["arxiv", "semantic_scholar"], "title": "Predicting Future Utility: Global Combinatorial Optimization for Task-Agnostic KV Cache Eviction", "abstract": "Given the quadratic complexity of attention, KV cache eviction is vital to accelerate model inference. Current KV cache eviction methods typically rely on instantaneous heuristic metrics, implicitly assuming that score magnitudes are consistent proxies for importance across all heads. However, this overlooks the heterogeneity in predictive fidelity across attention heads. While certain heads prioritize the instantaneous contribution of tokens, others are dedicated to capturing long-horizon utility. In this paper, we propose that optimal budget allocation should be governed by the marginal utility in preserving long-term semantic information. Building on this insight, we propose LU-KV, a novel framework that formulates head-level budget allocation as a global combinatorial optimization problem to maximize the long-horizon marginal contribution of reserved tokens. To solve this non-convex problem, we employ a convex-hull relaxation and a marginal-utility-based greedy solver, achieving near-optimal solutions. Furthermore, we implement a data-driven offline profiling protocol to facilitate the practical deployment of LU-KV. Evaluations on LongBench and RULER benchmarks demonstrate that LU-KV reduces KV cache size by 80% with minimal performance degradation, while also decreasing inference latency and GPU memory footprint.", "authors": ["Ziyao Tang", "Pengkun Jiao", "Xinhang Chen", "Wei Liu", "Shiyong Li", "Jingjing Chen"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.08585", "pdf_url": "https://arxiv.org/pdf/2602.08585v2", "arxiv_id": "2602.08585", "doi": "10.48550/arXiv.2602.08585", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "fb9ad87ff71f7b2053d3c1ff57fcfa8d53cc9cb2ed26bcc73c2a363ea5ac2d42", "sources": ["arxiv", "semantic_scholar"], "title": "Near-Oracle KV Selection via Pre-hoc Sparsity for Long-Context Inference", "abstract": "A core bottleneck in large language model (LLM) inference is the cost of attending over the ever-growing key-value (KV) cache. Although near-oracle top-k KV selection can preserve the quality of dense attention while sharply reducing computation and bandwidth, existing sparse methods generally rely on posterior heuristics, i.e., selectors conditioned on observed attention or proxy scores. Such conditioning introduces posterior bias: it tends to distort true token importance and miss salient tokens, thereby impairing long-range reasoning. To tackle this problem, we propose Pre-hoc Sparsity (PrHS), which selects KV entries before attention scoring and provides explicit accuracy control. Let the attention mass of discarded entries be delta (the dropped mass). Through a marginal-to-mutual-information analysis, we derive an upper bound on the mutual-information loss that depends only on the dropped mass. This relation explains failure modes of posterior heuristics and enables verifiable guarantees by controlling the dropped mass in advance. Within PrHS, we instantiate three orthogonal pre-hoc selectors along the axes of time, depth, and layer. Extensive experiments on LLaMA and Mistral families validate PrHS. Across GSM8K and CoQA, PrHS reduces retrieval overhead by over 90%, achieving 3x higher retrieval sparsity than HShare at matched or better accuracy. It incurs under 1% average degradation on LongBench, lowers attention FLOPs by about 15% versus prior sparse baselines, and yields a 9.9x speedup in attention-operator latency and 2.8x higher throughput on NVIDIA A100-80GB GPUs than the dense baseline.", "authors": ["Yifei Gao", "Lei Wang", "Rong-Cheng Tu", "Qixin Zhang", "Jun Cheng", "Dacheng Tao"], "categories": ["cs.LG", "cs.AI", "cs.IT"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.08329", "pdf_url": "https://arxiv.org/pdf/2602.08329v1", "arxiv_id": "2602.08329", "doi": "10.48550/arXiv.2602.08329", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "c34b1070147d7e19f837687dc024e9f8f53a60da27cc0443e5443f542cf0bb5b", "sources": ["arxiv", "semantic_scholar"], "title": "ManifoldKV: Training-Free KV Cache Compression via Euclidean Outlier Detection", "abstract": "Long-context inference is constrained by KV-cache memory, which grows linearly with sequence length; KV-cache compression therefore hinges on reliably selecting which past tokens to retain. Most geometry-based eviction methods score keys by cosine similarity to a global centroid, but cosine is scale-invariant and can discard magnitude cues that distinguish semantically salient tokens. We propose ManifoldKV, a training-free scorer that ranks tokens by Euclidean distance to the key centroid, capturing both angular and radial deviations. On the RULER benchmark, ManifoldKV achieves 95.7% accuracy at 4K-16K contexts with 20% compression; matching the best geometric baseline while improving robustness in two regimes where cosine scoring fails. First, on multi-key retrieval, ManifoldKV reduces directional collisions, achieving 92.4% vs KeyDiff's 77.0% (+15.4 points) on 3-key NIAH at 50% compression. Second, to address dilution and performance collapse of global centroids at 64K context, we introduce WindowedManifoldKV, which restores accuracy to 84.3% at 25% compression, a 49-point recovery over global L2 and +3.2 points over KeyDiff. The method requires only 3 lines of code and works across 4 architectures without tuning.", "authors": ["Debajyoti Datta", "Trishala Neeraj", "Bibek Paudel", "Vyom Sharma", "Subhabrata Mukherjee"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.08343", "pdf_url": "https://arxiv.org/pdf/2602.08343v1", "arxiv_id": "2602.08343", "doi": "10.48550/arXiv.2602.08343", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "e447941df7ca40953846142ff0d92c01db16d9289dbdf379d79114f248ca55bf", "sources": ["arxiv", "semantic_scholar"], "title": "FlexMoRE: A Flexible Mixture of Rank-heterogeneous Experts for Efficient Federatedly-trained Large Language Models", "abstract": "Recent advances in mixture-of-experts architectures have shown that individual experts models can be trained federatedly, i.e., in isolation from other experts by using a common base model to facilitate coordination. However, we hypothesize that full-sized experts may not be necessary for all domains and that instead low-rank adapters may be sufficient. Here, we introduce FlexMoRE, a Flexible Mixture of Rank-heterogenous Experts, which may be either full-sized experts or adapters of a suitable rank. We systematically investigate the trade-off between expert rank and downstream task performance by evaluating $6$ experts with ranks $2^0$ to $2^{14}$ resulting in experiments covering 150 mixtures (96 with 2 experts, 54 with 7 experts) that are evaluated across $120$ tasks. For our experiments, we build on FlexOlmo and turn its pre-trained experts into low-rank versions. Our regression analysis from expert rank to downstream task performance reveals that the best-performing rank is substantially higher for reasoning-heavy benchmarks than for knowledge-heavy benchmarks. These findings on rank sensitivity come with direct implications for memory efficiency: Using optimal ranks, FlexMoRE yields improved downstream task performance (average score $47.18$) compared to the baseline FlexOlmo-style mixture of full-sized experts (average score $45.46$) at less than one third the parameters ($10.75$B for FlexMoRE vs. $33.27$B for FlexOlmo). All code will be made available.", "authors": ["Annemette Brok Pirchert", "Jacob Nielsen", "Mogens Henrik From", "Lukas Galke Poech", "Peter Schneider-Kamp"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.08818", "pdf_url": "https://arxiv.org/pdf/2602.08818v1", "arxiv_id": "2602.08818", "doi": "10.48550/arXiv.2602.08818", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "66cf0036aa7b4d06c163b26e7eda4f5bedc1241ad6f9f94c8e27f737fc8b9017", "sources": ["arxiv", "semantic_scholar"], "title": "UniComp: A Unified Evaluation of Large Language Model Compression via Pruning, Quantization and Distillation", "abstract": "Model compression is increasingly essential for deploying large language models (LLMs), yet existing comparative studies largely focus on pruning and quantization evaluated primarily on knowledge-centric benchmarks. Thus, we introduce UniComp, a unified evaluation framework for comparing pruning, quantization, and knowledge distillation. UniComp evaluates compressed models along three dimensions: performance, reliability, and efficiency, using a diverse set of capability- and safety-oriented benchmarks together with a hardware-aware efficiency analysis. Through evaluation of six compression techniques across 40 datasets, we observe (i) a consistent knowledge bias, where factual recall is largely preserved while multi-step reasoning, multilingual, and instruction-following capabilities degrade; (ii) a decoupling between performance and reliability, indicating that retained performance does not consistently imply preserved reliability; and (iii) that task-specific calibration can yield up to 50% relative improvement of reasoning performance in pruned models.", "authors": ["Jonathan von Rad", "Yong Cao", "Andreas Geiger"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.09130", "pdf_url": "https://arxiv.org/pdf/2602.09130v5", "arxiv_id": "2602.09130", "doi": "10.48550/arXiv.2602.09130", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "60caa7ff888c963b5cb9940667dd86305a49741634dea6d384d35c6274e9c897", "sources": ["arxiv", "semantic_scholar"], "title": "DirMoE: Dirichlet-routed Mixture of Experts", "abstract": "Mixture-of-Experts (MoE) models have demonstrated exceptional performance in large-scale language models. Existing routers typically rely on non-differentiable Top-$k$+Softmax, limiting their performance and scalability. We argue that two distinct decisions, which experts to activate and how to distribute expert contributions among them, are conflated in standard Top-$k$+Softmax. We introduce Dirichlet-Routed MoE (DirMoE), a novel end-to-end differentiable routing mechanism built on a Dirichlet variational autoencoder framework. This design fundamentally disentangles the core routing problems: expert selection, modeled by a Bernoulli component, and expert contribution among chosen experts, handled by a Dirichlet component. The entire forward pass remains fully differentiable through the use of Gumbel-Sigmoid relaxation for the expert selection and implicit reparameterization for the Dirichlet distribution. Our training objective, a variational ELBO, includes a direct sparsity penalty that precisely controls the number of active experts in expectation, alongside a schedule for key hyperparameters that guides the model from an exploratory to a definitive routing state. Moreover, our DirMoE router matches or exceeds other methods while improving expert specialization.", "authors": ["Amirhossein Vahidi", "Hesam Asadollahzadeh", "Navid Akhavan Attar", "Marie Moullet", "Kevin Ly", "Xingyi Yang", "Mohammad Lotfollahi"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.09001", "pdf_url": "https://arxiv.org/pdf/2602.09001v1", "arxiv_id": "2602.09001", "doi": "10.48550/arXiv.2602.09001", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "d977098d946caca03317032d4a8c37c79394480d07f46da2e4698dcfef4d32f1", "sources": ["arxiv", "semantic_scholar"], "title": "Large Language Lobotomy: Jailbreaking Mixture-of-Experts via Expert Silencing", "abstract": "The rapid adoption of Mixture-of-Experts (MoE) architectures marks a major shift in the deployment of Large Language Models (LLMs). MoE LLMs improve scaling efficiency by activating only a small subset of parameters per token, but their routing structure introduces new safety attack surfaces. We find that safety-critical behaviors in MoE LLMs (e.g., refusal) are concentrated in a small set of experts rather than being uniformly distributed. Building on this, we propose Large Language Lobotomy (L$^3$), a training-free, architecture-agnostic attack that compromises safety alignment by exploiting expert routing dynamics. L$^3$ learns routing patterns that correlate with refusal, attributes safety behavior to specific experts, and adaptively silences the most safety-relevant experts until harmful outputs are produced. We evaluate L$^3$ on eight state-of-the-art open-source MoE LLMs and show that our adaptive expert silencing increases average attack success from 7.3% to 70.4%, reaching up to 86.3%, outperforming prior training-free MoE jailbreak methods. Moreover, bypassing guardrails typically requires silencing fewer than 20% of layer-wise experts while largely preserving general language utility. These results reveal a fundamental tension between efficiency-driven MoE design and robust safety alignment and motivate distributing safety mechanisms more robustly in future MoE LLMs with architecture- and routing-aware methods.", "authors": ["Jona te Lintelo", "Lichao Wu", "Stjepan Picek"], "categories": ["cs.CR"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2602.08741", "pdf_url": "https://arxiv.org/pdf/2602.08741v1", "arxiv_id": "2602.08741", "doi": "10.48550/arXiv.2602.08741", "citation_count": 2, "influential_citation_count": 1, "has_code": true, "code_url": null, "venue": "arXiv.org", "quality_score": 0.7314} {"id": "32f21f6afb68f57a35742f30f233e76580ac5e9d3ca7c32e505e15c6e01775a2", "sources": ["arxiv", "semantic_scholar"], "title": "Attn-QAT: 4-Bit Attention With Quantization-Aware Training", "abstract": "Achieving reliable 4-bit attention is a prerequisite for end-to-end FP4 computation on emerging FP4-capable GPUs, yet attention remains the main obstacle due to FP4's tiny dynamic range and attention's heavy-tailed activations. This paper presents the first systematic study of 4-bit quantization-aware training (QAT) for attention. We find that \"drop-in\" QAT, which naively combines an FP4 forward pass with a high-precision Flash Attention (FA)-style backward pass, leads to training instability. We identify two key principles for stable FP4 attention: (1) matching low-precision recomputation of attention scores in the backward pass, and (2) resolving implicit precision assumptions in FA's gradient calculation. Based on these insights, we propose Attn-QAT and implement fused Triton kernels for training as well as FP4 inference kernels. Across diffusion and language models, Attn-QAT recovers the quality drop from FP4 attention without explicit outlier-mitigation heuristics used in prior FP4 attention, and delivers up to a 1.5x speedup on an RTX 5090. Video demos can be found at https://drive.google.com/drive/folders/190F6xbBDUF2kGQYIcXBt3ehSYij5jlim?usp=sharing.", "authors": ["Peiyuan Zhang", "Matthew Noto", "Wenxuan Tan", "Chengquan Jiang", "Will Lin", "Wei Zhou", "Hao Zhang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-09", "url": "https://arxiv.org/abs/2603.00040", "pdf_url": "https://arxiv.org/pdf/2603.00040v2", "arxiv_id": "2603.00040", "doi": "10.48550/arXiv.2603.00040", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4732} {"id": "59ab4754ade8f19d0870d50b7b03e8d39784c5d624a3f42f7cbc15765cfd0edd", "sources": ["arxiv", "semantic_scholar"], "title": "DeltaKV: Residual-Based KV Cache Compression via Long-Range Similarity", "abstract": "The deployment of efficient long-context LLMs in applications like autonomous agents, long-chain reasoning, and creative writing is fundamentally bottlenecked by the linear growth of KV cache memory. Existing compression and eviction methods often struggle to balance accuracy, compression ratio, and hardware efficiency. We propose DeltaKV, a residual-based KV cache compression framework motivated by two empirical findings: long-range inter-token similarity and highly shared latent components in KV representations. Instead of discarding tokens, DeltaKV encodes semantic residuals relative to retrieved historical references, preserving fidelity while substantially reducing storage. To translate compression gains into real system speedups, we further introduce Sparse-vLLM, a high-performance inference engine with decoupled memory management and kernels optimized for sparse and irregular KV layouts. Experiments show that DeltaKV reduces KV cache memory to 29\\% of the original while maintaining near-lossless accuracy on LongBench, SCBench, and AIME. When integrated with Sparse-vLLM, it achieves up to 2$\\times$ throughput improvement over vLLM in long-context scenarios, demonstrating a practical path toward scalable long-context LLM deployment. Code, model checkpoints, and datasets are available at https://github.com/CURRENTF/Sparse-vLLM.", "authors": ["Jitai Hao", "Qiang Huang", "Yaowei Wang", "Min Zhang", "Jun Yu"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-08", "url": "https://arxiv.org/abs/2602.08005", "pdf_url": "https://arxiv.org/pdf/2602.08005v1", "arxiv_id": "2602.08005", "doi": "10.48550/arXiv.2602.08005", "citation_count": 4, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/CURRENTF/Sparse-vLLM", "venue": "arXiv.org", "quality_score": 0.7296} {"id": "37171c6771373c1732548b1dd235d543e42497c01bd0a7680af9793241f8c227", "sources": ["arxiv", "semantic_scholar"], "title": "ParisKV: Fast and Drift-Robust KV-Cache Retrieval for Long-Context LLMs", "abstract": "KV-cache retrieval is essential for long-context LLM inference, yet existing methods struggle with distribution drift and high latency at scale. We introduce ParisKV, a drift-robust, GPU-native KV-cache retrieval framework based on collision-based candidate selection, followed by a quantized inner-product reranking estimator. For million-token contexts, ParisKV supports CPU-offloaded KV caches via Unified Virtual Addressing (UVA), enabling on-demand top-$k$ fetching with minimal overhead. ParisKV matches or outperforms full attention quality on long-input and long-generation benchmarks. It achieves state-of-the-art long-context decoding efficiency: it matches or exceeds full attention speed even at batch size 1 for long contexts, delivers up to 2.8$\\times$ higher throughput within full attention's runnable range, and scales to million-token contexts where full attention runs out of memory. At million-token scale, ParisKV reduces decode latency by 17$\\times$ and 44$\\times$ compared to MagicPIG and PQCache, respectively, two state-of-the-art KV-cache Top-$k$ retrieval baselines, code is available at https://github.com/amy-77/ParisKV/tree/main.", "authors": ["Yanlin Qi", "Xinhang Chen", "Huiqiang Jiang", "Qitong Wang", "Botao Peng", "Themis Palpanas"], "categories": ["cs.LG", "cs.CL", "cs.DB"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-07", "url": "https://arxiv.org/abs/2602.07721", "pdf_url": "https://arxiv.org/pdf/2602.07721v3", "arxiv_id": "2602.07721", "doi": "10.48550/arXiv.2602.07721", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/amy-77/ParisKV/tree/main", "venue": "arXiv.org", "quality_score": 0.7278} {"id": "49f82c4226ab6af88debd9f4c6982e01476b874f4620cd6179e48e1acd632262", "sources": ["arxiv", "semantic_scholar"], "title": "Layer-wise LoRA fine-tuning: a similarity metric approach", "abstract": "Pre-training Large Language Models (LLMs) on web-scale datasets becomes fundamental for advancing general-purpose AI. In contrast, enhancing their predictive performance on downstream tasks typically involves adapting their knowledge through fine-tuning. Parameter-efficient fine-tuning techniques, such as Low-Rank Adaptation (LoRA), aim to reduce the computational cost of this process by freezing the pre-trained model and updating a smaller number of parameters. In comparison to full fine-tuning, these methods achieve over 99\\% reduction in trainable parameter count, depending on the configuration. Unfortunately, such a reduction may prove insufficient as LLMs continue to grow in scale. In this work, we address the previous problem by systematically selecting only a few layers to fine-tune using LoRA or its variants. We argue that not all layers contribute equally to the model adaptation. Leveraging this, we identify the most relevant layers to fine-tune by measuring their contribution to changes in internal representations. Our method is orthogonal to and readily compatible with existing low-rank adaptation techniques. We reduce the trainable parameters in LoRA-based techniques by up to 50\\%, while maintaining the predictive performance across different models and tasks. Specifically, on encoder-only architectures, this reduction in trainable parameters leads to a negligible predictive performance drop on the GLUE benchmark. On decoder-only architectures, we achieve a small drop or even improvements in the predictive performance on mathematical problem-solving capabilities and coding tasks. Finally, this effectiveness extends to multimodal models, for which we also observe competitive results relative to fine-tuning with LoRA modules in all layers. Code is available at: https://github.com/c2d-usp/Layer-wise-LoRA-with-CKA", "authors": ["Keith Ando Ogawa", "Bruno Lopes Yamamoto", "Lucas Lauton de Alcantara", "Lucas Pellicer", "Rosimeire Pereira Costa", "Edson Bollis", "Anna Helena Reali Costa", "Artur Jordao"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-05", "url": "https://arxiv.org/abs/2602.05988", "pdf_url": "https://arxiv.org/pdf/2602.05988v1", "arxiv_id": "2602.05988", "doi": "10.48550/arXiv.2602.05988", "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/c2d-usp/Layer-wise-LoRA-with-CKA", "venue": "arXiv.org", "quality_score": 0.7243} {"id": "a7f6d943eea437ed52458866b0ed5caf86439a39a5c21a367f664ef2b1abdc61", "sources": ["arxiv", "semantic_scholar"], "title": "KV-CoRE: Benchmarking Data-Dependent Low-Rank Compressibility of KV-Caches in LLMs", "abstract": "Large language models rely on kv-caches to avoid redundant computation during autoregressive decoding, but as context length grows, reading and writing the cache can quickly saturate GPU memory bandwidth. Recent work has explored KV-cache compression, yet most approaches neglect the data-dependent nature of kv-caches and their variation across layers. We introduce KV-CoRE KV-cache Compressibility by Rank Evaluation), an SVD-based method for quantifying the data-dependent low-rank compressibility of kv-caches. KV-CoRE computes the optimal low-rank approximation under the Frobenius norm and, being gradient-free and incremental, enables efficient dataset-level, layer-wise evaluation. Using this method, we analyze multiple models and datasets spanning five English domains and sixteen languages, uncovering systematic patterns that link compressibility to model architecture, training data, and language coverage. As part of this analysis, we employ the Normalized Effective Rank as a metric of compressibility and show that it correlates strongly with performance degradation under compression. Our study establishes a principled evaluation framework and the first large-scale benchmark of kv-cache compressibility in LLMs, offering insights for dynamic, data-aware compression and data-centric model development.", "authors": ["Jian Chen", "Zhuoran Wang", "Jiayu Qin", "Ming Li", "Meng Wang", "Changyou Chen", "Yin Chen", "Qizhen Weng", "Yirui Liu"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-05", "url": "https://arxiv.org/abs/2602.05929", "pdf_url": "https://arxiv.org/pdf/2602.05929v2", "arxiv_id": "2602.05929", "doi": "10.48550/arXiv.2602.05929", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4686} {"id": "bdfaab75f8cde307e2f5f35fc9b370bfb47f48fb64da9f0c46f4f0b0bfd7608e", "sources": ["arxiv", "semantic_scholar"], "title": "FlashBlock: Attention Caching for Efficient Long-Context Block Diffusion", "abstract": "Generating long-form content, such as minute-long videos and extended texts, is increasingly important for modern generative models. Block diffusion improves inference efficiency via KV caching and block-wise causal inference and has been widely adopted in diffusion language models and video generation. However, in long-context settings, block diffusion still incurs substantial overhead from repeatedly computing attention over a growing KV cache. We identify an underexplored property of block diffusion: cross-step redundancy of attention within a block. Our analysis shows that attention outputs from tokens outside the current block remain largely stable across diffusion steps, while block-internal attention varies significantly. Based on this observation, we propose FlashBlock, a cached block-external attention mechanism that reuses stable attention output, reducing attention computation and KV cache access without modifying the diffusion process. Moreover, FlashBlock is orthogonal to sparse attention and can be combined as a complementary residual reuse strategy, substantially improving model accuracy under aggressive sparsification. Experiments on diffusion language models and video generation demonstrate up to 1.44$\\times$ higher token throughput and up to 1.6$\\times$ reduction in attention time, with negligible impact on generation quality. Project page: https://caesarhhh.github.io/FlashBlock/.", "authors": ["Zhuokun Chen", "Jianfei Cai", "Bohan Zhuang"], "categories": ["cs.CV", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-05", "url": "https://arxiv.org/abs/2602.05305", "pdf_url": "https://arxiv.org/pdf/2602.05305v2", "arxiv_id": "2602.05305", "doi": "10.48550/arXiv.2602.05305", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4686} {"id": "e37b1309e72586ee98e4ea2aeb8f671b8267a0e7fc932c34f5ba3d4f13dde1f0", "sources": ["arxiv", "semantic_scholar"], "title": "MoSE: Mixture of Slimmable Experts for Efficient and Adaptive Language Models", "abstract": "Mixture-of-Experts (MoE) models scale large language models efficiently by sparsely activating experts, but once an expert is selected, it is executed fully. Hence, the trade-off between accuracy and computation in an MoE model typically exhibits large discontinuities. We propose Mixture of Slimmable Experts (MoSE), an MoE architecture in which each expert has a nested, slimmable structure that can be executed at variable widths. This enables conditional computation not only over which experts are activated, but also over how much of each expert is utilized. Consequently, a single pretrained MoSE model can support a more continuous spectrum of accuracy-compute trade-offs at inference time. We present a simple and stable training recipe for slimmable experts under sparse routing, combining multi-width training with standard MoE objectives. During inference, we explore strategies for runtime width determination, including a lightweight test-time training mechanism that learns how to map router confidence/probabilities to expert widths under a fixed budget. Experiments on GPT models trained on OpenWebText demonstrate that MoSE matches or improves upon standard MoE at full width and consistently shifts the Pareto frontier for accuracy vs. cost, achieving comparable performance with significantly fewer FLOPs.", "authors": ["Nurbek Tastan", "Stefanos Laskaridis", "Karthik Nandakumar", "Samuel Horvath"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-05", "url": "https://arxiv.org/abs/2602.06154", "pdf_url": "https://arxiv.org/pdf/2602.06154v1", "arxiv_id": "2602.06154", "doi": "10.48550/arXiv.2602.06154", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4686} {"id": "cbf6ca9cd3be63f4ec6ac68fefc51c57ec487fdc9cb6914032401878afc13579", "sources": ["arxiv", "semantic_scholar"], "title": "Learning Rate Matters: Vanilla LoRA May Suffice for LLM Fine-tuning", "abstract": "Low-Rank Adaptation (LoRA) is the prevailing approach for efficient large language model (LLM) fine-tuning. Building on this paradigm, recent studies have proposed alternative initialization strategies, architectural modifications, and optimization adjustments, reporting substantial improvements over vanilla LoRA. However, these gains are often demonstrated under fixed or narrowly tuned hyperparameter settings, despite the known sensitivity of neural networks to training configurations. In this work, we systematically re-evaluate nine representative LoRA variants alongside vanilla LoRA through extensive hyperparameter searches over learning rate, batch size, rank, and training duration. Across tasks spanning mathematical reasoning, commonsense reasoning, code generation, and instruction following at diverse model scales, we find that different LoRA methods favor distinct learning rate ranges. Crucially, once learning rates are properly tuned, all methods achieve similar peak performance (within 1-2%), with only subtle rank-dependent behaviors. These results suggest that vanilla LoRA remains a competitive baseline and that improvements reported under a single training configuration may not reflect consistent methodological advantages. Finally, a second-order analysis attributes the differing optimal learning rate ranges to variations in the largest Hessian eigenvalue, aligning with classical learning theories.", "authors": ["Yu-Ang Lee", "Ching-Yun Ko", "Pin-Yu Chen", "Mi-Yen Yeh"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-04", "url": "https://arxiv.org/abs/2602.04998", "pdf_url": "https://arxiv.org/pdf/2602.04998v2", "arxiv_id": "2602.04998", "doi": "10.48550/arXiv.2602.04998", "citation_count": 6, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/yuang-lee/lr-matters-lora", "venue": "arXiv.org", "quality_score": 0.7225} {"id": "6eccdd70c6e1039f6e0f367c9a702c586f2730fb2a32efd944d11dce37810227", "sources": ["arxiv", "semantic_scholar"], "title": "Greedy-Gnorm: A Gradient Matrix Norm-Based Alternative to Attention Entropy for Head Pruning", "abstract": "Attention head pruning has emerged as an effective technique for transformer model compression, an increasingly important goal in the era of Green AI. However, existing pruning methods often rely on static importance scores, which fail to capture the evolving role of attention heads during iterative removal. We propose Greedy-Gradient norm (Greedy-Gnorm), a novel head pruning algorithm that dynamically recalculates head importance after each pruning step. Specifically, each head is scored by the elementwise product of the l2-norms of its Q/K/V gradient blocks, as estimated from a hold-out validation set and updated at every greedy iteration. This dynamic approach to scoring mitigates against stale rankings and better reflects gradient-informed importance as pruning progresses. Extensive experiments on BERT, ALBERT, RoBERTa, and XLM-RoBERTa demonstrate that Greedy-Gnorm consistently preserves accuracy under substantial head removal, outperforming attention entropy. By effectively reducing model size while maintaining task performance, Greedy-Gnorm offers a promising step toward more energy-efficient transformer model deployment.", "authors": ["Yuxi Guo", "Paul Sheridan"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-04", "url": "https://arxiv.org/abs/2602.04491", "pdf_url": "https://arxiv.org/pdf/2602.04491v1", "arxiv_id": "2602.04491", "doi": "10.48550/arXiv.2602.04491", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4675} {"id": "aece6c0cfe8674dbc23c441fd17884797dc83655b8233e0881aa0af0df7e2fdc", "sources": ["arxiv", "semantic_scholar"], "title": "RASA: Routing-Aware Safety Alignment for Mixture-of-Experts Models", "abstract": "Mixture-of-Experts (MoE) language models introduce unique challenges for safety alignment due to their sparse routing mechanisms, which can enable degenerate optimization behaviors under standard full-parameter fine-tuning. In our preliminary experiments, we observe that naively applying full-parameter safety fine-tuning to MoE models can reduce attack success rates through routing or expert dominance effects, rather than by directly repairing Safety-Critical Experts. To address this challenge, we propose RASA, a routing-aware expert-level alignment framework that explicitly repairs Safety-Critical Experts while preventing routing-based bypasses. RASA identifies experts disproportionately activated by successful jailbreaks, selectively fine-tunes only these experts under fixed routing, and subsequently enforces routing consistency with safety-aligned contexts. Across two representative MoE architectures and a diverse set of jailbreak attacks, RASA achieves near-perfect robustness, strong cross-attack generalization, and substantially reduced over-refusal, while preserving general capabilities on benchmarks such as MMLU, GSM8K, and TruthfulQA. Our results suggest that robust MoE safety alignment benefits from targeted expert repair rather than global parameter updates, offering a practical and architecture-preserving alternative to prior approaches.", "authors": ["Jiacheng Liang", "Yuhui Wang", "Tanqiu Jiang", "Ting Wang"], "categories": ["cs.LG", "cs.AI", "cs.CR"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-04", "url": "https://arxiv.org/abs/2602.04448", "pdf_url": "https://arxiv.org/pdf/2602.04448v2", "arxiv_id": "2602.04448", "doi": "10.48550/arXiv.2602.04448", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4675} {"id": "c9f4c2a325a89308bfcff78bdaf433dae2c72c81cad663963a4485d9767ed9ac", "sources": ["arxiv", "semantic_scholar"], "title": "TurboBoA: Faster and Exact Attention-aware Quantization without Backpropagation", "abstract": "The rapid growth of large language models (LLMs) has heightened the importance of post-training quantization (PTQ) for reducing memory and computation costs. Among PTQ methods, GPTQ has gained significant attention for its efficiency, enabling billion-scale LLMs to be quantized within a few GPU hours. However, GPTQ's assumption of layer-wise independence leads to severe accuracy drops in low-bit regimes. Recently, BoA improved upon GPTQ by incorporating inter-layer dependencies within attention modules, but its reliance on sequential quantization across all out-channels makes it substantially less efficient. In this paper, we propose TurboBoA, a new backpropagation-free PTQ algorithm that preserves the accuracy benefits of BoA while significantly accelerating the process. The proposed TurboBoA introduces three key innovations: (i) joint quantization of multiple out-channels with a closed-form error compensation rule, which reduces sequential bottlenecks and yields more than a three-fold speedup; (ii) a correction mechanism for errors propagated from preceding quantized layers; and (iii) adaptive grid computation with coordinate descent refinement to maintain alignment during iterative updates. Extensive experiments demonstrate that TurboBoA delivers substantial acceleration over BoA while consistently improving accuracy. When combined with outlier suppression techniques, it achieves state-of-the-art results in both weight-only and weight-activation quantization. The code will be available at https://github.com/SamsungLabs/TurboBoA.", "authors": ["Junhan Kim", "Yeo Jeong Park", "Seungwoo Son", "Chungman Lee", "Ho-young Kim", "Joonyoung Kim", "Yongkweon Jeon"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-04", "url": "https://arxiv.org/abs/2602.04929", "pdf_url": "https://arxiv.org/pdf/2602.04929v1", "arxiv_id": "2602.04929", "doi": "10.48550/arXiv.2602.04929", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/SamsungLabs/TurboBoA", "venue": "arXiv.org", "quality_score": 0.7225} {"id": "a7b4364ea8b456d5ae7bef63e9dded5e368149f75493101724d4922fcf3e5072", "sources": ["arxiv", "semantic_scholar"], "title": "Quant VideoGen: Auto-Regressive Long Video Generation via 2-Bit KV-Cache Quantization", "abstract": "Despite rapid progress in autoregressive video diffusion, an emerging system algorithm bottleneck limits both deployability and generation capability: KV cache memory. In autoregressive video generation models, the KV cache grows with generation history and quickly dominates GPU memory, often exceeding 30 GB, preventing deployment on widely available hardware. More critically, constrained KV cache budgets restrict the effective working memory, directly degrading long horizon consistency in identity, layout, and motion. To address this challenge, we present Quant VideoGen (QVG), a training free KV cache quantization framework for autoregressive video diffusion models. QVG leverages video spatiotemporal redundancy through Semantic Aware Smoothing, producing low magnitude, quantization friendly residuals. It further introduces Progressive Residual Quantization, a coarse to fine multi stage scheme that reduces quantization error while enabling a smooth quality memory trade off. Across LongCat Video, HY WorldPlay, and Self Forcing benchmarks, QVG establishes a new Pareto frontier between quality and memory efficiency, reducing KV cache memory by up to 7.0 times with less than 4% end to end latency overhead while consistently outperforming existing baselines in generation quality. Code is available at: https://github.com/svg-project/Quant-VideoGen", "authors": ["Haocheng Xi", "Shuo Yang", "Yilong Zhao", "Muyang Li", "Han Cai", "Xingyang Li", "Yujun Lin", "Zhuoyang Zhang", "Jintao Zhang", "Xiuyu Li", "Zhiying Xu", "Jun Wu", "Chenfeng Xu", "Ion Stoica", "Song Han", "Kurt Keutzer"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-03", "url": "https://arxiv.org/abs/2602.02958", "pdf_url": "https://arxiv.org/pdf/2602.02958v5", "arxiv_id": "2602.02958", "doi": "10.48550/arXiv.2602.02958", "citation_count": 11, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/svg-project/Quant-VideoGen", "venue": "arXiv.org", "quality_score": 0.7207} {"id": "d52403bc879463ef032e432cc4783c0f7aa26e951b5946eec117c4c5750d2c7e", "sources": ["arxiv", "semantic_scholar"], "title": "HySparse: A Hybrid Sparse Attention Architecture with Oracle Token Selection and KV Cache Sharing", "abstract": "This work introduces Hybrid Sparse Attention (HySparse), a new architecture that interleaves each full attention layer with several sparse attention layers. While conceptually simple, HySparse strategically derives each sparse layer's token selection and KV caches directly from the preceding full attention layer. This architecture resolves two fundamental limitations of prior sparse attention methods. First, conventional approaches typically rely on additional proxies to predict token importance, introducing extra complexity and potentially suboptimal performance. In contrast, HySparse uses the full attention layer as a precise oracle to identify important tokens. Second, existing sparse attention designs often reduce computation without saving KV cache. HySparse enables sparse attention layers to reuse the full attention KV cache, thereby reducing both computation and memory. We evaluate HySparse on both 7B dense and 80B MoE models. Across all settings, HySparse consistently outperforms both full attention and hybrid SWA baselines. Notably, in the 80B MoE model with 49 total layers, only 5 layers employ full attention, yet HySparse achieves substantial performance gains while reducing KV cache storage by nearly 10x.", "authors": ["Yizhao Gao", "Jianyu Wei", "Qihao Zhang", "Yu Cheng", "Shimao Chen", "Zhengju Tang", "Zihan Jiang", "Yifan Song", "Hailin Zhang", "Liang Zhao", "Bo Yang", "Gang Wang", "Shijie Cao", "Fuli Luo"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-03", "url": "https://arxiv.org/abs/2602.03560", "pdf_url": "https://arxiv.org/pdf/2602.03560v1", "arxiv_id": "2602.03560", "doi": "10.48550/arXiv.2602.03560", "citation_count": 5, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4664} {"id": "fdf3e0aae805d9690a058b68b6614412638c5695528f879f4bd10fae61587b4a", "sources": ["arxiv", "semantic_scholar"], "title": "ForesightKV: Optimizing KV Cache Eviction for Reasoning Models by Learning Long-Term Contribution", "abstract": "Recently, large language models (LLMs) have shown remarkable reasoning abilities by producing long reasoning traces. However, as the sequence length grows, the key-value (KV) cache expands linearly, incurring significant memory and computation costs. Existing KV cache eviction methods mitigate this issue by discarding less important KV pairs, but often fail to capture complex KV dependencies, resulting in performance degradation. To better balance efficiency and performance, we introduce ForesightKV, a training-based KV cache eviction framework that learns to predict which KV pairs to evict during long-text generations. We first design the Golden Eviction algorithm, which identifies the optimal eviction KV pairs at each step using future attention scores. These traces and the scores at each step are then distilled via supervised training with a Pairwise Ranking Loss. Furthermore, we formulate cache eviction as a Markov Decision Process and apply the GRPO algorithm to mitigate the significant language modeling loss increase on low-entropy tokens. Experiments on AIME2024 and AIME2025 benchmarks of three reasoning models demonstrate that ForesightKV consistently outperforms prior methods under only half the cache budget, while benefiting synergistically from both supervised and reinforcement learning approaches. Code is available at https://github.com/RUCAIBox/ForesightKV.", "authors": ["Zican Dong", "Peiyu Liu", "Junyi Li", "Zhipeng Chen", "Han Peng", "Shuo Wang", "Wayne Xin Zhao"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-03", "url": "https://arxiv.org/abs/2602.03203", "pdf_url": "https://arxiv.org/pdf/2602.03203v2", "arxiv_id": "2602.03203", "doi": "10.48550/arXiv.2602.03203", "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/RUCAIBox/ForesightKV", "venue": "arXiv.org", "quality_score": 0.7207} {"id": "dff1e071b0fb03b53d9be7e510fff27158f3151a76f792b01fd4ef3ff84f3894", "sources": ["arxiv"], "title": "One Size Does Not Fit All: Token-Wise Adaptive Compression for KV Cache", "abstract": "Despite the remarkable progress of Large Language Models (LLMs), the escalating memory footprint of the Key-Value (KV) cache remains a critical bottleneck for efficient inference. While dimensionality reduction offers a promising compression avenue, existing approaches typically either necessitate prohibitively expensive pre-training from scratch or suffer from severe performance deterioration under high compression regimes. In this work, we propose DynaKV, a novel post-training framework for low-rank KV cache compression. To the best of our knowledge, DynaKV is the first method to dynamically allocate compression rates to individual tokens according to their semantic meaning, which allows it to achieve better fidelity at aggressive compression ratios. Extensive experiments demonstrate that our method consistently outperforms existing state-of-the-art compression techniques, achieving significant memory reduction while maintaining competitive generation quality. Furthermore, our approach is orthogonal to sequence-level pruning methods. When integrated with SnapKV, DynaKV retains only 6% of the KV cache while maintaining 94% of the baseline performance on the LongBench benchmark.", "authors": ["Liming Lu", "Kaixi Qiu", "Jiayu Zhou", "Jushi Kai", "Haoyan Zhang", "Huanyu Wang", "Jingwen Leng", "Ziwei He", "Zhouhan Lin"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": [], "published_date": "2026-02-03", "url": "https://arxiv.org/abs/2603.04411", "pdf_url": "https://arxiv.org/pdf/2603.04411v1", "arxiv_id": "2603.04411", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.2968} {"id": "67ba8bfbf171a62c17180aed3c1c6e87dbda6cd7aa612eda17b5004ded0f7924", "sources": ["arxiv", "semantic_scholar"], "title": "Online Vector Quantized Attention", "abstract": "Standard sequence mixing layers used in language models struggle to balance efficiency and performance. Self-attention performs well on long context tasks but has expensive quadratic compute and linear memory costs, while linear attention and SSMs use only linear compute and constant memory but struggle with long context processing. In this paper, we develop a sequence mixing layer that aims to find a better compromise between memory-compute costs and long-context processing, which we call online vector-quantized (OVQ) attention. OVQ-attention requires linear compute costs and constant memory, but, unlike linear attention and SSMs, it uses a sparse memory update that allows it to greatly increase the size of its memory state and, consequently, memory capacity. We develop a theoretical basis for OVQ-attention based on Gaussian mixture regression, and we test it on a variety of synthetic long context tasks and on long context language modeling. OVQ-attention shows significant improvements over linear attention baselines and the original VQ-attention, on which OVQ-attention was inspired. It demonstrates competitive, and sometimes identical, performance to strong self-attention baselines up 64k sequence length, despite using a small fraction of the memory of full self-attention.", "authors": ["Nick Alonso", "Tomas Figliolia", "Beren Millidge"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-03", "url": "https://arxiv.org/abs/2602.03922", "pdf_url": "https://arxiv.org/pdf/2602.03922v3", "arxiv_id": "2602.03922", "doi": "10.48550/arXiv.2602.03922", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4664} {"id": "9733e6c198a3764484daf313384b870c3df6ae896e3aafde02e52af20c715fac", "sources": ["arxiv", "semantic_scholar"], "title": "Hierarchical Adaptive Eviction for KV Cache Management in Multimodal Language Models", "abstract": "The integration of visual information into Large Language Models (LLMs) has enabled Multimodal LLMs (MLLMs), but the quadratic memory and computational costs of Transformer architectures remain a bottleneck. Existing KV cache eviction strategies fail to address the heterogeneous attention distributions between visual and text tokens, leading to suboptimal efficiency or degraded performance. In this paper, we propose Hierarchical Adaptive Eviction (HAE), a KV cache eviction framework that optimizes text-visual token interaction in MLLMs by implementing Dual-Attention Pruning during pre-filling (leveraging visual token sparsity and attention variance) and a Dynamic Decoding Eviction Strategy (inspired by OS Recycle Bins) during decoding. HAE minimizes KV cache usage across layers, reduces computational overhead via index broadcasting, and theoretically ensures superior information integrity and lower error bounds compared to greedy strategies, enhancing efficiency in both comprehension and generation tasks. Empirically, HAE reduces KV-Cache memory by 41\\% with minimal accuracy loss (0.3\\% drop) in image understanding tasks and accelerates story generation inference by 1.5x while maintaining output quality on Phi3.5-Vision-Instruct model.", "authors": ["Xindian Ma", "Yidi Lu", "Peng Zhang", "Jing Zhang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.02197", "pdf_url": "https://arxiv.org/pdf/2602.02197v1", "arxiv_id": "2602.02197", "doi": "10.48550/arXiv.2602.02197", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4652} {"id": "6ff0eb0536e91ae9b9aa04f7a19c35bc24bdc744d2e93c18f06eacb51ca251ca", "sources": ["arxiv", "semantic_scholar"], "title": "Q Cache: Visual Attention is Valuable in Less than Half of Decode Layers for Multimodal Large Language Model", "abstract": "Multimodal large language models (MLLMs) are plagued by exorbitant inference costs attributable to the profusion of visual tokens within the vision encoder. The redundant visual tokens engenders a substantial computational load and key-value (KV) cache footprint bottleneck. Existing approaches focus on token-wise optimization, leveraging diverse intricate token pruning techniques to eliminate non-crucial visual tokens. Nevertheless, these methods often unavoidably undermine the integrity of the KV cache, resulting in failures in long-text generation tasks. To this end, we conduct an in-depth investigation towards the attention mechanism of the model from a new perspective, and discern that attention within more than half of all decode layers are semantic similar. Upon this finding, we contend that the attention in certain layers can be streamlined by inheriting the attention from their preceding layers. Consequently, we propose Lazy Attention, an efficient attention mechanism that enables cross-layer sharing of similar attention patterns. It ingeniously reduces layer-wise redundant computation in attention. In Lazy Attention, we develop a novel layer-shared cache, Q Cache, tailored for MLLMs, which facilitates the reuse of queries across adjacent layers. In particular, Q Cache is lightweight and fully compatible with existing inference frameworks, including Flash Attention and KV cache. Additionally, our method is highly flexible as it is orthogonal to existing token-wise techniques and can be deployed independently or combined with token pruning approaches. Empirical evaluations on multiple benchmarks demonstrate that our method can reduce KV cache usage by over 35% and achieve 1.5x throughput improvement, while sacrificing only approximately 1% of performance on various MLLMs. Compared with SOTA token-wise methods, our technique achieves superior accuracy preservation.", "authors": ["Jiedong Zhuang", "Lu Lu", "Ming Dai", "Rui Hu", "Jian Chen", "Qiang Liu", "Haoji Hu"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.01901", "pdf_url": "https://arxiv.org/pdf/2602.01901v1", "arxiv_id": "2602.01901", "doi": "10.48550/arXiv.2602.01901", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "AAAI Conference on Artificial Intelligence", "quality_score": 0.4652} {"id": "2a50f4ae4ed79d2d72c52291836029cb53a5895033a757de4b8da4e47e6b495f", "sources": ["arxiv", "semantic_scholar"], "title": "More Than a Quick Glance: Overcoming the Greedy Bias in KV-Cache Compression", "abstract": "While Large Language Models (LLMs) can theoretically support extensive context windows, their actual deployment is constrained by the linear growth of Key-Value (KV) cache memory. Prevailing compression strategies mitigate this through various pruning mechanisms, yet trade-off semantic recall for memory efficiency. In this work, we present LASER-KV (Layer Accumulated Selection with Exact-LSH Recall), a framework designed to test the limits of KV compression under a strict accumulative budgeting policy. We deviate from the standard fixed summary size approach by implementing a block-wise accumulation strategy governed by a protection divisor (n). This allows us to isolate the effects of compression from sliding window artifacts. Our experiments on the Babilong benchmark reveal performance degradation in previous compression methods by 15-30% on various long context tasks. LASER-KV maintains stable performance, achieving superior accuracies by a margin of upto 10% at 128k. These findings challenge the prevailing assumption that attention scores alone are a sufficient proxy for token utility.", "authors": ["Aryan Sood", "Tanvi Sharma", "Vansh Agrawal"], "categories": ["cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.02199", "pdf_url": "https://arxiv.org/pdf/2602.02199v1", "arxiv_id": "2602.02199", "doi": "10.48550/arXiv.2602.02199", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4652} {"id": "70ed91ef416a8fd601a2835e6f0bd6378282a12e8adc6dc7da7263096a7e6304", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture of Concept Bottleneck Experts", "abstract": "Concept Bottleneck Models (CBMs) promote interpretability by grounding predictions in human-understandable concepts. However, existing CBMs typically constrain their task predictor to a single expression whose functional form is set a priori, limiting both predictive accuracy and adaptability to diverse user needs. We propose Mixture of Concept Bottleneck Experts (M-CBE), a framework that generalizes existing CBMs along two dimensions: the number of expressions, referred to as experts, employed by the task predictor to map concepts to the task, and the functional form each expression takes, thus exposing an underexplored region of this design space. We investigate this region by instantiating two novel models: Linear M-CBE, which learns a finite set of linear expressions, and Symbolic M-CBE, which leverages symbolic regression to discover expert functions from data subject to user-specified operator vocabularies. Empirical evaluation demonstrates that varying the number of expressions and their functional form provides a robust framework for navigating the accuracy-interpretability trade-off.", "authors": ["Francesco De Santis", "Gabriele Ciravegna", "Giovanni De Felice", "Arianna Casanova", "Francesco Giannini", "Michelangelo Diligenti", "Johannes Schneider", "Danilo Giordano", "Mateo Espinosa Zarlenga", "Pietro Barbiero"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.02886", "pdf_url": "https://arxiv.org/pdf/2602.02886v3", "arxiv_id": "2602.02886", "doi": "10.48550/arXiv.2602.02886", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4652} {"id": "a18f04be5c73d35dd0ea8bf02e42901e2a9d7d62642e821ec7435e2e5121e909", "sources": ["arxiv", "semantic_scholar"], "title": "HQP: Sensitivity-Aware Hybrid Quantization and Pruning for Ultra-Low-Latency Edge AI Inference", "abstract": "The escalating demand for high-fidelity, real-time inference in distributed edge-cloud environments necessitates aggressive model optimization to counteract severe latency and energy constraints. This paper introduces the Hybrid Quantization and Pruning (HQP) framework, a novel, integrated methodology designed to achieve synergistic model acceleration while adhering to strict quality guarantees. We detail a sensitivity-aware structural pruning algorithm that employs a dynamic weight sensitivity metric, derived from a highly efficient approximation of the Fisher Information Matrix (FIM), to guide the iterative removal of redundant filters. This pruning is strictly conditional, enforcing an adherence to a maximum permissible accuracy drop (Delta ax) before the model proceeds to 8-bit post-training quantization. This rigorous coordination is critical, as it ensures the resultant sparse model structure is maximally robust to quantization error and hardware-specific kernel optimization. Exhaustive evaluation across heterogeneous NVIDIA Jetson edge platforms, utilizing resource-efficient architectures like MobileNetV3 and ResNet-18, demonstrates that the HQP framework achieves a peak performance gain of 3.12 times inference speedup and a 55 percent model size reduction, while rigorously containing the accuracy drop below the 1.5 percent constraint. A comprehensive comparative analysis against conventional single-objective compression techniques validates the HQP framework as a superior, hardware-agnostic solution for deploying ultra-low-latency AI in resource-limited edge infrastructures.", "authors": ["Dinesh Gopalan", "Ratul Ali"], "categories": ["cs.DC", "cs.AI", "cs.LG", "cs.SE"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.06069", "pdf_url": "https://arxiv.org/pdf/2602.06069v1", "arxiv_id": "2602.06069", "doi": "10.48550/arXiv.2602.06069", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4652} {"id": "c7f28ede15f34d58fc6d50dc331470aa22e54802e9022814f83087f31c2259b3", "sources": ["arxiv", "semantic_scholar"], "title": "Fast Autoregressive Video Diffusion and World Models with Temporal Cache Compression and Sparse Attention", "abstract": "Autoregressive video diffusion models enable streaming generation, opening the door to long-form synthesis, video world models, and interactive neural game engines. However, their core attention layers become a major bottleneck at inference time: as generation progresses, the KV cache grows, causing both increasing latency and escalating GPU memory, which in turn restricts usable temporal context and harms long-range consistency. In this work, we study redundancy in autoregressive video diffusion and identify three persistent sources: near-duplicate cached keys across frames, slowly evolving (largely semantic) queries/keys that make many attention computations redundant, and cross-attention over long prompts where only a small subset of tokens matters per frame. Building on these observations, we propose a unified, training-free attention framework for autoregressive diffusion: TempCache compresses the KV cache via temporal correspondence to bound cache growth; AnnCA accelerates cross-attention by selecting frame-relevant prompt tokens using fast approximate nearest neighbor (ANN) matching; and AnnSA sparsifies self-attention by restricting each query to semantically matched keys, also using a lightweight ANN. Together, these modules reduce attention, compute, and memory and are compatible with existing autoregressive diffusion backbones and world models. Experiments demonstrate up to x5--x10 end-to-end speedups while preserving near-identical visual quality and, crucially, maintaining stable throughput and nearly constant peak GPU memory usage over long rollouts, where prior methods progressively slow down and suffer from increasing memory usage.", "authors": ["Dvir Samuel", "Issar Tzachor", "Matan Levy", "Micahel Green", "Gal Chechik", "Rami Ben-Ari"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.01801", "pdf_url": "https://arxiv.org/pdf/2602.01801v1", "arxiv_id": "2602.01801", "doi": "10.48550/arXiv.2602.01801", "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4652} {"id": "c67be37e6c6ed2e63916a8a5a1b0823fad70ec336b1dfe2b6aec0bf6d011d56d", "sources": ["arxiv", "semantic_scholar"], "title": "SAME: Stabilized Mixture-of-Experts for Multimodal Continual Instruction Tuning", "abstract": "Multimodal Large Language Models (MLLMs) achieve strong performance through instruction tuning, but real-world deployment requires them to continually expand their capabilities, making Multimodal Continual Instruction Tuning (MCIT) essential. Recent methods leverage sparse expert routing to promote task specialization, but we find that the expert routing process suffers from drift as the data distribution evolves. For example, a grounding query that previously activated localization experts may instead be routed to irrelevant experts after learning OCR tasks. Meanwhile, the grounding-related experts can be overwritten by new tasks and lose their original functionality. Such failure reflects two problems: router drift, where expert selection becomes inconsistent over time, and expert drift, where shared experts are overwritten across tasks. Therefore, we propose StAbilized Mixture-of-Experts (SAME) for MCIT. To address router drift, SAME stabilizes expert selection by decomposing routing dynamics into orthogonal subspaces and updating only task-relevant directions. To mitigate expert drift, we regulate expert updates via curvature-aware scaling using historical input covariance in a rehearsal-free manner. SAME also introduces adaptive expert activation to freeze selected experts during training, reducing redundant computation and cross-task interference. We also introduce a new benchmark to evaluate MCIT with long task sequence, and extensive experiments demonstrate SAME's SOTA performance. Code is available at https://github.com/LAMDA-CL/Prism.", "authors": ["Zhen-Hao Xie", "Jun-Tao Tang", "Yu-Cheng Shi", "Han-Jia Ye", "De-Chuan Zhan", "Da-Wei Zhou"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-02", "url": "https://arxiv.org/abs/2602.01990", "pdf_url": "https://arxiv.org/pdf/2602.01990v2", "arxiv_id": "2602.01990", "doi": "10.48550/arXiv.2602.01990", "citation_count": 5, "influential_citation_count": 2, "has_code": true, "code_url": "https://github.com/LAMDA-CL/Prism", "venue": "arXiv.org", "quality_score": 0.719} {"id": "d455cbb2a3a993a784e9e7cfe5478f05719d53a39bc0ec86a783d7509b803d91", "sources": ["arxiv", "semantic_scholar"], "title": "RAP: KV-Cache Compression via RoPE-Aligned Pruning", "abstract": "Long-context inference in large language models is increasingly bottlenecked by the memory and compute cost of the KV-Cache. Low-rank factorization compresses KV projections by writing $W \\approx A * B$, where A produces latent KV states and B can be absorbed into downstream weights. In modern RoPE-based LLMs, this absorption fails: RoPE forces latent KV states to be reconstructed to full dimension, reintroducing substantial memory and compute overhead. We propose RoPE-Aligned Pruning (RAP), which prunes entire RoPE-aligned column pairs to preserve RoPE's 2x2 rotation structure, restore B absorption, and eliminate reconstruction. Our evaluation on LLaMA-3-8B and Mistral-7B shows that RAP enables joint reduction of KV-Cache, attention parameters, and FLOPs by 20-30%, all at once, while maintaining strong accuracy. Notably, RAP reduces attention latency to 83% (prefill) and 77% (decode) of baseline.", "authors": ["Jihao Xin", "Tian Lyu", "David Keyes", "Hatem Ltaief", "Marco Canini"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-01", "url": "https://arxiv.org/abs/2602.02599", "pdf_url": "https://arxiv.org/pdf/2602.02599v3", "arxiv_id": "2602.02599", "doi": "10.48550/arXiv.2602.02599", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4641} {"id": "87b3b64477ba82042f5ee7751fe1db26e698d6cb277515c495ad644f6c3a6af6", "sources": ["arxiv", "semantic_scholar"], "title": "LRAgent: Efficient KV Cache Sharing for Multi-LoRA LLM Agents", "abstract": "Role specialization in multi-LLM agent systems is often realized via multi-LoRA, where agents share a pretrained backbone and differ only by lightweight adapters. Despite sharing base model weights, each agent independently builds and stores its own KV cache for the same long, tool-augmented trajectories, incurring substantial memory and compute overhead. Existing KV cache sharing methods largely overlook this multi-LoRA setting. We observe that, cache differences across agents are dominated by adapter outputs, while activations from the shared pretrained backbone remain highly similar. Based on this observation, we propose LRAgent, a KV cache sharing framework for multi-LoRA agents. It decomposes the cache into two components, a shared base component derived from pretrained weights and an adapter-dependent component derived from LoRA weights. LRAgent reduces memory overhead by sharing the base component across agents and storing the adapter component in its inherent low-rank form. It also reduces computational overhead by sharing the low-rank cache, enabled by a shared-A multi-LoRA architecture. This avoids redundant computations for contexts that have already been processed by other agents. To efficiently reconstruct adapter contributions at runtime, we introduce Flash-LoRA-Attention, a kernel that reorders attention computation to avoid materializing the low-rank cache to full dimension. LRAgent achieves throughput and time-to-first-token latency close to fully shared caching, while preserving accuracy near the non-shared caching baseline across agentic question-answering benchmarks.", "authors": ["Hyesung Jeon", "Hyeongju Ha", "Jae-Joon Kim"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-01", "url": "https://arxiv.org/abs/2602.01053", "pdf_url": "https://arxiv.org/pdf/2602.01053v2", "arxiv_id": "2602.01053", "doi": "10.48550/arXiv.2602.01053", "citation_count": 4, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4641} {"id": "03ba9c87ae50fff29ecdc5c44bc17bb88737517ecf469139ef0e36b8402a6abf", "sources": ["arxiv", "semantic_scholar"], "title": "A Statistical Theory of Gated Attention through the Lens of Hierarchical Mixture of Experts", "abstract": "Self-attention has greatly contributed to the success of the widely used Transformer architecture by enabling learning from data with long-range dependencies. In an effort to improve performance, a gated attention model that leverages a gating mechanism within the multi-head self-attention has recently been proposed as a promising alternative. Gated attention has been empirically demonstrated to increase the expressiveness of low-rank mapping in standard attention and even to eliminate the attention sink phenomenon. Despite its efficacy, a clear theoretical understanding of gated attention's benefits remains lacking in the literature. To close this gap, we rigorously show that each entry in a gated attention matrix or a multi-head self-attention matrix can be written as a hierarchical mixture of experts. By recasting learning as an expert estimation problem, we demonstrate that gated attention is more sample-efficient than multi-head self-attention. In particular, while the former needs only a polynomial number of data points to estimate an expert, the latter requires exponentially many data points to achieve the same estimation error. Furthermore, our analysis also provides a theoretical justification for why gated attention yields higher performance when a gate is placed at the output of the scaled dot product attention or the value map rather than at other positions in the multi-head self-attention architecture.", "authors": ["Viet Nguyen", "Tuan Minh Pham", "Thinh Cao", "Tan Dinh", "Huy Nguyen", "Nhat Ho", "Alessandro Rinaldo"], "categories": ["cs.LG", "stat.ML"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-02-01", "url": "https://arxiv.org/abs/2602.01468", "pdf_url": "https://arxiv.org/pdf/2602.01468v1", "arxiv_id": "2602.01468", "doi": "10.48550/arXiv.2602.01468", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4641} {"id": "830c2ed0bd8288fdc9fcf1fdd6f3d98619fa492d663614c9987ffc4bd204765a", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture-of-Top-k Attention: Efficient Attention via Scalable Fast Weights", "abstract": "The vanilla self-attention mechanism in Transformers can be viewed as a two-layer fast-weight MLP, whose weights are dynamically induced by inputs and whose hidden dimension is equal to the sequence length $N$. As the context extends, the expressive capacity of such an $N$-width MLP increases, but it becomes unscalable for extremely long sequences. Recently, this fast-weight perspective has motivated the Mixture-of-Experts (MoE) attention mechanism, which partitions the sequence into rigid blocks, treats them as fast-weight experts, and sparsely routes the tokens to them. In this paper, we elevate this perspective to a unifying framework for efficient attention mechanisms, interpreting them as making fast weights scalable through either routing or compression, and organizing them into a five-dimensional taxonomy. Then, we propose Mixture-of-Top-$k$ Attention (MiTA), which employs a small set of landmark queries to gather top-$k$ attended key-value pairs as query-aware and deformable routed experts, while compressing the $N$-width MLP into a narrower shared expert. Consequently, our MiTA improves the flexibility of prior MoE attention from rigid to deformable fast-weight experts, as well as the scalability of prior top-$k$ attention from query-specific set to reusable top-$k$ set. We conduct extensive experiments on vision tasks showing the superior effectiveness and efficiency of our MiTA, and also uncovering intriguing properties such as an emergent token-pruning effect and easy generalization from standard attention. Code is available at https://github.com/QishuaiWen/MiTA.", "authors": ["Qishuai Wen", "Zhiyuan Huang", "Xianghan Meng", "Wei He", "Chun-Guang Li"], "categories": ["cs.LG", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-01", "url": "https://arxiv.org/abs/2602.01219", "pdf_url": "https://arxiv.org/pdf/2602.01219v5", "arxiv_id": "2602.01219", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/QishuaiWen/MiTA", "venue": null, "quality_score": 0.5484} {"id": "4af2735cc6e6871363ecc4f4684437c5dde54ff3f144eda0f409b4cda50aef15", "sources": ["arxiv", "semantic_scholar"], "title": "LiME: Lightweight Mixture of Experts for Efficient Multimodal Multi-task Learning", "abstract": "MoE-PEFT methods combine Mixture of Experts with parameter-efficient fine-tuning for multi-task adaptation, but require separate adapters per expert causing trainable parameters to scale linearly with expert count and limiting applicability to adapter-based architectures. We propose LiME (Lightweight Mixture of Experts), which achieves expert specialization through lightweight modulation rather than adapter replication. Instead of separate adapters, LiME uses a single shared PEFT module and modulates its output with lightweight expert vectors, reducing expert parameters while generalizing to any PEFT method. Notably, LiME introduces zero-parameter routing by leveraging existing frozen and adapted representations eliminating learned router parameters typically required per layer. Theoretically, we prove that (i) more experts preserve more task-relevant information and (ii) modulation approximates full expert-specific PEFT with bounded error. LiME further incorporates n-gram windowed routing and adaptive expert selection (Auto Top-K) based on routing confidence. Experiments on MMT-47, a multimodal multi-task benchmark with 47 tasks spanning text, image, and video, demonstrate that LiME achieves competitive or superior performance while using up to 4x fewer trainable parameters and up to 29% faster training compared to corresponding MoE-PEFT baselines.", "authors": ["Md Kowsher", "Haris Mansoor", "Nusrat Jahan Prottasha", "Ozlem Garibay", "Victor Zhu", "Zhengping Ji", "Chen Chen"], "categories": ["cs.LG", "cs.CL", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-02-01", "url": "https://arxiv.org/abs/2604.02338", "pdf_url": "https://arxiv.org/pdf/2604.02338v1", "arxiv_id": "2604.02338", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.2953} {"id": "e7c8470f1748fde46c10222d536dde97ce24852fe8169f28e4b100c1906a3637", "sources": ["arxiv", "semantic_scholar"], "title": "Improving Minimax Estimation Rates for Contaminated Mixture of Multinomial Logistic Experts via Expert Heterogeneity", "abstract": "Contaminated mixture of experts (MoE) is motivated by transfer learning methods where a pre-trained model, acting as a frozen expert, is integrated with an adapter model, functioning as a trainable expert, in order to learn a new task. Despite recent efforts to analyze the convergence behavior of parameter estimation in this model, there are still two unresolved problems in the literature. First, the contaminated MoE model has been studied solely in regression settings, while its theoretical foundation in classification settings remains absent. Second, previous works on MoE models for classification capture pointwise convergence rates for parameter estimation without any guaranty of minimax optimality. In this work, we close these gaps by performing, for the first time, the convergence analysis of a contaminated mixture of multinomial logistic experts with homogeneous and heterogeneous structures, respectively. In each regime, we characterize uniform convergence rates for estimating parameters under challenging settings where ground-truth parameters vary with the sample size. Furthermore, we also establish corresponding minimax lower bounds to ensure that these rates are minimax optimal. Notably, our theories offer an important insight into the design of contaminated MoE, that is, expert heterogeneity yields faster parameter estimation rates and, therefore, is more sample-efficient than expert homogeneity.", "authors": ["Fanqi Yan", "Dung Le", "Trang Pham", "Huy Nguyen", "Nhat Ho"], "categories": ["math.ST", "cs.LG"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-01-31", "url": "https://arxiv.org/abs/2602.00939", "pdf_url": "https://arxiv.org/pdf/2602.00939v1", "arxiv_id": "2602.00939", "doi": "10.48550/arXiv.2602.00939", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4629} {"id": "efcd85330982ac8ad114c5bff59611628fbd7a34432e199e66e0ac2b79c1226a", "sources": ["arxiv", "semantic_scholar"], "title": "ProphetKV: User-Query-Driven Selective Recomputation for Efficient KV Cache Reuse in Retrieval-Augmented Generation", "abstract": "The prefill stage of long-context Retrieval-Augmented Generation (RAG) is severely bottlenecked by computational overhead. To mitigate this, recent methods assemble pre-calculated KV caches of retrieved RAG documents (by a user query) and reprocess selected tokens to recover cross-attention between these pre-calculated KV caches. However, we identify a fundamental \"crowding-out effect\" in current token selection criteria: globally salient but user-query-irrelevant tokens saturate the limited recomputation budget, displacing the tokens truly essential for answering the user query and degrading inference accuracy. We propose ProphetKV, a user-query-driven KV Cache reuse method for RAG scenarios. ProphetKV dynamically prioritizes tokens based on their semantic relevance to the user query and employs a dual-stage recomputation pipeline to fuse layer-wise attention metrics into a high-utility set. By ensuring the recomputation budget is dedicated to bridging the informational gap between retrieved context and the user query, ProphetKV achieves high-fidelity attention recovery with minimal overhead. Our extensive evaluation results show that ProphetKV retains 96%-101% of full-prefill accuracy with only a 20% recomputation ratio, while achieving accuracy improvements of 8.8%-24.9% on RULER and 18.6%-50.9% on LongBench over the state-of-the-art approaches (e.g., CacheBlend, EPIC, and KVShare).", "authors": ["Shihao Wang", "Jiahao Chen", "Yanqi Pan", "Hao Huang", "Yichen Hao", "Xiangyu Zou", "Wen Xia", "Wentao Zhang", "Chongyang Qiu", "Pengfei Wang"], "categories": ["cs.OS", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-31", "url": "https://arxiv.org/abs/2602.02579", "pdf_url": "https://arxiv.org/pdf/2602.02579v3", "arxiv_id": "2602.02579", "doi": "10.48550/arXiv.2602.02579", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4629} {"id": "22f189e56be4b9d48a6cbdc6b44c485b6ae1c85229f52d687186bdcfc828a6d7", "sources": ["arxiv", "semantic_scholar"], "title": "Dynamic Expert Sharing: Decoupling Memory from Parallelism in Mixture-of-Experts Diffusion LLMs", "abstract": "Among parallel decoding paradigms, diffusion large language models (dLLMs) have emerged as a promising candidate that balances generation quality and throughput. However, their integration with Mixture-of-Experts (MoE) architectures is constrained by an expert explosion: as the number of tokens generated in parallel increases, the number of distinct experts activated grows nearly linearly. This results in substantial memory traffic that pushes inference into a memory-bound regime, negating the efficiency gains of both MoE and parallel decoding. To address this challenge, we propose Dynamic Expert Sharing (DES), a novel technique that shifts MoE optimization from token-centric pruning and conventional expert skipping methods to sequence-level coreset selection. To maximize expert reuse, DES identifies a compact, high-utility set of experts to satisfy the requirements of an entire parallel decoding block. We introduce two innovative selection strategies: (1) Intra-Sequence Sharing (DES-Seq), which adapts optimal allocation to the sequence level, and (2) Saliency-Aware Voting (DES-Vote), a novel mechanism that allows tokens to collectively elect a coreset based on aggregated router weights. Extensive experiments on MoE dLLMs demonstrate that DES reduces unique expert activations by over 55% and latency by up to 38%, while retaining 99% of vanilla accuracy, effectively decoupling memory overhead from the degree of parallelism.", "authors": ["Hao Mark Chen", "Zhiwen Mo", "Royson Lee", "Qianzhou Wang", "Da Li", "Shell Xu Hu", "Wayne Luk", "Timothy Hospedales", "Hongxiang Fan"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-31", "url": "https://arxiv.org/abs/2602.00879", "pdf_url": "https://arxiv.org/pdf/2602.00879v1", "arxiv_id": "2602.00879", "doi": "10.48550/arXiv.2602.00879", "citation_count": 1, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4629} {"id": "31f388f40f0fd052d74d756f443dea625e5dd4d1e6c18d7638dd2188b8bf754b", "sources": ["arxiv", "semantic_scholar"], "title": "MoDEx: Mixture of Depth-specific Experts for Multivariate Long-term Time Series Forecasting", "abstract": "Multivariate long-term time series forecasting (LTSF) supports critical applications such as traffic-flow management, solar-power scheduling, and electricity-transformer monitoring. The existing LTSF paradigms follow a three-stage pipeline of embedding, backbone refinement, and long-horizon prediction. However, the behaviors of individual backbone layers remain underexplored. We introduce layer sensitivity, a gradient-based metric inspired by GradCAM and effective receptive field theory, which quantifies both positive and negative contributions of each time point to a layer's latent features. Applying this metric to a three-layer MLP backbone reveals depth-specific specialization in modeling temporal dynamics in the input sequence. Motivated by these insights, we propose MoDEx, a lightweight Mixture of Depth-specific Experts, which replaces complex backbones with depth-specific MLP experts. MoDEx achieves state-of-the-art accuracy on seven real-world benchmarks, ranking first in 78 percent of cases, while using significantly fewer parameters and computational resources. It also integrates seamlessly into transformer variants, consistently boosting their performance and demonstrating robust generalizability as an efficient and high-performance LTSF framework.", "authors": ["Hyekyung Yoon", "Minhyuk Lee", "Imseung Park", "Myungjoo Kang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-31", "url": "https://arxiv.org/abs/2602.00624", "pdf_url": "https://arxiv.org/pdf/2602.00624v1", "arxiv_id": "2602.00624", "doi": "10.48550/arXiv.2602.00624", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4629} {"id": "136ceed141070445fe1e68d932666284943a05f45234a604d6f0129a44f5d333", "sources": ["arxiv", "semantic_scholar"], "title": "SPA-Cache: Singular Proxies for Adaptive Caching in Diffusion Language Models", "abstract": "While Diffusion Language Models (DLMs) offer a flexible, arbitrary-order alternative to the autoregressive paradigm, their non-causal nature precludes standard KV caching, forcing costly hidden state recomputation at every decoding step. Existing DLM caching approaches reduce this cost by selective hidden state updates; however, they are still limited by (i) costly token-wise update identification heuristics and (ii) rigid, uniform budget allocation that fails to account for heterogeneous hidden state dynamics. To address these challenges, we present SPA-Cache that jointly optimizes update identification and budget allocation in DLM cache. First, we derive a low-dimensional singular proxy that enables the identification of update-critical tokens in a low-dimensional subspace, substantially reducing the overhead of update identification. Second, we introduce an adaptive strategy that allocates fewer updates to stable layers without degrading generation quality. Together, these contributions significantly improve the efficiency of DLMs, yielding up to an $8\\times$ throughput improvement over vanilla decoding and a $2$--$4\\times$ speedup over existing caching baselines.", "authors": ["Wenhao Sun", "Rong-Cheng Tu", "Yifu Ding", "Zhao Jin", "Jingyi Liao", "Yongcheng Jing", "Dacheng Tao"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-30", "url": "https://arxiv.org/abs/2602.02544", "pdf_url": "https://arxiv.org/pdf/2602.02544v2", "arxiv_id": "2602.02544", "doi": "10.48550/arXiv.2602.02544", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/wenhao728/spa-cache", "venue": "arXiv.org", "quality_score": 0.7136} {"id": "c3e9faca2e36108f84ffc3df6caae157e75767e38659cd01a79ad900f029b8ed", "sources": ["arxiv", "semantic_scholar"], "title": "Decomposing and Composing: Towards Efficient Vision-Language Continual Learning via Rank-1 Expert Pool in a Single LoRA", "abstract": "Continual learning (CL) in vision-language models (VLMs) faces significant challenges in improving task adaptation and avoiding catastrophic forgetting. Existing methods usually have heavy inference burden or rely on external knowledge, while Low-Rank Adaptation (LoRA) has shown potential in reducing these issues by enabling parameter-efficient tuning. However, considering directly using LoRA to alleviate the catastrophic forgetting problem is non-trivial, we introduce a novel framework that restructures a single LoRA module as a decomposable Rank-1 Expert Pool. Our method learns to dynamically compose a sparse, task-specific update by selecting from this expert pool, guided by the semantics of the [CLS] token. In addition, we propose an Activation-Guided Orthogonal (AGO) loss that orthogonalizes critical parts of LoRA weights across tasks. This sparse composition and orthogonalization enable fewer parameter updates, resulting in domain-aware learning while minimizing inter-task interference and maintaining downstream task performance. Extensive experiments across multiple settings demonstrate state-of-the-art results in all metrics, surpassing zero-shot upper bounds in generalization. Notably, it reduces trainable parameters by 96.7% compared to the baseline method, eliminating reliance on external datasets or task-ID discriminators. The merged LoRAs retain less weights and incur no inference latency, making our method computationally lightweight.", "authors": ["Zhan Fa", "Yue Duan", "Jian Zhang", "Lei Qi", "Wanqi Yang", "Yinghuan Shi"], "categories": ["cs.LG", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-30", "url": "https://arxiv.org/abs/2601.22828", "pdf_url": "https://arxiv.org/pdf/2601.22828v1", "arxiv_id": "2601.22828", "doi": "10.48550/arXiv.2601.22828", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "AAAI Conference on Artificial Intelligence", "quality_score": 0.4618} {"id": "6365c4e91177bc171ce629e5691e83764dfa209e510d5811d5cac725473d6a95", "sources": ["arxiv", "semantic_scholar"], "title": "Competitive Non-Clairvoyant KV-Cache Scheduling for LLM Inference", "abstract": "Large Language Model (LLM) inference presents a unique scheduling challenge due to the Key-Value (KV) cache, where a job's memory footprint grows linearly with the number of decoded tokens. This growth couples scheduling decisions with feasibility: a scheduler must minimize latency under a hard memory budget, yet the response lengths of requests are inherently unknown. While recent works have explored this problem either assuming clairvoyance -- exact knowledge of response lengths -- or relying on machine-learned predictions, obtaining robust performance guarantees without any prior knowledge of job sizes remains a theoretically fundamental and practically important open problem. In this work, we propose the Geometric Slicing Algorithm (GSA), the non-clairvoyant policy to achieve the first constant competitive ratio for this problem in the offline batch setting. GSA manages uncertainty through a geometric phase structure that periodically restarts jobs to bound memory exposure, combined with a staggered pipeline mechanism that enables high concurrency by smoothing aggregate memory consumption. We prove that GSA achieves a competitive ratio of at most 61.92 for general instances, improving to 32 in the large-memory regime. Our algorithmic framework also yields a clairvoyant counterpart, the Geometric Batching Algorithm (GBA), which achieves an approximation ratio of 10.67 for general instances and 6.75 in the large-memory regime -- significantly improving upon the best previously known bound of over 9000. Numerical experiments on real request traces demonstrate that our algorithms perform robustly while preserving these worst-case guarantees.", "authors": ["Yiding Feng", "Zonghan Yang", "Yuhao Zhang"], "categories": ["cs.DS"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-30", "url": "https://arxiv.org/abs/2601.22996", "pdf_url": "https://arxiv.org/pdf/2601.22996v1", "arxiv_id": "2601.22996", "doi": "10.48550/arXiv.2601.22996", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4618} {"id": "d3877ef10b4b010558ced84e5b0ef55918fecc8edd1c5e0f67379b5a5b1d22dc", "sources": ["arxiv", "semantic_scholar"], "title": "A Unified Study of LoRA Variants: Taxonomy, Review, Codebase, and Empirical Evaluation", "abstract": "Low-Rank Adaptation (LoRA) is a fundamental parameter-efficient fine-tuning method that balances efficiency and performance in large-scale neural networks. However, the proliferation of LoRA variants has led to fragmentation in methodology, theory, code, and evaluation. To this end, this work presents the first unified study of LoRA variants, offering a systematic taxonomy, unified theoretical review, structured codebase, and standardized empirical assessment. First, we categorize LoRA variants along four principal axes: rank, optimization dynamics, initialization, and integration with Mixture-of-Experts. Then, we review their relationships and evolution within a common theoretical framework focused on low-rank update dynamics. Further, we introduce LoRAFactory, a modular codebase that implements variants through a unified interface, supporting plug-and-play experimentation and fine-grained analysis. Last, using this codebase, we conduct a large-scale evaluation across natural language generation, natural language understanding, and image classification tasks, systematically exploring key hyperparameters. Our results uncover several findings, notably: LoRA and its variants exhibit pronounced sensitivity to the choices of learning rate compared to other hyperparameters; moreover, with proper hyperparameter configurations, LoRA consistently matches or surpasses the performance of most of its variants.", "authors": ["Haonan He", "Jingqi Ye", "Minglei Li", "Zhengbo Wang", "Tao Chen", "Lei Bai", "Peng Ye"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-30", "url": "https://arxiv.org/abs/2601.22708", "pdf_url": "https://arxiv.org/pdf/2601.22708v1", "arxiv_id": "2601.22708", "doi": "10.48550/arXiv.2601.22708", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4618} {"id": "f30ad4a9d62c14e5d71500615657a2af07e8727a65c3e093c44620bb0f549573", "sources": ["arxiv", "semantic_scholar"], "title": "Don't be so Stief! Learning KV Cache low-rank approximation over the Stiefel manifold", "abstract": "Key-value (KV) caching enables fast autoregressive decoding but at long contexts becomes a dominant bottleneck in High Bandwidth Memory (HBM) capacity and bandwidth. A common mitigation is to compress cached keys and values by projecting per-head matrices to a lower rank, storing only the projections in the HBM. However, existing post-training approaches typically fit these projections using SVD-style proxy objectives, which may poorly reflect end-to-end reconstruction after softmax, value mixing, and subsequent decoder-layer transformations. For these reasons, we introduce StiefAttention, a post-training KV-cache compression method that learns orthonormal projection bases by directly minimizing decoder-layer output reconstruction error. StiefAttention additionally constructs layer-wise error-rank profiles over candidate ranks, enabling sequential rank allocation under a user-specified KV cache budget. Notably, on Llama3-8B under the same conditions, StiefAttention outperforms EigenAttention by $4.2$ points on C4 perplexity and $8.9$ points on 0-shot MMLU accuracy at iso-compression, yielding lower relative error and higher cosine similarity with respect to the original decoder-layer outputs.", "authors": ["Luca Benfenati", "Matteo Risso", "Andrea Vannozzi", "Ahmet Caner Yüzügüler", "Lukas Cavigelli", "Enrico Macii", "Daniele Jahier Pagliari", "Alessio Burrello"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-29", "url": "https://arxiv.org/abs/2601.21686", "pdf_url": "https://arxiv.org/pdf/2601.21686v2", "arxiv_id": "2601.21686", "doi": "10.48550/arXiv.2601.21686", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4606} {"id": "1630d3f87d09a4e2807053fe336a9031620a61ac4a9c902fade28c41e348f5fb", "sources": ["arxiv", "semantic_scholar"], "title": "Past- and Future-Informed KV Cache Policy with Salience Estimation in Autoregressive Video Diffusion", "abstract": "Video generation is pivotal to digital media creation, and recent advances in autoregressive video generation have markedly enhanced the efficiency of real-time video synthesis. However, existing approaches generally rely on heuristic KV Cache policies, which ignore differences in token importance in long-term video generation. This leads to the loss of critical spatiotemporal information and the accumulation of redundant, invalid cache, thereby degrading video generation quality and efficiency. To address this limitation, we first observe that token contributions to video generation are highly time-heterogeneous and accordingly propose a novel Past- and Future-Informed KV Cache Policy (PaFu-KV). Specifically, PaFu-KV introduces a lightweight Salience Estimation Head distilled from a bidirectional teacher to estimate salience scores, allowing the KV cache to retain informative tokens while discarding less relevant ones. This policy yields a better quality-efficiency trade-off by shrinking KV cache capacity and reducing memory footprint at inference time. Extensive experiments on benchmarks demonstrate that our method preserves high-fidelity video generation quality while enables accelerated inference, thereby enabling more efficient long-horizon video generation. Our code will be released upon paper acceptance.", "authors": ["Hanmo Chen", "Chenghao Xu", "Xu Yang", "Xuan Chen", "Cheng Deng"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-29", "url": "https://arxiv.org/abs/2601.21896", "pdf_url": "https://arxiv.org/pdf/2601.21896v3", "arxiv_id": "2601.21896", "doi": "10.48550/arXiv.2601.21896", "citation_count": 6, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4606} {"id": "c5b808d6c0d7cddfdc3ed1353be05bd2127804cf68f627a03589520b9c4420ff", "sources": ["arxiv", "semantic_scholar"], "title": "MoHETS: Long-term Time Series Forecasting with Mixture-of-Heterogeneous-Experts", "abstract": "Real-world multivariate time series can exhibit intricate multi-scale structures, including global trends, local periodicities, and non-stationary regimes, which makes long-horizon forecasting challenging. Although sparse Mixture-of-Experts (MoE) approaches improve scalability and specialization, they typically rely on homogeneous MLP experts that poorly capture the diverse temporal dynamics of time series data. We address these limitations with MoHETS, an encoder-only Transformer that integrates sparse Mixture-of-Heterogeneous-Experts (MoHE) layers. MoHE routes temporal patches to a small subset of expert networks, combining a shared depthwise-convolution expert for sequence-level continuity with routed Fourier-based experts for patch-level periodic structures. MoHETS further improves robustness to non-stationary dynamics by incorporating exogenous information via cross-attention over covariate patch embeddings. Finally, we replace parameter-heavy linear projection heads with a lightweight convolutional patch decoder, improving parameter efficiency, reducing training instability, and allowing a single model to generalize across arbitrary forecast horizons. We validate across seven multivariate benchmarks and multiple horizons, with MoHETS consistently achieving state-of-the-art performance, reducing the average MSE by $12\\%$ compared to strong recent baselines, demonstrating effective heterogeneous specialization for long-term forecasting.", "authors": ["Evandro S. Ortigossa", "Guy Lutsker", "Eran Segal"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-29", "url": "https://arxiv.org/abs/2601.21866", "pdf_url": "https://arxiv.org/pdf/2601.21866v2", "arxiv_id": "2601.21866", "doi": "10.48550/arXiv.2601.21866", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4606} {"id": "c1d0b836d8d8d564ddf0b6100f5437da025da428da0feec901d0f711ceac2139", "sources": ["arxiv", "semantic_scholar"], "title": "Depth-Recurrent Attention Mixtures: Giving Latent Reasoning the Attention it Deserves", "abstract": "Depth-recurrence facilitates latent reasoning by sharing parameters across depths. However, prior work lacks combined FLOP-, parameter-, and memory-matched baselines, underutilizes depth-recurrence due to partially fixed layer stacks, and ignores the bottleneck of constant hidden-sizes that restricts many-step latent reasoning. To address this, we introduce a modular framework of depth-recurrent attention mixtures (Dreamer), combining sequence attention, depth attention, and sparse expert attention. It alleviates the hidden-size bottleneck through attention along depth, decouples scaling dimensions, and allows depth-recurrent models to scale efficiently and effectively. Across language reasoning benchmarks, our models require 2 to 8x fewer training tokens for the same accuracy as FLOP-, parameter-, and memory-matched SOTA, and outperform ca. 2x larger SOTA models with the same training tokens. We further present insights into knowledge usage across depths, e.g., showing 2 to 11x larger expert selection diversity than SOTA MoEs.", "authors": ["Jonas Knupp", "Jan Hendrik Metzen", "Jeremias Bohn", "Georg Groh", "Kristian Kersting"], "categories": ["cs.AI", "cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-29", "url": "https://arxiv.org/abs/2601.21582", "pdf_url": "https://arxiv.org/pdf/2601.21582v1", "arxiv_id": "2601.21582", "doi": "10.48550/arXiv.2601.21582", "citation_count": 7, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4606} {"id": "b8c38cde7506e5cce0cff63874f44389785f7f072e2c85dfecf8b3c2d80a5943", "sources": ["arxiv", "semantic_scholar"], "title": "Abstracting Robot Manipulation Skills via Mixture-of-Experts Diffusion Policies", "abstract": "Diffusion-based policies have recently shown strong results in robot manipulation, but their extension to multi-task scenarios is hindered by the high cost of scaling model size and demonstrations. We introduce Skill Mixture-of-Experts Policy (SMP), a diffusion-based mixture-of-experts policy that learns a compact orthogonal skill basis and uses sticky routing to compose actions from a small, task-relevant subset of experts at each step. A variational training objective supports this design, and adaptive expert activation at inference yields fast sampling without oversized backbones. We validate SMP in simulation and on a real dual-arm platform with multi-task learning and transfer learning tasks, where SMP achieves higher success rates and markedly lower inference cost than large diffusion baselines. These results indicate a practical path toward scalable, transferable multi-task manipulation: learn reusable skills once, activate only what is needed, and adapt quickly when tasks change.", "authors": ["Ce Hao", "Xuanran Zhai", "Yaohua Liu", "Harold Soh"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-29", "url": "https://arxiv.org/abs/2601.21251", "pdf_url": "https://arxiv.org/pdf/2601.21251v1", "arxiv_id": "2601.21251", "doi": "10.48550/arXiv.2601.21251", "citation_count": 5, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4606} {"id": "a9d5209a953bdde15f46ebfb3e87d2ef8cbeb89d48990a11559a582cb0bf2a98", "sources": ["arxiv", "semantic_scholar"], "title": "Beyond Speedup -- Utilizing KV Cache for Sampling and Reasoning", "abstract": "KV caches, typically used only to speed up autoregressive decoding, encode contextual information that can be reused for downstream tasks at no extra cost. We propose treating the KV cache as a lightweight representation, eliminating the need to recompute or store full hidden states. Despite being weaker than dedicated embeddings, KV-derived representations are shown to be sufficient for two key applications: \\textbf{(i) Chain-of-Embedding}, where they achieve competitive or superior performance on Llama-3.1-8B-Instruct and Qwen2-7B-Instruct; and \\textbf{(ii) Fast/Slow Thinking Switching}, where they enable adaptive reasoning on Qwen3-8B and DeepSeek-R1-Distil-Qwen-14B, reducing token generation by up to $5.7\\times$ with minimal accuracy loss. Our findings establish KV caches as a free, effective substrate for sampling and reasoning, opening new directions for representation reuse in LLM inference. Code: https://github.com/cmd2001/ICLR2026_KV-Embedding.", "authors": ["Zeyu Xing", "Xing Li", "Hui-Ling Zhen", "Mingxuan Yuan", "Sinno Jialin Pan"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-28", "url": "https://arxiv.org/abs/2601.20326", "pdf_url": "https://arxiv.org/pdf/2601.20326v1", "arxiv_id": "2601.20326", "doi": "10.48550/arXiv.2601.20326", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/cmd2001/ICLR2026_KV-Embedding", "venue": "arXiv.org", "quality_score": 0.7101} {"id": "8ee86a3cddd917287b6aa5b850a3d889d1355e9b5a29750a825f17c07c71dfd9", "sources": ["arxiv", "semantic_scholar"], "title": "Window-Diffusion: Accelerating Diffusion Language Model Inference with Windowed Token Pruning and Caching", "abstract": "Diffusion language models (DLMs) generate text through iterative denoising, but inference requires full-sequence attention at every iteration, resulting in substantial redundant computation on masked tokens. Block-wise diffusion can reduce this cost, yet it typically relies on retraining and constrained update orders, limiting its direct applicability to pretrained DLMs. Our token-level analysis reveals pronounced structural locality in DLM inference. Decoding is driven by a small set of prefix-localized active tokens; the influence of distant undecoded context diminishes rapidly, and decoded tokens exhibit stage-wise temporal stability, enabling reuse of intermediate representations except for a brief post-decode transient. Motivated by these observations, we propose \\textbf{\\placeholder}\\footnote{The source code is available at https://github.com/vhicrgit/Window-Diffusion.}, a window-based token pruning and caching method for inference. We maintain a local computation window that slides rightward as denoising progresses, and partition undecoded tokens into: (i) \\textit{active tokens} that are computed online, (ii) \\textit{buffer tokens} whose KV states are cached and periodically refreshed, and (iii) \\textit{far-field tokens} that are pruned outside the window. Computation is restricted to active and buffer tokens within the window, while far-field tokens are omitted at each stage. Experiments on LLaDA and Dream show that, under matched compute budgets, our method achieves up to $99\\times$ inference speedup while largely preserving generation performance.", "authors": ["Fengrui Zuo", "Zhiwei Ke", "Yiming Liu", "Wenqi Lou", "Chao Wang", "Xuehai Zhou"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-28", "url": "https://arxiv.org/abs/2601.20332", "pdf_url": "https://arxiv.org/pdf/2601.20332v2", "arxiv_id": "2601.20332", "doi": "10.48550/arXiv.2601.20332", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/vhicrgit/Window-Diffusion.}", "venue": "arXiv.org", "quality_score": 0.7101} {"id": "5f52586dde4bdb31aed80bdf01645e0e303906ca413234aab3947f1459c924e0", "sources": ["arxiv", "semantic_scholar"], "title": "CompSRT: Quantization and Pruning for Image Super Resolution Transformers", "abstract": "Model compression has become an important tool for making image super resolution models more efficient. However, the gap between the best compressed models and the full precision model still remains large and a need for deeper understanding of compression theory on more performant models remains. Prior research on quantization of LLMs has shown that Hadamard transformations lead to weights and activations with reduced outliers, which leads to improved performance. We argue that while the Hadamard transform does reduce the effect of outliers, an empirical analysis on how the transform functions remains needed. By studying the distributions of weights and activations of SwinIR-light, we show with statistical analysis that lower errors is caused by the Hadamard transforms ability to reduce the ranges, and increase the proportion of values around $0$. Based on these findings, we introduce CompSRT, a more performant way to compress the image super resolution transformer network SwinIR-light. We perform Hadamard-based quantization, and we also perform scalar decomposition to introduce two additional trainable parameters. Our quantization performance statistically significantly surpasses the SOTA in metrics with gains as large as 1.53 dB, and visibly improves visual quality by reducing blurriness at all bitwidths. At $3$-$4$ bits, to show our method is compatible with pruning for increased compression, we also prune $40\\%$ of weights and show that we can achieve $6.67$-$15\\%$ reduction in bits per parameter with comparable performance to SOTA.", "authors": ["Dorsa Zeinali", "Hailing Wang", "Yitian Zhang", "Yun Fu"], "categories": ["eess.IV"], "fields_of_study": ["Engineering"], "published_date": "2026-01-28", "url": "https://arxiv.org/abs/2601.21069", "pdf_url": "https://arxiv.org/pdf/2601.21069v2", "arxiv_id": "2601.21069", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.2924} {"id": "2e10b5567754f8b2b0b6e44fa7187c97fd2c378a1a3e4216cc10677dd4d168d3", "sources": ["arxiv", "semantic_scholar"], "title": "Switchcodec: Adaptive residual-expert sparse quantization for high-fidelity neural audio coding", "abstract": "Recent neural audio compression models often rely on residual vector quantization for high-fidelity coding, but using a fixed number of per-frame codebooks is suboptimal for the wide variability of audio content-especially for signals that are either very simple or highly complex. To address this limitation, we propose SwitchCodec, a neural audio codec based on Residual Experts Vector Quantization (REVQ). REVQ combines a shared quantizer with dynamically routed expert quantizers that are activated according to the input audio, decoupling bitrate from codebook capacity and improving compression efficiency. This design ensures full training and utilization of each quantizer. In addition, a variable-bitrate mechanism adjusts the number of active expert quantizers at inference, enabling multi-bitrate operation without retraining. Experiments demonstrate that SwitchCodec surpasses existing baselines on both objective metrics and subjective listening tests.", "authors": ["Xiangbo Wang", "Wenbin Jiang", "Jin Wang", "Yubo You", "Sheng Fang", "Fei Wen"], "categories": ["cs.SD", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-28", "url": "https://arxiv.org/abs/2601.20362", "pdf_url": "https://arxiv.org/pdf/2601.20362v2", "arxiv_id": "2601.20362", "doi": "10.48550/arXiv.2601.20362", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE International Conference on Acoustics, Speech, and Signal Processing", "quality_score": 0.4595} {"id": "d1eb94374b0c0945c3e731c7c2dbe2dcd6e3b6f10c63682ad7632696c8b1fc4b", "sources": ["arxiv", "semantic_scholar"], "title": "ChunkWise LoRA: Adaptive Sequence Partitioning for Memory-Efficient Low-Rank Adaptation and Accelerated LLM Inference", "abstract": "Recent advances in low-rank adaptation (LoRA) have enabled efficient fine-tuning of large language models (LLMs) with minimal additional parameters. However, existing LoRA methods apply static rank configurations uniformly across all input tokens, ignoring variation in token complexity and computational requirements. In this work, we propose ChunkWise LoRA, a dynamic and adaptive approach that partitions sequences into variable-length chunks based on token complexity and assigns each chunk a tailored low-rank configuration. Our system introduces a runtime scheduler that estimates token difficulty, performs adaptive chunking, and selects per-chunk LoRA rank and scaling using a rank-ladder mechanism. To preserve output consistency, we further introduce a boundary-safe composition module and integrate policy-driven KV-cache strategies. Experiments on benchmark datasets such as Wikitext-103 and SQuAD demonstrate that ChunkWise LoRA achieves up to 34\\% lower latency and 38% memory reduction compared to baseline LoRA, while maintaining or improving task performance metrics like BLEU, EM, and perplexity. The proposed framework remains fully compatible with existing transformer architectures and inference frameworks, providing a practical solution for real-world deployment of parameter-efficient LLMs.", "authors": ["Ketan Thakkar", "Maitreyi Chatterjee", "Ramasubramanian Balasubramanian", "Achyuthan Jootoo", "Rajendra Ugrani"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-28", "url": "https://arxiv.org/abs/2601.21109", "pdf_url": "https://arxiv.org/pdf/2601.21109v1", "arxiv_id": "2601.21109", "doi": "10.1109/ISED67359.2025.11405311", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "International Symposium on Embedded Computing and System Design", "quality_score": 0.4595} {"id": "720e24afeb3c1ee437b343a388545d41fc2fe86c49d3efd4b69b860a5e379be3", "sources": ["arxiv", "semantic_scholar"], "title": "Hyperparameter Transfer with Mixture-of-Expert Layers", "abstract": "Mixture-of-Experts (MoE) layers have emerged as an important tool in scaling up modern neural networks by decoupling total trainable parameters from activated parameters in the forward pass for each token. However, sparse MoEs add complexity to training due to (i) new trainable parameters (router weights) that, like all other parameter groups, require hyperparameter (HP) tuning; (ii) new architecture scale dimensions (number of and size of experts) that must be chosen and potentially taken large. To make HP selection cheap and reliable, we propose a new parameterization for transformer models with MoE layers when scaling model width, depth, number of experts, and expert (hidden) size. Our parameterization is justified by a novel dynamical mean-field theory (DMFT) analysis. When varying different model dimensions trained at a fixed token budget, we find empirically that our parameterization enables reliable HP transfer across models from 51M to over 2B total parameters. We further take HPs identified from sweeping small models on a short token horizon to train larger models on longer horizons and report performant model behaviors.", "authors": ["Tianze Jiang", "Blake Bordelon", "Cengiz Pehlevan", "Boris Hanin"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-28", "url": "https://arxiv.org/abs/2601.20205", "pdf_url": "https://arxiv.org/pdf/2601.20205v3", "arxiv_id": "2601.20205", "doi": "10.48550/arXiv.2601.20205", "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4595} {"id": "b3699373930cc6de0cae049724b0c390cf6bd2f2b5b61dffe06c4198453f54ac", "sources": ["arxiv", "semantic_scholar"], "title": "Exploring Fine-Tuning for In-Context Retrieval and Efficient KV-Caching in Long-Context Language Models", "abstract": "With context windows of millions of tokens, Long-Context Language Models (LCLMs) can encode entire document collections, offering a strong alternative to conventional retrieval-augmented generation (RAG). However, it remains unclear whether fine-tuning strategies can improve long-context performance and translate to greater robustness under KV-cache compression techniques. In this work, we investigate which training strategies most effectively enhance LCLMs' ability to identify and use relevant information, as well as enhancing their robustness under KV-cache compression. Our experiments show substantial in-domain improvements, achieving gains of up to +20 points over the base model. However, out-of-domain generalization remains task dependent with large variance -- LCLMs excels on finance questions (+9 points), while RAG shows stronger performance on multiple-choice questions (+6 points) over the baseline models. Finally, we show that our fine-tuning approaches bring moderate improvements in robustness under KV-cache compression, with gains varying across tasks.", "authors": ["Francesco Maria Molfese", "Momchil Hardalov", "Rexhina Blloshmi", "Bill Byrne", "Adrià de Gispert"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-26", "url": "https://arxiv.org/abs/2601.18527", "pdf_url": "https://arxiv.org/pdf/2601.18527v1", "arxiv_id": "2601.18527", "doi": "10.48550/arXiv.2601.18527", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "Conference of the European Chapter of the Association for Computational Linguistics", "quality_score": 0.4572} {"id": "7459dc3a1bb7a09dc713b5e40235308624e17a8e3236406478452888121a7edf", "sources": ["arxiv", "semantic_scholar"], "title": "Randomization Boosts KV Caching, Learning Balances Query Load: A Joint Perspective", "abstract": "KV caching is a fundamental technique for accelerating Large Language Model (LLM) inference by reusing key-value (KV) pairs from previous queries, but its effectiveness under limited memory is highly sensitive to the eviction policy. The default Least Recently Used (LRU) eviction algorithm struggles with dynamic online query arrivals, especially in multi-LLM serving scenarios, where balancing query load across workers and maximizing cache hit rate of each worker are inherently conflicting objectives. We give the first unified mathematical model that captures the core trade-offs between KV cache eviction and query routing. Our analysis reveals the theoretical limitations of existing methods and leads to principled algorithms that integrate provably competitive randomized KV cache eviction with learning-based methods to adaptively route queries with evolving patterns, thus balancing query load and cache hit rate. Our theoretical results are validated by extensive experiments across 4 benchmarks and 3 prefix-sharing settings, demonstrating improvements of up to 6.92$\\times$ in cache hit rate, 11.96$\\times$ reduction in latency, 14.06$\\times$ reduction in time-to-first-token (TTFT), and 77.4% increase in throughput over the state-of-the-art methods. Our code is available at https://github.com/fzwark/KVRouting.", "authors": ["Fangzhou Wu", "Sandeep Silwal", " Qiuyi", " Zhang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-26", "url": "https://arxiv.org/abs/2601.18999", "pdf_url": "https://arxiv.org/pdf/2601.18999v1", "arxiv_id": "2601.18999", "doi": "10.48550/arXiv.2601.18999", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/fzwark/KVRouting", "venue": "arXiv.org", "quality_score": 0.7066} {"id": "779454640ef85adfd6089ba2b7e2352f9cfebf42d4473e58d691729b7d996ed9", "sources": ["arxiv", "semantic_scholar"], "title": "$\\infty$-MoE: Generalizing Mixture of Experts to Infinite Experts", "abstract": "The Mixture of Experts (MoE) selects a few feed-forward networks (FFNs) per token, achieving an effective trade-off between computational cost and performance. In conventional MoE, each expert is treated as entirely independent, and experts are combined in a discrete space. As a result, when the number of experts increases, it becomes difficult to train each expert effectively. To stabilize training while increasing the number of experts, we propose $\\infty$-MoE that selects a portion of the parameters of large FFNs based on continuous values sampled for each token. By considering experts in a continuous space, this approach allows for an infinite number of experts while maintaining computational efficiency. Experiments show that a GPT-2 Small-based $\\infty$-MoE model, with 129M active and 186M total parameters, achieves comparable performance to a dense GPT-2 Medium with 350M parameters. Adjusting the number of sampled experts at inference time allows for a flexible trade-off between accuracy and speed, with an improvement of up to 2.5\\% in accuracy over conventional MoE.", "authors": ["Shota Takashiro", "Takeshi Kojima", "Shohei Taniguchi", "Yusuke Iwasawa", "Yutaka Matsuo"], "categories": ["cs.LG", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-25", "url": "https://arxiv.org/abs/2601.17680", "pdf_url": "https://arxiv.org/pdf/2601.17680v1", "arxiv_id": "2601.17680", "doi": "10.48550/arXiv.2601.17680", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.456} {"id": "59502184008164e50c76bcaa88d6d30522944297bfeef3561b843abb7c1ecf31", "sources": ["arxiv", "semantic_scholar"], "title": "Systematic Characterization of Minimal Deep Learning Architectures: A Unified Analysis of Convergence, Pruning, and Quantization", "abstract": "Deep learning networks excel at classification, yet identifying minimal architectures that reliably solve a task remains challenging. We present a computational methodology for systematically exploring and analyzing the relationships among convergence, pruning, and quantization. The workflow first performs a structured design sweep across a large set of architectures, then evaluates convergence behavior, pruning sensitivity, and quantization robustness on representative models. Focusing on well-known image classification of increasing complexity, and across Deep Neural Networks, Convolutional Neural Networks, and Vision Transformers, our initial results show that, despite architectural diversity, performance is largely invariant and learning dynamics consistently exhibit three regimes: unstable, learning, and overfitting. We further characterize the minimal learnable parameters required for stable learning, uncover distinct convergence and pruning phases, and quantify the effect of reduced numeric precision on trainable parameters. Aligning with intuition, the results confirm that deeper architectures are more resilient to pruning than shallower ones, with parameter redundancy as high as 60%, and quantization impacts models with fewer learnable parameters more severely and has a larger effect on harder image datasets. These findings provide actionable guidance for selecting compact, stable models under pruning and low-precision constraints in image classification.", "authors": ["Ziwei Zheng", "Huizhi Liang", "Vaclav Snasel", "Vito Latora", "Panos Pardalos", "Giuseppe Nicosia", "Varun Ojha"], "categories": ["cs.LG", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-25", "url": "https://arxiv.org/abs/2601.17987", "pdf_url": "https://arxiv.org/pdf/2601.17987v1", "arxiv_id": "2601.17987", "doi": "10.1109/CAI68641.2026.11536272", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "Conference on Algebraic Informatics", "quality_score": 0.456} {"id": "5c59984e14ccdde51a9339f89d69e5d4ab2a0cab58504c8b31294f096417a565", "sources": ["arxiv", "semantic_scholar"], "title": "Domain-Expert-Guided Hybrid Mixture-of-Experts for Medical AI: Integrating Data-Driven Learning with Clinical Priors", "abstract": "Mixture-of-Experts (MoE) models increase representational capacity with modest computational cost, but their effectiveness in specialized domains such as medicine is limited by small datasets. In contrast, clinical practice offers rich expert knowledge, such as physician gaze patterns and diagnostic heuristics, that models cannot reliably learn from limited data. Combining data-driven experts, which capture novel patterns, with domain-expert-guided experts, which encode accumulated clinical insights, provides complementary strengths for robust and clinically meaningful learning. To this end, we propose Domain-Knowledge-Guided Hybrid MoE (DKGH-MoE), a plug-and-play and interpretable module that unifies data-driven learning with domain expertise. DKGH-MoE integrates a data-driven MoE to extract novel features from raw imaging data, and a domain-expert-guided MoE incorporates clinical priors, specifically clinician eye-gaze cues, to emphasize regions of high diagnostic relevance. By integrating domain expert insights with data-driven features, DKGH-MoE improves both performance and interpretability.", "authors": ["Jinchen Gu", "Nan Zhao", "Lei Qiu", "Lu Zhang"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-25", "url": "https://arxiv.org/abs/2601.17977", "pdf_url": "https://arxiv.org/pdf/2601.17977v1", "arxiv_id": "2601.17977", "doi": "10.1109/ISBI61048.2026.11515744", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE International Symposium on Biomedical Imaging", "quality_score": 0.456} {"id": "388ef9690bb443c6cac313ba44813aad4dd1684fafbb9c15d15846575b1ed745", "sources": ["arxiv", "semantic_scholar"], "title": "Split-on-Share: Mixture of Sparse Experts for Task-Agnostic Continual Learning", "abstract": "Continual learning in Large Language Models (LLMs) is hindered by the plasticity-stability dilemma, where acquiring new capabilities often leads to catastrophic forgetting of previous knowledge. Existing methods typically treat parameters uniformly, failing to distinguish between specific task knowledge and shared capabilities. We introduce Mixture of Sparse Experts for Task-Agnostic Continual Learning, referred to as SETA, a framework that resolves the plasticity-stability conflict by decomposing the model into modular subspaces. Unlike standard updates, where tasks compete for the same parameters, SETA separates knowledge into unique experts, designed to isolate task-specific patterns, and shared experts, responsible for capturing common features. This structure is maintained through elastic weight anchoring, which protects critical shared knowledge and enables a unified gating network to automatically retrieve the correct expert combination for each task during inference. Extensive experiments across diverse domain-specific and general benchmarks demonstrate that SETA consistently outperforms state-of-the-art parameter-efficient fine-tuning-based continual learning methods.", "authors": ["Fatema Siddika", "Md Anwar Hossen", "Tanwi Mallick", "Ali Jannesari"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-24", "url": "https://arxiv.org/abs/2601.17616", "pdf_url": "https://arxiv.org/pdf/2601.17616v2", "arxiv_id": "2601.17616", "doi": "10.48550/arXiv.2601.17616", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4549} {"id": "47b89e88e5464d0e31bd5d295bfd4c0e4ca7874e17df4b0148ffd55df591b416", "sources": ["arxiv", "semantic_scholar"], "title": "MambaNet: Mamba-assisted Channel Estimation Neural Network With Attention Mechanism", "abstract": "This paper proposes a Mamba-assisted neural network framework incorporating self-attention mechanism to achieve improved channel estimation with low complexity for orthogonal frequency-division multiplexing (OFDM) waveforms, particularly for configurations with a large number of subcarriers. With the integration of customized Mamba architecture, the proposed framework handles large-scale subcarrier channel estimation efficiently while capturing long-distance dependencies among these subcarriers effectively. Unlike conventional Mamba structure, this paper implements a bidirectional selective scan to improve channel estimation performance, because channel gains at different subcarriers are non-causal. Moreover, the proposed framework exhibits relatively lower space complexity than transformer-based neural networks. Simulation results tested on the 3GPP TS 36.101 channel demonstrate that compared to other baseline neural network solutions, the proposed method achieves improved channel estimation performance with a reduced number of tunable parameters.", "authors": ["Dianxin Luan", "Chengsi Liang", "Jie Huang", "Zheng Lin", "Kaitao Meng", "John Thompson", "Cheng-Xiang Wang"], "categories": ["cs.LG", "cs.AI", "eess.SP"], "fields_of_study": ["Computer Science", "Engineering"], "published_date": "2026-01-23", "url": "https://arxiv.org/abs/2601.17108", "pdf_url": "https://arxiv.org/pdf/2601.17108v1", "arxiv_id": "2601.17108", "doi": "10.48550/arXiv.2601.17108", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4537} {"id": "b8895b93b5edba9d0016971351d1ade615f440483ae99c564fbb3a4210a30404", "sources": ["arxiv", "semantic_scholar"], "title": "Least-Loaded Expert Parallelism: Load Balancing An Imbalanced Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) models are typically pre-trained with explicit load-balancing constraints to ensure statistically balanced expert routing. Despite this, we observe that even well-trained MoE models exhibit significantly imbalanced routing. This behavior is arguably natural-and even desirable - as imbalanced routing allows models to concentrate domain-specific knowledge within a subset of experts. Expert parallelism (EP) is designed to scale MoE models by distributing experts across multiple devices, but with a less-discussed assumption of balanced routing. Under extreme imbalance, EP can funnel a disproportionate number of tokens to a small number of experts, leading to compute- and memory-bound failures on overloaded devices during post-training or inference, where explicit load balancing is often inapplicable. We propose Least-Loaded Expert Parallelism (LLEP), a novel EP algorithm that dynamically reroutes excess tokens and associated expert parameters from overloaded devices to underutilized ones. This ensures that all devices complete their workloads within the minimum collective latency while respecting memory constraints. Across different model scales, LLEP achieves up to 5x speedup and 4x reduction in peak memory usage compared to standard EP. This enables faster and higher-throughput post-training and inference, with ~1.9x faster for gpt-oss-120b. We support our method with extensive theoretical analysis and comprehensive empirical evaluations, including ablation studies. These results illuminate key trade-offs and enable a principled framework for hardware-specific hyper-parameter tuning to achieve optimal performance.", "authors": ["Xuan-Phi Nguyen", "Shrey Pandit", "Austin Xu", "Caiming Xiong", "Shafiq Joty"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-23", "url": "https://arxiv.org/abs/2601.17111", "pdf_url": "https://arxiv.org/pdf/2601.17111v1", "arxiv_id": "2601.17111", "doi": "10.48550/arXiv.2601.17111", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4537} {"id": "eea63b78ed99767bacbfaf73608754767432ecea0e36b2b12e246528619d6e1d", "sources": ["arxiv", "semantic_scholar"], "title": "Clustering-Guided Spatial-Spectral Mamba for Hyperspectral Image Classification", "abstract": "Although Mamba models greatly improve Hyperspectral Image (HSI) classification, they have critical challenges in terms defining efficient and adaptive token sequences for improve performance. This paper therefore presents CSSMamba (Clustering-guided Spatial-Spectral Mamba) framework to better address the challenges, with the following contributions. First, to achieve efficient and adaptive token sequences for improved Mamba performance, we integrate the clustering mechanism into a spatial Mamba architecture, leading to a cluster-guided spatial Mamba module (CSpaMamba) that reduces the Mamba sequence length and improves Mamba feature learning capability. Second, to improve the learning of both spatial and spectral information, we integrate the CSpaMamba module with a spectral mamba module (SpeMamba), leading to a complete clustering-guided spatial-spectral Mamba framework. Third, to further improve feature learning capability, we introduce an Attention-Driven Token Selection mechanism to optimize Mamba token sequencing. Last, to seamlessly integrate clustering into the Mamba model in a coherent manner, we design a Learnable Clustering Module that learns the cluster memberships in an adaptive manner. Experiments on the Pavia University, Indian Pines, and Liao-Ning 01 datasets demonstrate that CSSMamba achieves higher accuracy and better boundary preservation compared to state-of-the-art CNN, Transformer, and Mamba-based methods.", "authors": ["Zack Dewis", "Yimin Zhu", "Zhengsen Xu", "Mabel Heffring", "Saeid Taleghanidoozdoozan", "Quinn Ledingham", "Lincoln Linlin Xu"], "categories": ["cs.CV", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-22", "url": "https://arxiv.org/abs/2601.16098", "pdf_url": "https://arxiv.org/pdf/2601.16098v1", "arxiv_id": "2601.16098", "doi": "10.48550/arXiv.2601.16098", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4526} {"id": "c68300df7d856da59b5d9c50d52ce3e0d5d84025c170ed9902ac83e80f3a3a80", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture-of-Experts Models in Vision: Routing, Optimization, and Generalization", "abstract": "Mixture-of-Experts (MoE) architectures enable conditional computation by routing inputs to multiple expert subnetworks and are often motivated as a mechanism for scaling large language models. In this project, we instead study MoE behavior in an image classification setting, focusing on predictive performance, expert utilization, and generalization. We compare dense, SoftMoE, and SparseMoE classifier heads on the CIFAR10 dataset under comparable model capacity. Both MoE variants achieve slightly higher validation accuracy than the dense baseline while maintaining balanced expert utilization through regularization, avoiding expert collapse. To analyze generalization, we compute Hessian-based sharpness metrics at convergence, including the largest eigenvalue and trace of the loss Hessian, evaluated on both training and test data. We find that SoftMoE exhibits higher sharpness by these metrics, while Dense and SparseMoE lie in a similar curvature regime, despite all models achieving comparable generalization performance. Complementary loss surface perturbation analyses reveal qualitative differences in non-local behavior under finite parameter perturbations between dense and MoE models, which help contextualize curvature-based measurements without directly explaining validation accuracy. We further evaluate empirical inference efficiency and show that naively implemented conditional routing does not yield inference speedups on modern hardware at this scale, highlighting the gap between theoretical and realized efficiency in sparse MoE models.", "authors": ["Adam Rokah", "Daniel Veress", "Caleb Caulk", "Sourav Sharan"], "categories": ["cs.LG", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-21", "url": "https://arxiv.org/abs/2601.15021", "pdf_url": "https://arxiv.org/pdf/2601.15021v1", "arxiv_id": "2601.15021", "doi": "10.48550/arXiv.2601.15021", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/moe-project-uu/mixture-of-experts-project", "venue": "arXiv.org", "quality_score": 0.6977} {"id": "ec2b9cb9f2183fe88bcd53af6a574f8e3f50eddec1162cec0e0cb2246a6f711b", "sources": ["arxiv", "semantic_scholar"], "title": "HERMES: KV Cache as Hierarchical Memory for Efficient Streaming Video Understanding", "abstract": "Recent advancements in Multimodal Large Language Models (MLLMs) have demonstrated significant improvement in offline video understanding. However, extending these capabilities to streaming video inputs, remains challenging, as existing models struggle to simultaneously maintain stable understanding performance, real-time responses, and low GPU memory overhead. To address this challenge, we propose HERMES, a novel training-free architecture for real-time and accurate understanding of video streams. Based on a mechanistic attention investigation, we conceptualize KV cache as a hierarchical memory framework that encapsulates video information across multiple granularities. During inference, HERMES reuses a compact KV cache, enabling efficient streaming understanding under resource constraints. Notably, HERMES requires no auxiliary computations upon the arrival of user queries, thereby guaranteeing real-time responses for continuous video stream interactions, which achieves 10$\\times$ faster TTFT compared to prior SOTA. Even when reducing video tokens by up to 68% compared with uniform sampling, HERMES achieves superior or comparable accuracy across all benchmarks, with up to 11.4% gains on streaming datasets.", "authors": ["Haowei Zhang", "Shudong Yang", "Jinlan Fu", "See-Kiong Ng", "Xipeng Qiu"], "categories": ["cs.CV", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-21", "url": "https://arxiv.org/abs/2601.14724", "pdf_url": "https://arxiv.org/pdf/2601.14724v4", "arxiv_id": "2601.14724", "doi": "10.48550/arXiv.2601.14724", "citation_count": 12, "influential_citation_count": 3, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4515} {"id": "8c459d10d9d858873362f8df999211d52990a7d734a719c5f318783d650d6b5f", "sources": ["arxiv", "semantic_scholar"], "title": "Robustness of Mixtures of Experts to Feature Noise", "abstract": "Despite their practical success, it remains unclear why Mixture of Experts (MoE) models can outperform dense networks beyond sheer parameter scaling. We study an iso-parameter regime where inputs exhibit latent modular structure but are corrupted by feature noise, a proxy for noisy internal activations. We show that sparse expert activation acts as a noise filter: compared to a dense estimator, MoEs achieve lower generalization error under feature noise, improved robustness to perturbations, and faster convergence speed. Empirical results on synthetic data and real-world language tasks corroborate the theoretical insights, demonstrating consistent robustness and efficiency gains from sparse modular computation.", "authors": ["Dong Sun", "Rahul Nittala", "Rebekka Burkholz"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-21", "url": "https://arxiv.org/abs/2601.14792", "pdf_url": "https://arxiv.org/pdf/2601.14792v2", "arxiv_id": "2601.14792", "doi": "10.48550/arXiv.2601.14792", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4515} {"id": "75d6ac27d16bd822f1ae754df3a958b2c875d9e3d8a8705dee6459f1cfeb3a85", "sources": ["arxiv", "semantic_scholar"], "title": "ContiguousKV: Accelerating LLM Prefill with Granularity-Aligned KV Cache Management", "abstract": "Efficiently serving Large Language Models (LLMs) with persistent Prefix Key-Value (KV) Cache is critical for applications like conversational search and multi-turn dialogue. Serving a request requires loading the pre-computed prefix KV cache and generating the first token, defined as the Re-Prefill Phase. Offloading this shared prefix cache to secondary storage is essential for memory scalability. Re-Prefill with offloading suffers from severe I/O bottlenecks in two aspects. First, semantic-aware KV cache pruning algorithms select important tokens in fine granularity, while systems manage I/O in coarse, fixed-size blocks, causing severe read amplification. Second, the sequential dependency between identifying important tokens and loading KV cache creates idle I/O and compute bubbles, under-utilizing system resources. This paper proposes \\textit{ContiguousKV}, a high-performance prefix KV cache offloading system that bridges algorithmic semantics with I/O efficiency to accelerate the Re-Prefill phase. We first introduce \\textit{ContiguousChunk}, a unified data management granularity that aligns KV cache pruning with I/O operations. All the mechanisms critical for I/O performance are performed at the granularity of ContiguousChunk, thereby eliminating read amplification. By exploiting the high similarity in important ContiguousChunk indices across layers, we propose intra- and inter-period asynchronous prefetching to break the sequential dependency between I/O and compute, effectively eliminating idle bubbles. Finally, we propose attention-guided cache management to retain semantically critical prefix data in memory. Evaluations on Qwen2.5 series models show that ContiguousKV achieves a 3.85x speedup in the Re-Prefill phase over the state-of-the-art offloading system IMPRESS, while maintaining high output quality.", "authors": ["Jing Zou", "Shangyu Wu", "Hancong Duan", "Qiao Li", "Chun Jason Xue"], "categories": ["cs.OS", "cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-20", "url": "https://arxiv.org/abs/2601.13631", "pdf_url": "https://arxiv.org/pdf/2601.13631v1", "arxiv_id": "2601.13631", "doi": "10.48550/arXiv.2601.13631", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4503} {"id": "1e9b467e183ce8590e7f6265dbe578374760c88ef85f3ecb097a50ae6685088f", "sources": ["arxiv", "semantic_scholar"], "title": "Understanding Multilingualism in Mixture-of-Experts LLMs: Routing Mechanism, Expert Specialization, and Layerwise Steering", "abstract": "Mixture-of-Experts (MoE) architectures have shown strong multilingual capabilities, yet the internal mechanisms underlying performance gains and cross-language differences remain insufficiently understood. In this work, we conduct a systematic analysis of MoE models, examining routing behavior and expert specialization across languages and network depth. Our analysis reveals that multilingual processing in MoE models is highly structured: routing aligns with linguistic families, expert utilization follows a clear layerwise pattern, and high-resource languages rely on shared experts while low-resource languages depend more on language-exclusive experts despite weaker performance. Layerwise interventions further show that early and late MoE layers support language-specific processing, whereas middle layers serve as language-agnostic capacity hubs. Building on these insights, we propose a routing-guided steering method that adaptively guides routing behavior in middle layers toward shared experts associated with dominant languages at inference time, leading to consistent multilingual performance improvements, particularly for linguistically related language pairs. Our code is available at https://github.com/conctsai/Multilingualism-in-Mixture-of-Experts-LLMs.", "authors": ["Yuxin Chen", "Zhengzhou Cai", "Xiangtian Ji", "Weixiang Zhao", "An Zhang", "Xiang Wang", "Tat-Seng Chua"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-20", "url": "https://arxiv.org/abs/2601.14050", "pdf_url": "https://arxiv.org/pdf/2601.14050v1", "arxiv_id": "2601.14050", "doi": "10.48550/arXiv.2601.14050", "citation_count": 5, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/conctsai/Multilingualism-in-Mixture-of-Experts-LLMs", "venue": "arXiv.org", "quality_score": 0.6959} {"id": "3d55190638a5459cf0a60fe3f4d132f7f7e23d280ce11162ef58c5df620b03dd", "sources": ["arxiv", "semantic_scholar"], "title": "HeteroCache: A Dynamic Retrieval Approach to Heterogeneous KV Cache Compression for Long-Context LLM Inference", "abstract": "The linear memory growth of the KV cache poses a significant bottleneck for LLM inference in long-context tasks. Existing static compression methods often fail to preserve globally important information. Although recent dynamic retrieval approaches attempt to address this issue, they typically suffer from coarse-grained caching strategies and incur high I/O overhead. To overcome these limitations, we propose HeteroCache, a training-free dynamic compression framework. Our method is built on two key insights: attention heads exhibit diverse temporal heterogeneity, and there is significant spatial redundancy among heads within the same layer. Guided by these insights, HeteroCache categorizes heads based on stability and similarity, applying a fine-grained weighting strategy that allocates larger cache budgets to heads with rapidly shifting attention to capture context changes. Furthermore, it features a hierarchical storage mechanism where representative heads monitor attention drift to trigger asynchronous, on-demand context retrieval, thereby hiding I/O latency. Experiments demonstrate that HeteroCache achieves state-of-the-art performance on long-context benchmarks and accelerates decoding by up to $3\\times$ compared to the original model with a 224K context. Our code is available at https://github.com/ponytaill/HeteroCache.", "authors": ["Zhiyuan Shi", "Qibo Qiu", "Feng Xue", "Zhonglin Jiang", "Li Yu", "Jian Jiang", "Xiaofei He", "Wenxiao Wang"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-20", "url": "https://arxiv.org/abs/2601.13684", "pdf_url": "https://arxiv.org/pdf/2601.13684v2", "arxiv_id": "2601.13684", "doi": "10.48550/arXiv.2601.13684", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/ponytaill/HeteroCache", "venue": "arXiv.org", "quality_score": 0.6959} {"id": "70744c993cb0b5ba2c708aaf8fa3a0c729b8095ca53270e277409150805769fc", "sources": ["arxiv", "semantic_scholar"], "title": "ButterflyMoE: Sub-Linear Ternary Experts via Structured Butterfly Orbits", "abstract": "Linear memory scaling stores $N$ independent expert weight matrices requiring $\\mathcal{O}(N \\cdot d^2)$ memory, which exceeds edge devices memory budget. Current compression methods like quantization, pruning and low-rank factorization reduce constant factors but leave the scaling bottleneck unresolved. We introduce ButterflyMoE, a method that treats experts not as independent weight matrices but as geometric reorientations of a unified shared quantized substrate. Diversity among experts arises from viewing different angles of shared capacity, not from redundant storage. By applying learned rotations to a shared ternary prototype, each expert yields $\\mathcal{O}(d^2 + N \\cdot d \\log d)$ memory,sub-linear in the number of experts. The key insight: training these rotations with quantization reduces activation outliers and stabilizes extreme low bit training, where static methods collapse. Across language modeling benchmarks, ButterflyMoE achieves 150$\\times$ memory reduction at 256 experts with negligible accuracy loss. ButterflyMoE allows multiple experts to fit on edge-constrained devices showing that geometric parameterization breaks linear scaling.", "authors": ["Aryan Karmore"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-20", "url": "https://arxiv.org/abs/2601.13563", "pdf_url": "https://arxiv.org/pdf/2601.13563v4", "arxiv_id": "2601.13563", "doi": "10.48550/arXiv.2601.13563", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4503} {"id": "6a97a24e4c9fd18821d7cd4f4a68c7ba1cd98dc572ee3a5d5a35528f5b6cf709", "sources": ["arxiv", "semantic_scholar"], "title": "Topology-Aware Multiscale Mixture of Experts for Efficient Molecular Property Prediction", "abstract": "Many molecular properties depend on 3D geometry, where non-covalent interactions, stereochemical effects, and medium- to long-range forces are determined by spatial distances and angles that cannot be uniquely captured by a 2D bond graph. Yet most 3D molecular graph neural networks still rely on globally fixed neighborhood heuristics, typically defined by distance cutoffs and maximum neighbor limits, to define local message-passing neighborhoods, leading to rigid, data-agnostic interaction budgets. We propose Multiscale Interaction Mixture of Experts (MI-MoE) to adapt interaction modeling across geometric regimes. Our contributions are threefold: (1) we introduce a distance-cutoff expert ensemble that explicitly captures short-, mid-, and long-range interactions without committing to a single cutoff; (2) we design a topological gating encoder that routes inputs to experts using filtration-based descriptors, including persistent homology features, summarizing how connectivity evolves across radii; and (3) we show that MI-MoE is a plug-in module that consistently improves multiple strong 3D molecular backbones across diverse molecular and polymer property prediction benchmark datasets, covering both regression and classification tasks. These results highlight topology-aware multiscale routing as an effective principle for 3D molecular graph learning.", "authors": ["Long D. Nguyen", "Kelin Xia", "Binh P. Nguyen"], "categories": ["cs.LG", "cs.AI", "q-bio.QM"], "fields_of_study": ["Computer Science", "Biology"], "published_date": "2026-01-19", "url": "https://arxiv.org/abs/2601.12637", "pdf_url": "https://arxiv.org/pdf/2601.12637v1", "arxiv_id": "2601.12637", "doi": "10.48550/arXiv.2601.12637", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4492} {"id": "ff37156af496e86c77bd14a45cbcd519113d277b644f9aac5157b8287ad90c78", "sources": ["arxiv", "semantic_scholar"], "title": "Actionable Advice from Reviews via Mixture of LoRA Experts: A Two-LLM Pipeline for Issue Extraction and Business Recommendations", "abstract": "Customer reviews contain detailed, domain specific signals about service failures and user expectations, but converting this unstructured feedback into actionable business decisions remains difficult. We study review-to-action generation: producing concrete, implementable recommendations grounded in review text. We propose a modular two-LLM framework in which an Issue model extracts salient issues and assigns coarse themes, and an Advice model generates targeted operational fixes conditioned on the extracted issue representation. To enable specialization without expensive full fine-tuning, we adapt the Advice model using a mixture of LoRA experts strategy: multiple low-rank adapters are trained and a lightweight gating mechanism performs token-level expert mixing at inference, combining complementary expertise across issue types. We construct synthetic review-issue-advice triples from Yelp reviews (airlines and restaurants) to supervise training, and evaluate recommendations using an eight dimension operational rubric spanning actionability, specificity, feasibility, expected impact, novelty, non-redundancy, bias, and clarity. Across both domains, our approach consistently outperforms prompting-only and single-adapter baselines, yielding higher actionability and specificity while retaining favorable efficiency-quality trade-offs.", "authors": ["Kartikey Singh Bhandari", "Manav Ganesh", "Yashwant Viswanathan", "Archit Agrawal", "Dhruv Kumar", "Pratik Narang"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-18", "url": "https://arxiv.org/abs/2601.12338", "pdf_url": "https://arxiv.org/pdf/2601.12338v1", "arxiv_id": "2601.12338", "doi": "10.48550/arXiv.2601.12338", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.448} {"id": "572d07523ca3dd01391793fc2360a668d16b00f47f1a23554c34b0d01f48ac1f", "sources": ["arxiv", "semantic_scholar"], "title": "Learning Diverse Skills for Behavior Models with Mixture of Experts", "abstract": "Imitation learning has demonstrated strong performance in robotic manipulation by learning from large-scale human demonstrations. While existing models excel at single-task learning, it is observed in practical applications that their performance degrades in the multi-task setting, where interference across tasks leads to an averaging effect. To address this issue, we propose to learn diverse skills for behavior models with Mixture of Experts, referred to as Di-BM. Di-BM associates each expert with a distinct observation distribution, enabling experts to specialize in sub-regions of the observation space. Specifically, we employ energy-based models to represent expert-specific observation distributions and jointly train them alongside the corresponding action models. Our approach is plug-and-play and can be seamlessly integrated into standard imitation learning methods. Extensive experiments on multiple real-world robotic manipulation tasks demonstrate that Di-BM significantly outperforms state-of-the-art baselines. Moreover, fine-tuning the pretrained Di-BM on novel tasks exhibits superior data efficiency and the reusable of expert-learned knowledge. Code is available at https://github.com/robotnav-bot/Di-BM.", "authors": ["Wangtian Shen", "Jinming Ma", "Mingliang Zhou", "Ziyang Meng"], "categories": ["cs.RO"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-18", "url": "https://arxiv.org/abs/2601.12397", "pdf_url": "https://arxiv.org/pdf/2601.12397v1", "arxiv_id": "2601.12397", "doi": "10.48550/arXiv.2601.12397", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/robotnav-bot/Di-BM", "venue": "arXiv.org", "quality_score": 0.6924} {"id": "4a633722ab848010d8eddea89ed516e0ae257ab21164a41f334c5ccd38fb2c20", "sources": ["arxiv", "semantic_scholar"], "title": "EMoE: Eigenbasis-Guided Routing for Mixture-of-Experts", "abstract": "The relentless scaling of deep learning models has led to unsustainable computational demands, positioning Mixture-of-Experts (MoE) architectures as a promising path towards greater efficiency. However, MoE models are plagued by two fundamental challenges: 1) a load imbalance problem known as the``rich get richer\" phenomenon, where a few experts are over-utilized, and 2) an expert homogeneity problem, where experts learn redundant representations, negating their purpose. Current solutions typically employ an auxiliary load-balancing loss that, while mitigating imbalance, often exacerbates homogeneity by enforcing uniform routing at the expense of specialization. To resolve this, we introduce the Eigen-Mixture-of-Experts (EMoE), a novel architecture that leverages a routing mechanism based on a learned orthonormal eigenbasis. EMoE projects input tokens onto this shared eigenbasis and routes them based on their alignment with the principal components of the feature space. This principled, geometric partitioning of data intrinsically promotes both balanced expert utilization and the development of diverse, specialized experts, all without the need for a conflicting auxiliary loss function. Our code is publicly available at https://github.com/Belis0811/EMoE.", "authors": ["Anzhe Cheng", "Shukai Duan", "Shixuan Li", "Chenzhong Yin", "Mingxi Cheng", "Shahin Nazarian", "Paul Thompson", "Paul Bogdan"], "categories": ["cs.LG", "cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-17", "url": "https://arxiv.org/abs/2601.12137", "pdf_url": "https://arxiv.org/pdf/2601.12137v1", "arxiv_id": "2601.12137", "doi": "10.48550/arXiv.2601.12137", "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/Belis0811/EMoE", "venue": "IEEE International Conference on Acoustics, Speech, and Signal Processing", "quality_score": 0.6906} {"id": "1f6ee9eeb79bac95fe2c8633686439b3fe4c4f13ff649bee7d5fa3de9bc75cf6", "sources": ["arxiv", "semantic_scholar"], "title": "MoST: Mixing Speech and Text with Modality-Aware Mixture of Experts", "abstract": "We present MoST (Mixture of Speech and Text), a novel multimodal large language model that seamlessly integrates speech and text processing through our proposed Modality-Aware Mixture of Experts (MAMoE) architecture. While current multimodal models typically process diverse modality representations with identical parameters, disregarding their inherent representational differences, we introduce specialized routing pathways that direct tokens to modality-appropriate experts based on input type. MAMoE simultaneously enhances modality-specific learning and cross-modal understanding through two complementary components: modality-specific expert groups that capture domain-specific patterns and shared experts that facilitate information transfer between modalities. Building on this architecture, we develop an efficient transformation pipeline that adapts the pretrained MoE language model through strategic post-training on ASR and TTS datasets, followed by fine-tuning with a carefully curated speech-text instruction dataset. A key feature of this pipeline is that it relies exclusively on fully accessible, open-source datasets to achieve strong performance and data efficiency. Comprehensive evaluations across ASR, TTS, audio language modeling, and spoken question answering benchmarks show that MoST consistently outperforms existing models of comparable parameter counts. Our ablation studies confirm that the modality-specific routing mechanism and shared experts design significantly contribute to performance gains across all tested domains. To our knowledge, MoST represents the first fully open-source speech-text LLM built on a Mixture of Experts architecture. \\footnote{We release MoST model, training code, inference code, and training data at https://github.com/NUS-HPC-AI-Lab/MoST", "authors": ["Yuxuan Lou", "Kai Yang", "Yang You"], "categories": ["cs.CL", "cs.AI", "cs.LG", "cs.SD"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-15", "url": "https://arxiv.org/abs/2601.10272", "pdf_url": "https://arxiv.org/pdf/2601.10272v1", "arxiv_id": "2601.10272", "doi": "10.48550/arXiv.2601.10272", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/NUS-HPC-AI-Lab/MoST", "venue": "arXiv.org", "quality_score": 0.6871} {"id": "461b0c4022e647115e3a9acb07091ca072385b778a513e5a94053144545ab327", "sources": ["arxiv", "semantic_scholar"], "title": "LOOKAT: Lookup-Optimized Key-Attention for Memory-Efficient Transformers", "abstract": "Compressing the KV cache is a required step to deploy large language models on edge devices. Current quantization methods compress storage but fail to reduce bandwidth as attention calculation requires dequantizing keys from INT4/INT8 to FP16 before use. We observe that attention scoring is mathematically equivalent to the inner product similarity search and we can apply some compression techniques from vector databases to compress KV-cache better. We propose LOOKAT, which applies product quantization and asymmetric distance computation, to transformer architecture by decomposing key vectors into subspaces, learning codebooks and computing attention tables via lookup tables. This transforms attention from memory-bound to compute-bound. LOOKAT achieves 64 $\\times$ compression at 95.7\\% output fidelity and 32 $\\times$ compression at 95.0\\% fidelity when tested on GPT-2. LOOKAT requires no architecture changes or training while maintaining rank correlation $ρ> 0.95$. Theoretical analysis confirms that rank correlation degrades as $O(d_k/mK)$, with guarantees validated across sequence lengths up to 1024 tokens.", "authors": ["Aryan Karmore"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-15", "url": "https://arxiv.org/abs/2601.10155", "pdf_url": "https://arxiv.org/pdf/2601.10155v1", "arxiv_id": "2601.10155", "doi": "10.48550/arXiv.2601.10155", "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4446} {"id": "fe13e99e36545b2df993d7bb01ea5b52cbdcceb71c6bb4c3b916acb1bb30027f", "sources": ["arxiv", "semantic_scholar"], "title": "Horseshoe Mixtures-of-Experts (HS-MoE)", "abstract": "Horseshoe mixtures-of-experts (HS-MoE) models provide a Bayesian framework for sparse expert selection in mixture-of-experts architectures. We combine the horseshoe prior's adaptive global-local shrinkage with input-dependent gating, yielding data-adaptive sparsity in expert usage. Our primary methodological contribution is a particle learning algorithm for sequential inference, in which the filter is propagated forward in time while tracking only sufficient statistics. We also discuss how HS-MoE relates to modern mixture-of-experts layers in large language models, which are deployed under extreme sparsity constraints (e.g., activating a small number of experts per token out of a large pool).", "authors": ["Nick Polson", "Vadim Sokolov"], "categories": ["stat.ML", "cs.LG"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2026-01-14", "url": "https://arxiv.org/abs/2601.09043", "pdf_url": "https://arxiv.org/pdf/2601.09043v1", "arxiv_id": "2601.09043", "doi": "10.48550/arXiv.2601.09043", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4434} {"id": "9638d74686276314e06363a454a114ae50b9a2f8600cdf8898d6b3749f4b1b6d", "sources": ["arxiv", "semantic_scholar"], "title": "On the Limits of Learned Importance Scoring for KV Cache Compression", "abstract": "We investigate learned KV cache compression through Speculative Importance Prediction (SIP), a 1.7M parameter non-query-aware scorer that predicts token importance from KV representations alone. Despite architectural sophistication (multi-horizon lookahead, cross-attention), SIP does not outperform simple baselines, including random selection, across 5 seeds, 4 retention levels, and 3 tasks. Key findings: (1) position-based heuristics (keep first 4 + last N tokens) match or exceed learned approaches; (2) prefill attention provides equivalent signal to complex learned scorers; (3) marginal information in KV representations beyond position and prefill attention appears limited for importance prediction. We hypothesize that circular dependence between future queries and generation trajectories contributes to this difficulty.", "authors": ["Brady Steele"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-13", "url": "https://arxiv.org/abs/2601.14279", "pdf_url": "https://arxiv.org/pdf/2601.14279v1", "arxiv_id": "2601.14279", "doi": "10.48550/arXiv.2601.14279", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4423} {"id": "309e623ed4fae58053636be06004c77eea28addddf38823d9f06140138092b0a", "sources": ["arxiv", "semantic_scholar"], "title": "TableCache: Primary Foreign Key Guided KV Cache Precomputation for Low Latency Text-to-SQL", "abstract": "In Text-to-SQL tasks, existing LLM-based methods often include extensive database schemas in prompts, leading to long context lengths and increased prefilling latency. While user queries typically focus on recurrent table sets-offering an opportunity for KV cache sharing across queries-current inference engines, such as SGLang and vLLM, generate redundant prefix cache copies when processing user queries with varying table orders. To address this inefficiency, we propose precomputing table representations as KV caches offline and querying the required ones online. A key aspect of our approach is the computation of table caches while preserving primary foreign key relationships between tables. Additionally, we construct a Table Trie structure to facilitate efficient KV cache lookups during inference. To enhance cache performance, we introduce a cache management system with a query reranking strategy to improve cache hit rates and a computation loading pipeline for parallelizing model inference and cache loading. Experimental results show that our proposed TableCache achieves up to a 3.62x speedup in Time to First Token (TTFT) with negligible performance degradation.", "authors": ["Jinbo Su", "Yuxuan Hu", "Cuiping Li", "Hong Chen", "Jia Li", "Lintao Ma", "Jing Zhang"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-13", "url": "https://arxiv.org/abs/2601.08743", "pdf_url": "https://arxiv.org/pdf/2601.08743v1", "arxiv_id": "2601.08743", "doi": "10.48550/arXiv.2601.08743", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4423} {"id": "0f2b022fd563bcb9eb39d7c6ef95b68a073fc26064b4b25bd3f643aaa125db7e", "sources": ["arxiv", "semantic_scholar"], "title": "When KV Cache Reuse Fails in Multi-Agent Systems: Cross-Candidate Interaction is Crucial for LLM Judges", "abstract": "Multi-agent LLM systems routinely generate multiple candidate responses that are aggregated by an LLM judge. To reduce the dominant prefill cost in such pipelines, recent work advocates KV cache reuse across partially shared contexts and reports substantial speedups for generation agents. In this work, we show that these efficiency gains do not transfer uniformly to judge-centric inference. Across GSM8K, MMLU, and HumanEval, we find that reuse strategies that are effective for execution agents can severely perturb judge behavior: end-task accuracy may appear stable, yet the judge's selection becomes highly inconsistent with dense prefill. We quantify this risk using Judge Consistency Rate (JCR) and provide diagnostics showing that reuse systematically weakens cross-candidate attention, especially for later candidate blocks. Our ablation further demonstrates that explicit cross-candidate interaction is crucial for preserving dense-prefill decisions. Overall, our results identify a previously overlooked failure mode of KV cache reuse and highlight judge-centric inference as a distinct regime that demands dedicated, risk-aware system design.", "authors": ["Sichu Liang", "Zhenglin Wang", "Jiajia Chu", "Pengfei Xia", "Hui Zang", "Deyu Zhou"], "categories": ["cs.MA", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-13", "url": "https://arxiv.org/abs/2601.08343", "pdf_url": "https://arxiv.org/pdf/2601.08343v1", "arxiv_id": "2601.08343", "doi": "10.48550/arXiv.2601.08343", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4423} {"id": "7679f13beec95e066bcd457f343856e5a5fa9bc71fcb812d885f8afe5955e4e4", "sources": ["arxiv", "semantic_scholar"], "title": "KVzap: Fast, Adaptive, and Faithful KV Cache Pruning", "abstract": "Growing context lengths in transformer-based language models have made the key-value (KV) cache a critical inference bottleneck. While many KV cache pruning methods have been proposed, they have not yet been adopted in major inference engines due to speed--accuracy trade-offs. We introduce KVzap, a fast, input-adaptive approximation of KVzip that works in both prefilling and decoding. On Qwen3-8B, Llama-3.1-8B-Instruct, and Qwen3-32B across long-context and reasoning tasks, KVzap achieves $2$--$4\\times$ KV cache compression with negligible accuracy loss and achieves state-of-the-art performance on the KVpress leaderboard. Code and models are available at https://github.com/NVIDIA/kvpress.", "authors": ["Simon Jegou", "Maximilian Jeblick"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-12", "url": "https://arxiv.org/abs/2601.07891", "pdf_url": "https://arxiv.org/pdf/2601.07891v2", "arxiv_id": "2601.07891", "doi": "10.48550/arXiv.2601.07891", "citation_count": 8, "influential_citation_count": 1, "has_code": true, "code_url": "https://github.com/NVIDIA/kvpress", "venue": "arXiv.org", "quality_score": 0.6818} {"id": "7278e81ef9098d766f6d3acb7d2db59e9d11c200a2689c31cedf8960958d2031", "sources": ["arxiv", "semantic_scholar"], "title": "Gated Sparse Attention: Combining Computational Efficiency with Training Stability for Long-Context Language Models", "abstract": "The computational burden of attention in long-context language models has motivated two largely independent lines of work: sparse attention mechanisms that reduce complexity by attending to selected tokens, and gated attention variants that improve training sta-bility while mitigating the attention sink phenomenon. We observe that these approaches address complementary weaknesses and propose Gated Sparse Attention (GSA), an architecture that realizes the benefits of both. GSA incorporates a gated lightning indexer with sigmoid activations that produce bounded, interpretable selection scores, an adaptive sparsity controller that modulates the number of attended tokens based on local uncertainty, and dual gating at the value and output stages. We establish theoretical foundations for the approach, including complexity analysis, expressiveness results, and convergence guarantees. In experiments with 1.7B parameter models trained on 400B tokens, GSA matches the efficiency of sparse-only baselines (12-16x speedup at 128K context) while achieving the quality gains associated with gated attention: perplexity improves from 6.03 to 5.70, RULER scores at 128K context nearly double, and attention to the first token, a proxy for attention sinks, drops from 47% to under 4%. Training stability improves markedly, with loss spikes reduced by 98%.", "authors": ["Alfred Shen", "Aaron Shen"], "categories": ["cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-12", "url": "https://arxiv.org/abs/2601.15305", "pdf_url": "https://arxiv.org/pdf/2601.15305v1", "arxiv_id": "2601.15305", "doi": "10.48550/arXiv.2601.15305", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4411} {"id": "2335fbd3edc9bf03c67ea4a649574dd28723e6a546600eedc48599d7efc34084", "sources": ["arxiv", "semantic_scholar"], "title": "Adaptive Layer Selection for Layer-Wise Token Pruning in LLM Inference", "abstract": "Due to the prevalence of large language models (LLMs), key-value (KV) cache reduction for LLM inference has received remarkable attention. Among numerous works that have been proposed in recent years, layer-wise token pruning approaches, which select a subset of tokens at particular layers to retain in KV cache and prune others, are one of the most popular schemes. They primarily adopt a set of pre-defined layers, at which tokens are selected. Such design is inflexible in the sense that the accuracy significantly varies across tasks and deteriorates in harder tasks such as KV retrieval. In this paper, we propose ASL, a training-free method that adaptively chooses the selection layer for KV cache reduction, exploiting the variance of token ranks ordered by attention score. The proposed method balances the performance across different tasks while meeting the user-specified KV budget requirement. ASL operates during the prefilling stage and can be jointly used with existing KV cache reduction methods such as SnapKV to optimize the decoding stage. By evaluations on the InfiniteBench, RULER, and NIAH benchmarks, we show that ASL, equipped with one-shot token selection, adaptively trades inference speed for accuracy, outperforming state-of-the-art layer-wise token pruning methods in difficult tasks.", "authors": ["Rei Taniguchi", "Yuyang Dong", "Makoto Onizuka", "Chuan Xiao"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-12", "url": "https://arxiv.org/abs/2601.07667", "pdf_url": "https://arxiv.org/pdf/2601.07667v2", "arxiv_id": "2601.07667", "doi": "10.48550/arXiv.2601.07667", "citation_count": 2, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/TANIGUCHIREI/ASL", "venue": "arXiv.org", "quality_score": 0.6818} {"id": "bf5c949f533fc8087422d933d85141d95c8329d7f287e32defbb7d2f9ce44aab", "sources": ["arxiv", "semantic_scholar"], "title": "CRAFT: Fine-Grained Cost-Aware Expert Replication For Efficient Mixture-of-Experts Serving", "abstract": "Mixture-of-Experts (MoE) has recently emerged as the mainstream architecture for efficiently scaling large language models while maintaining near-constant computational cost. Expert parallelism distributes parameters by partitioning experts across devices, but this introduces token-level load imbalance during inference. Expert replication is a widely adopted load-balancing technique in serving frameworks that alleviates load imbalance in large-scale deployments by replicating experts with high loads. In this work, we demonstrate that existing replication schemes often over-replicate, with many replicas providing marginal improvement. Replicas consume substantial GPU memory, which may lead to resource contention and throughput degradation. We present CRAFT, an efficient expert replication framework that maximizes load balance under a given memory budget by performing fine-grained, per-layer replication based on the estimated replication benefit. CRAFT can be seamlessly integrated into existing serving frameworks without any additional training or model changes. Our evaluation shows that CRAFT increases end-to-end serving throughput by $1.14\\times$ on average (up to $1.2\\times$) over existing replication techniques in large-scale deployments with models ranging from hundreds of billions to a trillion parameters.", "authors": ["Adrian Zhao", "Zhenkun Cai", "Zhenyu Song", "Lingfan Yu", "Haozheng Fan", "Jun Wu", "Yida Wang", "Nandita Vijaykumar"], "categories": ["cs.DC", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-12", "url": "https://arxiv.org/abs/2603.28768", "pdf_url": "https://arxiv.org/pdf/2603.28768v2", "arxiv_id": "2603.28768", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "Proceedings of the Ninth Conference on Machine Learning and Systems (MLSys 2026)", "quality_score": 0.4411} {"id": "227b992a7adae049cfc6ee4ab94f38db76e1176c2a19c0eb73cebe93c0c6a499", "sources": ["arxiv", "semantic_scholar"], "title": "Towards Specialized Generalists: A Multi-Task MoE-LoRA Framework for Domain-Specific LLM Adaptation", "abstract": "The rapid evolution of Large Language Models (LLMs) has shifted focus from general-purpose capabilities to domain-specific expertise. However, adapting LLMs to specialized fields such as medicine presents two challenge: (1) the \"Stability-Plasticity Dilemma\", where the model must acquire complex clinical knowledge without suffering from catastrophic forgetting of general world knowledge; and (2) \"Task Interference\", where disparate sub-tasks, such as medical diagnosis, report summarization, and drug-drug interaction prediction, compete for limited low-rank parameter space. In this paper, we propose Med-MoE-LoRA, a novel framework that integrates Mixture-of-Experts (MoE) with Low-Rank Adaptation (LoRA) to enable efficient multi-task domain adaptation, especially for medical scenarios. Drawing inspiration from recent advances, our framework employs an asymmetric expert distribution where deeper layers are equipped with a higher density of LoRA experts to capture complex semantic abstractions. We further introduce a \"Knowledge-Preservation Plugin\", inspired by LoRA MoE, to isolate and protect general-purpose reasoning. By utilizing soft merging with adaptive routing and rank-wise decoupling, Med-MoE-LoRA achieves superior performance in medical benchmarks while reducing interference. Experimental results demonstrate that our approach consistently outperforms standard LoRA and conventional MoE architectures across multiple clinical NLP tasks while retaining the model's general cognitive capabilities.", "authors": ["Yuxin Yang", "Aoxiong Zeng", "Xiangquan Yang"], "categories": ["cs.LG", "cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-12", "url": "https://arxiv.org/abs/2601.07935", "pdf_url": "https://arxiv.org/pdf/2601.07935v1", "arxiv_id": "2601.07935", "doi": "10.48550/arXiv.2601.07935", "citation_count": 4, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4411} {"id": "2ede4dec107d0bf7f40531254415bc3119f9e631585fcd9105914f577db10f31", "sources": ["arxiv", "semantic_scholar"], "title": "Garbage Attention in Large Language Models: BOS Sink Heads and Sink-aware Pruning", "abstract": "Large Language Models (LLMs) are known to contain significant redundancy, yet a systematic explanation for why certain components, particularly in higher layers, are more redundant has remained elusive. In this work, we identify the BOS sink phenomenon as a key mechanism driving this layer-wise sensitivity. We show that attention heads with high BOS sink scores are strongly associated with functional redundancy: such heads, especially in deeper layers, contribute little to predictive performance and effectively serve as \\emph{dumping grounds} for superfluous attention weights. This provides a concrete functional explanation for the structural redundancy reported in prior studies. Leveraging this insight, we introduce a simple pruning strategy that removes high-BOS sink heads. Experiments on Gemma-3, Llama-3.1, and Qwen3 demonstrate that this approach identifies redundant transformer components more reliably than weight- or activation-based criteria, while preserving performance close to dense baselines even under aggressive pruning. Moreover, we find that the behavior of sink heads remains stable across different sequence lengths. Overall, our results suggest that structural properties of attention offer a more intuitive and robust basis for model compression than magnitude-based methods.", "authors": ["Jaewon Sok", "Jewon Yeom", "Seonghyeon Park", "Jeongjae Park", "Taesup Kim"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-11", "url": "https://arxiv.org/abs/2601.06787", "pdf_url": "https://arxiv.org/pdf/2601.06787v1", "arxiv_id": "2601.06787", "doi": "10.48550/arXiv.2601.06787", "citation_count": 8, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.44} {"id": "4df1244db8a0122524ad699eb57bc3ed7ace11d10ad3e529ee38d18abfbbfb74", "sources": ["arxiv", "semantic_scholar"], "title": "MoE-DisCo:Low Economy Cost Training Mixture-of-Experts Models", "abstract": "Training large-scale Mixture-of-Experts (MoE) models typically requires high-memory, high-bandwidth GPUs (e.g., A100), and their high cost has become a major barrier to large-model training. In contrast, affordable hardware is low-cost but constrained by memory capacity and bandwidth, making it unsuitable for direct LLM training. To address this, we propose MoE-DisCo (Mixture-of-Experts with Disentangled Clustering and Coordination), a staged training framework. MoE-DisCo decomposes the MoE model into multiple dense submodels, each consisting of a shared backbone and a single expert, and partitions the training data into subsets using unsupervised clustering. Each submodel is trained independently and in parallel on its assigned data subset using low-cost devices, without any inter-device communication. Subsequently, all experts are integrated into a complete MoE model and fine-tuned globally for a short period on high-memory, high-bandwidth GPUs. Experiments show that our method matches or even surpasses full-parameter training in performance across multiple downstream tasks, loss function, and perplexity (PPL), while reducing training cost by 47.6 percent to 69.5 percent on Qwen1.5-MoE-2.7B and Llama-MoE-3.5B across different datasets.", "authors": ["Xin Ye", "Daning Cheng", "Boyang Zhang", "Yunquan Zhang"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-11", "url": "https://arxiv.org/abs/2601.06857", "pdf_url": "https://arxiv.org/pdf/2601.06857v1", "arxiv_id": "2601.06857", "doi": "10.48550/arXiv.2601.06857", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.44} {"id": "11fda8ee4e298601be74a27e34af4486a70bada98da0b30a912e5de3e911023e", "sources": ["arxiv", "semantic_scholar"], "title": "GRASP LoRA: GRPO Guided Adapter Sparsity Policy for Cross Lingual Transfer", "abstract": "Parameter efficient fine tuning is a way to adapt LLMs to new languages when compute or data are limited, yet adapter pipelines usually choose a global prune ratio by grid search. This practice is computationally expensive and development set intensive, since it repeats training, freezes sparsity, and misses fractional optima. We introduce GRASP LoRA (GRPO Guided Adapter Sparsity Policy), which treats global sparsity as a learnable control variable. A GRPO controller interleaves with training, periodically probing candidate prune ratios on a small micro development set and updating a single global prune ratio online from its reward signal. It operates on merged source and target LoRA adapters on a frozen backbone and replaces grid search with one controller run that learns a prune ratio, followed by a single final merge and prune fine tuning run with pruning fixed to that ratio. On cross lingual transfer from English into Arabic and Chinese, including XL-Sum summarization and MLQA extractive question answering with Llama 3 8B, GRASP LoRA improves semantic faithfulness, content coverage, and answer quality over strong target only and merge and prune baselines. It reduces end to end runtime by multiple times relative to grid search, lowers reliance on large development sets, and makes adapter reuse practical for low resource deployment.", "authors": ["Besher Hassan", "Xiuying Chen"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-10", "url": "https://arxiv.org/abs/2601.06702", "pdf_url": "https://arxiv.org/pdf/2601.06702v1", "arxiv_id": "2601.06702", "doi": "10.48550/arXiv.2601.06702", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4389} {"id": "0d75bba4777a3dc8c4749fb4b874c039990d3d0fd1f10a47d814e0b3f2614bd3", "sources": ["arxiv", "semantic_scholar"], "title": "DR-LoRA: Dynamic Rank LoRA for Fine-Tuning Mixture-of-Experts Models", "abstract": "Mixture-of-Experts (MoE) has become a prominent paradigm for scaling Large Language Models (LLMs). Parameter-efficient fine-tuning methods, such as LoRA, are widely adopted to adapt pretrained MoE LLMs to downstream tasks. However, existing approaches typically assign identical LoRA ranks to all expert modules, ignoring the heterogeneous specialization of pretrained experts. This uniform allocation leads to a resource mismatch: task-relevant experts are under-provisioned, while less relevant ones receive redundant parameters. To address this, we propose DR-LoRA, a Dynamic Rank LoRA framework for fine-tuning pretrained MoE models. Specifically, DR-LoRA initializes all expert LoRA modules with a small active rank and uses an expert saliency score, which combines routing frequency and gradient-based rank importance, to identify which experts would benefit most from additional capacity. It then periodically expands the active ranks of the task-critical expert LoRA, progressively constructing a heterogeneous rank distribution tailored to the target task. Experiments on three MoE models across six tasks show that DR-LoRA consistently outperforms LoRA and other strong baselines, demonstrating that task-adaptive heterogeneous rank allocation is an effective strategy to improve active capacity utilization in MoE fine-tuning.", "authors": ["Guanzhi Deng", "Bo Li", "Ronghao Chen", "Xiujin Liu", "Zhuo Han", "Huacan Wang", "Lijie Wen", "Linqi Song"], "categories": ["cs.AI", "cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-08", "url": "https://arxiv.org/abs/2601.04823", "pdf_url": "https://arxiv.org/pdf/2601.04823v5", "arxiv_id": "2601.04823", "doi": null, "citation_count": 2, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.2778} {"id": "24b48fce1400d4ff75434ce96c84936a8cc4a73eeb3c9f463d5b63120880d4a6", "sources": ["arxiv", "semantic_scholar"], "title": "GPU-Accelerated INT8 Quantization for KV Cache Compression in Large Language Models", "abstract": "The key-value (KV) cache in large language models presents a significant memory bottleneck during inference, growing linearly with sequence length and often exceeding the memory footprint of model weights themselves. We implement and evaluate GPU-accelerated INT8 quantization for KV cache compression, achieving 4$\\times$ memory reduction with minimal accuracy degradation. We develop four CUDA kernel variants -- naive, tiled, coarsened, and vectorized -- and benchmark them across realistic workload sizes up to 1 billion elements. Our vectorized kernel achieves up to 1,694$\\times$ speedup over CPU baselines while maintaining reconstruction error below 0.004 and attention score error below 0.1 even for 8K-dimensional heads. These results demonstrate that INT8 quantization provides a practical approach for reducing memory pressure in LLM inference with negligible computational overhead (6--58ms) and minimal impact on downstream model behavior", "authors": ["Maanas Taneja", "Purab Shingvi"], "categories": ["cs.LG", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-08", "url": "https://arxiv.org/abs/2601.04719", "pdf_url": "https://arxiv.org/pdf/2601.04719v1", "arxiv_id": "2601.04719", "doi": "10.48550/arXiv.2601.04719", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4366} {"id": "d941441e02bd676da27ea312f2996241f10597eb8dacbf6fc83c261d26dbe990", "sources": ["arxiv", "semantic_scholar"], "title": "PackCache: A Training-Free Acceleration Method for Unified Autoregressive Video Generation via Compact KV-Cache", "abstract": "A unified autoregressive model is a Transformer-based framework that addresses diverse multimodal tasks (e.g., text, image, video) as a single sequence modeling problem under a shared token space. Such models rely on the KV-cache mechanism to reduce attention computation from O(T^2) to O(T); however, KV-cache size grows linearly with the number of generated tokens, and it rapidly becomes the dominant bottleneck limiting inference efficiency and generative length. Unified autoregressive video generation inherits this limitation. Our analysis reveals that KV-cache tokens exhibit distinct spatiotemporal properties: (i) text and conditioning-image tokens act as persistent semantic anchors that consistently receive high attention, and (ii) attention to previous frames naturally decays with temporal distance. Leveraging these observations, we introduce PackCache, a training-free KV-cache management method that dynamically compacts the KV cache through three coordinated mechanisms: condition anchoring that preserves semantic references, cross-frame decay modeling that allocates cache budget according to temporal distance, and spatially preserving position embedding that maintains coherent 3D structure under cache removal. In terms of efficiency, PackCache accelerates end-to-end generation by 1.7-2.2x on 48-frame long sequences, showcasing its strong potential for enabling longer-sequence video generation. Notably, the final four frames - the portion most impacted by the progressively expanding KV-cache and thus the most expensive segment of the clip - PackCache delivers a 2.6x and 3.7x acceleration on A40 and H200, respectively, for 48-frame videos.", "authors": ["Kunyang Li", "Mubarak Shah", "Yuzhang Shang"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-07", "url": "https://arxiv.org/abs/2601.04359", "pdf_url": "https://arxiv.org/pdf/2601.04359v1", "arxiv_id": "2601.04359", "doi": "10.48550/arXiv.2601.04359", "citation_count": 4, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4354} {"id": "5862837f2413b6b23e203d7b1e27d33df72c9a3aa77a388f95e8e54fcd4e8e53", "sources": ["arxiv", "semantic_scholar"], "title": "Joint Encoding of KV-Cache Blocks for Scalable LLM Serving", "abstract": "Modern large language models (LLMs) drive interactive AI systems but are bottlenecked by the memory-heavy growth of key-value (KV) caches, which limits real-time throughput under concurrent loads. Existing KV-cache compression methods rely on rigid heuristics, disrupt tensor layouts, or require specialized compute, hindering scalability and deployment. We propose joint encoding of KV-cache blocks, which fuses similar blocks across requests and input chunks into shared representations while preserving standard cache structure. This alleviates the KV-cache memory bottleneck, supporting high-concurrency serving without specialized hardware. Theoretically, we analyze the rate-distortion tradeoff of fused cache blocks under a Poisson process model. Empirically, our method achieves up to 4.38 $\\times$ KV-cache compression with negligible accuracy loss across diverse LLMs and benchmarks, outperforming recent structured and adaptive compression baselines. In real LLM serving, joint encoding improves the token throughput by $\\sim$40\\% on a single-machine vLLM benchmark, demonstrating substantial gains in inference throughput. Code is available at https://github.com/sef1/kv_fast_fusion kv_joint_encoding.", "authors": ["Joseph Kampeas", "Emir Haleva"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-06", "url": "https://arxiv.org/abs/2601.03067", "pdf_url": "https://arxiv.org/pdf/2601.03067v1", "arxiv_id": "2601.03067", "doi": "10.48550/arXiv.2601.03067", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/sef1/kv_fast_fusion", "venue": "arXiv.org", "quality_score": 0.6711} {"id": "35c4f2959d11dbef4a63e53095ad74e88bd0656e7f7c94aff7cd4a3183690a2e", "sources": ["arxiv", "semantic_scholar"], "title": "The Illusion of Specialization: Unveiling the Domain-Invariant \"Standing Committee\" in Mixture-of-Experts Models", "abstract": "Mixture of Experts models are widely assumed to achieve domain specialization through sparse routing. In this work, we question this assumption by introducing COMMITTEEAUDIT, a post hoc framework that analyzes routing behavior at the level of expert groups rather than individual experts. Across three representative models and the MMLU benchmark, we uncover a domain-invariant Standing Committee. This is a compact coalition of routed experts that consistently captures the majority of routing mass across domains, layers, and routing budgets, even when architectures already include shared experts. Qualitative analysis further shows that Standing Committees anchor reasoning structure and syntax, while peripheral experts handle domain-specific knowledge. These findings reveal a strong structural bias toward centralized computation, suggesting that specialization in Mixture of Experts models is far less pervasive than commonly believed. This inherent bias also indicates that current training objectives, such as load-balancing losses that enforce uniform expert utilization, may be working against the model's natural optimization path, thereby limiting training efficiency and performance.", "authors": ["Yan Wang", "Yitao Xu", "Nanhan Shen", "Jinyan Su", "Jimin Huang", "Zining Zhu"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-06", "url": "https://arxiv.org/abs/2601.03425", "pdf_url": "https://arxiv.org/pdf/2601.03425v2", "arxiv_id": "2601.03425", "doi": "10.48550/arXiv.2601.03425", "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4343} {"id": "a722e3112d9fae4c862b16de66f53b283e2fce7244bef960ef18de12303bbeee", "sources": ["arxiv", "semantic_scholar"], "title": "Spectral-Efficient LoRa with Low Complexity Detection", "abstract": "In this paper, we propose a spectral-efficient LoRa (SE-LoRa) modulation scheme with a low complexity successive interference cancellation (SIC)-based detector. The proposed communication scheme significantly improves the spectral efficiency of LoRa modulation, while achieving an acceptable error performance compared to conventional LoRa modulation, especially in higher spreading factor (SF) settings. We derive the joint maximum likelihood (ML) detection rule for the SE-LoRa transmission scheme that turns out to be of high computational complexity. To overcome this issue, and by exploiting the frequency-domain characteristics of the dechirped SE-LoRa signal, we propose a low complexity SIC-based detector with a computation complexity at the order of conventional LoRa detection. By computer simulations, we show that the proposed SE-LoRa with low complexity SIC-based detector can improve the spectral efficiency of LoRa modulation up to $445.45\\%$, $1011.11\\%$, and $1071.88\\%$ for SF values of $7$, $9$, and $11$, respectively, while maintaining the error performance within less than $3$ dB of conventional LoRa at symbol error rate (SER) of $10^{-3}$ in Rician channel conditions.", "authors": ["Alireza Maleki", "Ebrahim Bedeer", "Robert Barton"], "categories": ["eess.SP"], "fields_of_study": ["Engineering"], "published_date": "2026-01-06", "url": "https://arxiv.org/abs/2601.03148", "pdf_url": "https://arxiv.org/pdf/2601.03148v1", "arxiv_id": "2601.03148", "doi": "10.1109/jiot.2026.3685102", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "IEEE Internet of Things Journal", "quality_score": 0.4343} {"id": "0793cfd42f30de28a24dc2d064667b87e7c9c4743adc988cda85de9f8339359b", "sources": ["arxiv", "semantic_scholar"], "title": "Crystal-KV: Efficient KV Cache Management for Chain-of-Thought LLMs via Answer-First Principle", "abstract": "Chain-of-Thought (CoT) reasoning in large language models (LLMs) significantly improves accuracy on complex tasks, yet incurs excessive memory overhead due to the long think-stage sequences stored in the Key-Value (KV) cache. Unlike traditional generation tasks where all tokens are uniformly important, CoT emphasizes the final answer, rendering conventional KV compression strategies ineffective. In this paper, we present Crystal-KV, an efficient KV cache management framework tailored for CoT reasoning. Our key insight is the answer-first principle. By mapping answer preferences into think-stage attention map, we distinguish between SlipKV, which mainly maintains the reasoning flow but may occasionally introduce misleading context, and CrystalKV, which truly contributes to the correctness of the final answer. Next, we propose an attention-based Least Recently Frequently Used algorithm. It precisely identifies when a SlipKV entry's utility expires and evicts it, retaining CrystalKV without disrupting reasoning flow. Finally, we introduce an adaptive cache budget allocation algorithm. Based on the dynamic proportion of CrystalKV, it estimates the importance of each layer/head and adjusts the KV cache budget during inference, amplifying critical components to improve budget utilization. Results show that Crystal-KV achieves state-of-the-art KV cache compression, significantly improves throughput, and enables faster response time, while maintaining, or even improving, answer accuracy for CoT reasoning.", "authors": ["Zihan Wang", "Cheng Tang", "Lei Gong", "Cheng Li", "Chao Wang", "teng wang", "Wenqi Lou", "Xuehai Zhou"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-05", "url": "https://arxiv.org/abs/2601.16986", "pdf_url": "https://arxiv.org/pdf/2601.16986v1", "arxiv_id": "2601.16986", "doi": "10.48550/arXiv.2601.16986", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4331} {"id": "d46349153a3709ab81f615bc8c6471466fdbf2a9fdd4931a6860ab4049b92ff2", "sources": ["arxiv", "semantic_scholar"], "title": "LoRA-Drop: Temporal LoRA Decoding for Efficient LLM Inference", "abstract": "Autoregressive large language models (LLMs) are bottlenecked by sequential decoding, where each new token typically requires executing all transformer layers. Existing dynamic-depth and layer-skipping methods reduce this cost, but often rely on auxiliary routing mechanisms or incur accuracy degradation when bypassed layers are left uncompensated. We present \\textbf{LoRA-Drop}, a plug-and-play inference framework that accelerates decoding by applying a \\emph{temporal compute schedule} to a fixed subset of intermediate layers: on most decoding steps, selected layers reuse the previous-token hidden state and apply a low-rank LoRA correction, while periodic \\emph{refresh} steps execute the full model to prevent drift. LoRA-Drop requires no routing network, is compatible with standard KV caching, and can reduce KV-cache footprint by skipping KV updates in droppable layers during LoRA steps and refreshing periodically. Across \\textbf{LLaMA2-7B}, \\textbf{LLaMA3-8B}, \\textbf{Qwen2.5-7B}, and \\textbf{Qwen2.5-14B}, LoRA-Drop achieves up to \\textbf{2.6$\\times$ faster decoding} and \\textbf{45--55\\% KV-cache reduction} while staying within \\textbf{0.5 percentage points (pp)} of baseline accuracy. Evaluations on reasoning (GSM8K, MATH, BBH), code generation (HumanEval, MBPP), and long-context/multilingual benchmarks (LongBench, XNLI, XCOPA) identify a consistent \\emph{safe zone} of scheduling configurations that preserves quality while delivering substantial efficiency gains, providing a simple path toward adaptive-capacity inference in LLMs. Codes are available at https://github.com/hosseinbv/LoRA-Drop.git.", "authors": ["Hossein Rajabzadeh", "Maryam Dialameh", "Chul B. Park", "Il-Min Kim", "Hyock Ju Kwon"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-05", "url": "https://arxiv.org/abs/2601.02569", "pdf_url": "https://arxiv.org/pdf/2601.02569v1", "arxiv_id": "2601.02569", "doi": "10.48550/arXiv.2601.02569", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/hosseinbv/LoRA-Drop.git", "venue": "arXiv.org", "quality_score": 0.6694} {"id": "4f97bbb9cf53ca2374dbe1a6ba2889c93f0d7ce4dcc74752ad96c83d6c62afb1", "sources": ["arxiv", "semantic_scholar"], "title": "Varying-Coefficient Mixture of Experts Model", "abstract": "Mixture-of-Experts (MoE) is a flexible framework that combines multiple specialized submodels (``experts''), by assigning covariate-dependent weights (``gating functions'') to each expert, and have been commonly used for analyzing heterogeneous data. Existing statistical MoE formulations typically assume constant coefficients, for covariate effects within the expert or gating models, which can be inadequate for longitudinal, spatial, or other dynamic settings where covariate influences and latent subpopulation structure evolve across a known dimension. We propose a Varying-Coefficient Mixture of Experts (VCMoE) model that allows all coefficient effects in both the gating functions and expert models to vary along an indexing variable. We establish identifiability and consistency of the proposed model, and develop an estimation procedure, label-consistent EM algorithm, for both fully functional and hybrid specifications, along with the corresponding asymptotic distributions of the resulting estimators. For inference, simultaneous confidence bands are constructed using both asymptotic theory for the maximum discrepancy between the estimated functional coefficients and their true counterparts, and with bootstrap methods. In addition, a generalized likelihood ratio test is developed to examine whether a coefficient function is genuinely varying across the index variable. Simulation studies demonstrate good finite-sample performance, with acceptable bias and satisfactory coverage rates. We illustrate the proposed VCMoE model using a dataset of single nucleus gene expression in embryonic mice to characterize the temporal dynamics of the associations between the expression levels of genes Satb2 and Bcl11b across two latent cell subpopulations of neurons, yielding results that are consistent with prior findings.", "authors": ["Qicheng Zhao", "Celia M. T. Greenwood", "Qihuang Zhang"], "categories": ["stat.ME", "stat.ML"], "fields_of_study": ["Mathematics"], "published_date": "2026-01-05", "url": "https://arxiv.org/abs/2601.01699", "pdf_url": "https://arxiv.org/pdf/2601.01699v1", "arxiv_id": "2601.01699", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.2756} {"id": "0b29470a5ad9b1dc80b3cba48a59ac99bdc339dda8decc99c69186b3354e36da", "sources": ["arxiv", "semantic_scholar"], "title": "OrbitFlow: SLO-Aware Long-Context LLM Serving with Fine-Grained KV Cache Reconfiguration", "abstract": "Serving long-context LLMs is challenging because request lengths and batch composition vary during token generation, causing the memory footprint to fluctuate significantly at runtime. Offloading KV caches to host memory limits effective memory usage, but existing static and predetermined offloading strategies cannot adapt to the rapidly shifting memory demands of long-context serving. This often leads to excessive CPU-to-GPU KV transfers that translate into latency spikes and frequent SLO violations. To address these challenges, we introduce OrbitFlow, a fine-grained and adaptive KV cache management system that meets latency SLOs in long-context LLM serving. OrbitFlow employs a lightweight ILP solver to decide which layers' KV caches to retain on the GPU for each request, within memory capacity constraints. It continuously refines KV placements based on runtime feedback when the active plan becomes suboptimal during token generation. Under heavy load, OrbitFlow invokes a fallback mechanism to temporarily defer in-flight requests with large memory footprints, preserving overall SLO attainment. Our experiments demonstrate that OrbitFlow improves SLO attainment for TPOT and TBT by up to 66% and 48%, respectively, while reducing the 95th percentile latency by 38% and achieving up to 3.3x higher throughput compared to existing offloading methods.", "authors": ["Xinyue Ma", "Heelim Hong", "Taegeon Um", "Jongseop Lee", "Seoyeong Choy", "Woo-Yeon Lee", "Myeongjae Jeon"], "categories": ["cs.AI", "cs.LG", "cs.PF"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-05", "url": "https://arxiv.org/abs/2601.10729", "pdf_url": "https://arxiv.org/pdf/2601.10729v2", "arxiv_id": "2601.10729", "doi": "10.48550/arXiv.2601.10729", "citation_count": 5, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "Proceedings of the VLDB Endowment", "quality_score": 0.4331} {"id": "e741de7adc9cf1ffd1ce278f7d31e6d9107befa4ac8dd31a0352a5162858de1f", "sources": ["arxiv", "semantic_scholar"], "title": "Routing by Analogy: kNN-Augmented Expert Assignment for Mixture-of-Experts", "abstract": "Mixture-of-Experts (MoE) architectures scale large language models efficiently by employing a parametric ``router'' to dispatch tokens to a sparse subset of experts. Typically, this router is trained once and then frozen, rendering routing decisions brittle under distribution shifts. We address this limitation by introducing kNN-MoE, a retrieval-augmented routing framework that reuses locally optimal expert assignments from a memory of similar past cases. This memory is constructed offline by directly optimizing token-wise routing logits to maximize the likelihood on a reference set. Crucially, we use the average similarity of retrieved neighbors as a confidence-driven mixing coefficient, thus allowing the method to fall back to the frozen router when no relevant cases are found. Experiments show that kNN-MoE outperforms the zero-shot baseline and is competitive with computationally intensive supervised fine-tuning.", "authors": ["Boxuan Lyu", "Soichiro Murakami", "Hidetaka Kamigaito", "Peinan Zhang"], "categories": ["cs.CL", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-05", "url": "https://arxiv.org/abs/2601.02144", "pdf_url": "https://arxiv.org/pdf/2601.02144v2", "arxiv_id": "2601.02144", "doi": "10.48550/arXiv.2601.02144", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4331} {"id": "2277b39c6bcb8b417c07d4bc6e587225b78a5d02808b651fdd7246385dbf63de", "sources": ["arxiv", "semantic_scholar"], "title": "XStreamVGGT: Extremely Memory-Efficient Streaming Vision Geometry Grounded Transformer with KV Cache Compression", "abstract": "Learning-based 3D visual geometry models have benefited substantially from large-scale transformers. Among these, StreamVGGT leverages frame-wise causal attention for strong streaming reconstruction, but suffers from unbounded KV cache growth, leading to escalating memory consumption and inference latency as input frames accumulate. We propose XStreamVGGT, a tuning-free approach that systematically compresses the KV cache through joint pruning and quantization, enabling extremely memory-efficient streaming inference. Specifically, redundant KVs originating from multi-view inputs are pruned through efficient token importance identification, enabling a fixed memory budget. Leveraging the unique distribution of KV tensors, we incorporate KV quantization to further reduce memory consumption. Extensive evaluations show that XStreamVGGT achieves mostly negligible performance degradation while substantially reducing memory usage by 4.42$\\times$ and accelerating inference by 5.48$\\times$, enabling scalable and practical streaming 3D applications. The code is available at https://github.com/ywh187/XStreamVGGT/.", "authors": ["Zunhai Su", "Weihao Ye", "Hansen Feng", "Keyu Fan", "Jing Zhang", "Dahai Yu", "Zhengwu Liu", "Ngai Wong"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-03", "url": "https://arxiv.org/abs/2601.01204", "pdf_url": "https://arxiv.org/pdf/2601.01204v1", "arxiv_id": "2601.01204", "doi": "10.48550/arXiv.2601.01204", "citation_count": 4, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/ywh187/XStreamVGGT/", "venue": "Journal of the Society for Information Display", "quality_score": 0.6658} {"id": "1230e5d4bb15257effde3798385f7823755c1c82a72fa9012a509716055fcb86", "sources": ["arxiv", "semantic_scholar"], "title": "HFedMoE: Resource-aware Heterogeneous Federated Learning with Mixture-of-Experts", "abstract": "While federated learning (FL) enables fine-tuning of large language models (LLMs) without compromising data privacy, the substantial size of an LLM renders on-device training impractical for resource-constrained clients, such as mobile devices. Thus, Mixture-of-Experts (MoE) models have emerged as a computation-efficient solution, which activates only a sparse subset of experts during model training to reduce computing burden without sacrificing performance. Though integrating MoE into FL fine-tuning holds significant potential, it still encounters three key challenges: i) selecting appropriate experts for clients remains challenging due to the lack of a reliable metric to measure each expert's impact on local fine-tuning performance, ii) the heterogeneous computing resources across clients severely hinder MoE-based LLM fine-tuning, as dynamic expert activations across diverse input samples can overwhelm resource-constrained devices, and iii) client-specific expert subsets and routing preference undermine global aggregation, where misaligned expert updates and inconsistent gating networks in troduce destructive interference. To address these challenges, we propose HFedMoE, a heterogeneous MoE-based FL fine-tuning framework that customizes a subset of experts to each client for computation-efficient LLM fine-tuning. Specifically, HFedMoE identifies the expert importance based on its contributions to fine-tuning performance, and then adaptively selects a subset of experts from an information bottleneck perspective to align with each client' s computing budget. A sparsity-aware model aggregation strategy is also designed to aggregate the actively fine-tuned experts and gating parameters with importance weighted contributions. Extensive experiments demonstrate that HFedMoE outperforms state-of-the-art benchmarks in training accuracy and convergence speed.", "authors": ["Zihan Fang", "Zheng Lin", "Senkang Hu", "Yanan Ma", "Yihang Tao", "Yiqin Deng", "Xianhao Chen", "Yuguang Fang"], "categories": ["cs.LG", "cs.AI", "cs.NI"], "fields_of_study": ["Computer Science"], "published_date": "2026-01-02", "url": "https://arxiv.org/abs/2601.00583", "pdf_url": "https://arxiv.org/pdf/2601.00583v1", "arxiv_id": "2601.00583", "doi": "10.48550/arXiv.2601.00583", "citation_count": 9, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4297} {"id": "bd2b0b4255ac211f5f250e4aaed8820e84eeddca7ee722c756a7a080bf42288c", "sources": ["arxiv", "semantic_scholar"], "title": "PackKV: Reducing KV Cache Memory Footprint through LLM-Aware Lossy Compression", "abstract": "Transformer-based large language models (LLMs) have demonstrated remarkable potential across a wide range of practical applications. However, long-context inference remains a significant challenge due to the substantial memory requirements of the key-value (KV) cache, which can scale to several gigabytes as sequence length and batch size increase. In this paper, we present \\textbf{PackKV}, a generic and efficient KV cache management framework optimized for long-context generation. %, which synergistically supports both latency-critical and throughput-critical inference scenarios. PackKV introduces novel lossy compression techniques specifically tailored to the characteristics of KV cache data, featuring a careful co-design of compression algorithms and system architecture. Our approach is compatible with the dynamically growing nature of the KV cache while preserving high computational efficiency. Experimental results show that, under the same and minimum accuracy drop as state-of-the-art quantization methods, PackKV achieves, on average, \\textbf{153.2}\\% higher memory reduction rate for the K cache and \\textbf{179.6}\\% for the V cache. Furthermore, PackKV delivers extremely high execution throughput, effectively eliminating decompression overhead and accelerating the matrix-vector multiplication operation. Specifically, PackKV achieves an average throughput improvement of \\textbf{75.7}\\% for K and \\textbf{171.7}\\% for V across A100 and RTX Pro 6000 GPUs, compared to cuBLAS matrix-vector multiplication kernels, while demanding less GPU memory bandwidth. Code available on https://github.com/BoJiang03/PackKV", "authors": ["Bo Jiang", "Taolue Yang", "Youyuan Liu", "Xubin He", "Sheng Di", "Sian Jin"], "categories": ["cs.DC", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-30", "url": "https://arxiv.org/abs/2512.24449", "pdf_url": "https://arxiv.org/pdf/2512.24449v2", "arxiv_id": "2512.24449", "doi": "10.48550/arXiv.2512.24449", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/BoJiang03/PackKV", "venue": "arXiv.org", "quality_score": 0.6587} {"id": "b85c5d2f0f8fc1f534bca81e19f5cad67683765ce4041839b42eff178454285d", "sources": ["arxiv", "semantic_scholar"], "title": "Coupling Experts and Routers in Mixture-of-Experts via an Auxiliary Loss", "abstract": "Mixture-of-Experts (MoE) models lack explicit constraints to ensure the router's decisions align well with the experts' capabilities, which ultimately limits model performance. To address this, we propose expert-router coupling (ERC) loss, a lightweight auxiliary loss that tightly couples the router's decisions with expert capabilities. Our approach treats each expert's router embedding as a proxy token for the tokens assigned to that expert, and feeds perturbed router embeddings through the experts to obtain intermediate activations. The ERC loss enforces two constraints on these activations: (1) Each expert must exhibit higher activation for its own proxy token than for the proxy tokens of any other expert. (2) Each proxy token must elicit stronger activation from its corresponding expert than from any other expert. These constraints jointly ensure that each router embedding faithfully represents its corresponding expert's capability, while each expert specializes in processing the tokens actually routed to it. The ERC loss is computationally efficient, operating only on $n^2$ activations, where $n$ is the number of experts. This represents a fixed cost independent of batch size, unlike prior coupling methods that scale with the number of tokens (often millions per batch). Through pre-training MoE-LLMs ranging from 3B to 15B parameters and extensive analysis on trillions of tokens, we demonstrate the effectiveness of the ERC loss. Moreover, the ERC loss offers flexible control and quantitative tracking of expert specialization levels during training, providing valuable insights into MoEs.", "authors": ["Ang Lv", "Jin Ma", "Yiyuan Ma", "Siyuan Qiao"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-29", "url": "https://arxiv.org/abs/2512.23447", "pdf_url": "https://arxiv.org/pdf/2512.23447v2", "arxiv_id": "2512.23447", "doi": "10.48550/arXiv.2512.23447", "citation_count": 7, "influential_citation_count": 1, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4251} {"id": "164a2755673998011dab2f78c04966400a8cf2ff8c39459c1db176b51f8d4491", "sources": ["arxiv", "semantic_scholar"], "title": "Fragile Knowledge, Robust Instruction-Following: The Width Pruning Dichotomy in Llama-3.2", "abstract": "Structured width pruning of GLU-MLP layers, guided by the Maximum Absolute Weight (MAW) criterion, reveals a systematic dichotomy in how reducing the expansion ratio affects different model capabilities. While performance on tasks relying on parametric knowledge (e.g., MMLU, GSM8K) and perplexity metrics degrades predictably, instruction-following capabilities improve substantially (+46% to +75% in IFEval for Llama-3.2-1B and 3B models), and multi-step reasoning remains robust (MUSR). This pattern challenges the prevailing assumption that pruning induces uniform degradation. We evaluated seven expansion ratio configurations using comprehensive benchmarks assessing factual knowledge, mathematical reasoning, language comprehension, instruction-following, and truthfulness. Our analysis identifies the expansion ratio as a critical architectural parameter that selectively modulates cognitive capabilities, rather than merely serving as a compression metric. We provide the first systematic characterization of this selective preservation phenomenon. Notably, we document a robust inverse correlation (r = -0.864, p = 0.012 in Llama-3B) between factual knowledge capacity (MMLU) and truthfulness metrics (TruthfulQA-MC2): as knowledge degrades, the model's ability to discriminate misconceptions improves consistently. This connects two previously distinct research areas, demonstrating that MAW-guided width pruning acts as a selective filter, reducing parametric knowledge while preserving or enhancing behavioral alignment. Additionally, we quantify context-dependent efficiency trade-offs: pruned configurations achieve up to 23% reduction in energy consumption (J/token) but incur penalties in single-request latency, whereas batch processing workloads benefit uniformly.", "authors": ["Pere Martra"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-27", "url": "https://arxiv.org/abs/2512.22671", "pdf_url": "https://arxiv.org/pdf/2512.22671v2", "arxiv_id": "2512.22671", "doi": "10.48550/arXiv.2512.22671", "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/peremartra/llama-glu-expansion-pruning", "venue": "arXiv.org", "quality_score": 0.6534} {"id": "681f6e27cce4dd91a5bfb650b514be1fd47721bc456bbaef958220b6fc457ec6", "sources": ["arxiv", "semantic_scholar"], "title": "InstructMoLE: Instruction-Guided Mixture of Low-rank Experts for Multi-Conditional Image Generation", "abstract": "Parameter-Efficient Fine-Tuning of Diffusion Transformers (DiTs) for diverse, multi-conditional tasks often suffers from task interference when using monolithic adapters like LoRA. The Mixture of Low-rank Experts (MoLE) architecture offers a modular solution, but its potential is usually limited by routing policies that operate at a token level. Such local routing can conflict with the global nature of user instructions, leading to artifacts like spatial fragmentation and semantic drift in complex image generation tasks. To address these limitations, we introduce InstructMoLE, a novel framework that employs an Instruction-Guided Mixture of Low-Rank Experts. Instead of per-token routing, InstructMoLE utilizes a global routing signal, Instruction-Guided Routing (IGR), derived from the user's comprehensive instruction. This ensures that a single, coherently chosen expert council is applied uniformly across all input tokens, preserving the global semantics and structural integrity of the generation process. To complement this, we introduce an output-space orthogonality loss, which promotes expert functional diversity and mitigates representational collapse. Extensive experiments demonstrate that InstructMoLE significantly outperforms existing LoRA adapters and MoLE variants across challenging multi-conditional generation benchmarks. Our work presents a robust and generalizable framework for instruction-driven fine-tuning of generative models, enabling superior compositional control and fidelity to user intent.", "authors": ["Jinqi Xiao", "Qing Yan", "Liming Jiang", "Zichuan Liu", "Hao Kang", "Shen Sang", "Tiancheng Zhi", "Jing Liu", "Cheng Yang", "Xin Lu", "Bo Yuan"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-25", "url": "https://arxiv.org/abs/2512.21788", "pdf_url": "https://arxiv.org/pdf/2512.21788v3", "arxiv_id": "2512.21788", "doi": "10.48550/arXiv.2512.21788", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4205} {"id": "455933274fbc47b4a61e0f08ef3bdd410c6ccb6b6e3ef38351100f8e0ebe7c78", "sources": ["arxiv", "semantic_scholar"], "title": "Spatiotemporal-Untrammelled Mixture of Experts for Multi-Person Motion Prediction", "abstract": "Comprehensively and flexibly capturing the complex spatio-temporal dependencies of human motion is critical for multi-person motion prediction. Existing methods grapple with two primary limitations: i) Inflexible spatiotemporal representation due to reliance on positional encodings for capturing spatiotemporal information. ii) High computational costs stemming from the quadratic time complexity of conventional attention mechanisms. To overcome these limitations, we propose the Spatiotemporal-Untrammelled Mixture of Experts (ST-MoE), which flexibly explores complex spatio-temporal dependencies in human motion and significantly reduces computational cost. To adaptively mine complex spatio-temporal patterns from human motion, our model incorporates four distinct types of spatiotemporal experts, each specializing in capturing different spatial or temporal dependencies. To reduce the potential computational overhead while integrating multiple experts, we introduce bidirectional spatiotemporal Mamba as experts, each sharing bidirectional temporal and spatial Mamba in distinct combinations to achieve model efficiency and parameter economy. Extensive experiments on four multi-person benchmark datasets demonstrate that our approach not only outperforms state-of-art in accuracy but also reduces model parameter by 41.38% and achieves a 3.6x speedup in training. The code is available at https://github.com/alanyz106/ST-MoE.", "authors": ["Zheng Yin", "Chengjian Li", "Xiangbo Shu", "Meiqi Cao", "Rui Yan", "Jinhui Tang"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-25", "url": "https://arxiv.org/abs/2512.21707", "pdf_url": "https://arxiv.org/pdf/2512.21707v1", "arxiv_id": "2512.21707", "doi": "10.48550/arXiv.2512.21707", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/alanyz106/ST-MoE", "venue": "AAAI Conference on Artificial Intelligence", "quality_score": 0.6499} {"id": "dfcd97d4cfd46aa071450c96d6d51cc6fab58b715790856086319ab493078c03", "sources": ["arxiv", "semantic_scholar"], "title": "Hybrid Quantum-Classical Mixture of Experts: Unlocking Topological Advantage via Interference-Based Routing", "abstract": "The Mixture-of-Experts (MoE) architecture has emerged as a powerful paradigm for scaling deep learning models, yet it is fundamentally limited by challenges such as expert imbalance and the computational complexity of classical routing mechanisms. This paper investigates the potential of Quantum Machine Learning (QML) to address these limitations through a novel Hybrid Quantum-Classical Mixture of Experts (QMoE) architecture. Specifically, we conduct an ablation study using a Quantum Gating Network (Router) combined with classical experts to isolate the source of quantum advantage. Our central finding validates the Interference Hypothesis: by leveraging quantum feature maps (Angle Embedding) and wave interference, the Quantum Router acts as a high-dimensional kernel method, enabling the modeling of complex, non-linear decision boundaries with superior parameter efficiency compared to its classical counterparts. Experimental results on non-linearly separable data, such as the Two Moons dataset, demonstrate that the Quantum Router achieves a significant topological advantage, effectively \"untangling\" data distributions that linear classical routers fail to separate efficiently. Furthermore, we analyze the architecture's robustness against simulated quantum noise, confirming its feasibility for near-term intermediate-scale quantum (NISQ) hardware. We discuss practical applications in federated learning, privacy-preserving machine learning, and adaptive systems that could benefit from this quantum-enhanced routing paradigm.", "authors": ["Reda Heddad", "Lamiae Bouanane"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-25", "url": "https://arxiv.org/abs/2512.22296", "pdf_url": "https://arxiv.org/pdf/2512.22296v1", "arxiv_id": "2512.22296", "doi": "10.48550/arXiv.2512.22296", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/RH2004/QMOE", "venue": "arXiv.org", "quality_score": 0.6499} {"id": "c6654c2b0914954b53a1d886d831eccbf8d75b06db012c8dc0e60601a4064f2d", "sources": ["arxiv", "semantic_scholar"], "title": "Efficient MoE Inference with Fine-Grained Scheduling of Disaggregated Expert Parallelism", "abstract": "The mixture-of-experts (MoE) architecture scales model size with sublinear computational increase but suffers from memory-intensive inference due to KV caches and sparse expert activation. Recent disaggregated expert parallelism (DEP) distributes attention and experts to dedicated GPU groups but lacks support for shared experts and efficient task scheduling, limiting performance. We propose FinDEP, a fine-grained task scheduling algorithm for DEP that maximizes task overlap to improve MoE inference throughput. FinDEP introduces three innovations: 1) partitioning computation/communication into smaller tasks for fine-grained pipelining, 2) formulating a scheduling optimization supporting variable granularity and ordering, and 3) developing an efficient solver for this large search space. Experiments on four GPU systems with DeepSeek-V2 and Qwen3-MoE show FinDEP improves throughput by up to 1.61x over prior methods, achieving up to 1.24x speedup on a 32-GPU system.", "authors": ["Xinglin Pan", "Shaohuai Shi", "Wenxiang Lin", "Yuxin Wang", "Zhenheng Tang", "Wei Wang", "Xiaowen Chu"], "categories": ["cs.DC", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-25", "url": "https://arxiv.org/abs/2512.21487", "pdf_url": "https://arxiv.org/pdf/2512.21487v1", "arxiv_id": "2512.21487", "doi": "10.48550/arXiv.2512.21487", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4205} {"id": "1bdd68c96cedd0aa33b448b92e8b679c9a5e39a391336f20bcd5245831d37250", "sources": ["arxiv", "semantic_scholar"], "title": "Mixture-of-Experts with Gradient Conflict-Driven Subspace Topology Pruning for Emergent Modularity", "abstract": "Mixture-of-Experts (MoE) architectures achieve parameter efficiency through conditional computation, yet contemporary designs suffer from two fundamental limitations: structural parameter isolation that causes catastrophic forgetting, and instruction-overfitting that degrades performance in instruction-free scenarios. We propose CDSP-MoE (Conflict-Driven Subspace Pruning MoE), a framework that addresses these issues through a paradigm shift from isolated expert containers to dynamic expert instantiation within a shared physical subspace. Grounded in the Universal Weight Subspace Hypothesis, CDSP-MoE maintains a super-complete parameter backbone where logical experts are carved out via learnable topology masks. Unlike prior work that uses gradient conflict for token reassignment or optimization surgery, we leverage it as a structural supervisory signal: a Lagged Gradient Game penalizes interfering connections in the shared manifold, enabling the topology to spontaneously prune conflicting pathways and evolve interpretable modular structures. Experimental results demonstrate that CDSP-MoE achieves robust content-driven routing without human-defined task labels, maintaining semantic specialization even under strict blind inference protocols where explicit instructions are absent. Code is available at: https://github.com/konodiodaaaaa1/Conflict-Driven-Subspace-Pruning-Mixture-of-Experts", "authors": ["Yuxing Gan", "Ziyu Lei"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-23", "url": "https://arxiv.org/abs/2512.20291", "pdf_url": "https://arxiv.org/pdf/2512.20291v4", "arxiv_id": "2512.20291", "doi": "10.48550/arXiv.2512.20291", "citation_count": 0, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/konodiodaaaaa1/Conflict-Driven-Subspace-Pruning-Mixture-of-Experts", "venue": "arXiv.org", "quality_score": 0.6464} {"id": "3023f80e009287d851b250be96d9c16ae2ba218b8fc62400bdd96d54591ab238", "sources": ["arxiv", "semantic_scholar"], "title": "MoE-DiffuSeq: Enhancing Long-Document Diffusion Models with Sparse Attention and Mixture of Experts", "abstract": "We propose \\textbf{MoE-DiffuSeq}, a diffusion-based framework for efficient long-form text generation that integrates sparse attention with a Mixture-of-Experts (MoE) architecture. Existing sequence diffusion models suffer from prohibitive computational and memory costs when scaling to long documents, largely due to dense attention and slow iterative reconstruction. MoE-DiffuSeq addresses these limitations by combining expert routing with a tailored sparse attention mechanism, substantially reducing attention complexity while preserving global coherence and textual fidelity. In addition, we introduce a \\emph{soft absorbing state} within the diffusion process that reshapes attention dynamics during denoising, enabling faster sequence reconstruction and more precise token refinement. This design accelerates both training and sampling without sacrificing generation quality. Extensive experiments on long-document benchmarks demonstrate that MoE-DiffuSeq consistently outperforms prior diffusion-based and sparse-attention baselines in training efficiency, inference speed, and generation quality. Our approach is particularly effective for long-context applications such as scientific document generation, large-scale code synthesis, and extended dialogue modeling, establishing a scalable and expressive solution for diffusion-based long-form text generation.", "authors": ["Alexandros Christoforos", "Chadbourne Davis"], "categories": ["cs.CL"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-23", "url": "https://arxiv.org/abs/2512.20604", "pdf_url": "https://arxiv.org/pdf/2512.20604v2", "arxiv_id": "2512.20604", "doi": "10.48550/arXiv.2512.20604", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4182} {"id": "406885e16802a43a66f72768b4da27a27d8975e21c773fdc2a613ee1450277ba", "sources": ["arxiv", "semantic_scholar"], "title": "HEART-VIT: Hessian-Guided Efficient Dynamic Attention and Token Pruning in Vision Transformer", "abstract": "Vision Transformers (ViTs) deliver state-of-the-art accuracy but their quadratic attention cost and redundant computations severely hinder deployment on latency and resource-constrained platforms. Existing pruning approaches treat either tokens or heads in isolation, relying on heuristics or first-order signals, which often sacrifice accuracy or fail to generalize across inputs. We introduce HEART-ViT, a Hessian-guided efficient dynamic attention and token pruning framework for vision transformers, which to the best of our knowledge is the first unified, second-order, input-adaptive framework for ViT optimization. HEART-ViT estimates curvature-weighted sensitivities of both tokens and attention heads using efficient Hessian-vector products, enabling principled pruning decisions under explicit loss budgets.This dual-view sensitivity reveals an important structural insight: token pruning dominates computational savings, while head pruning provides fine-grained redundancy removal, and their combination achieves a superior trade-off. On ImageNet-100 and ImageNet-1K with ViT-B/16 and DeiT-B/16, HEART-ViT achieves up to 49.4 percent FLOPs reduction, 36 percent lower latency, and 46 percent higher throughput, while consistently matching or even surpassing baseline accuracy after fine-tuning, for example 4.7 percent recovery at 40 percent token pruning. Beyond theoretical benchmarks, we deploy HEART-ViT on different edge devices such as AGX Orin, demonstrating that our reductions in FLOPs and latency translate directly into real-world gains in inference speed and energy efficiency. HEART-ViT bridges the gap between theory and practice, delivering the first unified, curvature-driven pruning framework that is both accuracy-preserving and edge-efficient.", "authors": ["Mohammad Helal Uddin", "Liam Seymour", "Sabur Baidya"], "categories": ["cs.CV"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-23", "url": "https://arxiv.org/abs/2512.20120", "pdf_url": "https://arxiv.org/pdf/2512.20120v1", "arxiv_id": "2512.20120", "doi": "10.48550/arXiv.2512.20120", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4182} {"id": "21e8a7db09b2d8217753f0b1b75ed44aab1d7cb056fa97ae8c9f0fd58fed991b", "sources": ["arxiv", "semantic_scholar"], "title": "Nemotron 3 Nano: Open, Efficient Mixture-of-Experts Hybrid Mamba-Transformer Model for Agentic Reasoning", "abstract": "We present Nemotron 3 Nano 30B-A3B, a Mixture-of-Experts hybrid Mamba-Transformer language model. Nemotron 3 Nano was pretrained on 25 trillion text tokens, including more than 3 trillion new unique tokens over Nemotron 2, followed by supervised fine tuning and large-scale RL on diverse environments. Nemotron 3 Nano achieves better accuracy than our previous generation Nemotron 2 Nano while activating less than half of the parameters per forward pass. It achieves up to 3.3x higher inference throughput than similarly-sized open models like GPT-OSS-20B and Qwen3-30B-A3B-Thinking-2507, while also being more accurate on popular benchmarks. Nemotron 3 Nano demonstrates enhanced agentic, reasoning, and chat abilities and supports context lengths up to 1M tokens. We release both our pretrained Nemotron 3 Nano 30B-A3B Base and post-trained Nemotron 3 Nano 30B-A3B checkpoints on Hugging Face.", "authors": [" NVIDIA", " :", "Aaron Blakeman", "Aaron Grattafiori", "Aarti Basant", "Abhibha Gupta", "Abhinav Khattar", "Adi Renduchintala", "Aditya Vavre", "Akanksha Shukla", "Akhiad Bercovich", "Aleksander Ficek", "Aleksandr Shaposhnikov", "Alex Kondratenko", "Alexander Bukharin", "Alexandre Milesi", "Ali Taghibakhshi", "Alisa Liu", "Amelia Barton", "Ameya Sunil Mahabaleshwarkar", "Amir Klein", "Amit Zuker", "Amnon Geifman", "Amy Shen", "Anahita Bhiwandiwalla", "Andrew Tao", "Ann Guan", "Anubhav Mandarwal", "Arham Mehta", "Ashwath Aithal", "Ashwin Poojary", "Asif Ahamed", "Asma Kuriparambil Thekkumpate", "Ayush Dattagupta", "Banghua Zhu", "Bardiya Sadeghi", "Barnaby Simkin", "Ben Lanir", "Benedikt Schifferer", "Besmira Nushi", "Bilal Kartal", "Bita Darvish Rouhani", "Boris Ginsburg", "Brandon Norick", "Brandon Soubasis", "Branislav Kisacanin", "Brian Yu", "Bryan Catanzaro", "Carlo del Mundo", "Chantal Hwang", "Charles Wang", "Cheng-Ping Hsieh", "Chenghao Zhang", "Chenhan Yu", "Chetan Mungekar", "Chintan Patel", "Chris Alexiuk", "Christopher Parisien", "Collin Neale", "Damon Mosk-Aoyama", "Dan Su", "Dane Corneil", "Daniel Afrimi", "Daniel Rohrer", "Daniel Serebrenik", "Daria Gitman", "Daria Levy", "Darko Stosic", "David Mosallanezhad", "Deepak Narayanan", "Dhruv Nathawani", "Dima Rekesh", "Dina Yared", "Divyanshu Kakwani", "Dong Ahn", "Duncan Riach", "Dusan Stosic", "Edgar Minasyan", "Edward Lin", "Eileen Long", "Eileen Peters Long", "Elena Lantz", "Ellie Evans", "Elliott Ning", "Eric Chung", "Eric Harper", "Eric Tramel", "Erick Galinkin", "Erik Pounds", "Evan Briones", "Evelina Bakhturina", "Faisal Ladhak", "Fay Wang", "Fei Jia", "Felipe Soares", "Feng Chen", "Ferenc Galko", "Frankie Siino", "Gal Hubara Agam", "Ganesh Ajjanagadde", "Gantavya Bhatt", "Gargi Prasad", "George Armstrong", "Gerald Shen", "Gorkem Batmaz", "Grigor Nalbandyan", "Haifeng Qian", "Harsh Sharma", "Hayley Ross", "Helen Ngo", "Herman Sahota", "Hexin Wang", "Himanshu Soni", "Hiren Upadhyay", "Huizi Mao", "Huy C Nguyen", "Huy Q Nguyen", "Iain Cunningham", "Ido Shahaf", "Igor Gitman", "Ilya Loshchilov", "Ivan Moshkov", "Izzy Putterman", "Jan Kautz", "Jane Polak Scowcroft", "Jared Casper", "Jatin Mitra", "Jeffrey Glick", "Jenny Chen", "Jesse Oliver", "Jian Zhang", "Jiaqi Zeng", "Jie Lou", "Jimmy Zhang", "Jining Huang", "Joey Conway", "Joey Guman", "John Kamalu", "Johnny Greco", "Jonathan Cohen", "Joseph Jennings", "Joyjit Daw", "Julien Veron Vialard", "Junkeun Yi", "Jupinder Parmar", "Kai Xu", "Kan Zhu", "Kari Briski", "Katherine Cheung", "Katherine Luna", "Keshav Santhanam", "Kevin Shih", "Kezhi Kong", "Khushi Bhardwaj", "Krishna C. Puvvada", "Krzysztof Pawelec", "Kumar Anik", "Lawrence McAfee", "Laya Sleiman", "Leon Derczynski", "Li Ding", "Lucas Liebenwein", "Luis Vega", "Maanu Grover", "Maarten Van Segbroeck", "Maer Rodrigues de Melo", "Makesh Narsimhan Sreedhar", "Manoj Kilaru", "Maor Ashkenazi", "Marc Romeijn", "Mark Cai", "Markus Kliegl", "Maryam Moosaei", "Matvei Novikov", "Mehrzad Samadi", "Melissa Corpuz", "Mengru Wang", "Meredith Price", "Michael Boone", "Michael Evans", "Miguel Martinez", "Mike Chrzanowski", "Mohammad Shoeybi", "Mostofa Patwary", "Nabin Mulepati", "Natalie Hereth", "Nave Assaf", "Negar Habibi", "Neta Zmora", "Netanel Haber", "Nicola Sessions", "Nidhi Bhatia", "Nikhil Jukar", "Nikki Pope", "Nikolai Ludwig", "Nima Tajbakhsh", "Nirmal Juluru", "Oleksii Hrinchuk", "Oleksii Kuchaiev", "Olivier Delalleau", "Oluwatobi Olabiyi", "Omer Ullman Argov", "Ouye Xie", "Parth Chadha", "Pasha Shamis", "Pavlo Molchanov", "Pawel Morkisz", "Peter Dykas", "Peter Jin", "Pinky Xu", "Piotr Januszewski", "Pranav Prashant Thombre", "Prasoon Varshney", "Pritam Gundecha", "Qing Miao", "Rabeeh Karimi Mahabadi", "Ran El-Yaniv", "Ran Zilberstein", "Rasoul Shafipour", "Rich Harang", "Rick Izzo", "Rima Shahbazyan", "Rishabh Garg", "Ritika Borkar", "Ritu Gala", "Riyad Islam", "Roger Waleffe", "Rohit Watve", "Roi Koren", "Ruoxi Zhang", "Russell J. Hewett", "Ryan Prenger", "Ryan Timbrook", "Sadegh Mahdavi", "Sahil Modi", "Samuel Kriman", "Sanjay Kariyappa", "Sanjeev Satheesh", "Saori Kaji", "Satish Pasumarthi", "Sean Narentharen", "Sean Narenthiran", "Seonmyeong Bak", "Sergey Kashirsky", "Seth Poulos", "Shahar Mor", "Shanmugam Ramasamy", "Shantanu Acharya", "Shaona Ghosh", "Sharath Turuvekere Sreenivas", "Shelby Thomas", "Shiqing Fan", "Shreya Gopal", "Shrimai Prabhumoye", "Shubham Pachori", "Shubham Toshniwal", "Shuoyang Ding", "Siddharth Singh", "Simeng Sun", "Smita Ithape", "Somshubra Majumdar", "Soumye Singhal", "Stefania Alborghetti", "Stephen Ge", "Sugam Dipak Devare", "Sumeet Kumar Barua", "Suseella Panguluri", "Suyog Gupta", "Sweta Priyadarshi", "Syeda Nahida Akter", "Tan Bui", "Teodor-Dumitru Ene", "Terry Kong", "Thanh Do", "Tijmen Blankevoort", "Tom Balough", "Tomer Asida", "Tomer Bar Natan", "Tugrul Konuk", "Twinkle Vashishth", "Udi Karpas", "Ushnish De", "Vahid Noorozi", "Vahid Noroozi", "Venkat Srinivasan", "Venmugil Elango", "Vijay Korthikanti", "Vitaly Kurin", "Vitaly Lavrukhin", "Wanli Jiang", "Wasi Uddin Ahmad", "Wei Du", "Wei Ping", "Wenfei Zhou", "Will Jennings", "William Zhang", "Wojciech Prazuch", "Xiaowei Ren", "Yashaswi Karnati", "Yejin Choi", "Yev Meyer", "Yi-Fu Wu", "Yian Zhang", "Ying Lin", "Yonatan Geifman", "Yonggan Fu", "Yoshi Subara", "Yoshi Suhara", "Yubo Gao", "Zach Moshe", "Zhen Dong", "Zihan Liu", "Zijia Chen", "Zijie Yan"], "categories": ["cs.CL", "cs.AI", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-23", "url": "https://arxiv.org/abs/2512.20848", "pdf_url": "https://arxiv.org/pdf/2512.20848v1", "arxiv_id": "2512.20848", "doi": "10.48550/arXiv.2512.20848", "citation_count": 44, "influential_citation_count": 7, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4515} {"id": "437ff87c96562df2eda809fde85534f71252a945888678145de51839e3ac3826", "sources": ["arxiv", "semantic_scholar"], "title": "MixKVQ: Query-Aware Mixed-Precision KV Cache Quantization for Long-Context Reasoning", "abstract": "Long Chain-of-Thought (CoT) reasoning has significantly advanced the capabilities of Large Language Models (LLMs), but this progress is accompanied by substantial memory and latency overhead from the extensive Key-Value (KV) cache. Although KV cache quantization is a promising compression technique, existing low-bit quantization methods often exhibit severe performance degradation on complex reasoning tasks. Fixed-precision quantization struggles to handle outlier channels in the key cache, while current mixed-precision strategies fail to accurately identify components requiring high-precision representation. We find that an effective low-bit KV cache quantization strategy must consider two factors: a key channel's intrinsic quantization difficulty and its relevance to the query. Based on this insight, we propose MixKVQ, a novel plug-and-play method that introduces a lightweight, query-aware algorithm to identify and preserve critical key channels that need higher precision, while applying per-token quantization for value cache. Experiments on complex reasoning datasets demonstrate that our approach significantly outperforms existing low-bit methods, achieving performance comparable to a full-precision baseline at a substantially reduced memory footprint.", "authors": ["Tao Zhang", "Ziqian Zeng", "Hao Peng", "Huiping Zhuang", "Cen Chen"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-22", "url": "https://arxiv.org/abs/2512.19206", "pdf_url": "https://arxiv.org/pdf/2512.19206v1", "arxiv_id": "2512.19206", "doi": "10.48550/arXiv.2512.19206", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4171} {"id": "440e47857aa842016431c22b65e74a2e71de14e51f00f332f6eb68c2c71c2d28", "sources": ["arxiv", "semantic_scholar"], "title": "Selective LoRA for Visual Tokens and Attention Heads", "abstract": "Low-rank adaptation (LoRA) is widely used for parameter-efficient fine-tuning, but its standard all-token, all-head design ignores the heterogeneous structure of vision language model (VLM) inputs. We introduce \\emph{Image-LoRA}, a vision-oriented PEFT recipe that views LoRA as a token-level residual update and applies this update only to visual tokens. Image-LoRA further restricts adaptation to the value path of a compact subset of attention heads, selected using a one-pass influence estimate from a rank-1 visual-token-only probe. This token-, head-, and value-selective design reduces trainable parameters and adapter-only training FLOPs while leaving the pure-text forward pass of the frozen backbone unchanged when no visual tokens are present. Across visual localization benchmarks with controlled text:image token ratios, Image-LoRA matches or closely approaches standard LoRA, while showing especially favorable trade-offs in image-token-heavy regimes. We further validate its generality on TextVQA and VideoQA, verify pure-text preservation on GSM8K, and show on ViLP that a stronger information bottleneck can yield gains over standard LoRA.", "authors": ["Tiange Luo", "Lajanugen Logeswaran", "Jaekyeom Kim", "Justin Johnson", "Honglak Lee"], "categories": ["cs.CV", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-22", "url": "https://arxiv.org/abs/2512.19219", "pdf_url": "https://arxiv.org/pdf/2512.19219v2", "arxiv_id": "2512.19219", "doi": null, "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": null, "quality_score": 0.2654} {"id": "addc616e33cb4da7b01fa2ed6a7f23a02bc2a99d034f878fe7601e7f5da63a83", "sources": ["arxiv", "semantic_scholar"], "title": "SAP: Syntactic Attention Pruning for Transformer-based Language Models", "abstract": "This paper introduces Syntactic Attention Pruning (SAP), a novel method for effectively pruning attention heads in Transformer models. Unlike conventional approaches that rely solely on mathematical analysis of model weights and activations, SAP incorporates both the syntactic structure and attention patterns of sentences to guide the pruning process. By leveraging these linguistic features, SAP not only achieves performance comparable to state-of-the-art methods but also enhances the interpretability of model behavior. To further improve robustness, we propose Candidate Filtering (CF), a mechanism that prioritizes heads based on their contribution to model performance, mitigating degradation during pruning. Experimental results indicate that SAP effectively preserves critical heads of a high density of strong attention values, outperforming existing head pruning strategies in retrain-free settings. These findings position SAP as a promising foundation for a new direction in model compression research, offering high flexibility for pruning across all transformer-based language models.", "authors": ["Tzu-Yun Lee", "Ding-Yong Hong", "Jan-Jan Wu"], "categories": ["cs.CL", "cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-22", "url": "https://arxiv.org/abs/2512.19125", "pdf_url": "https://arxiv.org/pdf/2512.19125v1", "arxiv_id": "2512.19125", "doi": "10.48550/arXiv.2512.19125", "citation_count": 1, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4171} {"id": "16d417c1ee13fdeba3ccf3a93950d9983f92e5e8334805d7bca977060dbd6585", "sources": ["arxiv", "semantic_scholar"], "title": "How Many Experts Are Enough? Towards Optimal Semantic Specialization for Mixture-of-Experts", "abstract": "Finding the optimal configuration of Sparse Mixture-ofExperts (SMoE) that maximizes semantic differentiation among experts is essential for exploiting the full potential of MoE architectures. However, existing SMoE frameworks either heavily rely on hyperparameter tuning or overlook the importance of diversifying semantic roles across experts when adapting the expert pool size. We propose Mixture-of-Experts for Adaptive Semantic Specialization (MASS), a semanticaware MoE framework for adaptive expert expansion and dynamic routing. MASS introduces two key advancements: (i) a gradient-based semantic drift detector that prompts targeted expert expansion when the existing expert pool lacks capacity to capture the full semantic diversity of the data, and (ii) an integration of adaptive routing strategy that dynamically adjusts expert usage based on token-level routing confidence mass. We first demonstrate that MASS reliably converges to the point of optimal balance between cost-performance trade-off with notably improved sematic specialization in a highly controlled synthetic setup. Further empirical results on real-world datasets across language and vision domains show that MASS consistently outperforms a range of strong MoE baselines, demonstrating its domain robustness and enhanced expert specialization.", "authors": ["Sumin Park", "Noseong Park"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-21", "url": "https://arxiv.org/abs/2512.19765", "pdf_url": "https://arxiv.org/pdf/2512.19765v1", "arxiv_id": "2512.19765", "doi": "10.48550/arXiv.2512.19765", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "AAAI Conference on Artificial Intelligence", "quality_score": 0.4159} {"id": "05f5473d33354834f290b8e6827089498eac6c53586f490a7280caaa52710564", "sources": ["arxiv", "semantic_scholar"], "title": "Tempo as the Stable Cue: Hierarchical Mixture of Tempo and Beat Experts for Music to 3D Dance Generation", "abstract": "Music to 3D dance generation aims to synthesize realistic and rhythmically synchronized human dance from music. While existing methods often rely on additional genre labels to further improve dance generation, such labels are typically noisy, coarse, unavailable, or insufficient to capture the diversity of real-world music, which can result in rhythm misalignment or stylistic drift. In contrast, we observe that tempo, a core property reflecting musical rhythm and pace, remains relatively consistent across datasets and genres, typically ranging from 60 to 200 BPM. Based on this finding, we propose TempoMoE, a hierarchical tempo-aware Mixture-of-Experts module that enhances the diffusion model and its rhythm perception. TempoMoE organizes motion experts into tempo-structured groups for different tempo ranges, with multi-scale beat experts capturing fine- and long-range rhythmic dynamics. A Hierarchical Rhythm-Adaptive Routing dynamically selects and fuses experts from music features, enabling flexible, rhythm-aligned generation without manual genre labels. Extensive experiments demonstrate that TempoMoE achieves state-of-the-art results in dance quality and rhythm alignment.", "authors": ["Guangtao Lyu", "Chenghao Xu", "Qi Liu", "Jiexi Yan", "Muli Yang", "Fen Fang", "Cheng Deng"], "categories": ["cs.CV", "cs.MM", "cs.SD"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-21", "url": "https://arxiv.org/abs/2512.18804", "pdf_url": "https://arxiv.org/pdf/2512.18804v1", "arxiv_id": "2512.18804", "doi": "10.48550/arXiv.2512.18804", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4159} {"id": "7ddffe35f92b69a66cea873119849100e8a0a6fbedc9385bf1c570b2a1bc9993", "sources": ["arxiv", "semantic_scholar"], "title": "MoE Pathfinder: Trajectory-driven Expert Pruning", "abstract": "Mixture-of-experts (MoE) architectures used in large language models (LLMs) achieve state-of-the-art performance across diverse tasks yet face practical challenges such as deployment complexity and low activation efficiency. Expert pruning has thus emerged as a promising solution to reduce computational overhead and simplify the deployment of MoE models. However, existing expert pruning approaches conventionally rely on local importance metrics and often apply uniform layer-wise pruning, leveraging only partial evaluation signals and overlooking the heterogeneous contributions of experts across layers. To address these limitations, we propose an expert pruning approach based on the trajectory of activated experts across layers, which treats MoE as a weighted computation graph and casts expert selection as a global optimal path planning problem. Within this framework, we integrate complementary importance signals from reconstruction error, routing probabilities, and activation strength at the trajectory level, which naturally yields non-uniform expert retention across layers. Experiments show that our approach achieves superior pruning performance on nearly all tasks compared with most existing approaches.", "authors": ["Xican Yang", "Yuanhe Tian", "Yan Song"], "categories": ["cs.LG"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-20", "url": "https://arxiv.org/abs/2512.18425", "pdf_url": "https://arxiv.org/pdf/2512.18425v1", "arxiv_id": "2512.18425", "doi": "10.48550/arXiv.2512.18425", "citation_count": 3, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4148} {"id": "2aef0e3579e747ff1dfbc5df2e168762f056324342662625dbcb179f5e23b211", "sources": ["arxiv", "semantic_scholar"], "title": "TraCT: Disaggregated LLM Serving with CXL Shared Memory KV Cache at Rack-Scale", "abstract": "Disaggregated LLM serving improves resource efficiency by separating the compute-intensive prefill phase from the latency-critical decode phase. However, this architecture introduces a fundamental bottleneck: key/value (KV) tensors generated during prefill must be transferred to decode workers, and existing systems rely on RDMA-based network paths for this exchange. As model sizes and context lengths increase, KV transfer dominates both time-to-first-token (TTFT) and peak throughput, and remains highly sensitive to network contention even when prefix reuse is high. This paper presents TraCT, a rack-scale LLM serving system that uses CXL shared memory as both a KV-transfer substrate and a rack-wide prefix-aware KV cache. TraCT enables GPUs to write and read KV blocks directly through CXL load/store and DMA operations, eliminating the NIC hop that constrains existing disaggregated pipelines. However, to realize this design, multiple new challenges such as synchronization, consistency, and data management on non-coherent CXL memory need to be addressed. TraCT proposes various software solutions such as the two-tier inter-node synchronization mechanism to address these challenges. We implement TraCT on the Dynamo LLM inference framework and show that, across static and synthetic workloads, TraCT reduces average TTFT by up to 9.8x, lowers P99 latency by up to 6.2x, and improves peak throughput by up to 1.6x compared to RDMA and DRAM-based caching baselines.", "authors": ["Dongha Yoon", "Younghoon Min", "Hoshik Kim", "Sam H. Noh", "Jongryool Kim"], "categories": ["cs.DC"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-20", "url": "https://arxiv.org/abs/2512.18194", "pdf_url": "https://arxiv.org/pdf/2512.18194v1", "arxiv_id": "2512.18194", "doi": "10.48550/arXiv.2512.18194", "citation_count": 7, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4148} {"id": "09cdadce27619dd6ee8ccadbe388198877ef454c248dcfb03fc4b5c390151476", "sources": ["arxiv", "semantic_scholar"], "title": "Secret mixtures of experts inside your LLM", "abstract": "Despite being one of the earliest neural network layers, the Multilayer Perceptron (MLP) is arguably one of the least understood parts of the transformer architecture due to its dense computation and lack of easy visualization. This paper seeks to understand the MLP layers in dense LLM models by hypothesizing that these layers secretly approximately perform a sparse computation -- namely, that they can be well approximated by sparsely-activating Mixture of Experts (MoE) layers. Our hypothesis is based on a novel theoretical connection between MoE models and Sparse Autoencoder (SAE) structure in activation space. We empirically validate the hypothesis on pretrained LLMs, and demonstrate that the activation distribution matters -- these results do not hold for Gaussian data, but rather rely crucially on structure in the distribution of neural network activations. Our results shine light on a general principle at play in MLP layers inside LLMs, and give an explanation for the effectiveness of modern MoE-based transformers. Additionally, our experimental explorations suggest new directions for more efficient MoE architecture design based on low-rank routers.", "authors": ["Enric Boix-Adsera"], "categories": ["cs.LG", "cs.AI", "stat.ML"], "fields_of_study": ["Computer Science", "Mathematics"], "published_date": "2025-12-20", "url": "https://arxiv.org/abs/2512.18452", "pdf_url": "https://arxiv.org/pdf/2512.18452v1", "arxiv_id": "2512.18452", "doi": "10.48550/arXiv.2512.18452", "citation_count": 0, "influential_citation_count": 0, "has_code": false, "code_url": null, "venue": "arXiv.org", "quality_score": 0.4148} {"id": "4a86d20da85bcea8fdcc0fba16f943a992da3f8eff93cad554e0cf25086d077d", "sources": ["arxiv", "semantic_scholar"], "title": "KV Admission: Learning What to Write for Efficient Long-Context Inference", "abstract": "Long-context LLM inference is bottlenecked by the quadratic attention complexity and linear KV cache growth. Prior approaches mitigate this via post-hoc selection or eviction but overlook the root inefficiency: indiscriminate writing to memory. In this paper, we formalize KV cache management as a causal system of three primitives: KV Admission, Selection, and Eviction. We instantiate KV Admission via Write-Gated KV (WG-KV), a lightweight mechanism that learns to predict token utility before cache entry. By filtering out low-utility states early to maintain a compact global cache alongside a sliding local cache, WG-KV reduces memory usage by 46-68% and delivers 3.03-3.70x prefill and 1.85-2.56x decode speedups on Llama and Qwen models, while maintaining compatibility with FlashAttention and Paged-KV systems. These results demonstrate that learning what to write is a principled and practical recipe for efficient long-context inference. Code is available at https://github.com/EMCLab-Sinica/WG-KV.", "authors": ["Yen-Chieh Huang", "Pi-Cheng Hsiu", "Rui Fang", "Ming-Syan Chen"], "categories": ["cs.LG", "cs.AI"], "fields_of_study": ["Computer Science"], "published_date": "2025-12-19", "url": "https://arxiv.org/abs/2512.17452", "pdf_url": "https://arxiv.org/pdf/2512.17452v3", "arxiv_id": "2512.17452", "doi": null, "citation_count": 1, "influential_citation_count": 0, "has_code": true, "code_url": "https://github.com/EMCLab-Sinica/WG-KV", "venue": null, "quality_score": 0.4889} {"id": "5f981d05e721e3e486ab4da801dafab6d7bf60877cbce7cc10c1f99b16f9471e", "sources": ["arxiv", "semantic_scholar"], "title": "Bandwidth-Efficient Adaptive Mixture-of-Experts via Low-Rank Compensation", "abstract": "Mixture-of-Experts (MoE) models scale capacity via sparse activation but stress memory and bandwidth. Offloading alleviates GPU memory by fetching experts on demand, yet token-level routing causes irregular transfers that make inference I/O-bound. Static uniform quantization reduces traffic but degrades accuracy under aggressive compression by ignoring expert heterogeneity. We present Bandwidth-Efficient Adaptive Mixture-of-Experts via Low-Rank Compensation, which performs router-guided precision restoration using precomputed low-rank compensators. At inference time, our method transfers compact low-rank factors with Top-n (n