Xin Liu
Xin Liu
_visit_Delete_ function (in the line 297 of codegen.py) throws a TypeError exception when I run my code. I am trying to fix the bug as below. If you have any...
In some cases, Line 70: _return ''.join(generator.result)_ throws TypeError exception. It should be corrected as _return ''.join(str(x) for x in generator.result)_
In codegen.py, the function name "visit_excepthandler" should be "visit_ExceptHandler".
## Motivation The current version of WasmEdge only supports the pre-defined error code for runtime, but the user-defined error codes used in host functions are not supported. ## Details According...
Asynchronous computation is one of the popular computation patterns. To support asynchronous operations in WebAssembly runtimes, the community launched [Task Oriented Stack Switching Proposal](https://github.com/WebAssembly/stack-switching/blob/main/proposals/tasks/Explainer.md). WasmEdge Runtime could provide the fundamental...
In this PR, a new example is added for presenting how to define semantic error types for host functions. In addition, a README file is added for the rust binding...
Hi @hydai @q82419, I ran into a validation failure when I was trying to call an async wasm function from a wasm file. The detailed steps are described below. Could...
### Summary The latest `wasi-nn` plugin failed to run `openhermes-2.5-mistral-7b`. And the behaviors on macOS-14.2 (m1 pro) and Ubuntu-22.04 (Intel(R) Xeon(R) Platinum 8259CL CPU), respectively, are different: - On macOS...
### Summary I am using `PyO3` and `maturin` to prototype a project, which simply loads `wasi-nn_ggml` plugin via `wasmedge-rust-sdk`. [Here](https://github.com/apepkuss/load_plugin/blob/main/src/lib.rs) is the source code. The observations are: - When using...
Major change: - Add `--upgrade` CLI option in `install.sh`