Saying goodbye to asm.js
spidermonkey.dev
Saying goodbye to asm.js
1–10 of 164 posts
Re: Saying goodbye to asm.js
#2Re: Saying goodbye to asm.js
#3https://monkeyink.com/ink/blog/archives/2016/08/_this_is_a_f...
"The image is a collage of antique open source art reflecting the open source code."
Re: Saying goodbye to asm.js
#4Sad day. I have a sha256 hasher in asm.js that's faster than any wasm solution.
Re: Saying goodbye to asm.js
#5Re: Saying goodbye to asm.js
#6Sad day. I have a sha256 hasher in asm.js that's faster than any wasm solution.
That is surprising. Do you know the reasons? Is it a special use case or was asm really faster? I find that hard to believe.
I took off the shelf wasm crypto libraries to compare it, but the leading one was 10x slower.
Re: Saying goodbye to asm.js
#7Re: Saying goodbye to asm.js
#8Earlier quoted context omitted.
That is surprising. Do you know the reasons? Is it a special use case or was asm really faster? I find that hard to believe.
It's a custom solution, but nothing special just incremental hashing for large files. I took off the shelf wasm crypto libraries to compare it, but the leading one was 10x slower.
Re: Saying goodbye to asm.js
#9Earlier quoted context omitted.
It's a custom solution, but nothing special just incremental hashing for large files. I took off the shelf wasm crypto libraries to compare it, but the leading one was 10x slower.
can we see?
will try to rip it out of the project and put it in a standalone benchmark.