const len = 16384;
window.len = len;
window.arr = new Array(len);
window.f32 = new Float32Array(len);
window.f64 = new Float64Array(len);
for (let i = 0; i < len; i++) {
window.arr[i] = Math.random() * 2048;
window.f32 = Math.fround(window.arr[i]);
window.f64 = window.arr[i];
}
let a = 0;
for (let i = 1; i < window.len; i++) {
a = window.arr[i] * window.arr[i - 1];
}
let a = 0;
for (let i = 1; i < window.len; i++) {
a = window.f32[i] * window.f32[i - 1];
}
let a = 0;
for (let i = 1; i < window.len; i++) {
a = window.f64[i] * window.f64[i - 1];
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Plain array | |
Float32 Array | |
Float64 Array |
Test name | Executions per second |
---|---|
Plain array | 21286.1 Ops/sec |
Float32 Array | 1497.4 Ops/sec |
Float64 Array | 1544.5 Ops/sec |
Let's dive into the world of JavaScript microbenchmarks on MeasureThat.net.
Benchmark Overview
The benchmark measures the performance of multiplying two array elements using different data types: plain arrays, Float32Arrays, and Float64Arrays. The test case uses these data types to store random numbers generated by Math.random()
and then multiplies corresponding elements together.
Script Preparation Code
Before running the benchmark, the script preparation code initializes three variables:
window.len
: sets the length of the arrays (16384 in this case).window.arr
, window.f32
, and window.f64
: create new arrays with len
elements and initialize them with random numbers generated using Math.random()
.Options Compared
The benchmark compares three options:
window.arr
): uses a traditional JavaScript array for storing and manipulating data.window.f32
): uses a typed array optimized for 32-bit floating-point operations, which can provide better performance for numerical computations compared to plain arrays.window.f64
): uses another typed array optimized for 64-bit floating-point operations.Pros and Cons
Here's a brief summary of the pros and cons of each option:
Library Usage
None of the benchmark options use any additional libraries beyond what's included with the JavaScript language itself. The performance difference is mainly due to the inherent characteristics of each data type.
Special JS Features/Syntax
No special JavaScript features or syntax are used in this benchmark, so it should be compatible with most environments that support modern JavaScript (ES6+).
Alternative Approaches
If you need better performance for numerical computations, consider using:
Please note that these alternatives may require additional setup, dependencies, or expertise in optimizing code for specific performance requirements.