113 releases (stable)

29.0.1 Jan 21, 2025
28.0.1 Jan 14, 2025
28.0.0 Dec 20, 2024
27.0.0 Nov 20, 2024
0.25.0 Mar 16, 2021

#1546 in WebAssembly

Download history 373/week @ 2024-10-20 235/week @ 2024-10-27 473/week @ 2024-11-03 188/week @ 2024-11-10 391/week @ 2024-11-17 134/week @ 2024-11-24 330/week @ 2024-12-01 362/week @ 2024-12-08 253/week @ 2024-12-15 182/week @ 2024-12-22 78/week @ 2024-12-29 282/week @ 2025-01-05 506/week @ 2025-01-12 589/week @ 2025-01-19 230/week @ 2025-01-26 511/week @ 2025-02-02

1,859 downloads per month
Used in 5 crates (4 directly)

Apache-2.0 WITH LLVM-exception

3.5MB
48K SLoC

wasmtime-wasi-nn

This crate enables support for the wasi-nn API in Wasmtime. Currently it contains an implementation of wasi-nn using OpenVINO™ but in the future it could support multiple machine learning backends. Since the wasi-nn API is expected to be an optional feature of WASI, this crate is currently separate from the wasi-common crate. This crate is experimental and its API, functionality, and location could quickly change.

Use

Use the Wasmtime APIs to instantiate a Wasm module and link in the wasi-nn implementation as follows:

let wasi_nn = WasiNnCtx::new()?;
wasmtime_wasi_nn::witx::add_to_linker(...);

Build

$ cargo build

To use the WIT-based ABI, compile with --features component-model and use wasmtime_wasi_nn::wit::add_to_linker.

Example

An end-to-end example demonstrating ML classification is included in examples: examples/classification-example contains a standalone Rust project that uses the wasi-nn APIs and is compiled to the wasm32-wasip1 target using the high-level wasi-nn bindings.

Dependencies

~23–66MB
~1M SLoC