Line data Source code
1 : /*
2 : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
3 : SLEPc - Scalable Library for Eigenvalue Problem Computations
4 : Copyright (c) 2002-, Universitat Politecnica de Valencia, Spain
5 :
6 : This file is part of SLEPc.
7 : SLEPc is distributed under a 2-clause BSD license (see LICENSE).
8 : - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
9 : */
10 :
11 : #include "davidson.h"
12 :
13 : #define DVD_CHECKSUM(b) ((b)->max_size_V + (b)->max_size_oldX)
14 :
15 95 : PetscErrorCode dvd_schm_basic_preconf(dvdDashboard *d,dvdBlackboard *b,PetscInt mpd,PetscInt min_size_V,PetscInt bs,PetscInt ini_size_V,PetscInt size_initV,PetscInt plusk,HarmType_t harmMode,KSP ksp,InitType_t init,PetscBool allResiduals,PetscBool orth,PetscBool doubleexp)
16 : {
17 95 : PetscInt check_sum0,check_sum1;
18 :
19 95 : PetscFunctionBegin;
20 95 : PetscCall(PetscMemzero(b,sizeof(dvdBlackboard)));
21 95 : b->state = DVD_STATE_PRECONF;
22 :
23 285 : for (check_sum0=-1,check_sum1=DVD_CHECKSUM(b); check_sum0 != check_sum1; check_sum0 = check_sum1, check_sum1 = DVD_CHECKSUM(b)) {
24 :
25 : /* Setup basic management of V */
26 190 : PetscCall(dvd_managementV_basic(d,b,bs,mpd,min_size_V,plusk,PetscNot(harmMode==DVD_HARM_NONE),allResiduals));
27 :
28 : /* Setup the initial subspace for V */
29 190 : PetscCall(dvd_initV(d,b,ini_size_V,size_initV,(init==DVD_INITV_KRYLOV)?PETSC_TRUE:PETSC_FALSE));
30 :
31 : /* Setup the convergence in order to use the SLEPc convergence test */
32 190 : PetscCall(dvd_testconv_slepc(d,b));
33 :
34 : /* Setup Raileigh-Ritz for selecting the best eigenpairs in V */
35 190 : PetscCall(dvd_calcpairs_qz(d,b,orth,PetscNot(harmMode==DVD_HARM_NONE)));
36 190 : if (harmMode != DVD_HARM_NONE) PetscCall(dvd_harm_conf(d,b,harmMode,PETSC_FALSE,0.0));
37 :
38 : /* Setup the method for improving the eigenvectors */
39 190 : if (doubleexp) PetscCall(dvd_improvex_gd2(d,b,ksp,bs));
40 : else {
41 156 : PetscCall(dvd_improvex_jd(d,b,ksp,bs,PETSC_FALSE));
42 156 : PetscCall(dvd_improvex_jd_proj_uv(d,b));
43 190 : PetscCall(dvd_improvex_jd_lit_const(d,b,0,0.0,0.0));
44 : }
45 : }
46 95 : PetscFunctionReturn(PETSC_SUCCESS);
47 : }
48 :
49 95 : PetscErrorCode dvd_schm_basic_conf(dvdDashboard *d,dvdBlackboard *b,PetscInt mpd,PetscInt min_size_V,PetscInt bs,PetscInt ini_size_V,PetscInt size_initV,PetscInt plusk,HarmType_t harmMode,PetscBool fixedTarget,PetscScalar t,KSP ksp,PetscReal fix,InitType_t init,PetscBool allResiduals,PetscBool orth,PetscBool dynamic,PetscBool doubleexp)
50 : {
51 95 : PetscInt check_sum0,check_sum1,maxits;
52 95 : PetscReal tol;
53 :
54 95 : PetscFunctionBegin;
55 95 : b->state = DVD_STATE_CONF;
56 95 : check_sum0 = DVD_CHECKSUM(b);
57 :
58 : /* Setup basic management of V */
59 95 : PetscCall(dvd_managementV_basic(d,b,bs,mpd,min_size_V,plusk,PetscNot(harmMode==DVD_HARM_NONE),allResiduals));
60 :
61 : /* Setup the initial subspace for V */
62 95 : PetscCall(dvd_initV(d,b,ini_size_V,size_initV,(init==DVD_INITV_KRYLOV)?PETSC_TRUE:PETSC_FALSE));
63 :
64 : /* Setup the convergence in order to use the SLEPc convergence test */
65 95 : PetscCall(dvd_testconv_slepc(d,b));
66 :
67 : /* Setup Raileigh-Ritz for selecting the best eigenpairs in V */
68 95 : PetscCall(dvd_calcpairs_qz(d,b,orth,PetscNot(harmMode==DVD_HARM_NONE)));
69 95 : if (harmMode != DVD_HARM_NONE) PetscCall(dvd_harm_conf(d,b,harmMode,fixedTarget,t));
70 :
71 : /* Setup the method for improving the eigenvectors */
72 95 : if (doubleexp) PetscCall(dvd_improvex_gd2(d,b,ksp,bs));
73 : else {
74 78 : PetscCall(dvd_improvex_jd(d,b,ksp,bs,dynamic));
75 78 : PetscCall(dvd_improvex_jd_proj_uv(d,b));
76 78 : PetscCall(KSPGetTolerances(ksp,&tol,NULL,NULL,&maxits));
77 78 : PetscCall(dvd_improvex_jd_lit_const(d,b,maxits,tol,fix));
78 : }
79 :
80 95 : check_sum1 = DVD_CHECKSUM(b);
81 95 : PetscAssert(check_sum0==check_sum1,PETSC_COMM_SELF,PETSC_ERR_PLIB,"Something awful happened");
82 95 : PetscFunctionReturn(PETSC_SUCCESS);
83 : }
|