Open
Description
The list of numpy functions, that exist in numba and must be implementing:
- all
- any
- argsort (via dpnp)
- astype
- conj (waiting complex numbers)
- conjugate (waiting complex numbers)
- copy (via dpnp Add np.copy via dpnp #263)
- cumprod (via dpnp Implement np.cumsum and np.cumprod in kernel by dpnp #258)
- cumsum (via dpnp Implement np.cumsum and np.cumprod in kernel by dpnp #258)
- diagonal
- flatten
- item (non kernel operations)
- itemset (non kernel operations)
- nonzero
- partition
- ptp
- ravel
- repeat
- reshape
- round
- searchsorted
- sort (via dpnp Implement np.sort in kernel by dpnp #234)
- take (via dpnp Implement np.take in kernel by dpnp #246)
- trace
- transpose (via dpnp - Vlad wip)
- view (non kernel operations)
The list of numpy functions, that already implemented with parfor:
- argmax
- argmin
- dot
- max
- mean
- min
- prod
- std
- sum
- var