Skip to content

Releases: ml31415/numpy-groupies

v0.9.10

23 Dec 08:38
Compare
Choose a tag to compare
  • Fixes an issue for non-default fill_values for mean/std/var.

v0.9.8.4

24 Apr 06:59
Compare
Choose a tag to compare

This version comes with a couple of new functions for the numba implementation of aggregate:

  • argmin
  • argmax
  • cumsum
  • cumprod
  • cummin
  • cummax

The numba implementation now also handles jitting of arbitrary reduce functions, though the speed is not that impressive as it might sound.

sort was modified and sped up, so that it produces a groupwise sorted array in the same size of the input, and not an array of arrays anymore. This should be the more useful mode of operation.

v0.9.6

25 Mar 14:25
Compare
Choose a tag to compare

This version is finally fully tested and compatible with python3. Note that the weave implementation is not available in python3, as python3 is unfortunately not supported by them. We recommend the numba implementation for new projects!

v0.9.5

25 Mar 13:15
Compare
Choose a tag to compare

Import fixes for recent scipy version, which finally forcing weave as a standalone package.

pypi debut

06 Jul 12:46
Compare
Choose a tag to compare

agregate API is well documented, and has a fairly thorough selection of tests and benchmarks. numba code is provided but not ready for use.
multi_cumsum and multi_arange are included only to make it clear that this package is intending to be more than just aggregate, their APIs and implementations may change considerably in future.