#include "slepcnep.h" PetscErrorCode NEPCISSSetSizes(NEP nep,PetscInt ip,PetscInt bs,PetscInt ms,PetscInt npart,PetscInt bsmax,PetscBool realmats)Logically Collective
nep | - the nonlinear eigensolver context | |
ip | - number of integration points | |
bs | - block size | |
ms | - moment size | |
npart | - number of partitions when splitting the communicator | |
bsmax | - max block size | |
realmats | - T(z) is real for real z |
-nep_ciss_integration_points | - Sets the number of integration points | |
-nep_ciss_blocksize | - Sets the block size | |
-nep_ciss_moments | - Sets the moment size | |
-nep_ciss_partitions | - Sets the number of partitions | |
-nep_ciss_maxblocksize | - Sets the maximum block size | |
-nep_ciss_realmats | - T(z) is real for real z |
The default number of partitions is 1. This means the internal KSP object is shared among all processes of the NEP communicator. Otherwise, the communicator is split into npart communicators, so that npart KSP solves proceed simultaneously.
The realmats flag can be set to true when T(.) is guaranteed to be real when the argument is a real value, for example, when all matrices in the split form are real. When set to true, the solver avoids some computations.