afnumpy
afnumpy copied to clipboard
A GPU-ready drop-in replacement for numpy.
I don't know how difficult it could be. But I am thinking of merging your approach with a c++ ndarray library so that we could make framework that could wrap...
assume arrayfire array a is linked to asnumpy array b and c = b.d_array b*=2 will modify c c+=123 will not modify b but c[:] += 123 will modify b...
Hello again, this is a feature request: It would be awesome to get some kind of sparse array support, most importantly spmv and spmm with a dense matrix, I realize...
Currently `ndarray.view()` is missing which makes it hard to use `pyqtgraph` with `afnumpy` arrays.
Hi, Could you overload the ndarray constructor, so that one can a pass raw pointer on device to create an instance, along with shape, dtype etc? --dinesh
As arrayfire does not support `stride != 1` on the first dimension it's currently not possible to have views which are not contiguous in the last dimension, e.g. `a[:,0]` or...