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
<script src="https://s3-us-west-2.amazonaws.com/intelpp/parallel.js"></script>
function fib(n) {
return n < 2 ? 1 : fib(n - 1) + fib(n - 2);
};
var l = 1000;
var data = [];
while(l--) data.push((Math.random()*10)|0);
var p = new Parallel(data);
Ready to run.
Test | Ops/sec | |
---|---|---|
Serial |
| ready |
parallel.js |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.