class Float32ArrayExtended extends Float32Array {
constructor (val) {
super(1);
this[0] = val;
}
get x () { return this[0]; }
set x (v) { this[0] = v; }
}
class Int32ArrayExtended extends Int32Array {
constructor (val) {
super(1);
this[0] = val;
}
get x () { return this[0]; }
set x (v) { this[0] = v; }
}
const size = 10000;
const array = new Array(16).fill(1);
const arrayEF32 = new Float32ArrayExtended (16);
const arrayF32 = new Float32Array (16);
const arrayEI32 = new Int32ArrayExtended (16);
const arrayI32 = new Int32Array (16);
const obj = {
get x() {
return array[0];
},
set x(value) {
array[0] = value;
}
};
let sum = 0;
for (let i = 0; i < size; i++) {
array[0] = Math.random () * 1000;
sum += array[0];
}
let sum = 0;
for (let i = 0; i < size; i++) {
obj.x = Math.random () * 1000;
sum += obj.x;
}
let sum = 0;
for (let i = 0; i < size; i++) {
arrayF32[0] = Math.random () * 1000;
sum += arrayF32[0];
}
let sum = 0;
for (let i = 0; i < size; i++) {
arrayEF32.x = Math.random () * 1000;
sum += arrayEF32.x;
}
let sum = 0;
for (let i = 0; i < size; i++) {
arrayI32[0] = Math.random () * 1000;
sum += arrayI32[0];
}
let sum = 0;
for (let i = 0; i < size; i++) {
arrayEI32.x = Math.random () * 1000;
sum += arrayEI32.x;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
array[0] | |
set / get | |
float 32 | |
extended float 32 | |
int 32 | |
extended int 32 |
Test name | Executions per second |
---|---|
array[0] | 5981.4 Ops/sec |
set / get | 592.7 Ops/sec |
float 32 | 5827.6 Ops/sec |
extended float 32 | 5998.3 Ops/sec |
int 32 | 5953.3 Ops/sec |
extended int 32 | 5886.8 Ops/sec |
The benchmark outlined in the provided JSON evaluates the performance of different approaches to accessing and modifying array elements in JavaScript. Here, it compares regular JavaScript arrays, different types of typed arrays, and the performance implications of using getters and setters with property access.
Regular Array (array[0]
):
Getter/Setter on an Object (obj.x
):
obj
has a property with a getter and setter for x
, which accesses the first element of the regular array.Typed Array (Float32Array
):
Extended Typed Array (Float32ArrayExtended
):
Float32Array
to include a getter/setter for accessing the first element with a property x
.Int32Array:
Float32Array
, but this typed array specifically holds 32-bit signed integers.Float32Array
.Extended Int32Array (Int32ArrayExtended
):
Int32Array
, adding a getter/setter for the first element.Float32ArrayExtended
, allowing property-oriented access while maintaining the benefits of a typed array.Based on the latest benchmark results, the following can be observed:
extended float 32
version topped the performance with around 5998 executions per second, suggesting that the addition of a getter/setter does not significantly detract from the performance of Float32Array
.array[0]
) performed slightly slower, yet still competitive, at around 5981 executions per second.Int32Array
and its extended version is impressive as well, but it is noteworthy that the getter/setter approach for both integer types was among the slower options.set / get
) yielded significantly lower performance, indicating the overhead it brings compared to direct property access.In addition to the approaches tested:
ArrayBuffer
instances can be created for precise control over memory, which can be useful for advanced numerical computing.lodash
can optimize certain operations over arrays, though they often come with overhead. Consideration could be given to frameworks like TensorFlow.js
which utilize typed arrays effectively for numerical computations.In conclusion, this benchmark effectively illustrates the trade-offs between using arrays and typed arrays with direct access versus the implementation of custom getter/setter properties. Performance varies based on the choice made, and decisions should be guided by specific application needs, especially concerning numerical computing versus general purpose programming.