var a = [Array(10000)].map(_ => Math.random());
var ta = (new Float64Array(10000)).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 | 63726.3 Ops/sec |
Float64Array reverse | 167734.8 Ops/sec |
normal array i/o | 13678.7 Ops/sec |
Float64Array i/o | 27116.9 Ops/sec |
Swap between arrays | 86851.3 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Definition JSON
The provided benchmark definition JSON represents a microbenchmark test that compares two approaches:
Array
and another using Float64Array
. Both arrays are filled with random float values between 0 and 1.normal array reverse
)Float64Array
(Float64Array reverse
)normal array i/o
and Float64Array i/o
)Swap between arrays
)Options Compared
The benchmark compares the performance of:
a
) vs Float64Array (ta
) with float valuesFloat64Array
) for reversing an arrayFloat64Array
) for I/O operations on the arraysPros and Cons of Each Approach
Here's a brief summary of the pros and cons of each approach:
a
):ta
):Float64Array
instances)Library Used
No specific library is used in this benchmark, but the Float64Array
data type is a built-in JavaScript feature that provides an efficient way to work with floating-point numbers.
Special JS Feature/Syntax
There are no special JS features or syntaxes mentioned in this benchmark.
Other Alternatives
If you're interested in exploring other alternatives, here are a few examples:
Float64Array
, but can also be used for other types of data (e.g., integers, bytes).Keep in mind that these alternatives may have their own trade-offs and use cases, so it's essential to evaluate them based on your specific requirements.