Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tdegeus/prrng
Portable Reconstructible (Pseudo!) Random Number Generator
https://github.com/tdegeus/prrng
conda cpp python random-number-generators xtensor
Last synced: 11 days ago
JSON representation
Portable Reconstructible (Pseudo!) Random Number Generator
- Host: GitHub
- URL: https://github.com/tdegeus/prrng
- Owner: tdegeus
- License: mit
- Created: 2021-04-13T15:24:44.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-11-28T09:45:40.000Z (11 months ago)
- Last Synced: 2024-04-16T06:53:19.275Z (7 months ago)
- Topics: conda, cpp, python, random-number-generators, xtensor
- Language: C++
- Homepage: https://tdegeus.github.io/prrng
- Size: 800 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# prrng
[![CI](https://github.com/tdegeus/prrng/workflows/CI/badge.svg)](https://github.com/tdegeus/prrng/actions)
[![Doxygen -> gh-pages](https://github.com/tdegeus/prrng/workflows/gh-pages/badge.svg)](https://tdegeus.github.io/prrng)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/prrng.svg)](https://anaconda.org/conda-forge/prrng)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/python-prrng.svg)](https://anaconda.org/conda-forge/python-prrng)Portable Reconstructible (Pseudo) Random Number Generator.
Documentation: https://tdegeus.github.io/prrng
### Credits
This library is a wrapper around [imneme/pcg-c-basic](https://github.com/imneme/pcg-c-basic), see also [pcg-random.org](http://www.pcg-random.org), and uses some features from [wjakob/pcg32](https://github.com/wjakob/pcg32).
### Basic example
The idea is to provide a random number generator that can return nd-distributions of random numbers. Example:
```cpp
#include
#include
#includeint main()
{
auto seed = std::time(0);
prrng::pcg32 generator(seed);
auto a = generator.random({10, 40});
return 0;
}
```### pcg32
One of the hallmark features of the pcg32 generator is that the state of the random generator (the position in random sequence set by the seed) can be saved and restored at any point
```cpp
#include
#includeint main()
{
prrng::pcg32 generator();
auto state = generator.state();
auto a = generator.random({10, 40});
generator.restore(state);
auto b = generator.random({10, 40});
assert(xt::allclose(a, b));
return 0;
}
```or in Python
```python
import prrng
import timeseed = int(time.time())
generator = prrng.pcg32(seed)
a = generator.random([10, 40])
```Note that a seed gives the exact same random sequence from C++ as from Python.
#### Features
* Language and platform independence.
* Several distributions implemented.
* Advance by `n` in the random sequence in a less costly way that drawing the numbers.
* Compute the distance between two states.**Important (C++):** A very important and hallmark features of pcg32 is that, internally, types of fixed bit size are used. Notably the state is (re)stored as `uint64_t`. This makes that restoring can be
uniquely done on any system and any compiler, on any platform (as long as you save the `uint64_t` properly, naturally).
As a convenience the output can be recast by specifying a template parameter, while static assertions shield you from losing data. For example, `auto state = generator.state();` would be allowed, but `auto state = generator.state();` would not.Note that the Python API ensure the right types at all times.
### cumsum
The advantage of being able to restore and advance the random number generator is exploited in a wrapper in which the cumulative sum of the sequence of random numbers can be accessed in chunks.
#### Basic usage
For example (Python):
```python
k = 2
scale = 5
offset = 0.1
generator = prrng.pcg32()
x = np.cumsum(offset + generator.weibull([10000], k, scale))
```
The sequence `x` can potentially be very long, and one might want to access it in chunks. This can be done using:
```python
k = 2
scale = 5
offset = 0.1
nchunk = 100# initialise the generator, allocate the chunk
chunk = prrng.pcg32_cumsum(
shape = [nchunk],
distribution = prrng.weibull,
parameters = [k, scale, offset],
)# access the sequence at some location
# if the target is far away, this can be costly
# (especially if the target is 'left' of the chunk)
target = 12345.6
chunk.align(target)
```#### Customisation
You can modify the sequence by modifying the chunk. For example, to apply an offset:
```python
chunk = prrng.pcg32_cumsum(
shape = [nchunk],
distribution = prrng.weibull,
parameters = [k, scale, offset],
)chunk -= dx0
```### Array of tensors
In addition a bunch of random number generators can be collected in an nd-array,
such that a composite array of random numbers is returned.
Example:```cpp
#include
#includeint main()
{
xt::xtensor seed = {{0, 1, 2}, {3, 4, 5}};
prrng::pcg32_array generator(seed);
auto state = generator.state();
auto a = generator.random({4, 5}); // shape {2, 3, 4, 5}
generator.restore(state);
auto b = generator.random({4, 5});
assert(xt::allclose(a, b));
return 0;
}
```### Random distributions
Each random generator can return a random sequence according to a certain distribution.
The most basic behaviour is to just convert a random integer to a random double `[0, 1]`,
as was already done in the examples using `generator.random<...>(...)`.
Also this feature is included in the Python API, allowing to get a reproducible distribution.### More information
* The documentation of the code.
* The code itself.
* The unit tests, under [tests](./tests).
* The examples, under [examples](./examples).## Implementation
### C++ and Python
The code is a C++ header-only library,
but a Python module is also provided.
The interfaces are identical except:+ All *xtensor* objects (`xt::xtensor<...>`) are *NumPy* arrays in Python.
+ All `::` in C++ are `.` in Python.### Installation
#### C++ headers
##### Using conda
```bash
conda install -c conda-forge prrng
```##### From source
```bash
# Download prrng
git checkout https://github.com/tdegeus/prrng.git
cd prrng# Install headers, CMake and pkg-config support
cmake .
make install
```#### Python module
##### Using conda
```bash
conda install -c conda-forge python-prrng
```Note that *xsimd* and hardware optimisation are **not enabled**.
To enable them you have to compile on your system, as is discussed next.##### From source
```bash
# Download prrng
git checkout https://github.com/tdegeus/prrng.git
cd prrng# Get prerequisites. An example is given using conda, but there are many other ways
conda activate myenv
conda env update --file environment.yaml
# (if you use hardware optimisation, below, you also want)
conda install -c conda-forge xsimd# Compile and install the Python module
# (-v can be omitted as is controls just the verbosity)
python -m pip install . -v# Or, compile with hardware optimisation (fastest), see scikit-build docs
SKBUILD_CONFIGURE_OPTIONS="-DUSE_SIMD=1" python -m pip install . -v# Note that you can also compile with debug assertions (very slow)
SKBUILD_CONFIGURE_OPTIONS="-USE_DEBUG=1" python -m pip install . -v# Or, without any assertions (slightly faster, but more dangerous)
SKBUILD_CONFIGURE_OPTIONS="-USE_ASSERT=1" python -m pip install . -v
```### Compiling user code
#### Using CMake
##### Example
Using *prrng* your `CMakeLists.txt` can be as follows
```cmake
cmake_minimum_required(VERSION 3.1)
project(example)
find_package(prrng REQUIRED)
add_executable(example example.cpp)
target_link_libraries(example PRIVATE prrng)
```##### Targets
The following targets are available:
* `prrng`
Includes *prrng* and the *xtensor* dependency.* `prrng::assert`
Enables assertions by defining `QPOT_ENABLE_ASSERT`.* `prrng::debug`
Enables all assertions by defining
`QPOT_ENABLE_ASSERT` and `XTENSOR_ENABLE_ASSERT`.* `prrng::compiler_warings`
Enables compiler warnings (generic).##### Optimisation
It is advised to think about compiler optimisation and enabling *xsimd*.
Using *CMake* this can be done using the `xtensor::optimize` and `xtensor::use_xsimd` targets.
The above example then becomes:```cmake
cmake_minimum_required(VERSION 3.1)
project(example)
find_package(prrng REQUIRED)
find_package(xtensor REQUIRED)
find_package(xsimd REQUIRED)
add_executable(example example.cpp)
target_link_libraries(example PRIVATE
prrng
xtensor::optimize
xtensor::use_xsimd)
```See the [documentation of xtensor](https://xtensor.readthedocs.io/en/latest/) concerning optimisation.
#### By hand
Presuming that the compiler is `c++`, compile using:
```
c++ -I/path/to/prrng/include ...
```Note that you have to take care of the *xtensor* dependency, the C++ version, optimisation,
enabling *xsimd*, ...#### Using pkg-config
Presuming that the compiler is `c++`, compile using:
```
c++ `pkg-config --cflags prrng` ...
```Note that you have to take care of the *xtensor* dependency, the C++ version, optimization,
enabling *xsimd*, ...## Change-log
### v1.2.0
#### New features
* Allow scalar return type where possible
* Adding `randint`
* Adding `delta` distribution (just to provide a quick API)
* [docs] Using default doxygen theme#### Internal changes
* Making `normal_distribution::quantile` more robust
* Omitting unneeded `is_xtensor`
* [tests] Updating catch2 v3### v0.6.1
* Switching to scikit-build, clean-up of CMake (#24)
### v0.6.0
* [Python] setup.py: support cross-compilation, allowing customization
* [CMake] allowing simd
* [CMake] Avoiding setuptools_scm dependency if SETUPTOOLS_SCM_PRETEND_VERSION is defined
* [CI] Minor updates
* [docs] Updating doxystyle
* [docs] Building docs on release
* Using new operators xtensor
* Minor style update
* Fixing weibull_distribution::cdf. Plotting CDF
* [CMake] Minor updates