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 = 0; i < size; i++) {
view.setUint8(i, data[i]);
}
for (let i = 0; i < size; i++) {
byte[i] = data[i];
}
byte.set(data);
(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 | 158.2 Ops/sec |
Uint8Array by byte | 173.6 Ops/sec |
Uint8Array with set | 1018924.3 Ops/sec |
with Float64Array | 964288.8 Ops/sec |
Let's break down the provided JSON and explain what is being tested, the different approaches compared, their pros and cons, and other considerations.
Benchmark Definition
The benchmark definition is a script that prepares the test environment. It creates an ArrayBuffer
with a size of 0xFFFF (65535), a DataView
object that can be used to access the buffer as a typed array, and a Uint8Array
object that is initialized from the same buffer.
The script then generates a random data array with the same size as the ArrayBuffer
. This data will be used in the subsequent test cases to measure performance differences between different approaches.
Individual Test Cases
There are four test cases:
DataView
object to set each element of the data
array.data
array directly on the byte
array, without using any built-in methods like set
.set
method provided by the Uint8Array
object.data
array on a Float64Array
object created from the same buffer.Library and Purpose
DataView
and Uint8Array
objects implies the use of typed arrays, which is a feature provided by the Web API.Special JS Feature/Syntax
None of the test cases explicitly use any special JavaScript features or syntax. They are all relatively straightforward implementations of basic array operations.
Other Considerations
ArrayBuffer
and generates random data for each iteration, which may not accurately represent real-world scenarios where memory allocation and deallocation can be costly.Alternatives
To run a similar benchmark, you could consider using:
bench
module.Keep in mind that the specific approach will depend on your needs, the type of performance you want to measure, and the target environment (e.g., web, desktop, mobile).