var N = 1000000
var x = new Float32Array(N);
var y = new Float32Array(N);
var z = new Float32Array(N);
var interlaced = new Float32Array(3*N);
var vectors = [];
for (var i = 0, li=x.length; i < li; ++i) {
x[i] = Math.random();
y[i] = Math.random();
z[i] = Math.random();
vectors.push( {x:Math.random(), y:Math.random(), z:Math.random()} );
}
for (var i = 0, li=interlaced.length; i < li; ++i) {
interlaced[i] = Math.random();
}
var vector;
for (var i = 0, li=vectors.length; i < li; ++i) {
vector = vectors[i];
vector.x = 2 * vector.x;
vector.y = 2 * vector.y;
vector.z = 2 * vector.z;
}
for (var i = 0, li=x.length; i < li; ++i) {
x[i] = 2 * x[i];
y[i] = 2 * y[i];
z[i] = 2 * z[i];
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
AoS | |
SoA |
Test name | Executions per second |
---|---|
AoS | 13.2 Ops/sec |
SoA | 2.4 Ops/sec |
Let's break down the benchmark and its components.
Benchmark Name: Multiplying lists of vectors - SoA vs AoS vs interlaced array
The benchmark compares three different approaches to perform multiplication operations on lists of vectors:
Options Comparison
Library and Special JS Features
The benchmark uses the Float32Array
class from the Web API, which is a typed array used for efficient storage and manipulation of 32-bit floating-point numbers. There are no special JavaScript features or syntax used in this benchmark.
Other Considerations
Alternatives
If you need to implement similar benchmarks for other data structures or operations, consider exploring:
These alternatives will help you understand the trade-offs between different data structures and algorithms, which is essential for developing efficient software solutions.