Open
Description
There is a recently added function, load-by-name
, in wasi-nn.
/// Load a `graph` by name.
///
/// How the host expects the names to be passed and how it stores the graphs for retrieval via
/// this function is **implementation-specific**. This allows hosts to choose name schemes that
/// range from simple to complex (e.g., URLs?) and caching mechanisms of various kinds.
load-by-name: func(name: string) -> result<graph, error>;
Plus, the import name of wasi-nn now is wasi_ephemeral_nn