jsPerf.app is an online JavaScript performance benchmark test runner & jsperf.com mirror. It is a complete rewrite in homage to the once excellent jsperf.com now with hopefully a more modern & maintainable codebase.
jsperf.com URLs are mirrored at the same path, e.g:
https://jsperf.com/negative-modulo/2
Can be accessed at:
https://jsperf.app/negative-modulo/2
function fibNomal(x) {
if (x < 3) return 1;
return fibNomal(x - 2) + fibNomal(x - 1);
}
function fibLikeAsm(x) {
x = x | 0;
if ((x | 0) < 3) return 1;
return ((fibLikeAsm((x - 2) | 0) | 0) + (fibLikeAsm((x - 1) | 0) | 0)) | 0;
}
var fibUseAsm = (function () {
'use asm';
function fib(x) {
x = x | 0;
if ((x | 0) < 3) return 1;
return ((fib((x - 2) | 0) | 0) + (fib((x - 1) | 0) | 0)) | 0;
}
return fib;
})();Ready to run.
| Test | Ops/sec | |
|---|---|---|
| fib 1 nomal heavy | | ready |
| fib 2 like asm heavy | | ready |
| fib 3 use asm heavy | | ready |
| fib 4 nomal light | | ready |
| fib 5 like asm light | | ready |
| fib 6 use asm light | | ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.