var x = [], y =[], z =[];
var vectors = [];
for(var i = 0; i < 1000000; i++){
x[i] = Math.random()*100|0;
y[i] = Math.random()*100|0;
z[i] = Math.random()*100|0;
vectors[i] = { x: x[i], y: y[i], z: z[i] };
}
var vector;
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=vectors.length; i < li; ++i) {
vector = vectors[i];
vector.x = 2 * vector.x;
vector.y = 2 * vector.y;
vector.z = 2 * vector.z;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
soa | |
aos |
Test name | Executions per second |
---|---|
soa | 188.9 Ops/sec |
aos | 18.1 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks.
What is being tested?
The provided benchmark tests two approaches to scaling an array: SoA (Structured Array) and AoS (Array of Structured Arrays). In this case, both SoA and AoS are used to store 3D vectors.
In the Script Preparation Code
, a large array x
, y
, and z
is created using the following code:
for (var i = 0; i < 1000000; i++) {
x[i] = Math.random() * 100 | 0;
y[i] = Math.random() * 100 | 0;
z[i] = Math.random() * 100 | 0;
vectors[i] = { x: x[i], y: y[i], z: z[i] };
}
Here, x
, y
, and z
are arrays of length 1,000,000. For each element in the array, a random value is generated between 0 and 100 (inclusive). The resulting values are then stored as 3D vectors in the vectors
array.
The two benchmark tests differ only in how they access and modify these vectors:
SoA (Structured Array)
In this approach, each vector is an element of the vectors
array. The benchmark code uses a simple index-based access to read, write, and update each vector:
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];
}
AoS (Array of Structured Arrays)
In this approach, each vector is a separate element in the vectors
array. The benchmark code uses a loop to iterate over the vectors and then access each vector's elements:
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;
}
Pros and Cons
Both approaches have their trade-offs:
SoA (Structured Array):
AoS (Array of Structured Arrays):
Other Considerations
When choosing between SoA and AoS, consider the specific requirements of your application:
Library usage
None of the benchmark code explicitly uses any external libraries. However, if the test case used a library like Array.prototype.map()
, Array.prototype.forEach()
, or other array methods, it would modify how the benchmarks are executed.
Special JS features or syntax
The benchmark does not use any special JavaScript features or syntax, such as async/await
or let
/const
declarations. It also does not include any advanced optimizations like parallel processing or SIMD instructions. The code is straightforward and focuses on showcasing the performance difference between SoA and AoS.
Other alternatives
If you're interested in exploring alternative approaches, consider: