paper-with-me

홈 › Papers

DALI: A Workload-Aware Offloading Framework for Efficient MoE Inference on Local PCs

2026-02-03 · Zeyu Zhu, Gang Li, Peisong Wang, Zitao Mo, Minnan Pei, Zhuoran Song, Xiaoyao Liang, Jian Cheng arxiv

Mixture of Experts (MoE) architectures significantly enhance the capacity of LLMs without proportional increases in computation, but at the cost of a vast parameter size. Offloading MoE expert parameters to host memory and leveraging both CPU and GPU computation has recently emerged as a promising direction to support such models on resourceconstrained local PC platforms. While promising, we notice that existing approaches mismatch the dynamic nature of expert workloads, which leads to three fundamental inefficiencies: (1) Static expert assignment causes severe CPUGPU load imbalance, underutilizing CPU and GPU resources; (2) Existing prefetching techniques fail to accurately predict high-workload experts, leading to costly inaccurate prefetches; (3) GPU cache policies neglect workload dynamics, resulting in poor hit rates and limited effectiveness. To address these challenges, we propose DALI, a workloaDAware offLoadIng framework for efficient MoE inference on local PCs. To fully utilize hardware resources, DALI first dynamically assigns experts to CPU or GPU by modeling assignment as a 0-1 integer optimization problem and solving it efficiently using a Greedy Assignment strategy at runtime. To improve prefetching accuracy, we develop a Residual-Based Prefetching method leveraging inter-layer residual information to accurately predict high-workload experts. Additionally, we introduce a Workload-Aware Cache Replacement policy that exploits temporal correlation in expert activations to improve GPU cache efficiency. By evaluating across various MoE models and settings, DALI achieves significant speedups in the both prefill and decoding phases over the state-of-the-art offloading frameworks.

📄 PDF Abstract BibTeX arXiv:2602.03495

Code (0)

등록된 구현이 없습니다.

Similar Papers 제목 키워드 기반

CoX-MoE: Coalesced Expert Execution for High-Throughput MoE Inference with AMX-Enabled CPU-GPU Co-Execution

2026-05-18 · Muyoung Son, Yi Chen, Seungjae Yoo, Soongyu Choi 외 arxiv

The Mixture-of-Experts (MoE) architecture improves computational efficiency via sparse expert activation, but throughput-oriented inference faces substantial GPU memory pressure due to a significant parameter size and in…

Computational Efficiency

ChunkFlow: Communication-Aware Chunked Prefetching for Layerwise Offloading in Distributed Diffusion Transformer Inference

2026-05-11 · Han Meng, Danny Willow Liu, Dong Li arxiv

Layerwise offloading reduces the GPU memory footprint of large diffusion transformer (DiT) inference by prefetching upcoming layers from host memory, but its effectiveness hinges on hiding prefetch latency behind per-lay…

Cost-Efficient LLM Serving in the Cloud: VM Selection with KV Cache Offloading

2025-04-16 · Kihyun Kim, Jinwoo Kim, Hyunsun Chung, Myung-Hoon Cha 외

LLM inference is essential for applications like text summarization, translation, and data analysis, but the high cost of GPU instances from Cloud Service Providers (CSPs) like AWS is a major burden. This paper proposes …

GPUText Summarization

Batching-Aware Joint Model Onloading and Offloading for Hierarchical Multi-Task Inference

2025-08-18 · Seohyeon Cha, Kevin Chan, Gustavo de Veciana, Haris Vikalo arxiv

The growing demand for intelligent services on resource-constrained edge devices has spurred the development of collaborative inference systems that distribute workloads across end devices, edge servers, and the cloud. W…

Autonomous DrivingDepth Estimation

Efficient Mixture-of-Experts LLM Inference with Apple Silicon NPUs

2026-04-20 · Afsara Benazir, Felix Xiaozhu Lin arxiv

Apple Neural Engine (ANE) is a dedicated neural processing unit (NPU) present in every Apple Silicon chip. Mixture-of-Experts (MoE) LLMs improve inference efficiency via sparse activation but are challenging for NPUs in …