var size = 0xFFFF;
var buf = new ArrayBuffer(size);
var view = new DataView(buf);
var byte = new Uint8Array(buf);
var data = new Uint8Array(size);
for (let i = 0; i < size; i++) {
data[i] = 100*Math.random();
}
for (let i; i < size; i++) {
view.setUint8(i, data[i]);
}
for (let i; i < size; i++) {
byte[i] = data[i];
}
byte.set(buf);
(new Float64Array(buf, 0, size/8))
.set(new Float64Array(data.buffer, 0, size/8));
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
DataView | |
Uint8Array by byte | |
Uint8Array with set | |
with Float64Array |
Test name | Executions per second |
---|---|
DataView | 11159491.0 Ops/sec |
Uint8Array by byte | 11137710.0 Ops/sec |
Uint8Array with set | 5112016.0 Ops/sec |
with Float64Array | 493156.8 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Definition
The provided JSON represents a benchmark that tests the performance of different approaches to copy data from an ArrayBuffer
to a typed array using the DataView
API. The benchmark is designed to compare the execution times of four different methods:
DataView.setUint8()
Uint8Array
(byte
)Uint8Array.set()
with a typed array (Float64Array
) as an argumentFloat64Array
instance from the ArrayBuffer
and assigning it to another Float64Array
Library Usage
The benchmark uses the following libraries:
ArrayBuffer
: A binary-valued data structure that can be used to store large amounts of data.DataView
: An interface for viewing a binary buffer as if it were an array or other typed arrays.Uint8Array
and Float64Array
: Typed arrays that provide a convenient way to work with raw binary data.Special JavaScript Features
The benchmark utilizes some special JavaScript features:
let
and const
declarations is not present in this example, but it's worth noting that they are used extensively in modern JavaScript.for
loop iterations are replaced with arrow functions (i => { ... }
) which are not used in this benchmark.Pros and Cons
Here's a brief summary of the pros and cons for each approach:
DataView.setUint8()
:Uint8Array
(byte
):Uint8Array.set()
with a typed array (Float64Array
) as an argument:Float64Array
instance from the ArrayBuffer
and assigning it to another Float64Array
:Other Alternatives
If you're interested in exploring other alternatives for copying data between ArrayBuffer
and typed arrays, here are a few approaches:
For more information on these alternatives or to learn about other microbenchmarking tools like MeasureThat.net, I recommend exploring the official documentation and examples provided by each library.