summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMarcus Better <marcusb@users.noreply.github.com>2022-11-30 16:06:56 -0500
committerGitHub <noreply@github.com>2022-11-30 21:06:56 +0000
commit93c534c6d77529b2c828d695a57613291a45b587 (patch)
tree9dd9f2533c3f9428918d15ad880f4002b912df71 /README.md
parent5a20630f4ea69c1aa215996b4a14e69865fe6de9 (diff)
downloadwabt-93c534c6d77529b2c828d695a57613291a45b587.tar.gz
wabt-93c534c6d77529b2c828d695a57613291a45b587.tar.bz2
wabt-93c534c6d77529b2c828d695a57613291a45b587.zip
Implement Relaxed SIMD proposal (#1994)
This adds support for the new opcodes from the Relaxed SIMD proposal (https://github.com/WebAssembly/relaxed-simd) behind the "--enable-relaxed-simd" flag. The exception is the f32x4.relaxed_dot_bf16x8_add_f32x4 instruction which is not yet implemented.
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/README.md b/README.md
index 3905094e..a17612da 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,7 @@ Wabt has been compiled to JavaScript via emscripten. Some of the functionality i
| [memory64][] | `--enable-memory64` | | ✓ | ✓ | ✓ | ✓ | |
| [multi-memory][] | `--enable-multi-memory` | | ✓ | ✓ | ✓ | ✓ | ✓ |
| [extended-const][] | `--enable-extended-const` | | ✓ | ✓ | ✓ | ✓ | |
+| [relaxed-simd*][] | `--enable-relaxed-simd` | | ✓ | ✓ | ✓ | ✓ | |
[exception handling]: https://github.com/WebAssembly/exception-handling
[mutable globals]: https://github.com/WebAssembly/mutable-global
@@ -76,6 +77,7 @@ Wabt has been compiled to JavaScript via emscripten. Some of the functionality i
[memory64]: https://github.com/WebAssembly/memory64
[multi-memory]: https://github.com/WebAssembly/multi-memory
[extended-const]: https://github.com/WebAssembly/extended-const
+[relaxed-simd*]: https://github.com/WebAssembly/relaxed-simd (except the f32x4.relaxed_dot_bf16x8_add_f32x4 instruction which is not yet implemented)
## Cloning