DarumaDocker!!

Results 6 issues of DarumaDocker!!

My rust code for wasm: ```rust #[no_mangle] pub fn t() { std::thread::sleep(std::time::Duration::from_secs(2)); } ``` And host code for calling the wasm's exported function `t`: ```rust use wasmedge_sys::*; use std::path::Path; use...

For https://github.com/second-state/WasmEdge-go-examples/blob/master/go_BindgenFuncs/bindgen_funcs.go If I put the vm as a global variable, and call the `vm.ExecuteBindgen` in goroutine: ```go package main ​ import ( "fmt" "os" ​ "github.com/second-state/WasmEdge-go/wasmedge" ) ​ var...

bug

## Motivation There is no need to install libraries manually when we are developing using Wasmer or Wasmtime SDK. It's better to omit this step in WasmEdge also. ## Details...

enhancement
good first issue
help wanted
binding-go

[Wasmtime provides the compling support with Bazel](https://github.com/bytecodealliance/wasmtime-go) > This Go library uses CGO to consume the C API of the [Wasmtime project](https://github.com/bytecodealliance/wasmtime) which is written in Rust. Precompiled binaries of...

good first issue
help wanted
feature
binding-go

### Summary I need a way to determine the hardware my LLM model is running on to dynamically analyze its performance. Could you provide an API for retrieving the machine's...