馃洡 fixed-width SIMD 路 Issue #1 路 WebAssembly/proposals (original) (raw)
Navigation Menu
- Explore
- Pricing
Provide feedback
Saved searches
Use saved searches to filter your results more quickly
Description
This is a tracking issue for a post-MVP feature
It will be updated as the issue progresses.
Topic Fixed-width SIMD
Champion @PeterJensen, @aretmr
Status in progress
Phase Feature proposal
Linked issues WebAssembly/design#148, WebAssembly/design#41
Linked repositories github.com/WebAssembly/simd
Details
Support fixed-width SIMD vectors, initially only for 128-bit wide vectors as demonstrated in PNaCl's SIMD and SIMD.js.
SIMD adds new local types (e.g., f32x4
) so it has to be part of the core semantics. SIMD operators (e.g., f32x4.add
) could be either builtin operators (no different from i32.add
) or exports of a builtin SIMD module.