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];
}
for (var i = 0, li=x.length; i < li; ++i) {
x[i] = 2 * x[i];
}
for (var i = 0, li=y.length; i < li; ++i) {
y[i] = 2 * y[i];
}
for (var i = 0, li=z.length; i < li; ++i) {
z[i] = 2 * z[i];
}
for (var i = 0, li=interlaced.length; i < li; ++i) {
interlaced[i] = 2*interlaced[i];
}
for (var i = 0, li=interlaced.length; i < li; i+=3) {
interlaced[i] = 2*interlaced[i];
interlaced[i+1] = 2*interlaced[i+1];
interlaced[i+2] = 2*interlaced[i+2];
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
AoS | |
SoA | |
SoA - one component per loop | |
Interlaced Array - no loop unrolling | |
Interlaced Array - with loop unrolling |
Test name | Executions per second |
---|---|
AoS | 218.4 Ops/sec |
SoA | 422.8 Ops/sec |
SoA - one component per loop | 419.0 Ops/sec |
Interlaced Array - no loop unrolling | 279.0 Ops/sec |
Interlaced Array - with loop unrolling | 382.5 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Overview
The benchmark compares three approaches to process a list of vectors:
Float32Array
is used, and values for x, y, and z are interlaced within it to represent vectors.Options Compared
The benchmark tests the performance differences between these three approaches:
Float32Array
with interlaced values for x, y, and zPros and Cons
Loop Unrolling
The Interlaced Array approach uses loop unrolling, where the loop iterates 3 times instead of 1. This can improve performance by reducing branch prediction errors.
Browser Results
The benchmark results show that:
Other Considerations
When choosing an approach, consider the trade-offs between memory usage and performance. If you need to process large datasets, the Interlaced Array approach might be a good choice. However, if you prioritize readability and maintainability, SoA or AoS might be a better fit.
Keep in mind that this benchmark is specific to JavaScript and may not generalize to other languages or platforms.