by Marat_Dukhan on 10/26/20, 4:13 AM with 19 comments
by wffurr on 10/26/20, 2:23 PM
Feature detection for WebAssembly[0] is stuck in spec discussions, and SIMD general availability is blocked on either that or its own mechanism for backwards compatibility[1].
The issue is that a WebAssembly binary that contains instructions unknown to the engine (e.g. SIMD instructions not supported by a particular engine) won't validate, even if the functions aren't used at runtime. The only way to work around this is to compile your binary NxMx... times and detect which feature set is supported before loading a binary. It's a real pain in the tail when trying to support new WebAssembly features.
e.g. check out this snippet from canvas.apps.chrome which supports WebAssembly threads on Chrome with a non-thread fallback for e.g. mobile / Firefox:
var X;
try {
X = (new WebAssembly.Memory({
initial: 1,
maximum: 1,
shared: !0
})).buffer instanceof SharedArrayBuffer ? !0 : !1
} catch (a) {
X = !1
}
var ua = r(X ? ["js/threads/ink.js", "defines_threads.js"] : ["js/nothreads/ink.js", "defines.js"])
, va = ua.next().value
, wa = ua.next().value;
[0]: https://github.com/WebAssembly/conditional-sections
[1]: https://github.com/WebAssembly/simd/issues/356by etaioinshrdlu on 10/26/20, 5:33 AM
If the CPU is really faster than the GPU, that really demonstrates how inefficient the WebGL backend really is, compared to something like CUDA.
by drej on 10/26/20, 7:20 AM
(Yes, there are unofficial wheels for various CPUs, but, not sure if that passes your security requirements.)
by tpetry on 10/26/20, 6:07 AM
by dzhiurgis on 10/26/20, 10:50 AM
by ajtulloch on 10/26/20, 1:00 PM
by The_rationalist on 10/26/20, 12:34 PM