#neural-network #machine-learning #computer-vision

wasi-nn

High-level Rust bindings for wasi-nn

7 releases (breaking)

0.6.0 Aug 25, 2023
0.5.0 Aug 15, 2023
0.4.0 Jun 23, 2023
0.3.0 Mar 13, 2023
0.1.0 Apr 12, 2021

#64 in WebAssembly

Download history 438/week @ 2023-12-06 814/week @ 2023-12-13 875/week @ 2023-12-20 1009/week @ 2023-12-27 1261/week @ 2024-01-03 1442/week @ 2024-01-10 1611/week @ 2024-01-17 2244/week @ 2024-01-24 2007/week @ 2024-01-31 2829/week @ 2024-02-07 1997/week @ 2024-02-14 1993/week @ 2024-02-21 2080/week @ 2024-02-28 1915/week @ 2024-03-06 1840/week @ 2024-03-13 1691/week @ 2024-03-20

7,806 downloads per month
Used in 2 crates

Apache-2.0

37KB
896 lines

wasi-nn bindings for Rust

This package contains high-level Rust bindings for wasi-nn system calls. It is similar in purpose to the WASI bindings but this package provides optional access to a system's machine learning functionality from WebAssembly.

NOTE: These bindings are experimental (use at your own risk) and subject to upstream changes in the wasi-nn specification.

Use

  1. Depend on this crate in your Cargo.toml:

    [dependencies]
    wasi-nn = "0.6.0"
    
  2. Use the wasi-nn APIs in your application, for example:

    use wasi_nn;
    let graph = GraphBuilder::new(GraphEncoding::TensorflowLite, ExecutionTarget::CPU)
        .build_from_files([model_path])?;
    let mut ctx = graph.init_execution_context()?;
    ctx.set_input(0, TensorType::F32, &input_dims, &input_buffer)?;
    ctx.compute()?;
    let output_num_bytes = ctx.get_output(0, &mut output_buffer)?;
    
  3. Compile the application to WebAssembly:

    cargo build --target=wasm32-wasi
    
  4. Run the generated WebAssembly in a runtime supporting wasi-nn, e.g., Wasmtime.

Build

To build this crate from source, use: cargo build --target wasm32-wasi.

Generation

This crate contains code (src/generated.rs) generated by witx-bindgen. To regenerate this code, run the following script:

$ scripts/regenerate-bindings-from-witx.sh

Examples

The examples demonstrate how to use wasi-nn from a Rust program.

License

This project is licensed under the Apache 2.0 license. See LICENSE for more details.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be licensed as above, without any additional terms or conditions.

Dependencies

~0.4–0.8MB
~20K SLoC