var a = [Array(500)].map(_ => Math.random());
var ta = (new Float64Array(500)).map(_ => Math.random());
a.reverse().reverse().reverse();
ta.reverse().reverse().reverse();
for (let i=1; i !== 10000; i=i+1|0) {
a[i] = a[i] + 1.1 - a[i-1|0];
}
for (let i=1; i !== 10000; i=i+1|0) {
ta[i] = ta[i] + 1.1 - ta[i-1|0];
}
for (let i=0; i !== 10000; i=i+1|0) {
var tmp = ta[i];
ta[i] = a[i];
a[i] = tmp;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
normal array reverse | |
Float64Array reverse | |
normal array i/o | |
Float64Array i/o | |
Swap between arrays |
Test name | Executions per second |
---|---|
normal array reverse | 1139846.4 Ops/sec |
Float64Array reverse | 2664376.2 Ops/sec |
normal array i/o | 13896.4 Ops/sec |
Float64Array i/o | 10785.5 Ops/sec |
Swap between arrays | 50432.6 Ops/sec |
The benchmark defined in the JSON tests the performance of standard JavaScript arrays versus Float64Array
, specifically in the context of a small array of floats. Both data structures are evaluated based on various operations, which provide insights into their efficiency for typical use cases in JavaScript programming.
Normal Array Reverse:
a.reverse().reverse().reverse();
reverse()
method of a standard JavaScript array to measure how fast it can reverse the order of elements. The triple reversal is employed to restore the original order after performing a reversal, which could provide insights into the performance of consecutive calls to this method.Float64Array Reverse:
ta.reverse().reverse().reverse();
reverse()
method on a Float64Array
. The performance difference between the standard array and the typed array can help in understanding optimizations that might be present for numerical operations.Normal Array I/O:
for (let i=1; i !== 10000; i=i+1|0) { a[i] = a[i] + 1.1 - a[i-1|0]; }
1.1 - a[i-1|0]
adds a floating-point calculation to each element. It measures the efficiency of sequential access and mathematical operations in a regular array.Float64Array I/O:
for (let i=1; i !== 10000; i=i+1|0) { ta[i] = ta[i] + 1.1 - ta[i-1|0]; }
Float64Array
. The benchmark accentuates how typed arrays can handle numerical data efficiently compared to regular arrays in terms of performance.Swap Between Arrays:
for (let i=0; i !== 10000; i=i+1|0) { var tmp = ta[i]; ta[i] = a[i]; a[i] = tmp; }
Float64Array
and a regular array. This provides insights into how efficiently data can be moved back and forth between different types of arrays.Other options for numerical performance within JavaScript might include using:
Int32Array
, Uint8Array
, etc., that might be suited for different use cases depending on the data type needed.In summary, this benchmark comparison helps elucidate performance differences between handling numerical data using standard JavaScript arrays versus typed arrays like Float64Array
. Understanding these differences is crucial for optimizing applications that rely heavily on numerical computations.