splitmix: Fast Splittable PRNG
Pure Haskell implementation of SplitMix described in
Guy L. Steele, Jr., Doug Lea, and Christine H. Flood. 2014. Fast splittable pseudorandom number generators. In Proceedings of the 2014 ACM International Conference on Object Oriented Programming Systems Languages & Applications (OOPSLA '14). ACM, New York, NY, USA, 453-472. DOI: https://doi.org/10.1145/2660193.2660195
The paper describes a new algorithm SplitMix for splittable pseudorandom number generator that is quite fast: 9 64 bit arithmetic/logical operations per 64 bits generated.
SplitMix is tested with two standard statistical test suites (DieHarder and TestU01, this implementation only using the former) and it appears to be adequate for "everyday" use, such as Monte Carlo algorithms and randomized data structures where speed is important.
In particular, it should not be used for cryptographic or security applications, because generated sequences of pseudorandom values are too predictable (the mixing functions are easily inverted, and two successive outputs suffice to reconstruct the internal state).
[Skip to Readme]
Flags
Manual Flags
Name | Description | Default |
---|---|---|
optimised-mixer | Use JavaScript for mix32 | Disabled |
Use -f <flag> to enable a flag, or -f -<flag> to disable that flag. More info
Downloads
- splitmix-0.1.0.2.tar.gz [browse] (Cabal source package)
- Package description (as included in the package)
Versions [RSS] | 0, 0.0.1, 0.0.2, 0.0.3, 0.0.4, 0.0.5, 0.1, 0.1.0.1, 0.1.0.2, 0.1.0.3, 0.1.0.4, 0.1.0.5 |
---|---|
Change log | Changelog.md |
Dependencies | base (>=4.3 && <4.16), deepseq (>=1.3.0.0 && <1.5), time (>=1.2.0.3 && <1.11) [details] |
Tested with | ghc ==7.0.4 || ==7.2.2 || ==7.4.2 || ==7.6.3 || ==7.8.4 || ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.2, ghcjs ==8.4 |
License | BSD-3-Clause |
Author | |
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Category | System, Random |
Bug tracker | https://github.com/haskellari/splitmix/issues |
Source repo | head: git clone https://github.com/haskellari/splitmix.git |
Uploaded | by phadej at 2020-10-19T11:08:46Z |
Distributions | Arch:0.1.0.5, Debian:0.0.5, Fedora:0.1.0.4, LTSHaskell:0.1.0.5, NixOS:0.1.0.5, Stackage:0.1.0.5, openSUSE:0.1.0.5 |
Reverse Dependencies | 18 direct, 10529 indirect [details] |
Downloads | 59714 total (525 in the last 30 days) |
Rating | 2.0 (votes: 1) [estimated by Bayesian average] |
Your Rating | |
Status | Docs available [build log] Last success reported on 2020-10-19 [all 1 reports] |