xrandom 0.2.1 xrandom: ^0.2.1 copied to clipboard
All-purpose, rock-solid random number generators focused on the reproducibility of tests on different platforms
xrandom #
Classes implementing all-purpose, rock-solid random number generators.
Library priorities:
- generation of identical bit-accurate numbers regardless of the platform
- reproducibility of the same random results in the future
- high-quality randomness
- performance
Algorithms are Xoshiro for quality and Xorshift for speed.
Speed #
Generating 50 million random numbers with AOT-compiled binary.
Time (lower is better) | nextInt | nextDouble | nextBool |
---|---|---|---|
Random (dart:math) | 1172 | 1541 | 1134 |
Xrandom | 732 | 1122 | 718 |
Simplicity #
It's compatible with the standard Random
import 'package:xrandom/xrandom.dart';
final random = Xrandom();
var a = random.nextBool();
var b = random.nextDouble();
var c = random.nextInt(n);
var unordered = [1, 2, 3, 4, 5]..shuffle(random);
Reproducibility #
Xrandom's classes can also be created with expected
method.
It is made specifically for testing.
test('my test', () {
final random = Xrandom.expected();
// you'll get same sequence of numbers every time
expect(random.nextInt(1000), 925);
expect(random.nextInt(1000), 686);
expect(random.nextInt(1000), 509);
});
You can achieve the same determinism by creating the Random
with a seed
argument. However, this does
not protect you from dart:math
implementation updates.
The sequences produced by the expected()
generators are intended to be reproducible.
(but not until the library reaches stable release status)
Algorithms #
Class | Arch | Algorithm | Algorithm author | Published |
---|---|---|---|---|
Xorshift32 |
32 | xorshift32 | G. Marsaglia | 2003 |
Xorshift64 |
64 | xorshift64 | G. Marsaglia | 2003 |
Xorshift128 |
32 | xorshift128 | G. Marsaglia | 2003 |
Xorshift128p |
64 | xorshift128+ | S. Vigna | 2015 |
Xoshiro128pp |
32 | xoshiro128++ 1.0 | D. Blackman and S. Vigna | 2019 |
Xoshiro256pp |
64 | xoshiro256++ 1.0 | D. Blackman and S. Vigna | 2019 |
Splitmix64 |
64 | splitmix64 | S. Vigna | 2015 |
Which to choose #
If you do not want to bother, use Xrandom
. It works fast and everywhere.
Target | Mobile and Desktop | and JavaScript |
---|---|---|
Just a generator | Xrandom64 |
Xrandom |
High speed | Xorshift64 |
Xorshift32 |
Quality randomness | Xoshiro256pp |
Xoshiro128pp |
Xrandom
is actually an alias to Xorshift32
. Xrandom64
is an alias to Xorshift128p
.
Compatibility #
You can safely use any classes on mobile and desktop platforms.
However, if you also target JavaScript (Web, Node.js), you will have to limit your choice.
Full compatibility table:
Class | Is a | Mobile and Desktop | JavaScript |
---|---|---|---|
Xorshift32 |
32-bit | yes | yes |
Xorshift128 |
32-bit | yes | yes |
Xoshiro128pp |
32-bit | yes | yes |
Xorshift64 |
64-bit | yes | no |
Xorshift128p |
64-bit | yes | no |
Xoshiro256pp |
64-bit | yes | no |
Splitmix64 |
64-bit | yes | no |
If you try to create a JavaScript-incompatible object in JavaScripts-compiled
code, an UnsupportedError
will be thrown.
Speed optimizations #
Raw bits #
The nextInt32()
and nextInt64()
return the raw output of the generator.
Method | Returns | Equivalent of |
---|---|---|
nextInt32() |
32-bit unsigned | nextInt(0xFFFFFFFE)+1 |
nextInt64() |
64-bit signed | nextInt(0xFFFFFFFFFFFFFFFE)+1 |
Time (lower is better) | nextInt | nextInt32 | nextInt64 |
---|---|---|---|
Random (dart:math) | 1208 | - | - |
Xorshift32 | 719 | 409 | - |
Xorshift64 | 1114 | 814 | 838 |
Xorshift128 | 907 | 618 | - |
Xorshift128p | 1162 | 854 | 952 |
Xoshiro128pp | 1228 | 912 | - |
Xoshiro256pp | 1746 | 1498 | 2039 |
Splitmix64 | 1248 | 931 | 782 |
Rough double #
nextFloat
, unlike nextDouble
, prefers speed to accuracy. It transforms
a single 32-bit integer into a double
. Therefore, the result is limited
to a maximum of 2^32-1 values. But it's still a double with four billion shades.
Time (lower is better) | nextDouble | nextFloat |
---|---|---|
Random (dart:math) | 1653 | - |
Xorshift32 | 1126 | 407 |
Xorshift64 | 1011 | 825 |
Xorshift128 | 1461 | 622 |
Xorshift128p | 1141 | 860 |
Xoshiro128pp | 2095 | 923 |
Xoshiro256pp | 2294 | 1488 |
Splitmix64 | 1098 | 932 |
More benchmarks #
Time (lower is better) | nextInt | nextDouble | nextBool |
---|---|---|---|
Random (dart:math) | 1208 | 1653 | 1177 |
Xorshift32 | 719 | 1126 | 710 |
Xorshift64 | 1114 | 1011 | 685 |
Xorshift128 | 907 | 1461 | 719 |
Xorshift128p | 1162 | 1141 | 694 |
Xoshiro128pp | 1228 | 2095 | 726 |
Xoshiro256pp | 1746 | 2294 | 721 |
Splitmix64 | 1248 | 1098 | 688 |
All the benchmarks on this page are from AOT-compiled binaries running on AMD A9-9420e with Ubuntu 20.04. Time is measured in milliseconds.
Consistency #
The library has been thoroughly tested to match reference numbers generated by C algorithms. The sources in C are taken directly from scientific publications or the reference implementations by the inventors of the algorithms. The Xorshift128+ results are also matched to reference values from JavaScript xorshift library, which tested the 128+ similarly.
Testing is done in the GitHub Actions cloud on Windows, Ubuntu, and macOS in VM and Node.js modes.