You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the eigs method of the LinearOperator class differentiates between the CPU and GPU scenarios, where the former uses scipy routines and the latter our own implementation of a power method.
Since cupy has recently added similar routines to those of scipy, we want to add them into the backend module and have a transparent use of the same routines as done in most other cases in the library
The text was updated successfully, but these errors were encountered:
Currently the
eigs
method of theLinearOperator
class differentiates between the CPU and GPU scenarios, where the former uses scipy routines and the latter our own implementation of a power method.Since
cupy
has recently added similar routines to those of scipy, we want to add them into the backend module and have a transparent use of thesame
routines as done in most other cases in the libraryThe text was updated successfully, but these errors were encountered: