Skip to main content

Simple random number generators

Project description

Author:

Craig McQueen

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

Simple pseudo-random number generators.

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://github.com/cmcqueen/simplerandom

Algorithms

Most 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. It has a period of 2**32-1 as expected.

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

From Pierre L’Ecuyer [4] [6], the Combined LFSR (Tausworthe) LFSR113 algorithm [5] and LFSR88 (aka Taus88) have been implemented.

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

MWC1

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

MWC2

Very similar to MWC1, but slightly modified to improve its statistical properties.

Cong

From [2].

SHR3

From [2].

MWC64

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

KISS

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

KISS2

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

LFSR113

Combined LFSR (Tausworthe) random number generator by L’Ecuyer. From [4] [5].

LFSR88

Combined LFSR (Tausworthe) random number generator by L’Ecuyer. From [6].

These generators are Python iterators, of infinite length (they never raise StopIteration). They implement the __next__() function to generate the next random integer. All the generators output 32-bit unsigned values, and take one or more 32-bit seed values during initialisation/seeding.

In simplerandom.random, pseudo-random number generators are provided which have the same names as those in simplerandom.iterators, but these generators implement the standard Python random.Random API. Each generator uses the iterator of the same name in simplerandom.iterators to generate the random bits used to produce the random floats. The jumpahead() function (in the style of the Python 2.x API) is implemented in all cases, even though jumpahead() has officially been removed from the Python 3.x random API.

Usage

Iterators

>>> import simplerandom.iterators as sri
>>> rng = sri.KISS(123958, 34987243, 3495825239, 2398172431)
>>> next(rng)
702862187
>>> next(rng)
13888114
>>> next(rng)
699722976

Random class API

>>> import simplerandom.random as srr
>>> rng = srr.KISS(258725234)
>>> rng.random()
0.0925917826051541
>>> rng.random()
0.02901686453730415
>>> rng.random()
0.9024972981686489

Supported Python Versions

Python >= 3.10 are supported.

Python versions < 3.10 might work, but have 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

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 unit tests:

python -m simplerandom.iterators.test

A more thorough unit test suite is needed. A unit test suite for simplerandom.random 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 Distribution

simplerandom-0.13.8.tar.gz (408.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

simplerandom-0.13.8-cp313-cp313-win_amd64.whl (204.5 kB view details)

Uploaded CPython 3.13Windows x86-64

simplerandom-0.13.8-cp313-cp313-win32.whl (166.0 kB view details)

Uploaded CPython 3.13Windows x86

simplerandom-0.13.8-cp312-cp312-win_amd64.whl (203.7 kB view details)

Uploaded CPython 3.12Windows x86-64

simplerandom-0.13.8-cp312-cp312-win32.whl (165.9 kB view details)

Uploaded CPython 3.12Windows x86

File details

Details for the file simplerandom-0.13.8.tar.gz.

File metadata

  • Download URL: simplerandom-0.13.8.tar.gz
  • Upload date:
  • Size: 408.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for simplerandom-0.13.8.tar.gz
Algorithm Hash digest
SHA256 c7adbc2cc2c778d84f99a6f18d4ff17b27780754962ea6ba9f65a8231b464fd3
MD5 8bebb2273c8c121eb0eac63d37b01c46
BLAKE2b-256 6ecc0ea4b1b7973394523eb0711d4b88fedc7e1bbb00224717e6855e1717a980

See more details on using hashes here.

File details

Details for the file simplerandom-0.13.8-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for simplerandom-0.13.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 92bc893a323aaa9f3d9a34540495987aee775387f0ac5c57f0883cf323b177eb
MD5 6d59b11e3bb466d4f694e4ec6945fdcb
BLAKE2b-256 f86c5d14d77546338801ee906904155460b568861b46914ec4a76cfd156c43e1

See more details on using hashes here.

File details

Details for the file simplerandom-0.13.8-cp313-cp313-win32.whl.

File metadata

  • Download URL: simplerandom-0.13.8-cp313-cp313-win32.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for simplerandom-0.13.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 277d7434907ba658ec4d01cf4794d7590a45e12b6daa4f99919f29a83fcaf432
MD5 cc235726c077942ec083f76c4c13f708
BLAKE2b-256 55580d105d9ca18f88c3fe294ba77a4828daa3777e18305aa8505f16eb6299e4

See more details on using hashes here.

File details

Details for the file simplerandom-0.13.8-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for simplerandom-0.13.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fdda2baa8f2372f2bd713d4eb60cd573c70e4bf4a0ae17a70bd37b60985aea64
MD5 ae98300ecae46d82f0168ff8a9ab8b06
BLAKE2b-256 7e3bf145a5426f653f8bb8d39dc06ae9e2f93eb231664dc5224c2268a7fc1541

See more details on using hashes here.

File details

Details for the file simplerandom-0.13.8-cp312-cp312-win32.whl.

File metadata

  • Download URL: simplerandom-0.13.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 165.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.0

File hashes

Hashes for simplerandom-0.13.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 bc4b3af288346e9bd48543e2cbded7e27dd4fc8cf11d37611a44da8793e46edc
MD5 b6d58c481e395740573e618ab5e082b4
BLAKE2b-256 cee84d6e21bbd79696e1a139512771b9ccb51bfb930167065ca23650fb32f526

See more details on using hashes here.

Supported by

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