Skip to content

Lyapunov compute

Configuration concerning the solution of the Lyapunov equation.

eig_compute_location#

eig_compute_location: Literal['numpy', 'cupy', 'nvmath'] = 'numpy'

Backend to use for computing eigenvalues.

The spectral Lyapunov solver requires the computation of eigenvalues of a general dense matrix. This parameter determines whether to use NumPy, CuPy, or NVMath for this computation. The default is NumPy.

use_pinned_memory#

use_pinned_memory: bool = True

Whether to use pinned memory when transferring data in the spectral Lyapunov solver.