Re: [v8-users] Tips for SIMD optimization of code

2019-09-26 Thread Jakob Kummerow
V8 does not currently do any auto-vectorization of JavaScript code. SIMD support is coming to WebAssembly: https://github.com/WebAssembly/simd On Wed, Sep 25, 2019 at 11:15 PM Piyush Katariya wrote: > How aggressively V8 optimizes the JS code to translate into SIMD > instructions (AVX, SSE, MM

[v8-users] Tips for SIMD optimization of code

2019-09-25 Thread Piyush Katariya
How aggressively V8 optimizes the JS code to translate into SIMD instructions (AVX, SSE, MMX etc) under the hood? I am not interested in SIMD.js project. I am interested in the code patterns which V8 JIT see as legit for data parallelization using SIMD depending upon host CPU architecture. Any