var length = 1e6;
var f32_a = Float32Array.from({length}, Math.random);
var f32_b = Float32Array.from({length}, Math.random);
var f64_a = Float64Array.from({length}, Math.random);
var f64_b = Float64Array.from({length}, Math.random);
new Float32Array(length);
new Float64Array(length);
f32_a.set(f32_b);
f64_a.set(f64_b);
for (let i = 0; i < length; i++) {
f32_a[i] = f32_b[i];
}
for (let i = 0; i < length; i++) {
f64_a[i] = f64_b[i];
}
for (let i = 0; i < length; i++) {
f32_a[i] = f32_b[i] + f32_b[i] * 2;
}
for (let i = 0; i < length; i++) {
f64_a[i] = f64_b[i] + f64_b[i] * 2;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
create f32 | |
create f64 | |
set f32 | |
set f64 | |
iterate and set f32 | |
iterate and set f64 | |
add and multiply f32 | |
add and multiply f64 |
Test name | Executions per second |
---|---|
create f32 | 23331.6 Ops/sec |
create f64 | 13035.7 Ops/sec |
set f32 | 6549.1 Ops/sec |
set f64 | 2429.4 Ops/sec |
iterate and set f32 | 5.8 Ops/sec |
iterate and set f64 | 5.8 Ops/sec |
add and multiply f32 | 4.3 Ops/sec |
add and multiply f64 | 4.5 Ops/sec |
Let's break down the provided benchmark definition and test cases to understand what is being tested.
What is being tested?
The primary goal of this benchmark is to compare the performance of two data types in JavaScript: Float32Array
(32-bit floating-point numbers) and Float64Array
(64-bit floating-point numbers).
More specifically, the test suite covers various operations:
Float32Array
and Float64Array
.set
) or iterating over the array to set individual values.Options compared
The test suite compares two main options:
Float32Array
and Float64Array
: This option measures the overhead of creating instances of these data types, which may involve initializing internal buffers or allocating memory.Pros and cons of each approach
f32_a[i] = f32_b[i];
).Library usage
The benchmark uses the following libraries:
Float32Array
and Float64Array
: Built-in JavaScript typed array classes.Math.random()
: A built-in JavaScript function for generating random numbers.No external libraries are used in this benchmark.
Special JS feature or syntax
None of the test cases rely on any special JavaScript features or syntax that would affect performance, such as async/await, promises, or Web Workers.
Overall, this benchmark aims to provide a comprehensive comparison of performance between Float32Array
and Float64Array
in various common operations, helping developers understand the trade-offs between using these data types in their applications.