Yi-Ying He
Yi-Ying He
errors. Signed-off-by: YiYing He
## Motivation The [OpenVINO](https://www.intel.com/content/www/us/en/developer/tools/openvino-toolkit/download.html) official release supports various platforms. WasmEdge supports the WASI-NN proposal with OpenVINO backend now, but only in Ubuntu 20.04. In this project, we want to porting...
## Motivation WasmEdge can load the WASM binary and instantiate it into WASM module instances for execution. In a use case, we need to serialize the loaded WASM data structure...
Signed-off-by: YiYing He
### Features - [ ] WASI-NN proposal with PyTorch backend - #1654 - [ ] Static link LLVM on MacOS - #1698 - [ ] Export Store to host functions...
## Description ### Current State When installing the latest WasmEdge 0.10.1 on MacOS and run (take `examples/wasm/fibonacci.wasm` for example): ```bash # In universal WASM format wasmedgec fibonacci.wasm fibonacci_aot.wasm # In...
## Motivation The host functions may need to access the internal resources of WasmEdge runtime, such as other function instances or module instances. But the current function signature of host...
## Motivation In current state, we only have unit tests for wasi-crypto plugin in WasmEdge. We need a tutorial for creating a WASM program which uses wasi-crypto. ## Details 1....