|
|
|
|
|
by pretentious7
1827 days ago
|
|
(https://blog.feather.systems/jekyll/update/2021/06/21/WasmPe...)
OP was very useful for us in optimizing our js vs wasm benchmarks. We were wondering what a very simple parallel problem like mandelbrot rendering would show about browser jits vs their wasm compilers. Our conclusion was that wasm was consistent across browsers whereas js wasn't. Further, If you can use simd, wasm is faster. Also, v8 is way faster than spidermonkey. |
|
And since you are talking about the fastest mandelbrot on the web, here is my contribution https://mandelbrot.ophir.dev
It renders in real time and is fully interactive, all in pure js.