Actual source code: nepimpl.h

slepc-3.18.0 2022-10-01
Report Typos and Errors
  1: /*
  2:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  3:    SLEPc - Scalable Library for Eigenvalue Problem Computations
  4:    Copyright (c) 2002-, Universitat Politecnica de Valencia, Spain

  6:    This file is part of SLEPc.
  7:    SLEPc is distributed under a 2-clause BSD license (see LICENSE).
  8:    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  9: */

 11: #if !defined(SLEPCNEPIMPL_H)
 12: #define SLEPCNEPIMPL_H

 14: #include <slepcnep.h>
 15: #include <slepc/private/slepcimpl.h>

 17: /* SUBMANSEC = NEP */

 19: SLEPC_EXTERN PetscBool NEPRegisterAllCalled;
 20: SLEPC_EXTERN PetscBool NEPMonitorRegisterAllCalled;
 21: SLEPC_EXTERN PetscErrorCode NEPRegisterAll(void);
 22: SLEPC_EXTERN PetscErrorCode NEPMonitorRegisterAll(void);
 23: SLEPC_EXTERN PetscLogEvent NEP_SetUp,NEP_Solve,NEP_Refine,NEP_FunctionEval,NEP_JacobianEval,NEP_Resolvent,NEP_CISS_SVD;

 25: typedef struct _NEPOps *NEPOps;

 27: struct _NEPOps {
 28:   PetscErrorCode (*solve)(NEP);
 29:   PetscErrorCode (*setup)(NEP);
 30:   PetscErrorCode (*setfromoptions)(NEP,PetscOptionItems*);
 31:   PetscErrorCode (*publishoptions)(NEP);
 32:   PetscErrorCode (*destroy)(NEP);
 33:   PetscErrorCode (*reset)(NEP);
 34:   PetscErrorCode (*view)(NEP,PetscViewer);
 35:   PetscErrorCode (*computevectors)(NEP);
 36: };

 38: /*
 39:      Maximum number of monitors you can run with a single NEP
 40: */
 41: #define MAXNEPMONITORS 5

 43: typedef enum { NEP_STATE_INITIAL,
 44:                NEP_STATE_SETUP,
 45:                NEP_STATE_SOLVED,
 46:                NEP_STATE_EIGENVECTORS } NEPStateType;

 48: /*
 49:      How the problem function T(lambda) has been defined by the user
 50:      - Callback: one callback to build the function matrix, another one for the Jacobian
 51:      - Split: in split form sum_j(A_j*f_j(lambda))
 52: */
 53: typedef enum { NEP_USER_INTERFACE_CALLBACK=1,
 54:                NEP_USER_INTERFACE_SPLIT } NEPUserInterface;

 56: /*
 57:    To check for unsupported features at NEPSetUp_XXX()
 58: */
 59: typedef enum { NEP_FEATURE_CALLBACK=1,      /* callback user interface */
 60:                NEP_FEATURE_REGION=4,        /* nontrivial region for filtering */
 61:                NEP_FEATURE_CONVERGENCE=16,  /* convergence test selected by user */
 62:                NEP_FEATURE_STOPPING=32,     /* stopping test */
 63:                NEP_FEATURE_TWOSIDED=64      /* two-sided variant */
 64:              } NEPFeatureType;

 66: /*
 67:    Defines the NEP data structure.
 68: */
 69: struct _p_NEP {
 70:   PETSCHEADER(struct _NEPOps);
 71:   /*------------------------- User parameters ---------------------------*/
 72:   PetscInt       max_it;           /* maximum number of iterations */
 73:   PetscInt       nev;              /* number of eigenvalues to compute */
 74:   PetscInt       ncv;              /* number of basis vectors */
 75:   PetscInt       mpd;              /* maximum dimension of projected problem */
 76:   PetscInt       nini;             /* number of initial vectors (negative means not copied yet) */
 77:   PetscScalar    target;           /* target value */
 78:   PetscReal      tol;              /* tolerance */
 79:   NEPConv        conv;             /* convergence test */
 80:   NEPStop        stop;             /* stopping test */
 81:   NEPWhich       which;            /* which part of the spectrum to be sought */
 82:   NEPProblemType problem_type;     /* which kind of problem to be solved */
 83:   NEPRefine      refine;           /* type of refinement to be applied after solve */
 84:   PetscInt       npart;            /* number of partitions of the communicator */
 85:   PetscReal      rtol;             /* tolerance for refinement */
 86:   PetscInt       rits;             /* number of iterations of the refinement method */
 87:   NEPRefineScheme scheme;          /* scheme for solving linear systems within refinement */
 88:   PetscBool      trackall;         /* whether all the residuals must be computed */
 89:   PetscBool      twosided;         /* whether to compute left eigenvectors (two-sided solver) */

 91:   /*-------------- User-provided functions and contexts -----------------*/
 92:   PetscErrorCode (*computefunction)(NEP,PetscScalar,Mat,Mat,void*);
 93:   PetscErrorCode (*computejacobian)(NEP,PetscScalar,Mat,void*);
 94:   void           *functionctx;
 95:   void           *jacobianctx;
 96:   PetscErrorCode (*converged)(NEP,PetscScalar,PetscScalar,PetscReal,PetscReal*,void*);
 97:   PetscErrorCode (*convergeduser)(NEP,PetscScalar,PetscScalar,PetscReal,PetscReal*,void*);
 98:   PetscErrorCode (*convergeddestroy)(void*);
 99:   PetscErrorCode (*stopping)(NEP,PetscInt,PetscInt,PetscInt,PetscInt,NEPConvergedReason*,void*);
100:   PetscErrorCode (*stoppinguser)(NEP,PetscInt,PetscInt,PetscInt,PetscInt,NEPConvergedReason*,void*);
101:   PetscErrorCode (*stoppingdestroy)(void*);
102:   void           *convergedctx;
103:   void           *stoppingctx;
104:   PetscErrorCode (*monitor[MAXNEPMONITORS])(NEP,PetscInt,PetscInt,PetscScalar*,PetscScalar*,PetscReal*,PetscInt,void*);
105:   PetscErrorCode (*monitordestroy[MAXNEPMONITORS])(void**);
106:   void           *monitorcontext[MAXNEPMONITORS];
107:   PetscInt       numbermonitors;

109:   /*----------------- Child objects and working data -------------------*/
110:   DS             ds;               /* direct solver object */
111:   BV             V;                /* set of basis vectors and computed eigenvectors */
112:   BV             W;                /* left basis vectors (if left eigenvectors requested) */
113:   RG             rg;               /* optional region for filtering */
114:   SlepcSC        sc;               /* sorting criterion data */
115:   Mat            function;         /* function matrix */
116:   Mat            function_pre;     /* function matrix (preconditioner) */
117:   Mat            jacobian;         /* Jacobian matrix */
118:   Mat            *A;               /* matrix coefficients of split form */
119:   FN             *f;               /* matrix functions of split form */
120:   PetscInt       nt;               /* number of terms in split form */
121:   MatStructure   mstr;             /* pattern of split matrices */
122:   Mat            *P;               /* matrix coefficients of split form (preconditioner) */
123:   MatStructure   mstrp;            /* pattern of split matrices (preconditioner) */
124:   Vec            *IS;              /* references to user-provided initial space */
125:   PetscScalar    *eigr,*eigi;      /* real and imaginary parts of eigenvalues */
126:   PetscReal      *errest;          /* error estimates */
127:   PetscInt       *perm;            /* permutation for eigenvalue ordering */
128:   PetscInt       nwork;            /* number of work vectors */
129:   Vec            *work;            /* work vectors */
130:   KSP            refineksp;        /* ksp used in refinement */
131:   PetscSubcomm   refinesubc;       /* context for sub-communicators */
132:   void           *data;            /* placeholder for solver-specific stuff */

134:   /* ----------------------- Status variables --------------------------*/
135:   NEPStateType   state;            /* initial -> setup -> solved -> eigenvectors */
136:   PetscInt       nconv;            /* number of converged eigenvalues */
137:   PetscInt       its;              /* number of iterations so far computed */
138:   PetscInt       n,nloc;           /* problem dimensions (global, local) */
139:   PetscReal      *nrma;            /* computed matrix norms */
140:   NEPUserInterface fui;            /* how the user has defined the nonlinear operator */
141:   PetscBool      useds;            /* whether the solver uses the DS object or not */
142:   Mat            resolvent;        /* shell matrix to be used in NEPApplyResolvent */
143:   NEPConvergedReason reason;
144: };

146: /*
147:     Macros to test valid NEP arguments
148: */
149: #if !defined(PETSC_USE_DEBUG)

151: #define NEPCheckProblem(h,arg) do {(void)(h);} while (0)
152: #define NEPCheckCallback(h,arg) do {(void)(h);} while (0)
153: #define NEPCheckSplit(h,arg) do {(void)(h);} while (0)
154: #define NEPCheckDerivatives(h,arg) do {(void)(h);} while (0)
155: #define NEPCheckSolved(h,arg) do {(void)(h);} while (0)

157: #else

159: #define NEPCheckProblem(h,arg) \
160:   do { \
162:   } while (0)

164: #define NEPCheckCallback(h,arg) \
165:   do { \
167:   } while (0)

169: #define NEPCheckSplit(h,arg) \
170:   do { \
172:   } while (0)

174: #define NEPCheckSolved(h,arg) \
175:   do { \
177:   } while (0)

179: #endif

181: /* Check for unsupported features */
182: #define NEPCheckUnsupportedCondition(nep,mask,condition,msg) \
183:   do { \
184:     if (condition) { \
186:       if ((mask) & NEP_FEATURE_REGION) { \
187:         PetscBool      __istrivial; \
188:         RGIsTrivial((nep)->rg,&__istrivial); \
190:       } \
194:     } \
195:   } while (0)
196: #define NEPCheckUnsupported(nep,mask) NEPCheckUnsupportedCondition(nep,mask,PETSC_TRUE,"")

198: /* Check for ignored features */
199: #define NEPCheckIgnoredCondition(nep,mask,condition,msg) \
200:   do { \
201:     if (condition) { \
202:       if (((mask) & NEP_FEATURE_CALLBACK) && (nep)->fui==NEP_USER_INTERFACE_CALLBACK) PetscInfo((nep),"The solver '%s'%s ignores the user interface settings\n",((PetscObject)(nep))->type_name,(msg)); \
203:       if ((mask) & NEP_FEATURE_REGION) { \
204:         PetscBool __istrivial; \
205:         RGIsTrivial((nep)->rg,&__istrivial); \
206:         if (!__istrivial) PetscInfo((nep),"The solver '%s'%s ignores the specified region\n",((PetscObject)(nep))->type_name,(msg)); \
207:       } \
208:       if (((mask) & NEP_FEATURE_CONVERGENCE) && (nep)->converged!=NEPConvergedRelative) PetscInfo((nep),"The solver '%s'%s ignores the convergence test settings\n",((PetscObject)(nep))->type_name,(msg)); \
209:       if (((mask) & NEP_FEATURE_STOPPING) && (nep)->stopping!=NEPStoppingBasic) PetscInfo((nep),"The solver '%s'%s ignores the stopping test settings\n",((PetscObject)(nep))->type_name,(msg)); \
210:       if (((mask) & NEP_FEATURE_TWOSIDED) && (nep)->twosided) PetscInfo((nep),"The solver '%s'%s ignores the two-sided flag\n",((PetscObject)(nep))->type_name,(msg)); \
211:     } \
212:   } while (0)
213: #define NEPCheckIgnored(nep,mask) NEPCheckIgnoredCondition(nep,mask,PETSC_TRUE,"")

215: /*
216:   NEP_KSPSetOperators - Sets the KSP matrices
217: */
218: static inline PetscErrorCode NEP_KSPSetOperators(KSP ksp,Mat A,Mat B)
219: {
220:   const char     *prefix;

222:   KSPSetOperators(ksp,A,B);
223:   MatGetOptionsPrefix(B,&prefix);
224:   if (!prefix) {
225:     /* set Mat prefix to be the same as KSP to enable setting command-line options (e.g. MUMPS)
226:        only applies if the Mat has no user-defined prefix */
227:     KSPGetOptionsPrefix(ksp,&prefix);
228:     MatSetOptionsPrefix(B,prefix);
229:   }
230:   return 0;
231: }

233: SLEPC_INTERN PetscErrorCode NEPSetDimensions_Default(NEP,PetscInt,PetscInt*,PetscInt*);
234: SLEPC_INTERN PetscErrorCode NEPComputeVectors(NEP);
235: SLEPC_INTERN PetscErrorCode NEPReset_Problem(NEP);
236: SLEPC_INTERN PetscErrorCode NEPGetDefaultShift(NEP,PetscScalar*);
237: SLEPC_INTERN PetscErrorCode NEPComputeVectors_Schur(NEP);
238: SLEPC_INTERN PetscErrorCode NEPComputeResidualNorm_Private(NEP,PetscBool,PetscScalar,Vec,Vec*,PetscReal*);
239: SLEPC_INTERN PetscErrorCode NEPNewtonRefinementSimple(NEP,PetscInt*,PetscReal,PetscInt);

241: #endif