bottleneck icon indicating copy to clipboard operation
bottleneck copied to clipboard

Fast NumPy array functions written in C

Results 54 bottleneck issues
Sort by recently updated
recently updated
newest added

Incorporated @NikZak's suggestion from https://github.com/pydata/bottleneck/issues/385#issuecomment-928035398 and also removed the emmintrin header on arm64 ARM per https://reviews.llvm.org/D109686#change-qMIOtz4d3wgp. Tested like so: ``` $ SDKROOT=$(xcrun --sdk macosx --show-sdk-path) pip install -e .[test] &&...

I am trying to compile on Apple M1 with ``pip install .`` and get following bug report. Any help would be appreciated ``` DEPRECATION: Configuring installation scheme with distutils config...

bug

I tried to implement moving window skewness and kurtosis on this project. However, simply applying the technique used in move_std/move_var is not numerically stable due to the third/fourth power needed...

the docstring of move_std says: Moving window standard deviation along the specified axis, **optionally ignoring NaNs**. how can I ignoring NaNs so the function do same thing like nanstd on...

I have been working on installing and testing bottleneck package for amd64 and arm64 architectures. I am getting the below error on arm64 architecture for the command **python setup.py build_ext...

bug

**Describe the bug** [API-list](https://github.com/baltsers/polyfuzz/blob/main/bottleneck/API-list.txt): bn.nanmedian, bn.nanmean, bn.nanstd, bn.median, bn.ss, bn.nanmin, bn.nanmax. Python crashed in our fuzzing test of 7 APIs All tests were run on the latest developing branch. **To...

bug

Hi, there is also a concept of weighted median. I think it'd be really nice to have it in bottleneck. Ideas: https://en.wikipedia.org/wiki/Weighted_median, which also contains O(n\log n) algo. C/Python Implementation:...

Hello, A colleague and I have noticed that using the move_std method on a large float 32 array can return some strange results, mainly zeros when the std of the...

Edit is much smaller than diff suggests - mostly just whitespace due to an extra layer of indentation. The test added generates the segfault described in https://github.com/pydata/bottleneck/issues/381 without the rest...