var x = new Float32Array(1000000),
y = new Float32Array(1000000),
z = new Float32Array(1000000);
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 | 623.2 Ops/sec |
aos | 267.6 Ops/sec |
Let's break down the benchmark and its options.
Benchmark Overview
The benchmark compares two approaches to perform operations on data:
x
, y
, and z
) to store the data, with each array containing one dimension of the data.vectors
) where each element is an object that contains multiple dimensions of the data.Options Compared
The benchmark compares two specific test cases:
soa
: This test case uses the SOA approach, where three separate arrays are used to store the data.aos
: This test case uses the AOS approach, where an object array is used to store the data.Pros and Cons of Each Approach
Library Used
In this benchmark, no libraries are explicitly mentioned. However, the Float32Array
constructor is used to create arrays with floating-point data type. This suggests that the benchmark may use Web API (Web Platform Incubator) features for creating and manipulating arrays.
Special JS Features/Syntax
This benchmark does not specifically test any special JavaScript features or syntax. It only focuses on comparing two different approaches to perform operations on data.
Other Alternatives
Some alternative approaches that could be compared in this benchmark include:
These alternatives could provide additional insights into performance differences and code complexity for different data structures.