var n = 10000;
var range = 1000000;
var a = [Array(n)].map(_ => Math.random(range));
var a32 = new Float32Array(a);
var a64 = new Float64Array(a);
for (let i = 0; i < n; i++) {
a[i] = a[i] / 2;
}
for (let i = 0; i < n; i++) {
a32[i] = a32[i] / 2;
}
for (let i = 0; i < n; i++) {
a64[i] = a64[i] / 2;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Array | |
Float32Array | |
Float64Array |
Test name | Executions per second |
---|---|
Array | 69224.7 Ops/sec |
Float32Array | 137563.3 Ops/sec |
Float64Array | 137523.9 Ops/sec |
I'd be happy to explain the benchmark and its results.
Benchmark Overview
The benchmark measures the performance of three types of TypedArray operations: Array, Float32Array, and Float64Array. A TypedArray is a data structure in JavaScript that provides efficient access to numeric data.
Options Compared
In this benchmark, two options are compared:
Array
object.Float32Array
and Float64Array
) from the JavaScript standard library.Pros and Cons
Here's a brief summary of the pros and cons of each approach:
Library Used
The benchmark uses the following libraries:
Special JS Feature or Syntax
This benchmark does not use any special JavaScript features or syntax. However, it relies on the TypedArray classes, which are a feature introduced in ECMAScript 2015 (ES6).
Benchmark Preparation Code Explanation
The preparation code initializes an array a
with random values between 0 and range
, then creates two TypedArrays: a32
(Float32Array) and a64
(Float64Array). The benchmark definition code is a simple loop that performs the same operation on each element of these arrays.
Test Case Explanation
Each test case is identical, with only the array type changed. This allows for a fair comparison between the Array and TypedArray approaches.
Other Alternatives
If you were to consider alternative implementations or optimizations for this benchmark:
However, these alternatives may introduce additional complexity and are likely only beneficial if you're targeting a specific platform or have specific requirements that aren't addressed by the standard library implementations.