pith. sign in

arxiv: 2606.12556 · v2 · pith:4HIB53MMnew · submitted 2026-06-10 · 💻 cs.DC

ITME: Inference Tiered Memory Expansion with Disaggregated CXL-Hybrid Memories

Pith reviewed 2026-06-27 08:10 UTC · model grok-4.3

classification 💻 cs.DC
keywords LLM inferenceCXL memoryKV cachememory expansiondisaggregated memorytiered storageremote memorythroughput improvement
0
0 comments X

The pith

ITME adds CXL-hybrid remote memory to handle TB-scale KV caches in LLM inference beyond host limits.

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The paper introduces ITME as a way to scale memory for agentic and long-context LLM workloads that exceed single-server capacities. It does this by using CXL-hybrid memories to create a large byte-addressable remote memory pool that works alongside existing storage. The approach rests on the observation that model weights and prefix caches have predictable access patterns, which the system can exploit to move data ahead of time across memory and storage layers. Evaluation on production hardware shows this yields up to 35.7 percent higher throughput than standard CPU-offloading methods. Readers would care because the design reduces reliance on complex software layers for disaggregated context sharing.

Core claim

ITME leverages a CXL-hybrid memory to present a massive, TB-scale byte-addressable remote memory expansion that enables cost-efficient scaling and simplifies the software stack through direct byte-addressability. The key insight is that the deterministic access patterns of voluminous model weights and prefix caches enable the system to proactively manage data movement across the memory-storage hierarchy. Validation with SK Hynix CMM and PCIe Gen5 NVMe SSDs plus an FPGA prototype shows ITME enhances conventional CPU-offloading by accommodating large KV cache footprints beyond host memory limits, achieving up to a 35.7% throughput improvement.

What carries the argument

CXL-hybrid memory tier that supplies byte-addressable remote expansion and supports proactive data movement driven by deterministic access patterns.

If this is right

  • Shared context layers can scale to TB-scale states across distributed clusters without heavy DPU software tuning.
  • Direct byte-addressability reduces the need for specialized NVMe-oF target optimizations.
  • Production hardware combinations like CMM and Gen5 SSDs become viable for cost-efficient expansion.
  • FPGA prototypes confirm the architecture works at the hardware level for inference workloads.

Where Pith is reading between the lines

These are editorial extensions of the paper, not claims the author makes directly.

  • The same tiered expansion could apply to other data-heavy serving systems that exhibit regular access sequences.
  • Combining ITME with existing host memory managers might create hybrid local-remote policies that further cut latency.
  • Wider adoption could shift cluster design away from pure flash offload toward memory-centric disaggregation for inference.
  • Testing with varying context lengths would reveal how the proactive movement scales when KV cache sizes change dynamically.

Load-bearing premise

The access patterns of model weights and prefix caches are deterministic enough for the system to manage data movement proactively across tiers.

What would settle it

Running the same LLM inference workload with deliberately randomized KV cache accesses and measuring whether throughput still improves or instead drops below the CPU-offloading baseline.

Figures

Figures reproduced from arXiv: 2606.12556 by Hakbeom Jang, Hanyee Kim, Hoshik Kim, Jongryool Kim, Sunwoong Kim, Taeyoung Ahn, Younghoon Min, Youngpyo Joo.

Figure 1
Figure 1. Figure 1: Structural comparison of memory hierarchy [PITH_FULL_IMAGE:figures/full_fig_p002_1.png] view at source ↗
Figure 2
Figure 2. Figure 2: Access behavior and prefetching opportunities for [PITH_FULL_IMAGE:figures/full_fig_p003_2.png] view at source ↗
Figure 4
Figure 4. Figure 4: CXL-Hybrid Memory Architecture This hardware-driven data movement allows the CXL-hybrid mem￾ory to sustain high effective throughput and remain ahead of GPU demand. 3 CXL-Hybrid Memory Architecture CXL-hybrid memory is a CXL-enabled hardware device [42] de￾signed explicitly for massive, cost-effective memory expansion. By providing cache-coherent [12], byte-addressable access, the CXL protocol enables the … view at source ↗
Figure 5
Figure 5. Figure 5: Example Walkthrough of User-Directed Prefetching [PITH_FULL_IMAGE:figures/full_fig_p005_5.png] view at source ↗
Figure 6
Figure 6. Figure 6: Overall Architecture of ITME CPU staging buffer. During the eviction process, ITME sequentially appends blocks into these chunks as they are released from GPU memory. This sequential appending naturally restores the logical sequence of KV blocks, providing a unique opportunity during the prefill phase, which accounts for the bulk of the stored data [45]. Since blocks from a single request are freed simulta… view at source ↗
Figure 7
Figure 7. Figure 7: Exmple Walkthrough of ITME Once chunks are staged in the CPU staging buffer, the system balances a fundamental trade-off between block-wise and layer￾wise transfer granularities. While a block-wise approach enables rapid slot reclamation through a single DMA operation, it serializes execution and leaves the GPU idle until the entire block transfer completes. To align with model weight streaming and maximiz… view at source ↗
Figure 8
Figure 8. Figure 8: Overview of the multi-node evaluation testbed: (a) [PITH_FULL_IMAGE:figures/full_fig_p008_8.png] view at source ↗
Figure 9
Figure 9. Figure 9: Recomputation is set to 16 GB for 8B and 32 GB for [PITH_FULL_IMAGE:figures/full_fig_p009_9.png] view at source ↗
Figure 12
Figure 12. Figure 12: (a) Weight Prefetching analysis; (b) Performance [PITH_FULL_IMAGE:figures/full_fig_p010_12.png] view at source ↗
Figure 13
Figure 13. Figure 13: Performance comparison including ITME (FPGA) [PITH_FULL_IMAGE:figures/full_fig_p011_13.png] view at source ↗
Figure 14
Figure 14. Figure 14: Bandwidth comparison of the CMM based setup [PITH_FULL_IMAGE:figures/full_fig_p011_14.png] view at source ↗
read the original abstract

The rapid shift toward agentic and long-context workloads in Large Language Models (LLMs) is pushing the industry beyond the capacity of individual servers toward disaggregated shared storage to handle TB-scale context states. This movement has led to the emergence of specialized shared context layers designed to externalize and share cumulative inference states across distributed clusters. While offloading to a data processing unit (DPU) within just-a-bunch-of-flash (JBOF) architectures accelerates NVMe-over-fabrics (NVMe-oF) target processing, the need for sophisticated software-level optimization and cost-efficiency burdens remain significant. Consequently, the ideal architecture for scaling this shared context infrastructure is still an active area of exploration. In this paper, we propose ITME (Inference Tiered Memory Expansion), which leverages a CXL-hybrid memory to present a massive, TB-scale byte-addressable remote memory expansion. This approach enables cost-efficient scaling and simplifies the software stack through direct byte-addressability, effectively addressing the challenges of shared context infrastructure. Our key insight is that the deterministic access patterns of voluminous model weights and prefix caches enable the system to proactively manage data movement across the memory-storage hierarchy. We validate ITME by evaluating its performance potential with production-grade SK Hynix CMM and PCIe Gen5 NVMe SSDs, while further demonstrating its functional feasibility through an FPGA-based hardware prototype. Overall, ITME enhances conventional CPU-offloading by providing additional remote memory expansion to accommodate large KV cache footprints beyond host memory limits, achieving up to a 35.7\% throughput improvement.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, simulated authors' rebuttal, and a circularity audit. Tearing a paper down is the easy half of reading it; the pith above is the substance, this is the friction.

Referee Report

2 major / 2 minor

Summary. The paper proposes ITME, a disaggregated architecture using CXL-hybrid memories (SK Hynix CMM + Gen5 NVMe) to provide TB-scale byte-addressable remote memory expansion for LLM inference. It targets large KV cache footprints beyond host DRAM limits by offloading from conventional CPU-based approaches, with the key insight that deterministic access patterns of model weights and prefix caches enable proactive tiered data movement. Functional feasibility is shown via an FPGA prototype, and hardware evaluation reports up to 35.7% throughput improvement.

Significance. If the performance results hold under detailed scrutiny, ITME could meaningfully advance cost-efficient scaling of shared context layers for long-context and agentic LLM workloads by simplifying the software stack through direct byte-addressability. The combination of production-grade hardware components and an FPGA prototype provides a concrete feasibility demonstration that strengthens the architecture's practicality.

major comments (2)
  1. [Evaluation section] Evaluation section (hardware results): the central claim of a 35.7% throughput improvement is load-bearing for the paper's contribution, yet the abstract (and by extension the reported evaluation) supplies no baselines, workload details, error bars, or exclusion criteria, preventing verification of the gain's robustness or attribution to the CXL-hybrid tiering.
  2. [§3] §3 (key insight and architecture): the claim that deterministic access patterns of voluminous model weights and prefix caches enable proactive data movement across the memory-storage hierarchy is presented as the enabling insight, but lacks concrete quantification or prototype measurements showing how this determinism is exploited versus reactive baselines.
minor comments (2)
  1. Clarify the exact CXL protocol version, coherence model, and latency/bandwidth assumptions used in the FPGA prototype versus the SK Hynix CMM evaluation.
  2. Add a table or figure comparing ITME against at least one standard CPU-offload baseline and one pure NVMe-oF configuration to make the 35.7% figure interpretable.

Simulated Author's Rebuttal

2 responses · 0 unresolved

We thank the referee for the detailed and constructive feedback. We address each major comment below, agreeing where revisions are warranted to strengthen the manuscript.

read point-by-point responses
  1. Referee: [Evaluation section] Evaluation section (hardware results): the central claim of a 35.7% throughput improvement is load-bearing for the paper's contribution, yet the abstract (and by extension the reported evaluation) supplies no baselines, workload details, error bars, or exclusion criteria, preventing verification of the gain's robustness or attribution to the CXL-hybrid tiering.

    Authors: We agree that the abstract is too concise to include these elements and that the evaluation section would benefit from greater explicitness. The full manuscript does compare against conventional CPU-offloading as the primary baseline and describes the workloads, but we will revise both the abstract and §Evaluation to add error bars, explicit workload parameters, exclusion criteria, and clearer attribution of gains to the tiered CXL-hybrid mechanism. revision: yes

  2. Referee: [§3] §3 (key insight and architecture): the claim that deterministic access patterns of voluminous model weights and prefix caches enable proactive data movement across the memory-storage hierarchy is presented as the enabling insight, but lacks concrete quantification or prototype measurements showing how this determinism is exploited versus reactive baselines.

    Authors: The architecture in §3 relies on the deterministic patterns to drive proactive movement, and the FPGA prototype validates overall functionality. However, we acknowledge that direct quantitative comparison to reactive baselines is not currently reported. We will add prototype measurements contrasting proactive versus reactive policies to quantify the benefit of exploiting determinism. revision: yes

Circularity Check

0 steps flagged

No significant circularity

full rationale

The paper is a systems/architecture proposal for ITME, a CXL-hybrid memory expansion for LLM KV cache offloading. Its central claims rest on a hardware prototype (SK Hynix CMM + Gen5 NVMe + FPGA) and measured throughput gains rather than any mathematical derivation chain. The abstract and description contain no equations, fitted parameters, self-definitional constructs, uniqueness theorems, or self-citations that could reduce a prediction to its inputs by construction. The key insight about deterministic access patterns is presented as an empirical observation enabling the design, not as a fitted or renamed result. The derivation is therefore self-contained against external hardware benchmarks.

Axiom & Free-Parameter Ledger

0 free parameters · 0 axioms · 0 invented entities

No free parameters, mathematical axioms, or invented entities are stated in the abstract; the work is an empirical hardware-systems proposal relying on standard assumptions about CXL behavior and access predictability.

pith-pipeline@v0.9.1-grok · 5844 in / 1046 out tokens · 17289 ms · 2026-06-27T08:10:21.165233+00:00 · methodology

discussion (0)

Sign in with ORCID, Apple, or X to comment. Anyone can read and Pith papers without signing in.

Reference graph

Works this paper leans on

48 extracted references · 6 canonical work pages

  1. [1]

    Aguilera, Emmanuel Amaro, Nadav Amit, Erika Hunhoff, Anil Yelam, and Greg Zellweger

    Marcos K. Aguilera, Emmanuel Amaro, Nadav Amit, Erika Hunhoff, Anil Yelam, and Greg Zellweger. 2023. Memory Disaggregation: Why Now and What Are the Challenges.ACM SIGOPS Operating Systems Review57, 1 (2023), 38–46. https://doi.org/10.1145/3606557.3606563

  2. [2]

    Del Mundo, Mohammad Rastegari, and Mehrdad Farajtabar

    Keivan Alizadeh, Iman Mirzadeh, Dmitry Belenko, Karen Khatamifard, Minsik Cho, Carlo C. Del Mundo, Mohammad Rastegari, and Mehrdad Farajtabar. 2023. LLM in a Flash: Efficient Large Language Model Inference with Limited Memory. arXiv preprint arXiv:2312.11514(2023)

  3. [3]

    Altera. 2026. Agilex 7 FPGA and SoC FPGA I-Series Overview. https://www. altera.com/products/fpga/agilex/7/i-series

  4. [4]

    Reza Yazdani Aminabadi, Samyam Rajbhandari, Minjia Zhang, Ammar Ahmad Awan, Cheng Li, Du Li, Elton Zheng, Jeff Rasley, Shaden Smith, Olatunji Ruwase, and Yuxiong He. 2022. DeepSpeed-Inference: Enabling Efficient Inference of Transformer Models at Unprecedented Scale. InProceedings of the International Conference for High Performance Computing, Networking,...

  5. [5]

    Mustafa Rafique, and Sudharshan Vazhkudai

    Moiz Arif, Kevin Assogba, M. Mustafa Rafique, and Sudharshan Vazhkudai. 2022. Exploiting CXL-based Memory for Distributed Deep Learning. InProceedings of the 51st International Conference on Parallel Processing. ACM, 19:1–19:11

  6. [6]

    Yihua Cheng, Yuhan Liu, Jiayi Yao, Yuwei An, Xiaokun Chen, Shaoting Feng, Yuyang Huang, Samuel Shen, Kuntai Du, and Junchen Jiang. 2025. LMCache: An Efficient KV Cache Layer for Enterprise-Scale LLM Inference.arXiv preprint arXiv:2510.09665(2025)

  7. [7]

    Pouya Esmaili-Dokht, Francesco Sgherzi, Valéria Soldera Girelli, Isaac Boixaderas, Mariana Carmin, Alireza Monemi, Adrià Armejach, Estanislao Mercadal, German Llort, Petar Radojkovic, Miquel Moretó, Judit Giménez, Xavier Martorell, Eduard Ayguadé, Jesús Labarta, Emanuele Confalonieri, Rishabh Dubey, and Jason Ad- lard. 2024. A Mess of Memory System Benchm...

  8. [8]

    Yehonatan Fridman, Suprasad Mutalik Desai, Navneet Singh, Thomas Willhalm, and Gal Oren. 2023. CXL Memory as Persistent Memory for Disaggregated HPC: A Practical Approach. InProceedings of the SC ’23 Workshops of The International Conference on High Performance Computing, Network, Storage, and Analysis. ACM, 983–994. https://doi.org/10.1145/3624062.3624175

  9. [9]

    Bin Gao, Zhuomin He, Puru Sharma, Qingxuan Kang, Djordje Jevdjic, Junbo Deng, Xingkun Yang, Zhou Yu, and Pengfei Zuo. 2024. Cost-Efficient Large Language Model Serving for Multi-turn Conversations with CachedAttention. InarXiv preprint arXiv:2403.19708v3

  10. [10]

    Goumas, Zeshan Chishti, and Nandita Vijaykumar

    Christina Giannoula, Kailong Huang, Jonathan Tang, Nectarios Koziris, Geor- gios I. Goumas, Zeshan Chishti, and Nandita Vijaykumar. 2023. DaeMon: Archi- tectural Support for Efficient Data Movement in Fully Disaggregated Systems. Proceedings of the ACM on Measurement and Analysis of Computing Systems7, 1 (2023), 16:1–16:36. https://doi.org/10.1145/3579445

  11. [11]

    Donghyun Gouk, Miryeong Kwon, Hanyeoreum Bae, Sangwon Lee, and My- oungsoo Jung. 2023. Memory Pooling With CXL.IEEE Micro43, 2 (2023), 48–57. https://doi.org/10.1109/MM.2023.3237491

  12. [12]

    Donghyun Gouk, Sangwon Lee, Miryeong Kwon, and Myoungsoo Jung. 2022. Direct Access, High-Performance Memory Disaggregation with DirectCXL. In 2022 USENIX Annual Technical Conference (USENIX ATC 22). USENIX Association, Carlsbad, CA, 287–294. https://www.usenix.org/conference/atc22/presentation/ gouk

  13. [13]

    Z. Guo, H. Zhang, C. Zhao, Y. Bai, M. Swift, and M. Liu. 2023. LEED: A Low- Power, Fast Persistent Key-Value Store on SmartNIC JBOFs. InProceedings of the ACM SIGCOMM 2023 Conference. 1012–1027

  14. [14]

    Xiao-Yu Hu, Evangelos Eleftheriou, Robert Haas, Ilias Iliadis, and Roman Pletka

  15. [15]

    InProceed- ings of SYSTOR 2009: The Israeli Experimental Systems Conference (SYSTOR ’09)

    Write Amplification Analysis in Flash-Based Solid State Drives. InProceed- ings of SYSTOR 2009: The Israeli Experimental Systems Conference (SYSTOR ’09). ACM, 10:1–10:9. https://doi.org/10.1145/1534530.1534544

  16. [16]

    Intel. 2016. Introduction to the Storage Performance Development Kit (SPDK). https://www.intel.com/content/www/us/en/developer/articles/tool/ introduction-to-the-storage-performance-development-kit-spdk.html

  17. [17]

    Juhyun Jang, Donghyun Gouk, Miryeong Kwon, Sangwon Han, Myoungsoo Kim, and Myoungsoo Jung. 2023. CXL-ANNS: Software-Hardware Collaborative Memory Disaggregation and Computation. InProceedings of the 2023 USENIX Annual Technical Conference (ATC)

  18. [18]

    Shine Kim, Jonghyun Bae, Hakbeom Jang, Wenjing Jin, Jeonghun Gong, Se- ungyeon Lee, Tae Jun Ham, and Jae W. Lee. 2019. Practical Erase Suspen- sion for Modern Low-latency SSDs. In2019 USENIX Annual Technical Con- ference (USENIX ATC 19). USENIX Association, Renton, WA, 813–820. https: //www.usenix.org/conference/atc19/presentation/kim-shine

  19. [19]

    KIOXIA. 2024. KIOXIA CD8P-R NVMe Solid-State Drive. Product specification

  20. [20]

    Gonzalez, Hao Zhang, and Ion Stoica

    Woosuk Kwon, Zhuohan Li, Siyuan Zhuang, Ying Sheng, Lianmin Zheng, Cody Hao Yu, Joseph E. Gonzalez, Hao Zhang, and Ion Stoica. 2023. Efficient Memory Management for Large Language Model Serving with PagedAttention. arXiv preprint arXiv:2309.06180(2023)

  21. [21]

    Wonbeom Lee, Jungi Lee, Junghwan Seo, and Jaewoong Sim. 2024. InfiniGen: Efficient Generative Inference of Large Language Models with Dynamic KV Cache Management. In18th USENIX Symposium on Operating Systems Design and Implementation (OSDI 24). USENIX Association, Santa Clara, CA, 155–172. https://www.usenix.org/conference/osdi24/presentation/lee

  22. [22]

    Hasan Al Maruf and Mosharaf Chowdhury. 2023. TPP: Transparent Page Place- ment for CXL-Enabled Tiered-Memory. InProceedings of the 28th ACM Inter- national Conference on Architectural Support for Programming Languages and Operating Systems (ASPLOS)

  23. [23]

    J. Min, M. Liu, T. Chugh, C. Zhao, A. Wei, I. H. Doh, and A. Krishnamurthy. 2021. Gimbal: Enabling Multi-Tenant Storage Disaggregation on SmartNIC JBOFs. In Proceedings of the 2021 ACM SIGCOMM 2021 Conference. 106–122

  24. [24]

    Jidong Min, Ming Liu, Tushar Chugh, Chris Zhao, Andrew Wel, In Hwan Doh, and Arvind Krishnamurthy. 2021. Gimbal: Enabling Multi-tenant Storage Disag- gregation on SmartNIC JBOFs. InProceedings of the 2021 ACM SIGCOMM 2021 Conference. 106–122

  25. [25]

    NVIDIA. 2021. NVIDIA BlueField Networking Platform. https://www.nvidia. com/en-us/networking/products/data-processing-unit/. Accessed: 2026-03-30

  26. [26]

    NVIDIA. 2024. Chelsio T7 DPU Furthers Expansive Ethernet Storage Networking, Empowering Open, ROI-Enhanced Enterprise Storage Platforms. https://www. chelsio.com/wp-content/uploads/resources/pr-chelsio-t7-jbof.pdf. Accessed: 2026-03-30

  27. [27]

    NVIDIA. 2026. CUDA Programming Guide: Page-Locked Host Memory. https://docs.nvidia.com/cuda/cuda-programming-guide/02- basics/understanding-memory.html. CUDA Programming Guide v13.2, Section 2.4.3, accessed 2026-04-06

  28. [28]

    NVIDIA. 2026. Introducing NVIDIA BlueField-4-Powered CMX Context Memory Storage Platform for the Next Frontier of AI.NVIDIA Technical Blog(2026). https://developer.nvidia.com/blog/introducing-nvidia-bluefield-4-powered- inference-context-memory-storage-platform-for-the-next-frontier-of-ai/

  29. [29]

    NVM Express. 2017. Accelerating NVMe™over Fabrics with Hardware Of- floads at 100Gb/s and Beyond. https://nvmexpress.org/wp-content/uploads/ Accelerating-NVMe-over-Fabrics-with-Hardware-Offloads.pdf

  30. [30]

    Ruoyu Qin, Zheming Li, Weiran He, Jialei Cui, Feng Ren, Mingxing Zhang, Yongwei Wu, Weimin Zheng, and Xinran Xu. 2025. Mooncake: Trading More Storage for Less Computation — A KVCache-Centric Architecture for Serving LLM Chatbots. InProceedings of the USENIX Conference on File and Storage Technologies

  31. [31]

    Jiacheng Shen, Pengfei Zuo, Xuchuan Luo, Yuxuan Su, Jiazhen Gu, Hao Feng, Yangzhou Zhou, and Michael R. Lyu. 2023. Ditto: An elastic and adaptive memory- disaggregated caching system. InProceedings of the 29th Symposium on Operating Systems Principles (SOSP). 675–691

  32. [32]

    Fu, Zhiqiang Xie, Beidi Chen, Clark Barrett, Joseph E

    Ying Sheng, Lianmin Zheng, Binhang Yuan, Zhuohan Li, Max Ryabinin, Daniel Y. Fu, Zhiqiang Xie, Beidi Chen, Clark Barrett, Joseph E. Gonzalez, and Ion Stoica

  33. [33]

    InProceedings of the 40th International Conference on Machine Learning (ICML)

    FlexGen: High-Throughput Generative Inference of Large Language Models with a Single GPU. InProceedings of the 40th International Conference on Machine Learning (ICML)

  34. [34]

    SK hynix. 2024. SK hynix CXL Memory Module. Product documentation

  35. [35]

    Yixin Song, Zeyu Mi, Haotong Xie, and Haibo Chen. 2023. PowerInfer: Fast Large Language Model Serving with a Consumer-Grade GPU.arXiv preprint arXiv:2312.12456(2023)

  36. [36]

    Xun Sun, Mingxing Zhang, Yingdi Shan, Kang Chen, Jinlei Jiang, and Yongwei Wu. 2025. Scalio: Scaling up DPU-based JBOF Key-value Store with NVMe-oF Target Offload. In19th USENIX Symposium on Operating Systems Design and Implementation (OSDI ’25). USENIX Association

  37. [37]

    Super Micro Computer, Inc. 2024. Petascale JBOF All-Flash Array for AI Data Pipeline Acceleration. https://www.supermicro.org.cn/en/products/jbof

  38. [38]

    Supermicro. 2024. Petascale JBOF All-Flash Array for AI Data Pipeline Accelera- tion. https://www.supermicro.org.cn/en/products/jbof. Accessed: 2026-03-30

  39. [39]

    TechPowerUp. 2024. SK Hynix Platinum P51 2 TB Specs. https://www. techpowerup.com/ssd-specs/sk-hynix-platinum-p51-2-tb.d1968. Accessed: 2026-04-06

  40. [40]

    Shin-Yeh Tsai, Yizhou Shan, and Yiying Zhang. 2020. Disaggregating Persistent Memory and Controlling Them Remotely: An Exploration of Passive Disaggre- gated Key-Value Stores. In2020 USENIX Annual Technical Conference (USENIX ATC 20). USENIX Association, 33–48. https://www.usenix.org/conference/atc20/ presentation/tsai

  41. [41]

    Xi Wang, Jie Liu, Jianbo Wu, Shuangyan Yang, Jie Ren, Bhanu Shankar, and Dong Li. 2024. Exploring and Evaluating Real-World CXL: Use Cases and System Adoption.arXiv preprint arXiv:2405.14209(2024)

  42. [42]

    Jingsen Xu, Yu Qiu, Yuan Chen, Yang Wang, Wei Lin, Yi Lin, Shuai Zhao, Yan Liu, Yu Wang, and Wenguang Chen. 2024. Performance Characterization of SmartNIC NVMe-over-Fabrics Target Offloading. InProceedings of the 17th ACM International Systems and Storage Conference. 14–24

  43. [43]

    Lingfan Yu, Jinkun Lin, and Jinyang Li. 2023. Stateful Large Language Model Serving with Pensieve.arXiv preprint arXiv:2312.05516(2023)

  44. [44]

    Jianping Zeng, Shuyi Pei, Da Zhang, Yuchen Zhou, Amir Beygi, Xuebin Yao, Ramdas Kachare, Tong Zhang, Zongwang Li, Marie Nguyen, Rekha Pitchumani, 12 Yang Soek Ki, and Changhee Jung. 2025. Performance Characterizations and Usage Guidelines of Samsung CXL Memory Module Hybrid Prototype.arXiv preprint arXiv:2503.22017(2025)

  45. [45]

    L. Zhan, K. Lu, Y. Xiong, J. Wan, and Z. Yang. 2024. TrickleKV: A High- Performance Key-Value Store on Disaggregated Storage with Low Network Traffic.IEEE Access(2024)

  46. [46]

    Ming Zhang, Yu Hua, Pengfei Zuo, and Limin Liu. 2022. FORD: Fast one-sided RDMA-based distributed transactions for disaggregated persistent memory. In Proceedings of the 20th USENIX Conference on File and Storage Technologies (FAST 22). 51–68

  47. [47]

    Yinmin Zhong, Shengyu Liu, Junda Chen, Jianbo Hu, Yibo Zhu, Xuanzhe Liu, Xin Jin, and Hao Zhang. 2024. DistServe: Disaggregating Prefill and Decoding for Goodput-optimized Large Language Model Serving. arXiv:2401.09670 [cs.DC]

  48. [48]

    Yuchen Zhou, Jianping Zeng, and Changhee Jung. 2024. LightWSP: Whole- System Persistence on the Cheap. In2024 57th IEEE/ACM International Sym- posium on Microarchitecture (MICRO). IEEE, 215–230. https://doi.org/10.1109/ MICRO61859.2024.00025 13