A python module that computes multi-dimensional histogram.
The serial version should be faster that numpy.histogramdd when sample scale is small.
The parallel version should be faster that numpy.histogramdd when sample scale is large.
Both versions should beat numpy.histogramdd if the number of dimensions is high.
cd path/to/this/repo
pip install .
- update documentation
- implementation of histnd_parallel_py() with generic data types of Rust
- benchmarks
Python example scripts are located here.