pnumpy icon indicating copy to clipboard operation
pnumpy copied to clipboard

Parallel NumPy seamlessly speeds up NumPy for large arrays (64K+ elements) with no change required to existing code.

Results 26 pnumpy issues
Sort by recently updated
recently updated
newest added

This class of functions would benefit from being hookable in numpy.

numpy changes

the speed of bitwise_or seems off compared to when i test with riptable on my computer, in riptable, the bitwise_or of 1million int32 takes 59 micoseconds when i use the...

When an .sum() operation is performed (which is a popular and important operation) on an int16 array it appears that numpy 1) upcasts int16 to int32 based on setbufsize 2)...

numpy changes

I tried to hook true_divide for signature int32, int32, output double (which i think is what we want??) this resulted in an error hooking true_divide with signature. float, float, output...

boolean and fancy index masking related routines can be sped up and are used very often. Be nice if we could hook these routines.

numpy changes

--------------------------------------------------------------------------- ImportError Traceback (most recent call last) Cell In [46], line 1 ----> 1 import pnumpy as np 2 import pandas as pd File c:\Users\Dell\AppData\Local\Programs\Python\Python310\lib\site-packages\pnumpy\__init__.py:57 53 raise ValueError(f"PNumPy requires a...

Hi everyone, when I use np.exp(A) with the development version 2.0.23 where A is some matrix, the results are totally wrong. Example: import numpy as np A = np.arange(9).reshape((3, 3))...

We're thinking about using `pnumpy` in our package and add it as a hard dependency, just wanted to make sure that it's still being developed. Thanks!

This issue may belong in another place but for tracking purposes I added it here. It would be nice if numpy not only allocated on 32byte or 64byte boundaries, but...

numpy changes

Hello. I have an error with importing Pnumpy: _>>> import pnumpy Traceback (most recent call last): File "", line 1, in import pnumpy File "C:\Python379\lib\site-packages\pnumpy\__init__.py", line 57, in import pnumpy._pnumpy...