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
var bytes = 2**24;
var ab = new ArrayBuffer(bytes);
var f32 = new Float32Array(ab)
var source = new Uint8Array(ab);
for (var i = 0; i < f32.length; i++) {
f32[i] = Math.random() * 1000 + Math.random() * 1000000;
}
var view = new DataView(ab);
var viewGetUint8 = view.getUint8.bind(view);
var viewSetUint8 = view.setUint8.bind(view);
var acc = 0;
for (var i = 0; i < f32.length; i++) {
f32[i] = Math.random() * 1000 + Math.random() * 1000000;
}
Ready to run.
Test | Ops/sec | |
---|---|---|
DataView get |
| ready |
Typed Array get |
| ready |
DataView set |
| ready |
Typed Array set |
| ready |
You can edit these tests or add more tests to this page by appending /edit to the URL.