-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues with CuPy and the Sparse Implementation #6
Comments
I have tried other unsuccessful attempts:
This results in an error saying that all parameters needs to be 1D arrays, even though they are all 1D.
I think this method only works when v is already a sparse matrix. |
I noticed in dask's distributed repository, they had some unit testing where they implemented the cupyx.scipy.sparse.coo_matrix here. I got that to work. |
Where V.result() returns a dask cupy sparse array. Looks like it is being looked into cupy/cupy#3178. |
Currently implemented is pydata's
sparse.COO
but it isn't compatable with cupy yet! It is part of their future plans, but currently not.Other option but not really. Cupy has scipy coo_matrix implemented but it doesn't support 1D vectors.
The S Matrix is a cupy array, so the 1D array must be cupy or compatible with cupy and numpy aka sparse.COO
The text was updated successfully, but these errors were encountered: