-
I can compile this with `zig cc --target=wasm32-wasi -o math.wasm math.c`, and run it with `wzprof -sample 1 -memprofile /tmp/profile math.wasm` and end up an image like this on `go tool pprof -http :…
-
Hello,
This C function:
unsigned int xor( unsigned int a, unsigned int b)
{
return a^b;
}
When compiled with -g4 and with -O3 (emcc xor.c -O3 -g4 -s WASM=1 -s SIDE_MODULE=1 -o xor.wasm…
-
Hi,
I have an issue with WASM loading in Angular. During WASM loading there are certain expected errors to happen (like around Errno handling). In Angular my callstack contains "_ZoneDelegate", whi…
-
Hi, i am playing around Wasm and SIMD, trying different implementation in different languages.
I dont know much Rust, but i have noticed a weird conversion with a test.
My Rust source code conta…
-
Here are the segmentation results obtained by using the auto-segmentation button provided on the official website (https://segment-anything.com/demo)
![image](https://user-images.githubusercontent.…
-
Currently, the name section supports
Name Type | Code | Description
-- | -- | --
Module | 0 | Assigns a name to the module
Function | 1 | Assigns names to functions
Local | 2 | Assigns names to…
-
Hi,
Could anyone help me to construct a wasm fallback for _mm_alignr_epi8() (using emscripten)?
I see from https://emscripten.org/docs/porting/simd.html that it can be "emulated with a SIMD or+t…
-
I need to use customed struct type, so I used the `TypeBuilderCreate` function, `TypeBuilderSetStructType` function and `TypeBuilderBuildAndDispose` function to wrap a `createStructType` function. Jus…
-
I am using a simple run.wasm that adds 2 F32 values and returns an F32. When invoked via wasmer-crystal `run.call(11.1, 22.2)`, the return value is bogus, but running `wasmer` from the command-line sh…
-
Currently we have a Rust/Cargo project that compiles some example binary to WASM, and JS tests that load that WASM and run assertions against it.
We should get rid of the Cargo boilerplate and move…