-
The SIMD cannot be disabled anymore. These are the 2 parts we need to fix:
- [x] do not put `-msimd128` to `emcc-default.rsp`, otherwise we compile with SIMD even when `WasmEnableSIMD` is `false`. …
-
## 🐛 Bug description
When I try to run `wasm-pack build` in project that uses SIMD functions, wasm-opt throws following error:
```
[parse exception: Invalid reserved field on memory.grow/memory.siz…
-
| | |
|------------------|-----------------|
|Previous ID | SR-13353 |
|Radar | rdar://problem/67001499 |
|Original Repo…
-
| | |
|--------------------|----|
| Bugzilla Link | [PR52350](https://bugs.llvm.org/show_bug.cgi?id=52350) |
| Status | NEW |
| Importance | P enhancemen…
-
```
Currently funcsim lacks any of SIMD instructions. Please implement them. They
are listed on MDSP reference document, page 75, table 5.14. Their semantics are
described in Appendix B.2
```
Ori…
-
For the following program, compiler is expected to generate nontemporal instructions
```c
void test(int *ArrayPt, int *Pointer, int n)
{
#pragma omp simd nontemporal(ArrayPt,Pointer)
for (int…
-
more and more common programs are using SIMD instructions lately, because of gcc optimizations. so it is important to support that
- [ ] MMX (x86)
- [ ] SSE (x86)
- [ ] AVX (x86)
- [ ] NEON (arm)
-
[RandomX.js](https://github.com/l1mey112/randomx.js) has been implemented and tested extensively against the ground truth. It reaches a hashrate of 20 H/s per thread, quite higher than the original pr…
-
| | |
| --- | --- |
| Bugzilla Link | [52350](https://llvm.org/bz52350) |
| Version | trunk |
| OS | All |
| CC | @dschuff,@tlively |
## Extended Description
I was curious to poke around a…
-
### Summary
WasmEdge provides WASM module serializer in C API level to convert the loaded WASM structure back into binary format.
But in current status, after implementing the `function-references…