Skip to content

Commit

Permalink
Credits to A. Sikorski in _sorted_schur.
Browse files Browse the repository at this point in the history
  • Loading branch information
msmdev committed Jan 19, 2021
1 parent 16205c5 commit e5b1d9e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions pygpcca/_sorted_schur.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# With contributions of Marius Lange and Michal Klein.
# Based on the original MATLAB GPCCA code authored by Bernhard Reuter, Susanna Roeblitz and Marcus Weber,
# Zuse Institute Berlin, Takustrasse 7, 14195 Berlin
# We like to thank A. Sikorski and M. Weber for pointing us to SLEPc for partial Schur decompositions of sparse matrices.
# Further parts of sorted_krylov_schur were developed based on the function krylov_schur
# https://github.com/zib-cmd/cmdtools/blob/1c6b6d8e1c35bb487fcf247c5c1c622b4b665b0a/src/cmdtools/analysis/pcca.py#L64,
# written by Alex Sikorski, as a prototype.
# --------------------------------------------------
# If you use this code or parts of it, cite the following reference:
# ------------------------------------------------------------------
Expand Down Expand Up @@ -206,6 +210,10 @@ def sorted_krylov_schur(
Array of shape `(k,)` containing the error, based on the residual
norm, of the `i`th eigenpair at index `i`.
""" # noqa: D205, D400
# We like to thank A. Sikorski and M. Weber for pointing us to SLEPc for partial Schur decompositions of sparse matrices.
# Further parts of sorted_krylov_schur were developed based on the function krylov_schur
# https://github.com/zib-cmd/cmdtools/blob/1c6b6d8e1c35bb487fcf247c5c1c622b4b665b0a/src/cmdtools/analysis/pcca.py#L64,
# written by Alex Sikorski, as a prototype.
from petsc4py import PETSc
from slepc4py import SLEPc

Expand Down

0 comments on commit e5b1d9e

Please sign in to comment.