PyLops / pylops

PyLops – A Linear-Operator Library for Python
https://pylops.readthedocs.io
GNU Lesser General Public License v3.0
429 stars 102 forks source link

Add copy's eigenvalue computations in eigs #565

Open mrava87 opened 10 months ago

mrava87 commented 10 months ago

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