paper-with-me

Papers

MPIC: Position-Independent Multimodal Context Caching System for Efficient MLLM Serving

2025-02-04 · Shiju Zhao, Junhao Hu, Rongxiao Huang, Jiaqi Zheng, Guihai Chen

The context caching technique is employed to accelerate the Multimodal Large Language Model (MLLM) inference by prevailing serving platforms currently. However, this approach merely reuses the Key-Value (KV) cache of the initial sequence of prompt, resulting in full KV cache recomputation even if the prefix differs slightly. This becomes particularly inefficient in the context of interleaved text and images, as well as multimodal retrieval-augmented generation. This paper proposes position-independent caching as a more effective approach for multimodal information management. We have designed and implemented a caching system, named MPIC, to address both system-level and algorithm-level challenges. MPIC stores the KV cache on local or remote disks when receiving multimodal data, and calculates and loads the KV cache in parallel during inference. To mitigate accuracy degradation, we have incorporated integrated reuse and recompute mechanisms within the system. The experimental results demonstrate that MPIC can achieve up to 54% reduction in response time compared to existing context caching systems, while maintaining negligible or no accuracy loss.

📄 PDF Abstract BibTeX arXiv:2502.01960

Code (0)

등록된 구현이 없습니다.

Tasks

Language ModelingLanguage ModellingLarge Language ModelMultimodal Large Language ModelPositionRetrieval-augmented Generation

Similar Papers 제목 키워드 기반

SemPIC: Learning Semantic Position-Independent KV Caches

2026-07-30 · Hui Xie, Peng Xiao, Yutong Deng\textsuperscript, Shuoran Dou 외 arxiv

Long-context retrieval and agentic workloads repeatedly reuse the same documents under changing instructions, histories, and document orders. Prefix caching cannot exploit this reuse, while position-independent caching (…

EPIC: Efficient Position-Independent Caching for Serving Large Language Models

2024-10-20 · Junhao Hu, Wenrui Huang, Weidong Wang, Haoyi Wang 외

Large Language Models (LLMs) show great capabilities in a wide range of applications, but serving them efficiently becomes increasingly challenging as requests (prompts) become more complex. Context caching improves serv…

ChunkingFew-Shot LearningPositionRetrieval-augmented Generation

You Need an Encoder for Native Position-Independent Caching

2026-02-02 · Shiju Zhao, Junhao Hu, Jiaqi Zheng, Guihai Chen arxiv

The Key-Value (KV) cache of Large Language Models (LLMs) is prefix-based, making it highly inefficient for processing contexts retrieved in arbitrary order. Position-Independent Caching (PIC) has been proposed to enable …

Irminsul: MLA-Native Position-Independent Caching for Agentic LLM Serving

2026-05-07 · Bole Ma, Jan Eitzinger, Harald Köstler arxiv

Agentic LLM workloads put bit-identical tokens at shifted positions every turn, voiding prefix caches at the first byte of divergence. Operators report cache-hit regressions ranging from moderate slowdowns to severe TTFT…

MEPIC: Memory Efficient Position Independent Caching for LLM Serving

2025-12-18 · Qian Wang, Zahra Yousefijamarani, Morgan Lindsay Heisler, Rongzhi Gu 외 arxiv

Modern LLM applications such as deep-research assistants, coding agents, and Retrieval-Augmented Generation (RAG) systems, repeatedly process long prompt histories containing shared document or code chunks, creating sign…