function getRandomUint32(min, max) {
return Math.floor(Math.random() * (max - min) + min);
}
for(let i = 0; i < 100; i++) {
const z = getRandomUint32(0, 2 ** 32) < 2_147_483_648;
}
for(let i = 0; i < 100; i++) {
const z = getRandomUint32(0, 2 ** 32) % 2 === 0;
}
for(let i = 0; i < 100; i++) {
const z = getRandomUint32(0, 2 ** 32) & 1 === 1;
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
Compare to half of max int | |
Mod even/odd | |
Bitwise even/odd |
Test name | Executions per second |
---|---|
Compare to half of max int | 21006774.0 Ops/sec |
Mod even/odd | 20871864.0 Ops/sec |
Bitwise even/odd | 20994424.0 Ops/sec |
Overview of the Benchmark
The provided JSON represents a JavaScript microbenchmark that tests the performance of different approaches for generating boolean values from 32-bit unsigned integers. The benchmark consists of three test cases:
Benchmark Preparation Code
The getRandomUint32
function is used to generate random 32-bit unsigned integers. This function uses the Math.random()
method to generate a random number, multiplies it by (max - min) + 1
, and then adds min
to shift the range.
Options Compared
In each test case, the options being compared are:
<
%
&
These options differ in their implementation and potential performance implications.
Pros and Cons of Each Approach
<
)%
)&
)Library and Special JS Features
There are no libraries or special JavaScript features used in this benchmark. The getRandomUint32
function is a simple utility function that can be easily implemented by any JavaScript engine.
Device and Browser Considerations
The benchmark results show that Firefox 128 on Windows Desktop outperforms the other options. This may be due to optimizations or features specific to Firefox, such as Just-In-Time (JIT) compilation or hardware acceleration.
Other Alternatives
For generating boolean values from integers, you can also consider using:
>>
for right shift and <<
for left shift) in combination with the least significant bit.%
, such as using the exponentiation operator (**
) or the modulo operator (%
).Keep in mind that these alternatives may have different performance characteristics and trade-offs, depending on the specific use case and requirements.