Skip to main content

Simple random number generators

Project description

Author:

Craig McQueen

Contact:
http://craig.mcqueen.id.au/

Simple pseudo-random number generators, from George Marsaglia.

Intro

The simplerandom package is provided, which contains modules containing classes for various simple pseudo-random number generators.

One module provides Python iterators, which generate simple unsigned 32-bit integers identical to their C counterparts.

Another module provides random classes that are sub-classed from the class Random in the random module of the standard Python library.

Why use this package? These random number generators are very simple, which has two main advantages:

  • It is easy to port them to a different platform and/or language. It can be useful to be able to implement the identical algorithm on multiple platforms and/or languages.

  • Small and simple generators can be more appropriate for small embedded systems, with limited RAM and ROM.

An equivalent C implementation (of the Python simplerandom.iterators module) has been created. See:

http://bitbucket.org/cmcqueen1975/simplerandom

Algorithms

The algorithms were obtained from two newsgroup posts by George Marsaglia [1] [2]. However, some modifications have been made. From [3], it seems that the SHR3 algorithm defined in [1] is flawed and should not be used. It doesn’t actually have a period of 2**32-1 as expected, but has 64 different cycles, some with very short periods. The SHR3 in the 2003 post is very similar, but with two shift values swapped. My suspicion is that the SHR3 shift values in the 1999 post are a typo.

We still care about KISS from [1] mainly because it uses 32-bit calculations for MWC, which can be more suitable for small embedded systems. So we define KISS that uses the MWC from [1], but the Cong and SHR3 from [2].

References

Modules Provided

Module

Description

simplerandom.iterators

Iterator classes, which generate unsigned 32-bit integers.

simplerandom.random

Classes that conform to standard Python random.Random API.

Random Number Generators Provided

In simplerandom.iterators, the following pseudo-random number generators are provided:

Generator

Notes

RandomMWCIterator

Two 32-bit MWCs combined. From [1].

RandomCongIterator

From [2].

RandomSHR3Iterator

From [2].

RandomLFIB4Iterator

From [1].

RandomSWBIterator

From [1].

RandomFibIterator

Not useful on its own, but can be used in a combination with other generators. From [1].

RandomMWC64Iterator

A single 64-bit multiply-with-carry calculation. From [2].

RandomKISSIterator

Combination of MWC, Cong and SHR3. Based on [1] but using [2] Cong and SHR3.

RandomKISS2Iterator

Combination of MWC64, Cong and SHR3. From [2].

In simplerandom.random, the following pseudo-random number generators are provided:

Generator

Notes

RandomMWC

Two 32-bit MWCs combined. From [1].

RandomCong

From [2].

RandomSHR3

From [2].

RandomLFIB4

From [1].

RandomSWB

From [1].

RandomMWC64

A single 64-bit multiply-with-carry calculation. From [2].

RandomKISS

Combination of MWC, Cong and SHR3. Based on [1] but using [2] Cong and SHR3.

RandomKISS2

Combination of MWC64, Cong and SHR3. From [2].

Usage

Iterators

>>> import simplerandom.iterators as sri
>>> rng = sri.RandomKISSIterator(123958, 34987243, 3495825239, 2398172431)
>>> next(rng)
702895144L
>>> next(rng)
13983691L
>>> next(rng)
699724563L

Random class API

>>> import simplerandom.random as srr
>>> rng = srr.RandomKISS(258725234)
>>> rng.random()
0.77345210517180141
>>> rng.random()
0.27725185740138936
>>> rng.random()
0.91217281705021191

Supported Python Versions

Currently this has had basic testing on Ubuntu 10.04 32-bit and Windows XP 32-bit. It passes the basic simplerandom.iterators.test unit tests, as well as basic manual testing of simplerandom.random. A more thorough unit test suite is needed.

In Ubuntu, it has been tested on Python 2.6 and 3.1 and passes.

In Windows, it has been tested on Python 2.4, 2.5, 2.6, 2.7, 3.1 and 3.2. It passes under these versions.

The pure Python code is expected to work on 64-bit platforms, but has not been tested. The Cython version of simplerandom.iterators should work on 64-bit platforms, but has not been tested.

Use of Cython

Cython is used to make a fast implementation of simplerandom.iterators. Cython creates a .c file that can be compiled into a Python binary extension module.

The simplerandom source distribution package includes a .c file that was created with Cython, so it is not necessary to have Cython installed to install simplerandom.

The Cython .pyx file is also included, if you want to modify the Cython source code, in which case you do need to have Cython installed. But by default, setup.py builds the extension from the .c file (to ensure that the build doesn’t fail due to particular Cython version issues). If you wish to build using Cython from the included .pyx file, you must set USE_CYTHON=True in setup.py.

Installation

The simplerandom package is installed using distutils. If you have the tools installed to build a Python extension module, run the following command:

python setup.py install

If you cannot build the C extension, you may install just the pure Python implementation, using the following command:

python setup.py build_py install --skip-build

Unit Testing

Basic unit testing of the iterators is in simplerandom.iterators.test. It duplicates the tests of the C algorithms given in the original newsgroup post [1], as well as other unit tests.

To run it on Python >=2.5:

python -m simplerandom.iterators.test

Alternatively, in the test directory run:

python test_iterators.py

A more thorough unit test suite is needed.

License

The code is released under the MIT license. See LICENSE.txt for details.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

simplerandom-0.9.0.zip (62.2 kB view hashes)

Uploaded Source

simplerandom-0.9.0.tar.gz (55.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page