Expand description
Define the Rust interface a backend must implement in order to be used by
this crate. The Box<dyn ...>
types returned by these interfaces allow
implementations to maintain backend-specific state between calls.
Modules§
- openvino
- Implements a
wasi-nn
BackendInner
using OpenVINO.
Enums§
- Backend
Error - Errors returned by a backend; BackendError::BackendAccess is a catch-all for failures interacting with the ML library.
- Id
- An identifier for a tensor in a Graph.
Traits§
- Backend
Execution Context - A BackendExecutionContext performs the actual inference; this is the backing implementation for a user-facing execution context.
- Backend
From Dir - Some Backends support loading a Graph from a directory on the filesystem; this is not a general requirement for backends but is useful for the Wasmtime CLI.
- Backend
Graph - A BackendGraph can create BackendExecutionContexts; this is the backing implementation for the user-facing graph.
- Backend
Inner - A Backend contains the necessary state to load Graphs.
Functions§
- list
- Return a list of all available backend frameworks.