paper-with-me

Papers

Fiddler: CPU-GPU Orchestration for Fast Inference of Mixture-of-Experts Models

2024-02-10 · Keisuke Kamahori, Tian Tang, Yile Gu, Kan Zhu, Baris Kasikci

Large Language Models (LLMs) with the Mixture-of-Experts (MoE) architectures have shown promising performance on various tasks. However, due to the huge model sizes, running them in resource-constrained environments where the GPU memory is not abundant is challenging. Some existing systems propose to use CPU resources to solve that, but they either suffer from the significant overhead of frequently moving data between CPU and GPU, or fail to consider distinct characteristics of CPUs and GPUs. This paper proposes Fiddler, a resource-efficient inference system for MoE models with limited GPU resources. Fiddler strategically utilizes CPU and GPU resources by determining the optimal execution strategy. Our evaluation shows that, unlike state-of-the-art systems that optimize for specific scenarios such as single batch inference or long prefill, Fiddler performs better in all scenarios. Compared against different baselines, Fiddler achieves 1.26 times speed up in single batch inference, 1.30 times in long prefill processing, and 11.57 times in beam search inference. The code of Fiddler is publicly available at https://github.com/efeslab/fiddler.

📄 PDF Abstract BibTeX arXiv:2402.07033

Code (1)

efeslab/fiddler 공식 구현 pytorch

Tasks

CPUGPUMixture-of-Experts

Similar Papers 제목 키워드 기반

FlashMoE: Reducing SSD I/O Bottlenecks via ML-Based Cache Replacement for Mixture-of-Experts Inference on Edge Devices

2026-01-22 · Byeongju Kim, Jungwan Lee, Donghyeon Han, Hoi-Jun Yoo 외 arxiv

Recently, Mixture-of-Experts (MoE) models have gained attention for efficiently scaling large language models. Although these models are extremely large, their sparse activation enables inference to be performed by acces…

Fast Feedforward Networks

2023-08-28 · Peter Belcak, Roger Wattenhofer

We break the linear link between the layer size and its inference cost by introducing the fast feedforward (FFF) architecture, a log-time alternative to feedforward networks. We demonstrate that FFFs are up to 220x faste…

Mixture-of-Experts

TaxBreak: Unmasking the Hidden Costs of LLM Inference Through Overhead Decomposition

2026-03-12 · Prabhu Vellaisamy, Shreesh Tripathi, Vignesh Natarajan, Surya Santhan Thenarasu 외 arxiv

Large Language Model (LLM) inference is widely used in interactive assistants and agentic systems. In latency-sensitive deployments, inference time can become dominated by host-side overheads. Existing approaches typical…

Mixture of Lookup Experts

2025-03-20 · Shibo Jie, Yehui Tang, Kai Han, Yitong Li 외

Mixture-of-Experts (MoE) activates only a subset of experts during inference, allowing the model to maintain low inference FLOPs and latency even as the parameter count scales up. However, since MoE dynamically selects t…

Mixture-of-Experts

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