summaryrefslogtreecommitdiff
path: root/src/python/gudhi/hera.cc
AgeCommit message (Collapse)Author
2020-05-06Reimplement the bottleneck python wrapper with pybind11Marc Glisse
2020-05-06Refactor the numpy -> C++ range conversionMarc Glisse
If we want to reuse it for bottleneck...
2020-05-06Avoid reading outside of allocated regionMarc Glisse
The result was unused, but better be safe.
2020-05-03Fewer copies and no GIL for heraMarc Glisse
Now the input arrays are not copied as long as they use a float64 data type, even if they are not contiguous. That's not important here, but I wanted an example of how to do it. More importantly, no need to hold the GIL. I was too lazy to benchmark to see if that changed anything...
2020-02-11License and authorMarc Glisse
2020-01-20Simplify the pybind11 codeMarc Glisse
2019-12-27Expose more optionsMarc Glisse
2019-12-26Update docMarc Glisse
2019-12-26Basic binding for wasserstein_distanceMarc Glisse