# apache-tvm-ffi

> tvm ffi

- **URL**: https://www.freshcrate.ai/projects/apache-tvm-ffi
- **Author**: TVM FFI team
- **Category**: RAG & Memory
- **Latest version**: `v0.1.11` (2026-05-04)
- **License**: Apache 2.0
- **Source**: https://github.com/apache/tvm-ffi
- **Homepage**: https://pypi.org/project/apache-tvm-ffi/
- **Language**: Python
- **GitHub**: 377 stars, 71 forks
- **Registry**: pypi (`apache-tvm-ffi`)
- **Tags**: `inference`, `learning`, `machine`, `pypi`

## Description

<!--- Licensed to the Apache Software Foundation (ASF) under one -->
<!--- or more contributor license agreements.  See the NOTICE file -->
<!--- distributed with this work for additional information -->
<!--- regarding copyright ownership.  The ASF licenses this file -->
<!--- to you under the Apache License, Version 2.0 (the -->
<!--- "License"); you may not use this file except in compliance -->
<!--- with the License.  You may obtain a copy of the License at -->

<!---   http://www.apache.org/licenses/LICENSE-2.0 -->

<!--- Unless required by applicable law or agreed to in writing, -->
<!--- software distributed under the License is distributed on an -->
<!--- "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -->
<!--- KIND, either express or implied.  See the License for the -->
<!--- specific language governing permissions and limitations -->
<!--- under the License. -->

# TVM FFI: Open ABI and FFI for Machine Learning Systems

📚 [Documentation](https://tvm.apache.org/ffi/) | 🚀 [Quickstart](https://tvm.apache.org/ffi/get_started/quickstart.html)

Apache TVM FFI is an open ABI and FFI for machine learning systems. It is a minimal, framework-agnostic,
yet flexible open convention with the following systems in mind:

- **Kernel libraries** - ship one wheel to support multiple frameworks, Python versions, and different languages. [[FlashInfer](https://docs.flashinfer.ai/)]
- **Kernel DSLs** - reusable open ABI for JIT and AOT kernel exposure frameworks and runtimes. [[TileLang](https://tilelang.com/)][[cuteDSL](https://docs.nvidia.com/cutlass/latest/media/docs/pythonDSL/cute_dsl_general/compile_with_tvm_ffi.html)]
- **Frameworks and runtimes** - a uniform extension point for ABI-compliant libraries and DSLs. [[PyTorch](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-pytorch)][[JAX](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-jax)][[PaddlePaddle](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-paddle)][[NumPy/CuPy](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-numpy)]
- **ML infrastructure** - out-of-box bindings and interop across languages. [[Python](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-python)][[C++](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-cpp)][[Rust](https://tvm.apache.org/ffi/get_started/quickstart.html#ship-to-rust)]
- **Coding agents** - a unified mechanism for shipping generated code in production.

## Features

- **Stable, minimal C ABI** designed for kernels, DSLs, and runtime extensibility.
- **Zero-copy interop** across PyTorch, JAX, and CuPy using [DLPack protocol](https://data-apis.org/array-api/2024.12/design_topics/data_interchange.html).
- **Compact value and call convention** covering common data types for ultra low-overhead ML applications.
- **Multi-language support** out of the box: Python, C++, and Rust (with a path towards more languages).

These enable broad **interoperability** across frameworks, libraries, DSLs, and agents; the ability to **ship one wheel** for multiple frameworks and Python versions (including free-threaded Python); and consistent infrastructure across environments.

## Getting Started

Install TVM-FFI with pip, uv or from source:

```bash
pip install apache-tvm-ffi
pip install torch-c-dlpack-ext  # compatibility package for torch <= 2.9
```

## Status and Release Versioning

**C ABI stability** is our top priority.

**Status: RFC** Main features are complete and ABI stable. We recognize potential needs for evolution to ensure
it works best for the machine learning systems community, and would like to work together with the
community for such evolution. We plan to stay in the RFC stage for three months from the v0.1.0 release.

Releases during the RFC stage will be `0.X.Y`, where bumps in `X` indicate C ABI-breaking changes
and `Y` indicates other changes. We anticipate the RFC stage will last for three months, then we will start following
[Semantic Versioning](https://packaging.python.org/en/latest/discussions/versioning/)
(`major.minor.patch`) going forward.

## Documentation

Our [documentation site](https://tvm.apache.org/ffi/) includes:

### Get Started

- [Quick Start](https://tvm.apache.org/ffi/get_started/quickstart.html)
- [Stable C ABI](https://tvm.apache.org/ffi/get_started/stable_c_abi.html)

### Guides

- [Export Functions & Classes](https://tvm.apache.org/ffi/guides/export_func_cls.html)
- [Kernel Library Guide](https://tvm.apache.org/ffi/guides/kernel_library_guide.html)

### Concepts

- [ABI Overview](https://tvm.apache.org/ffi/concepts/abi_overview.html)
- [Any](https://tvm.apache.org/ffi/concepts/any.html)
- [Object & Class](https://tvm.apache.org/ffi/concepts/object_and_class.html)
- [Tensor](https://tvm.apache.org/ffi/concepts/tensor.html)
- [Function & Module](https://tvm.apache.org/ffi/concepts/func_module.html)
- [Exception Handling](https://tvm.apache.org/ffi/concepts/exception_handling.html)

### Packaging

- [Python

## Recent releases

| Version | Date | Urgency | Changes |
| --- | --- | --- | --- |
| `v0.1.11` | 2026-05-04 | High | ## What's Changed * [FEAT] Recursive DLPack container conversion for auto torch.Tensor return by @Kathryn-cat in https://github.com/apache/tvm-ffi/pull/517 * [fix] Move container stream scanning from Cython to C++ for efficiency by @Kathryn-cat in https://github.com/apache/tvm-ffi/pull/521 * chore(release): Version bump after release v0.1.10 by @junrushao in https://github.com/apache/tvm-ffi/pull/522 * build(deps): replace cmake version exclusion with uv exclude-newer by @junrushao in https: |
| `0.1.10` | 2026-04-21 | Low | Imported from PyPI (0.1.10) |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |
| `v0.1.10` | 2026-04-07 | Medium | ## What's Changed * chore(release): Add GPG Key from Yong Wu by @yongwww in https://github.com/apache/tvm-ffi/pull/474 * [FIX] Prevent integer overflow in GetDataSize on 32-bit platforms by @gnguralnick in https://github.com/apache/tvm-ffi/pull/475 * refactor(dataclasses)!: remove Python-side field descriptor infrastructure by @junrushao in https://github.com/apache/tvm-ffi/pull/478 * feat: add cuLaunchKernelEx support by @lucifer1004 in https://github.com/apache/tvm-ffi/pull/476 * chore(re |

## Dependency audit

- **Score**: 76/100
- **Total deps**: 2
- **Resolved**: 0
- **Unresolved**: 2
- **License conflicts**: 0
- **Warnings**: 2
- **Scanned**: 2026-05-18

## Citation

- HTML: https://www.freshcrate.ai/projects/apache-tvm-ffi
- Markdown: https://www.freshcrate.ai/projects/apache-tvm-ffi.md
- Dependencies JSON: https://www.freshcrate.ai/api/projects/apache-tvm-ffi/deps

_Generated by freshcrate.ai. Indexes pypi releases for AI-agent ecosystem packages._
