Skip to main content

A KVCache-centric Disaggregated Architecture for LLM Serving

Paper | Slides | Traces | Documentation | Blog | Slack

Ask DeepWiki PyPI - Downloads GitHub commit activity license Docker

PyPI CUDA <=12.9 PyPI CUDA 13.0/13.1 PyPI Non-CUDA PyPI NPU PyPI MUSA PyPI EFA CUDA 12 PyPI EFA Non-CUDA


Mooncake is the serving platform for icon Kimi, a leading LLM service provided by icon Moonshot AI. Under real workloads, Mooncake’s innovative architecture enables Kimi to handle 75% more requests while adhering to SLOs.

🔄 Updates

  • Aug 24, 2026: Mooncake now supports UCL-MPComm as a TENT transport backend, an RDMA-native multi-rail data plane open-sourced by the Tencent Astral Network Team. It can achieve maximum performance in both DRAM and VRAM transfer scenarios.
  • Aug 20, 2026: Mooncake is integrated into Miles as a rollout data-transfer backend for the fragmented, heterogeneous data moving between rollout and training in disaggregated RL. Blogs: KVCache.AI, lmsys.
  • Aug 17, 2026: Mooncake is integrated into Speculators as a distributed backend for multi-node online training, efficiently moves hidden-state between vLLM inference workers and Speculators trainers through RDMA, eliminating the need for massive hidden-state storage in offline training. Benchmark on GB300 NVL72.
  • May 7, 2026: 🚀 vLLM officially features Mooncake Store — a deep dive into how Mooncake's distributed KVCache engine supercharges vLLM inference with high-throughput, memory-efficient, cross-instance KV cache sharing!
  • Apr 29, 2026: SGLang introduces RDMA-based P2P weight transfer for large-scale distributed RL using Mooncake TransferEngine, achieving 7x faster weight updates for the 1T-parameter Kimi-K2 model (53s → 7.2s) with zero-copy RDMA transfer across thousands of GPUs.
  • Mar 19, 2026: TorchSpec: Speculative Decoding Training at Scale is open sourced, using Mooncake to decouple inference and training via efficient hidden states management.
More
  • Mar 5, 2026: LightX2V now supports disaggregated deployment based on Mooncake, enabling encoder/transformer service decoupling with Mooncake Transfer Engine for high-performance cross-device and cross-machine data transfer. Details in blog.
  • Feb 25, 2026: SGLang merged Encoder Global Cache Manager, introducing a Mooncake-powered global multimodal embedding cache that enables cross-instance sharing of ViT embeddings to avoid redundant GPU computation.
  • Feb 24, 2026: vLLM-Omni introduces disaggregated inference connectors with support for both MooncakeStoreConnector and MooncakeTransferEngineConnector for multi-node omni-modality pipelines.
  • Feb 12, 2026: Mooncake Joins PyTorch Ecosystem We are thrilled to announce that Mooncake has officially joined the PyTorch Ecosystem!
  • Jan 28, 2026: FlexKV, a distributed KV store and cache system from Tencent and NVIDIA in collaboration with the community, now supports distributed KVCache reuse with the Mooncake Transfer Engine.
  • Dec 27, 2025: Collaboration with ROLL! Check out the paper here.
  • Dec 23, 2025: SGLang introduces Encode-Prefill-Decode (EPD) Disaggregation with Mooncake as a transfer backend. This integration allows decoupling compute-intensive multimodal encoders (e.g., Vision Transformers) from language model nodes, utilizing Mooncake's RDMA engine for zero-copy transfer of large multimodal embeddings.
  • Dec 19, 2025: Mooncake Transfer Engine has been integrated into TensorRT LLM for KVCache transfer in PD-disaggregated inference.
  • Dec 19, 2025: Mooncake Transfer Engine has been directly integrated into vLLM v1 as a KV Connector in PD-disaggregated setups.
  • Nov 07, 2025: RBG + SGLang HiCache + Mooncake, a role-based out-of-the-box solution for cloud native deployment, which is elastic, scalable, and high-performance.
  • Sept 18, 2025: Mooncake Store empowers vLLM Ascend by serving as the distributed KV cache pool backend.
  • Sept 10, 2025: SGLang officially supports Mooncake Store as a hierarchical KV caching storage backend. The integration extends RadixAttention with multi-tier KV cache storage across device, host, and remote storage layers.
  • Sept 10, 2025: The official & high-performance version of Mooncake P2P Store is open-sourced as checkpoint-engine. It has been successfully applied in K1.5 and K2 production training, updating Kimi-K2 model (1T parameters) across thousands of GPUs in ~20s.
  • Aug 23, 2025: xLLM high-performance inference engine builds hybrid KV cache management based on Mooncake, supporting global KV cache management with intelligent offloading and prefetching.
  • Aug 18, 2025: vLLM-Ascend integrates Mooncake Transfer Engine for KV cache register and disaggregate prefill, enabling efficient distributed inference on Ascend NPUs.
  • Jul 20, 2025: Mooncake powers the deployment of Kimi K2 on 128 H200 GPUs with PD disaggregation and large-scale expert parallelism, achieving 224k tokens/sec prefill throughput and 288k tokens/sec decode throughput.
  • Jun 20, 2025: Mooncake becomes a PD disaggregation backend for LMDeploy.
  • May 9, 2025: NIXL officially supports Mooncake Transfer Engine as a backend plugin.
  • May 8, 2025: Mooncake x LMCache unite to pioneer KVCache-centric LLM serving system.
  • May 5, 2025: Supported by Mooncake Team, SGLang release guidance to deploy DeepSeek with PD Disaggregation on 96 H100 GPUs.
  • Apr 22, 2025: LMCache officially supports Mooncake Store as a remote connector.
  • Apr 10, 2025: SGLang officially supports Mooncake Transfer Engine for disaggregated prefilling and KV cache transfer.
  • Mar 7, 2025: We open-sourced the Mooncake Store, a distributed KVCache based on Transfer Engine. vLLM's xPyD disaggregated prefilling & decoding based on Mooncake Store will be released soon.
  • Feb 25, 2025: Mooncake receives the Best Paper Award at FAST 2025!
  • Feb 21, 2025: The updated traces used in our FAST'25 paper have been released.
  • Dec 16, 2024: vLLM officially supports Mooncake Transfer Engine for disaggregated prefilling and KV cache transfer.
  • Nov 28, 2024: We open-sourced the Transfer Engine, the central component of Mooncake. We also provide two demonstrations of Transfer Engine: a P2P Store and vLLM integration.
  • July 9, 2024: We open-sourced the trace as a JSONL file.
  • June 27, 2024: We present a series of Chinese blogs with more discussions on zhihu 1, 2, 3, 4, 5, 6, 7.
  • June 26, 2024: Initial technical report release.

🎉 Overview

Mooncake is an infrastructure project for large-scale LLM inference and training. It features a KV cache-centric disaggregated architecture that separates prefill and decode clusters, while leveraging otherwise underutilized CPU, DRAM, and SSD resources in GPU clusters to build a disaggregated KV cache pool.

Mooncake includes a high-performance Transfer Engine for low-latency data movement across heterogeneous networks and accelerators; Mooncake Store for distributed KV cache and model-weight management; and Mooncake EP & PG for elastic MoE serving. Deeply integrated with ecosystems such as SGLang and vLLM, Mooncake helps LLM systems improve cache reuse, reduce serving latency, and scale efficiently across multi-node clusters.

🔥 Show Cases

Transfer Engine (TE)

The core of Mooncake is the Transfer Engine (TE), a high-performance data transfer framework. TE offers a unified interface for batched data movement across diverse storage, network, and accelerator environments. By supporting multiple transport protocols, topology-aware routing, multi-NIC bandwidth aggregation, and automatic failover, TE delivers low-latency, scalable, and robust data transmission for distributed AI workloads. See the Transfer Engine guide for details.

Highlights
  • Efficient use of multiple RDMA NIC devices. Transfer Engine supports the use of multiple RDMA NIC devices to achieve the aggregation of transfer bandwidth.

  • Topology-aware path selection. Transfer Engine can select optimal devices based on the location (NUMA affinity, etc.) of both source and destination.

  • Robust against temporary network errors. Once transmission fails, Transfer Engine will try to use alternative paths for data delivery automatically.

  • Superior performance at scale. With 40 GB of data (equivalent to the size of the KVCache generated by 128k tokens in the LLaMA3-70B model), Mooncake Transfer Engine delivers up to 87 GB/s and 190 GB/s of bandwidth in 4×200 Gbps and 8×400 Gbps RoCE networks respectively, which are about 2.4x and 4.6x faster than the TCP protocol.

  • Broad support for heterogeneous transports and accelerators. Transfer Engine provides unified data transfer across diverse protocols, including TCP, RDMA, AWS EFA, NVMe-oF, NVLink, HIP, Barex, CXL, and Ascend-family transports. When built with the corresponding runtime, Transfer Engine can detect accelerator memory and select suitable transport paths for efficient data movement across CUDA, MUSA, HIP, MACA, Cambricon MLU, and Ascend-enabled environments. For a complete list of supported protocols and configuration guide, see the Supported Protocols Documentation.

  • Widely adopted across the LLM ecosystem. TE is used in production inference stacks such as SGLang, vLLM, TensorRT-LLM, vLLM-Ascend, checkpoint-engine, and NIXL, among others, to efficiently transfer KV cache, embeddings, model weights, and other data.

Mooncake Store

Mooncake Store is a high-performance distributed key-value cache storage engine designed for LLM inference. Built on the Transfer Engine, it stores and manages reusable KV caches and model weights across inference clusters, with support for efficient object storage, replication, eviction, and high-bandwidth data transfer. See the Mooncake Store guide for details.

Highlights
  • High bandwidth utilization. Mooncake Store supports large-object striping, parallel I/O, and end-to-end zero-copy data transfer, fully utilizing aggregated bandwidth across multiple NICs.

  • Multi-tier cache hierarchy. Mooncake Store supports a multi-level cache design across DRAM and SSD/NVMe, enabling larger cache capacity.

  • Elastic and disaggregated storage. Mooncake Store decouples KVCache storage from inference engines, allowing storage nodes to be dynamically added or removed while keeping cached data independent from engine restarts, upgrades, and scheduling decisions.

  • Programmatic object management. Mooncake Store allows applications to control object placement and lifecycle through per-object policies, including replica counts, preferred segments, soft pin, and hard pin. These controls help inference systems protect important KV caches and model weights while guiding replication, placement, and eviction behavior.

  • Broad ecosystem adoption. Mooncake Store is used across the LLM systems ecosystem as a high-performance distributed storage backend for KV caches, hidden states, and model weights. It supports integrations with SGLang's Hierarchical KV Caching, vLLM's prefill serving, and LMCache, and has been adopted by systems such as TorchSpec and TransferQueue to decouple inference, training, and reinforcement-learning workloads through efficient state management and asynchronous data movement.

Mooncake EP and Process Group (PG)

Mooncake EP and Mooncake PG extend Mooncake from high-performance data movement to fault-tolerant distributed execution for large-scale MoE inference. Mooncake EP adapts DeepEP-style expert-parallel dispatch and combine operations with rank activeness awareness, while Mooncake PG provides a PyTorch distributed process-group backend with collective communication primitives that can detect failed ranks, report failures to upper layers, and recover ranks without restarting the entire inference service. See the Mooncake EP & Backend guide for details.

Highlights
  • Fault-tolerant expert parallelism. Mooncake EP adds active_ranks awareness to expert-parallel dispatch and combine APIs, allowing MoE inference systems to route around failed ranks and continue serving with healthy experts.

  • DeepEP-compatible programming model. Mooncake EP keeps the API largely consistent with DeepEP's low-latency mode, making it easier for inference engines to adopt fault-tolerant expert parallelism without rewriting their MoE communication stack.

  • PyTorch ProcessGroup integration. Mooncake PG can be registered as a torch.distributed backend, enabling standard collective APIs such as all_gather while using Mooncake's communication and failure-reporting mechanisms underneath.

  • Elastic rank recovery. Mooncake PG exposes recovery-oriented primitives such as peer-state polling and rank recovery, allowing replacement processes to rejoin existing process groups and helping inference services recover from partial failures.

  • SGLang integration for production MoE serving. Mooncake's collective backend and expert-parallel kernels are integrated into SGLang to support fault-tolerant expert-parallel inference for large MoE models, including Elastic Expert Parallel serving scenarios.

Tensor-Centric Ecosystem

Mooncake establishes a full-stack, Tensor-oriented AI infrastructure where Tensors serve as the fundamental data carrier. The ecosystem spans from the Transfer Engine, which accelerates Tensor data movement across heterogeneous storage (DRAM/VRAM/NVMe), to Mooncake Store for distributed management of Tensor objects (e.g., KVCache and model weight), up to the Mooncake Backend enabling Tensor-based elastic distributed computing. This architecture is designed to maximize Tensor processing efficiency for large-scale model inference and training.

SGLang Integration (Guide)

Mooncake is deeply integrated into SGLang as a high-performance communication and storage backend. These integrations enable efficient KV cache transfer in PD-disaggregated serving, scalable multi-level KV caching through HiCache, fault-tolerant expert-parallel inference, high-performance multimodal pipeline data movement, and fast RDMA-based weight synchronization for large-scale RL training. Together, Mooncake and SGLang provide a production-oriented foundation for building elastic, high-throughput, and resource-efficient LLM and multimodal serving systems.

Details
  • PD Disaggregated Serving: SGLang officially supports Mooncake Transfer Engine as a backend for disaggregated serving and KV cache transfer, enabling prefill and decode workers to exchange KV cache data efficiently across devices and machines.

  • Hierarchical KV Caching: Mooncake Store serves as an external storage backend in SGLang's HiCache system, extending RadixAttention with multi-level KV cache storage across device, host, and remote storage layers.

  • Elastic Expert Parallel: Mooncake's collective communication backend and expert parallel kernels are integrated into SGLang to enable fault-tolerant expert parallel inference (Elastic EP).

  • Cloud-Native SGLang HiCache Deployment with RBG: The RBG + SGLang HiCache + Mooncake integration provides a role-based, out-of-the-box cloud-native deployment solution that is elastic, scalable, and optimized for high-performance inference workloads.

  • Encode-Prefill-Decode Disaggregation for Multimodal Serving: SGLang introduces Encode-Prefill-Decode disaggregation with Mooncake as a transfer backend. This enables compute-intensive multimodal encoders, such as Vision Transformers, to be decoupled from language model workers while transferring large embeddings efficiently through Mooncake’s RDMA-based engine.

  • SGLang-Omni Multi-Stage Pipeline Data Transfer: SGLang-Omni integrates Mooncake as a relay backend for efficient cross-stage tensor and blob transfer in multimodal serving pipelines. This enables high-performance data movement between heterogeneous components such as thinker, talker, codec, and vocoder stages.

  • RDMA-Based P2P Weight Transfer for Distributed RL: SGLang adopts Mooncake TransferEngine for RDMA-based peer-to-peer weight transfer in large-scale distributed reinforcement learning. This enables zero-copy weight updates across thousands of GPUs and significantly accelerates synchronization for trillion-parameter models.

vLLM Integration (Guide)

Mooncake integrates with vLLM to accelerate large language model serving through high-performance KV cache transfer and distributed KV cache storage. The integration supports both disaggregated prefill-decode serving and cross-instance KV cache sharing, helping vLLM deployments reduce TTFT, improve cache reuse, and scale more efficiently across multi-node inference clusters.

Details
  • Disaggregated prefill-decode serving: Mooncake enables vLLM to split prefill and decode workloads across different nodes. Through MooncakeConnector, vLLM transfers KV cache blocks from prefill workers to decode workers using Mooncake’s high-performance transfer engine, allowing prefill and decode resources to scale independently while keeping cross-node KV transfer overhead low.

  • Distributed KV cache pooling and sharing: Mooncake Store extends vLLM from isolated per-instance KV caches to a shared, cluster-level KV cache pool. Through MooncakeStoreConnector, multiple vLLM instances can store, retrieve, and reuse KV cache blocks based on hash-based prefix caching, reducing redundant prefill computation and improving cache efficiency for workloads with repeated prefixes, especially agentic and multi-turn serving scenarios.

  • vLLM-Omni stage communication: Mooncake also integrates with vLLM-Omni through MooncakeTransferEngineConnector and MooncakeStoreConnector, enabling efficient cross-node data exchange between vLLM-Omni stages.

🖥️ Supported Hardware

Mooncake supports hardware backends across accelerator vendors, cloud fabrics, and standard datacenter interconnects, as listed below. See the supported protocols and Transfer Engine design docs for details.

NVIDIA Huawei AMD Cambricon Moore Threads AWS
MetaX T-Head Alibaba Cloud Sunrise Hygon Biren Technology

🚀 Getting Started

Install Mooncake using pip. The mooncake-transfer-engine package includes Mooncake Transfer Engine, Mooncake Store, Mooncake EP and PG:

  • CUDA < 13.0
pip install mooncake-transfer-engine
  • CUDA >= 13.0
pip install mooncake-transfer-engine-cuda13

In addition to CUDA, Mooncake also supports other accelerator backends, along with flexible installation and deployment options. See the guides below for details:

Skills for AI Assistants

Mooncake ships a set of built-in skills under .claude/skills — reusable, task-focused playbooks that an AI coding assistant (such as Claude Code) invokes automatically when your request matches, or that you can run as a slash command.

Details
Skill Description
/mooncake-troubleshoot Diagnose Mooncake deployment and runtime issues (services, RDMA, env vars, logs).
/mooncake-ci-local Run pre-PR local validation via scripts/run_ci_test.sh.
/mooncake-api Work with the Mooncake Store, Transfer Engine, and EP/Backend Python APIs.

Install them without cloning the repository via the Claude Code plugin marketplace:

/plugin marketplace add kvcache-ai/Mooncake --sparse .claude-plugin
/plugin install mooncake-troubleshoot@mooncake
/plugin install mooncake-ci-local@mooncake
/plugin install mooncake-api@mooncake

The --sparse .claude-plugin flag fetches only the marketplace catalog, and each plugin is published as a git-subdir source, so installing one fetches only that single skill directory — never the whole repo. If you are already working inside a Mooncake checkout, the skills under .claude/skills/ load automatically with no setup.

📦 Open Source Traces and Tools

We open-source anonymized request traces containing request arrival times, input and output token counts, and remapped block hashes. These traces are designed to support reproducible simulation and evaluation of caching behavior while preserving user privacy. The released traces and related details are available in FAST25-release.

Together with the released traces, we also provide two KV cache analysis tools: a KV Cache Size Calculator for calculating cache capacity across popular LLM model families, and a KV Cache Hit Rate Simulator for analyzing KV cache hit rates and planning cache capacity under different workloads and models. These tools help users better understand KV cache storage costs and caching effectiveness when analyzing or reproducing serving workloads. The tools are open-sourced here.

📑 Citation

Please kindly cite our papers if you find the papers or the traces are useful:
@inproceedings{qin2025mooncake,
  author    = {Ruoyu Qin and Zheming Li and Weiran He and Jialei Cui and Feng Ren and Mingxing Zhang and Yongwei Wu and Weimin Zheng and Xinran Xu},
  title     = {Mooncake: Trading More Storage for Less Computation {\textemdash} A {KVCache-centric} Architecture for Serving {LLM} Chatbot},
  booktitle = {23rd USENIX Conference on File and Storage Technologies (FAST 25)},
  year      = {2025},
  isbn      = {978-1-939133-45-8},
  address   = {Santa Clara, CA},
  pages     = {155--170},
  url       = {https://www.usenix.org/conference/fast25/presentation/qin},
  publisher = {USENIX Association},
  month     = {feb},
}
More
@misc{ren2026tentdeclarativeslicespraying,
  title     = {TENT: A Declarative Slice Spraying Engine for Performant and Resilient Data Movement in Disaggregated LLM Serving},
  author    = {Feng Ren and Ruoyu Qin and Teng Ma and Shangming Cai and Zheng Liu and Chao Lei and Dejiang Zhu and Ke Yang and Zheming Li and Jialei Cui and Weixiao Huang and Yikai Zhao and Yineng Zhang and Hao Wu and Xiang Gao and Yuhao Fu and Jinlei Jiang and Yongwei Wu and Mingxing Zhang},
  year      = {2026},
  eprint    = {2604.00368},
  archivePrefix = {arXiv},
  primaryClass  = {cs.DC},
  url       = {https://arxiv.org/abs/2604.00368},
}

@article{sun2026survivingpartialrankfailures,
  title     = {Surviving Partial Rank Failures in Wide Expert-Parallel MoE Inference},
  author    = {Xun Sun and Shaoyuan Chen and Pingchuan Ma and Yue Chen and Ziwei Yuan and Zhanhao Cao and Han Han and Shangming Cai and Teng Ma and Xuchun Shang and Xinpeng Zhao and Ke Yang and Junlin Wei and Lianzhi Lin and Yuji Liu and Feng Ren and Haoran Hu and Cheng Wan and Yingdi Shan and Yongwei Wu and Mingxing Zhang},
  year      = {2026},
  url       = {https://arxiv.org/abs/2605.10670},
}

@article{qin2025mooncake_tos,
  author    = {Qin Ruoyu and Li Zheming and He Weiran and Cui Jialei and Tang Heyi and Ren Feng and Ma Teng and Cai Shangming and Zhang Yineng and Zhang Mingxing and Wu Yongwei and Zheng Weimin and Xu Xinran},
  title     = {Mooncake: A KVCache-centric Disaggregated Architecture for LLM Serving},
  year      = {2025},
  publisher = {Association for Computing Machinery},
  address   = {New York, NY, USA},
  issn      = {1553-3077},
  url       = {https://doi.org/10.1145/3773772},
  doi       = {10.1145/3773772},
  journal   = {ACM Trans. Storage},
  month     = {nov},
  keywords  = {Machine learning system, LLM serving, KVCache},
}

@article{qin2024mooncake_arxiv,
  title  = {Mooncake: A KVCache-centric Disaggregated Architecture for LLM Serving},
  author = {Ruoyu Qin and Zheming Li and Weiran He and Mingxing Zhang and Yongwei Wu and Weimin Zheng and Xinran Xu},
  year   = {2024},
  url    = {https://arxiv.org/abs/2407.00079},
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ x86-64

mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.35+ ARM64

mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ x86-64

mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.35+ ARM64

mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ x86-64

mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.35+ ARM64

mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ x86-64

mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.35+ ARM64

mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.35+ x86-64

mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_aarch64.whl (15.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.35+ ARM64

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 b62fb9ce5d2483033235d7ca458f16b9a7e6de6c8439b13e45f8719d3eceaaac
MD5 ea78e1769ae19eac196e14a416a915c1
BLAKE2b-256 4a2681475ca3b23b6cc30317cdf7d5930199aa08a3dea6b1b253a8ed2ed0239d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_x86_64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 4ddcbb413836a4fe334380fb6b8ac777a4d3e91fdce1fb75954d4dc66bccb7b2
MD5 3bf2fc23fbbb9a646b548d5eeaa6f277
BLAKE2b-256 fe376246ce7fd7b104cce7748f1f91456dbd58538108d4011c09f67a5a8b2e72

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp313-cp313-manylinux_2_35_aarch64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 cc2581bb281bd18d9d438ea42b7b31d0e2bcbc5fb6fc1c5eafa603826fe97881
MD5 eef9b33e180e9000250a1292e3e7e63c
BLAKE2b-256 10f1165e0810c634fb956a353c133449c87e1814cd8ff017024100c6822e010f

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_x86_64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 c099799aef794c0e94e1eca6061705ff09ea9385b0955512c584a941383901d8
MD5 b001ffb845816906d921a1a06dc8a023
BLAKE2b-256 fec30460f6b81f9ab64599a82d2fdc028ad73a3f22db4dddcb2ae2c250238d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp312-cp312-manylinux_2_35_aarch64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 f1d92732e07fcee14a551627da5f68620453716f5167b38f076290b2643c4b03
MD5 9c73ecd503113eccad34f352a1f2fb67
BLAKE2b-256 ce5991f4dd98de0e35553fe98f5c81ad372cbfa3d65f7fca613774ba8e28b296

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_x86_64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 de6c2bc2a38c1d4f806fcd9b43212b2fb480ccf0a81862541aa7d89e864a11a8
MD5 1f091dcc01daf91e63693c26fff9ee3f
BLAKE2b-256 8c2613901941580731e229e8d48044c5e2b5da23b3b2ecadaed852437902b0ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp311-cp311-manylinux_2_35_aarch64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 519b9bc9dafa2fbf609311b65d95e6bda83689886946fa48e4c459a183df7472
MD5 943a106ea5c53d966bf1ccb5ba52cb10
BLAKE2b-256 e4bb6ec54c593b5a5c6b52678ee6ec1b6efe9dbc0420e5f25d170511389ba12c

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_x86_64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 327b34e27d18a7d40bad1c5f2e40523db98f4e17aff6471331697126c672f465
MD5 a29c3f6cc27ca345fdf24958c9bee67f
BLAKE2b-256 13e8a45effe7158c4609045e4efd4d4c7e61a024fad98447c22af1381da23382

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp310-cp310-manylinux_2_35_aarch64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_x86_64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_x86_64.whl
Algorithm Hash digest
SHA256 132327049452120a99d215ecc22ce32a73ea8972f2aaa8108e79f4f133651775
MD5 66660c24b977f3bb15627d258c361cf2
BLAKE2b-256 14fe773febb8fed2864ab147238e533aa36b1eb6063b4dd664a2ce9b82c5de2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_x86_64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_aarch64.whl.

File metadata

File hashes

Hashes for mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_aarch64.whl
Algorithm Hash digest
SHA256 a6697bbbee3709be3a30b9b83913eee2ef2327ed4262079d8016777781aeeac1
MD5 0daaa80688aedc39e80eb01c9f617d0e
BLAKE2b-256 b2119c8b737d1cef17b70bb75500d09ac8f5ed918e052b0bd84a7aaf1b2071f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for mooncake_transfer_engine_npu-0.3.13-cp39-cp39-manylinux_2_35_aarch64.whl:

Publisher: release-npu.yaml on kvcache-ai/Mooncake

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.3.13 This release

10 files

0.3.12.post1

10 files

0.3.12

10 files

0.3.11.post1

10 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page