Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 809 Bytes

README.md

File metadata and controls

22 lines (16 loc) · 809 Bytes

histnd

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.

Installation

cd path/to/this/repo
pip install .

TODO list

  • update documentation
  • implementation of histnd_parallel_py() with generic data types of Rust
  • benchmarks

Examples

Python example scripts are located here.