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();
}
window._data = data;
window._buf = buf;
data[Date.now()%data.length] = 43;
for (let i; i < size; i++) {
view.setUint8(i, data[i]);
}
data[Date.now()%data.length] = 43;
for (let i; i < size; i++) {
byte[i] = data[i];
}
data[Date.now()%data.length] = 43;
byte.set(data);
data[Date.now()%data.length] = 43;
(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 | 1840064.5 Ops/sec |
Uint8Array by byte | 1816404.4 Ops/sec |
Uint8Array with set | 360648.1 Ops/sec |
with Float64Array | 281877.3 Ops/sec |
Let's break down the provided benchmark and explain what's being tested, the different approaches compared, their pros and cons, and other considerations.
Benchmark Overview
The benchmark measures the performance of four different methods for copying data from an ArrayBuffer to a Uint8Array:
DataView
Uint8Array
by byte (direct assignment)Uint8Array
with set()
methodFloat64Array
intermediate bufferTest Case Analysis
Here's a brief explanation of each test case:
: This test case uses the
DataViewAPI to access the ArrayBuffer and sets its values using the
setUint8()` method.: This test case directly assigns the values from the ArrayBuffer to a new Uint8Array using the assignment operator (
=`).set()
method of the Uint8Array to assign its values.: This test case creates a new
Float64Arraybuffer from the ArrayBuffer and sets its values using the
set()` method.Pros and Cons
Here's a brief summary of the pros and cons of each approach:
set()
method's overhead.Other Considerations
DataView
approach can avoid some memory allocations since it uses existing memory.Alternative Approaches
If not using DataView
, other alternatives for copying data from an ArrayBuffer to a Uint8Array include:
new Uint8Array(buf.buffer, 0, size)
: This approach creates a new Uint8Array and copies the data from the ArrayBuffer's buffer.new Float64Array(buf, 0, size / 8)
: This approach creates a new Float64Array and copies the data from the ArrayBuffer's buffer.Keep in mind that these alternatives might have different performance characteristics compared to the original test cases.