diff --git a/CHANGELOG.md b/CHANGELOG.md index 40217cd..3c982d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.0.2] - 2020-06-15 + +## Added +- Speedup by using numba parallel and fastmath +- sphinx documentation and RTD hooks. + ## [0.0.1] - 2020-05-29 ## Added diff --git a/pyspherical/transforms.py b/pyspherical/transforms.py index 2900388..ba644ae 100644 --- a/pyspherical/transforms.py +++ b/pyspherical/transforms.py @@ -64,7 +64,6 @@ def do_conv(a): # quantities if they have been FFT-shifted, such that the 0 mode # is in the center of the array. return np.convolve(a, weights, mode='valid') - # TODO -- try scipy.ndimage.convolve1d with axis, instead of apply_along_axi Gmm = np.apply_along_axis(do_conv, 1, padFmm) * 2 * np.pi # Unshift the m' axis