LCOV - code coverage report
Current view: top level - sys/classes/ds/impls/hep - dshep.c (source / functions) Hit Total Coverage
Test: SLEPc Lines: 489 519 94.2 %
Date: 2024-04-25 00:48:42 Functions: 18 18 100.0 %
Legend: Lines: hit not hit

          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 <slepc/private/dsimpl.h>
      12             : #include <slepcblaslapack.h>
      13             : 
      14         303 : static PetscErrorCode DSAllocate_HEP(DS ds,PetscInt ld)
      15             : {
      16         303 :   PetscFunctionBegin;
      17         303 :   PetscCall(DSAllocateMat_Private(ds,DS_MAT_A));
      18         303 :   PetscCall(DSAllocateMat_Private(ds,DS_MAT_Q));
      19         303 :   PetscCall(DSAllocateMat_Private(ds,DS_MAT_T));
      20         303 :   PetscCall(PetscFree(ds->perm));
      21         303 :   PetscCall(PetscMalloc1(ld,&ds->perm));
      22         303 :   PetscFunctionReturn(PETSC_SUCCESS);
      23             : }
      24             : 
      25             : /*   0       l           k                 n-1
      26             :     -----------------------------------------
      27             :     |*       .           .                  |
      28             :     |  *     .           .                  |
      29             :     |    *   .           .                  |
      30             :     |      * .           .                  |
      31             :     |. . . . o           o                  |
      32             :     |          o         o                  |
      33             :     |            o       o                  |
      34             :     |              o     o                  |
      35             :     |                o   o                  |
      36             :     |                  o o                  |
      37             :     |. . . . o o o o o o o x                |
      38             :     |                    x x x              |
      39             :     |                      x x x            |
      40             :     |                        x x x          |
      41             :     |                          x x x        |
      42             :     |                            x x x      |
      43             :     |                              x x x    |
      44             :     |                                x x x  |
      45             :     |                                  x x x|
      46             :     |                                    x x|
      47             :     -----------------------------------------
      48             : */
      49             : 
      50          99 : static PetscErrorCode DSSwitchFormat_HEP(DS ds)
      51             : {
      52          99 :   PetscReal      *T;
      53          99 :   PetscScalar    *A;
      54          99 :   PetscInt       i,n=ds->n,k=ds->k,ld=ds->ld;
      55             : 
      56          99 :   PetscFunctionBegin;
      57             :   /* switch from compact (arrow) to dense storage */
      58          99 :   PetscCall(MatDenseGetArrayWrite(ds->omat[DS_MAT_A],&A));
      59          99 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&T));
      60          99 :   PetscCall(PetscArrayzero(A,ld*ld));
      61          99 :   for (i=0;i<k;i++) {
      62           0 :     A[i+i*ld] = T[i];
      63           0 :     A[k+i*ld] = T[i+ld];
      64           0 :     A[i+k*ld] = T[i+ld];
      65             :   }
      66          99 :   A[k+k*ld] = T[k];
      67        1611 :   for (i=k+1;i<n;i++) {
      68        1512 :     A[i+i*ld]     = T[i];
      69        1512 :     A[i-1+i*ld]   = T[i-1+ld];
      70        1512 :     A[i+(i-1)*ld] = T[i-1+ld];
      71             :   }
      72          99 :   if (ds->extrarow) A[n+(n-1)*ld] = T[n-1+ld];
      73          99 :   PetscCall(MatDenseRestoreArrayWrite(ds->omat[DS_MAT_A],&A));
      74          99 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&T));
      75          99 :   PetscFunctionReturn(PETSC_SUCCESS);
      76             : }
      77             : 
      78          22 : static PetscErrorCode DSView_HEP(DS ds,PetscViewer viewer)
      79             : {
      80          22 :   PetscViewerFormat format;
      81          22 :   PetscInt          i,j,r,c,rows;
      82          22 :   PetscReal         *T,value;
      83          22 :   const char        *methodname[] = {
      84             :                      "Implicit QR method (_steqr)",
      85             :                      "Relatively Robust Representations (_stevr)",
      86             :                      "Divide and Conquer method (_stedc)",
      87             :                      "Block Divide and Conquer method (dsbtdc)"
      88             :   };
      89          22 :   const int         nmeth=PETSC_STATIC_ARRAY_LENGTH(methodname);
      90             : 
      91          22 :   PetscFunctionBegin;
      92          22 :   PetscCall(PetscViewerGetFormat(viewer,&format));
      93          22 :   if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
      94          16 :     if (ds->bs>1) PetscCall(PetscViewerASCIIPrintf(viewer,"block size: %" PetscInt_FMT "\n",ds->bs));
      95          16 :     if (ds->method<nmeth) PetscCall(PetscViewerASCIIPrintf(viewer,"solving the problem with: %s\n",methodname[ds->method]));
      96          16 :     PetscFunctionReturn(PETSC_SUCCESS);
      97             :   }
      98           6 :   if (ds->compact) {
      99           6 :     PetscCall(DSGetArrayReal(ds,DS_MAT_T,&T));
     100           6 :     PetscCall(PetscViewerASCIIUseTabs(viewer,PETSC_FALSE));
     101           6 :     rows = ds->extrarow? ds->n+1: ds->n;
     102           6 :     if (format == PETSC_VIEWER_ASCII_MATLAB) {
     103           6 :       PetscCall(PetscViewerASCIIPrintf(viewer,"%% Size = %" PetscInt_FMT " %" PetscInt_FMT "\n",rows,ds->n));
     104           6 :       PetscCall(PetscViewerASCIIPrintf(viewer,"zzz = zeros(%" PetscInt_FMT ",3);\n",3*ds->n));
     105           6 :       PetscCall(PetscViewerASCIIPrintf(viewer,"zzz = [\n"));
     106          60 :       for (i=0;i<ds->n;i++) PetscCall(PetscViewerASCIIPrintf(viewer,"%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e\n",i+1,i+1,(double)T[i]));
     107          57 :       for (i=0;i<rows-1;i++) {
     108          51 :         r = PetscMax(i+2,ds->k+1);
     109          51 :         c = i+1;
     110          51 :         PetscCall(PetscViewerASCIIPrintf(viewer,"%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e\n",r,c,(double)T[i+ds->ld]));
     111          51 :         if (i<ds->n-1 && ds->k<ds->n) { /* do not print vertical arrow when k=n */
     112          48 :           PetscCall(PetscViewerASCIIPrintf(viewer,"%" PetscInt_FMT " %" PetscInt_FMT "  %18.16e\n",c,r,(double)T[i+ds->ld]));
     113             :         }
     114             :       }
     115           6 :       PetscCall(PetscViewerASCIIPrintf(viewer,"];\n%s = spconvert(zzz);\n",DSMatName[DS_MAT_T]));
     116             :     } else {
     117           0 :       for (i=0;i<rows;i++) {
     118           0 :         for (j=0;j<ds->n;j++) {
     119           0 :           if (i==j) value = T[i];
     120           0 :           else if ((i<ds->k && j==ds->k) || (i==ds->k && j<ds->k)) value = T[PetscMin(i,j)+ds->ld];
     121           0 :           else if (i==j+1 && i>ds->k) value = T[i-1+ds->ld];
     122           0 :           else if (i+1==j && j>ds->k) value = T[j-1+ds->ld];
     123             :           else value = 0.0;
     124           0 :           PetscCall(PetscViewerASCIIPrintf(viewer," %18.16e ",(double)value));
     125             :         }
     126           0 :         PetscCall(PetscViewerASCIIPrintf(viewer,"\n"));
     127             :       }
     128             :     }
     129           6 :     PetscCall(PetscViewerASCIIUseTabs(viewer,PETSC_TRUE));
     130           6 :     PetscCall(PetscViewerFlush(viewer));
     131           6 :     PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&T));
     132           0 :   } else PetscCall(DSViewMat(ds,viewer,DS_MAT_A));
     133           6 :   if (ds->state>DS_STATE_INTERMEDIATE) PetscCall(DSViewMat(ds,viewer,DS_MAT_Q));
     134           6 :   PetscFunctionReturn(PETSC_SUCCESS);
     135             : }
     136             : 
     137       21738 : static PetscErrorCode DSVectors_HEP(DS ds,DSMatType mat,PetscInt *j,PetscReal *rnorm)
     138             : {
     139       21738 :   PetscScalar       *Z;
     140       21738 :   const PetscScalar *Q;
     141       21738 :   PetscInt          ld = ds->ld;
     142             : 
     143       21738 :   PetscFunctionBegin;
     144       21738 :   switch (mat) {
     145       21738 :     case DS_MAT_X:
     146             :     case DS_MAT_Y:
     147       21738 :       if (j) {
     148       21688 :         PetscCall(MatDenseGetArray(ds->omat[mat],&Z));
     149       21688 :         if (ds->state>=DS_STATE_CONDENSED) {
     150       21688 :           PetscCall(MatDenseGetArrayRead(ds->omat[DS_MAT_Q],&Q));
     151       21688 :           PetscCall(PetscArraycpy(Z+(*j)*ld,Q+(*j)*ld,ld));
     152       21688 :           if (rnorm) *rnorm = PetscAbsScalar(Q[ds->n-1+(*j)*ld]);
     153       21688 :           PetscCall(MatDenseRestoreArrayRead(ds->omat[DS_MAT_Q],&Q));
     154             :         } else {
     155           0 :           PetscCall(PetscArrayzero(Z+(*j)*ld,ld));
     156           0 :           Z[(*j)+(*j)*ld] = 1.0;
     157           0 :           if (rnorm) *rnorm = 0.0;
     158             :         }
     159       21688 :         PetscCall(MatDenseRestoreArray(ds->omat[mat],&Z));
     160             :       } else {
     161          50 :         if (ds->state>=DS_STATE_CONDENSED) PetscCall(MatCopy(ds->omat[DS_MAT_Q],ds->omat[mat],SAME_NONZERO_PATTERN));
     162           0 :         else PetscCall(DSSetIdentity(ds,mat));
     163             :       }
     164       21738 :       break;
     165           0 :     case DS_MAT_U:
     166             :     case DS_MAT_V:
     167           0 :       SETERRQ(PetscObjectComm((PetscObject)ds),PETSC_ERR_SUP,"Not implemented yet");
     168           0 :     default:
     169           0 :       SETERRQ(PetscObjectComm((PetscObject)ds),PETSC_ERR_ARG_OUTOFRANGE,"Invalid mat parameter");
     170             :   }
     171       21738 :   PetscFunctionReturn(PETSC_SUCCESS);
     172             : }
     173             : 
     174             : /*
     175             :   ARROWTRIDIAG reduces a symmetric arrowhead matrix of the form
     176             : 
     177             :                 [ d 0 0 0 e ]
     178             :                 [ 0 d 0 0 e ]
     179             :             A = [ 0 0 d 0 e ]
     180             :                 [ 0 0 0 d e ]
     181             :                 [ e e e e d ]
     182             : 
     183             :   to tridiagonal form
     184             : 
     185             :                 [ d e 0 0 0 ]
     186             :                 [ e d e 0 0 ]
     187             :    T = Q'*A*Q = [ 0 e d e 0 ],
     188             :                 [ 0 0 e d e ]
     189             :                 [ 0 0 0 e d ]
     190             : 
     191             :   where Q is an orthogonal matrix. Rutishauser's algorithm is used to
     192             :   perform the reduction, which requires O(n**2) flops. The accumulation
     193             :   of the orthogonal factor Q, however, requires O(n**3) flops.
     194             : 
     195             :   Arguments
     196             :   =========
     197             : 
     198             :   N       (input) INTEGER
     199             :           The order of the matrix A.  N >= 0.
     200             : 
     201             :   D       (input/output) DOUBLE PRECISION array, dimension (N)
     202             :           On entry, the diagonal entries of the matrix A to be
     203             :           reduced.
     204             :           On exit, the diagonal entries of the reduced matrix T.
     205             : 
     206             :   E       (input/output) DOUBLE PRECISION array, dimension (N-1)
     207             :           On entry, the off-diagonal entries of the matrix A to be
     208             :           reduced.
     209             :           On exit, the subdiagonal entries of the reduced matrix T.
     210             : 
     211             :   Q       (input/output) DOUBLE PRECISION array, dimension (LDQ, N)
     212             :           On exit, the orthogonal matrix Q.
     213             : 
     214             :   LDQ     (input) INTEGER
     215             :           The leading dimension of the array Q.
     216             : 
     217             :   Note
     218             :   ====
     219             :   Based on Fortran code contributed by Daniel Kressner
     220             : */
     221        2254 : PetscErrorCode DSArrowTridiag(PetscBLASInt n,PetscReal *d,PetscReal *e,PetscScalar *Q,PetscBLASInt ld)
     222             : {
     223        2254 :   PetscBLASInt i,j,j2,one=1;
     224        2254 :   PetscReal    c,s,p,off,temp;
     225             : 
     226        2254 :   PetscFunctionBegin;
     227        2254 :   if (n<=2) PetscFunctionReturn(PETSC_SUCCESS);
     228             : 
     229       21450 :   for (j=0;j<n-2;j++) {
     230             : 
     231             :     /* Eliminate entry e(j) by a rotation in the planes (j,j+1) */
     232       19211 :     temp = e[j+1];
     233       19211 :     PetscCallBLAS("LAPACKlartg",LAPACKREALlartg_(&temp,&e[j],&c,&s,&e[j+1]));
     234       19211 :     s = -s;
     235             : 
     236             :     /* Apply rotation to diagonal elements */
     237       19211 :     temp   = d[j+1];
     238       19211 :     e[j]   = c*s*(temp-d[j]);
     239       19211 :     d[j+1] = s*s*d[j] + c*c*temp;
     240       19211 :     d[j]   = c*c*d[j] + s*s*temp;
     241             : 
     242             :     /* Apply rotation to Q */
     243       19211 :     j2 = j+2;
     244       19211 :     PetscCallBLAS("BLASrot",BLASMIXEDrot_(&j2,Q+j*ld,&one,Q+(j+1)*ld,&one,&c,&s));
     245             : 
     246             :     /* Chase newly introduced off-diagonal entry to the top left corner */
     247      129485 :     for (i=j-1;i>=0;i--) {
     248      110274 :       off  = -s*e[i];
     249      110274 :       e[i] = c*e[i];
     250      110274 :       temp = e[i+1];
     251      110274 :       PetscCallBLAS("LAPACKlartg",LAPACKREALlartg_(&temp,&off,&c,&s,&e[i+1]));
     252      110274 :       s = -s;
     253      110274 :       temp = (d[i]-d[i+1])*s - 2.0*c*e[i];
     254      110274 :       p = s*temp;
     255      110274 :       d[i+1] += p;
     256      110274 :       d[i] -= p;
     257      110274 :       e[i] = -e[i] - c*temp;
     258      110274 :       j2 = j+2;
     259      110274 :       PetscCallBLAS("BLASrot",BLASMIXEDrot_(&j2,Q+i*ld,&one,Q+(i+1)*ld,&one,&c,&s));
     260             :     }
     261             :   }
     262        2239 :   PetscFunctionReturn(PETSC_SUCCESS);
     263             : }
     264             : 
     265             : /*
     266             :    Reduce to tridiagonal form by means of DSArrowTridiag.
     267             : */
     268        9567 : static PetscErrorCode DSIntermediate_HEP(DS ds)
     269             : {
     270        9567 :   PetscInt          i;
     271        9567 :   PetscBLASInt      n1 = 0,n2,lwork,info,l = 0,n = 0,ld,off;
     272        9567 :   PetscScalar       *Q,*work,*tau;
     273        9567 :   const PetscScalar *A;
     274        9567 :   PetscReal         *d,*e;
     275        9567 :   Mat               At,Qt;  /* trailing submatrices */
     276             : 
     277        9567 :   PetscFunctionBegin;
     278        9567 :   PetscCall(PetscBLASIntCast(ds->n,&n));
     279        9567 :   PetscCall(PetscBLASIntCast(ds->l,&l));
     280        9567 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     281        9567 :   PetscCall(PetscBLASIntCast(PetscMax(0,ds->k-l+1),&n1)); /* size of leading block, excl. locked */
     282        9567 :   n2 = n-l;     /* n2 = n1 + size of trailing block */
     283        9567 :   off = l+l*ld;
     284        9567 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&d));
     285        9567 :   e = d+ld;
     286        9567 :   PetscCall(DSSetIdentity(ds,DS_MAT_Q));
     287        9567 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_Q],&Q));
     288             : 
     289        9567 :   if (ds->compact) {
     290             : 
     291        3020 :     if (ds->state<DS_STATE_INTERMEDIATE) PetscCall(DSArrowTridiag(n1,d+l,e+l,Q+off,ld));
     292             : 
     293             :   } else {
     294             : 
     295        6547 :     PetscCall(MatDenseGetArrayRead(ds->omat[DS_MAT_A],&A));
     296        6678 :     for (i=0;i<l;i++) { d[i] = PetscRealPart(A[i+i*ld]); e[i] = 0.0; }
     297             : 
     298        6547 :     if (ds->state<DS_STATE_INTERMEDIATE) {
     299        6547 :       PetscCall(MatDenseGetSubMatrix(ds->omat[DS_MAT_A],ds->l,ds->n,ds->l,ds->n,&At));
     300        6547 :       PetscCall(MatDenseGetSubMatrix(ds->omat[DS_MAT_Q],ds->l,ds->n,ds->l,ds->n,&Qt));
     301        6547 :       PetscCall(MatCopy(At,Qt,SAME_NONZERO_PATTERN));
     302        6547 :       PetscCall(MatDenseRestoreSubMatrix(ds->omat[DS_MAT_A],&At));
     303        6547 :       PetscCall(MatDenseRestoreSubMatrix(ds->omat[DS_MAT_Q],&Qt));
     304        6547 :       PetscCall(DSAllocateWork_Private(ds,ld+ld*ld,0,0));
     305        6547 :       tau  = ds->work;
     306        6547 :       work = ds->work+ld;
     307        6547 :       lwork = ld*ld;
     308        6547 :       PetscCallBLAS("LAPACKsytrd",LAPACKsytrd_("L",&n2,Q+off,&ld,d+l,e+l,tau,work,&lwork,&info));
     309        6547 :       SlepcCheckLapackInfo("sytrd",info);
     310        6547 :       PetscCallBLAS("LAPACKorgtr",LAPACKorgtr_("L",&n2,Q+off,&ld,tau,work,&lwork,&info));
     311        6547 :       SlepcCheckLapackInfo("orgtr",info);
     312             :     } else {
     313             :       /* copy tridiagonal to d,e */
     314           0 :       for (i=l;i<n;i++)   d[i] = PetscRealPart(A[i+i*ld]);
     315           0 :       for (i=l;i<n-1;i++) e[i] = PetscRealPart(A[(i+1)+i*ld]);
     316             :     }
     317        6547 :     PetscCall(MatDenseRestoreArrayRead(ds->omat[DS_MAT_A],&A));
     318             :   }
     319        9567 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_Q],&Q));
     320        9567 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&d));
     321        9567 :   PetscFunctionReturn(PETSC_SUCCESS);
     322             : }
     323             : 
     324       15770 : static PetscErrorCode DSSort_HEP(DS ds,PetscScalar *wr,PetscScalar *wi,PetscScalar *rr,PetscScalar *ri,PetscInt *k)
     325             : {
     326       15770 :   PetscInt       n,l,i,*perm,ld=ds->ld;
     327       15770 :   PetscScalar    *A;
     328       15770 :   PetscReal      *d;
     329             : 
     330       15770 :   PetscFunctionBegin;
     331       15770 :   if (!ds->sc) PetscFunctionReturn(PETSC_SUCCESS);
     332       15770 :   n = ds->n;
     333       15770 :   l = ds->l;
     334       15770 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&d));
     335       15770 :   perm = ds->perm;
     336       15770 :   if (!rr) PetscCall(DSSortEigenvaluesReal_Private(ds,d,perm));
     337       12562 :   else PetscCall(DSSortEigenvalues_Private(ds,rr,ri,perm,PETSC_FALSE));
     338      212418 :   for (i=l;i<n;i++) wr[i] = d[perm[i]];
     339       15770 :   PetscCall(DSPermuteColumns_Private(ds,l,n,n,DS_MAT_Q,perm));
     340      212418 :   for (i=l;i<n;i++) d[i] = PetscRealPart(wr[i]);
     341       15770 :   if (!ds->compact) {
     342       12750 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     343      156842 :     for (i=l;i<n;i++) A[i+i*ld] = wr[i];
     344       12750 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     345             :   }
     346       15770 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&d));
     347       15770 :   PetscFunctionReturn(PETSC_SUCCESS);
     348             : }
     349             : 
     350        2038 : static PetscErrorCode DSUpdateExtraRow_HEP(DS ds)
     351             : {
     352        2038 :   PetscInt          i;
     353        2038 :   PetscBLASInt      n,ld,incx=1;
     354        2038 :   PetscScalar       *A,*x,*y,one=1.0,zero=0.0;
     355        2038 :   PetscReal         *T,*e,beta;
     356        2038 :   const PetscScalar *Q;
     357             : 
     358        2038 :   PetscFunctionBegin;
     359        2038 :   PetscCall(PetscBLASIntCast(ds->n,&n));
     360        2038 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     361        2038 :   PetscCall(MatDenseGetArrayRead(ds->omat[DS_MAT_Q],&Q));
     362        2038 :   if (ds->compact) {
     363        2035 :     PetscCall(DSGetArrayReal(ds,DS_MAT_T,&T));
     364        2035 :     e = T+ld;
     365        2035 :     beta = e[n-1];   /* in compact, we assume all entries are zero except the last one */
     366       40360 :     for (i=0;i<n;i++) e[i] = PetscRealPart(beta*Q[n-1+i*ld]);
     367        2035 :     PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&T));
     368        2035 :     ds->k = n;
     369             :   } else {
     370           3 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     371           3 :     PetscCall(DSAllocateWork_Private(ds,2*ld,0,0));
     372           3 :     x = ds->work;
     373           3 :     y = ds->work+ld;
     374          39 :     for (i=0;i<n;i++) x[i] = PetscConj(A[n+i*ld]);
     375           3 :     PetscCallBLAS("BLASgemv",BLASgemv_("C",&n,&n,&one,Q,&ld,x,&incx,&zero,y,&incx));
     376          39 :     for (i=0;i<n;i++) A[n+i*ld] = PetscConj(y[i]);
     377           3 :     ds->k = n;
     378           3 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     379             :   }
     380        2038 :   PetscCall(MatDenseRestoreArrayRead(ds->omat[DS_MAT_Q],&Q));
     381        2038 :   PetscFunctionReturn(PETSC_SUCCESS);
     382             : }
     383             : 
     384        9559 : static PetscErrorCode DSSolve_HEP_QR(DS ds,PetscScalar *wr,PetscScalar *wi)
     385             : {
     386        9559 :   PetscInt       i;
     387        9559 :   PetscBLASInt   n1,info,l = 0,n = 0,ld,off;
     388        9559 :   PetscScalar    *Q,*A;
     389        9559 :   PetscReal      *d,*e;
     390             : 
     391        9559 :   PetscFunctionBegin;
     392        9559 :   PetscCheck(ds->bs==1,PetscObjectComm((PetscObject)ds),PETSC_ERR_SUP,"This method is not prepared for bs>1");
     393        9559 :   PetscCall(PetscBLASIntCast(ds->n,&n));
     394        9559 :   PetscCall(PetscBLASIntCast(ds->l,&l));
     395        9559 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     396        9559 :   n1 = n-l;     /* n1 = size of leading block, excl. locked + size of trailing block */
     397        9559 :   off = l+l*ld;
     398        9559 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&d));
     399        9559 :   e = d+ld;
     400             : 
     401             :   /* Reduce to tridiagonal form */
     402        9559 :   PetscCall(DSIntermediate_HEP(ds));
     403             : 
     404             :   /* Solve the tridiagonal eigenproblem */
     405       13997 :   for (i=0;i<l;i++) wr[i] = d[i];
     406             : 
     407        9559 :   PetscCall(DSAllocateWork_Private(ds,0,2*ld,0));
     408        9559 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_Q],&Q));
     409        9559 :   PetscCallBLAS("LAPACKsteqr",LAPACKsteqr_("V",&n1,d+l,e+l,Q+off,&ld,ds->rwork,&info));
     410        9559 :   SlepcCheckLapackInfo("steqr",info);
     411        9559 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_Q],&Q));
     412      137289 :   for (i=l;i<n;i++) wr[i] = d[i];
     413             : 
     414             :   /* Create diagonal matrix as a result */
     415        9559 :   if (ds->compact) PetscCall(PetscArrayzero(e,n-1));
     416             :   else {
     417        6543 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     418       81745 :     for (i=l;i<n;i++) PetscCall(PetscArrayzero(A+l+i*ld,n-l));
     419       81745 :     for (i=l;i<n;i++) A[i+i*ld] = d[i];
     420        6543 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     421             :   }
     422        9559 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&d));
     423             : 
     424             :   /* Set zero wi */
     425      120818 :   if (wi) for (i=l;i<n;i++) wi[i] = 0.0;
     426        9559 :   PetscFunctionReturn(PETSC_SUCCESS);
     427             : }
     428             : 
     429           4 : static PetscErrorCode DSSolve_HEP_MRRR(DS ds,PetscScalar *wr,PetscScalar *wi)
     430             : {
     431           4 :   Mat            At,Qt;  /* trailing submatrices */
     432           4 :   PetscInt       i;
     433           4 :   PetscBLASInt   n1 = 0,n2 = 0,n3,lrwork,liwork,info,l = 0,n = 0,m = 0,ld,off,il,iu,*isuppz;
     434           4 :   PetscScalar    *A,*Q,*W=NULL,one=1.0,zero=0.0;
     435           4 :   PetscReal      *d,*e,abstol=0.0,vl,vu;
     436             : #if defined(PETSC_USE_COMPLEX)
     437             :   PetscInt       j;
     438             :   PetscReal      *Qr,*ritz;
     439             : #endif
     440             : 
     441           4 :   PetscFunctionBegin;
     442           4 :   PetscCheck(ds->bs==1,PetscObjectComm((PetscObject)ds),PETSC_ERR_SUP,"This method is not prepared for bs>1");
     443           4 :   PetscCall(PetscBLASIntCast(ds->n,&n));
     444           4 :   PetscCall(PetscBLASIntCast(ds->l,&l));
     445           4 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     446           4 :   PetscCall(PetscBLASIntCast(ds->k-l+1,&n1)); /* size of leading block, excl. locked */
     447           4 :   PetscCall(PetscBLASIntCast(n-ds->k-1,&n2)); /* size of trailing block */
     448           4 :   n3 = n1+n2;
     449           4 :   off = l+l*ld;
     450           4 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&d));
     451           4 :   e = d+ld;
     452             : 
     453             :   /* Reduce to tridiagonal form */
     454           4 :   PetscCall(DSIntermediate_HEP(ds));
     455             : 
     456             :   /* Solve the tridiagonal eigenproblem */
     457           8 :   for (i=0;i<l;i++) wr[i] = d[i];
     458             : 
     459           4 :   if (ds->state<DS_STATE_INTERMEDIATE) {  /* Q contains useful info */
     460           4 :     PetscCall(DSAllocateMat_Private(ds,DS_MAT_W));
     461           4 :     PetscCall(MatCopy(ds->omat[DS_MAT_Q],ds->omat[DS_MAT_W],SAME_NONZERO_PATTERN));
     462             :   }
     463           4 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_Q],&Q));
     464           4 :   lrwork = 20*ld;
     465           4 :   liwork = 10*ld;
     466             : #if defined(PETSC_USE_COMPLEX)
     467             :   PetscCall(DSAllocateWork_Private(ds,0,lrwork+ld+ld*ld,liwork+2*ld));
     468             : #else
     469           4 :   PetscCall(DSAllocateWork_Private(ds,0,lrwork+ld,liwork+2*ld));
     470             : #endif
     471           4 :   isuppz = ds->iwork+liwork;
     472             : #if defined(PETSC_USE_COMPLEX)
     473             :   ritz = ds->rwork+lrwork;
     474             :   Qr   = ds->rwork+lrwork+ld;
     475             :   PetscCallBLAS("LAPACKstevr",LAPACKstevr_("V","A",&n3,d+l,e+l,&vl,&vu,&il,&iu,&abstol,&m,ritz+l,Qr+off,&ld,isuppz,ds->rwork,&lrwork,ds->iwork,&liwork,&info));
     476             :   for (i=l;i<n;i++) wr[i] = ritz[i];
     477             : #else
     478           4 :   PetscCallBLAS("LAPACKstevr",LAPACKstevr_("V","A",&n3,d+l,e+l,&vl,&vu,&il,&iu,&abstol,&m,wr+l,Q+off,&ld,isuppz,ds->rwork,&lrwork,ds->iwork,&liwork,&info));
     479             : #endif
     480           4 :   SlepcCheckLapackInfo("stevr",info);
     481             : #if defined(PETSC_USE_COMPLEX)
     482             :   for (i=l;i<n;i++)
     483             :     for (j=l;j<n;j++)
     484             :       Q[i+j*ld] = Qr[i+j*ld];
     485             : #endif
     486           4 :   if (ds->state<DS_STATE_INTERMEDIATE) {  /* accumulate previous Q */
     487           4 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     488           4 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_W],&W));
     489           4 :     PetscCallBLAS("BLASgemm",BLASgemm_("N","N",&n3,&n3,&n3,&one,W+off,&ld,Q+off,&ld,&zero,A+off,&ld));
     490           4 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     491           4 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_W],&W));
     492           4 :     PetscCall(MatDenseGetSubMatrix(ds->omat[DS_MAT_A],ds->l,ds->n,ds->l,ds->n,&At));
     493           4 :     PetscCall(MatDenseGetSubMatrix(ds->omat[DS_MAT_Q],ds->l,ds->n,ds->l,ds->n,&Qt));
     494           4 :     PetscCall(MatCopy(At,Qt,SAME_NONZERO_PATTERN));
     495           4 :     PetscCall(MatDenseRestoreSubMatrix(ds->omat[DS_MAT_A],&At));
     496           4 :     PetscCall(MatDenseRestoreSubMatrix(ds->omat[DS_MAT_Q],&Qt));
     497             :   }
     498           4 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_Q],&Q));
     499          42 :   for (i=l;i<n;i++) d[i] = PetscRealPart(wr[i]);
     500             : 
     501             :   /* Create diagonal matrix as a result */
     502           4 :   if (ds->compact) PetscCall(PetscArrayzero(e,n-1));
     503             :   else {
     504           2 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     505          26 :     for (i=l;i<n;i++) PetscCall(PetscArrayzero(A+l+i*ld,n-l));
     506          26 :     for (i=l;i<n;i++) A[i+i*ld] = d[i];
     507           2 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     508             :   }
     509           4 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&d));
     510             : 
     511             :   /* Set zero wi */
     512           4 :   if (wi) for (i=l;i<n;i++) wi[i] = 0.0;
     513           4 :   PetscFunctionReturn(PETSC_SUCCESS);
     514             : }
     515             : 
     516           4 : static PetscErrorCode DSSolve_HEP_DC(DS ds,PetscScalar *wr,PetscScalar *wi)
     517             : {
     518           4 :   PetscInt       i;
     519           4 :   PetscBLASInt   n1,info,l = 0,ld,off,lrwork,liwork;
     520           4 :   PetscScalar    *Q,*A;
     521           4 :   PetscReal      *d,*e;
     522             : #if defined(PETSC_USE_COMPLEX)
     523             :   PetscBLASInt   lwork;
     524             :   PetscInt       j;
     525             : #endif
     526             : 
     527           4 :   PetscFunctionBegin;
     528           4 :   PetscCheck(ds->bs==1,PetscObjectComm((PetscObject)ds),PETSC_ERR_SUP,"This method is not prepared for bs>1");
     529           4 :   PetscCall(PetscBLASIntCast(ds->l,&l));
     530           4 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     531           4 :   PetscCall(PetscBLASIntCast(ds->n-ds->l,&n1));
     532           4 :   off = l+l*ld;
     533           4 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&d));
     534           4 :   e = d+ld;
     535             : 
     536             :   /* Reduce to tridiagonal form */
     537           4 :   PetscCall(DSIntermediate_HEP(ds));
     538             : 
     539             :   /* Solve the tridiagonal eigenproblem */
     540           8 :   for (i=0;i<l;i++) wr[i] = d[i];
     541             : 
     542           4 :   lrwork = 5*n1*n1+3*n1+1;
     543           4 :   liwork = 5*n1*n1+6*n1+6;
     544           4 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_Q],&Q));
     545             : #if !defined(PETSC_USE_COMPLEX)
     546           4 :   PetscCall(DSAllocateWork_Private(ds,0,lrwork,liwork));
     547           4 :   PetscCallBLAS("LAPACKstedc",LAPACKstedc_("V",&n1,d+l,e+l,Q+off,&ld,ds->rwork,&lrwork,ds->iwork,&liwork,&info));
     548             : #else
     549             :   lwork = ld*ld;
     550             :   PetscCall(DSAllocateWork_Private(ds,lwork,lrwork,liwork));
     551             :   PetscCallBLAS("LAPACKstedc",LAPACKstedc_("V",&n1,d+l,e+l,Q+off,&ld,ds->work,&lwork,ds->rwork,&lrwork,ds->iwork,&liwork,&info));
     552             :   /* Fixing Lapack bug*/
     553             :   for (j=ds->l;j<ds->n;j++)
     554             :     for (i=0;i<ds->l;i++) Q[i+j*ld] = 0.0;
     555             : #endif
     556           4 :   SlepcCheckLapackInfo("stedc",info);
     557           4 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_Q],&Q));
     558          42 :   for (i=l;i<ds->n;i++) wr[i] = d[i];
     559             : 
     560             :   /* Create diagonal matrix as a result */
     561           4 :   if (ds->compact) PetscCall(PetscArrayzero(e,ds->n-1));
     562             :   else {
     563           2 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     564          26 :     for (i=l;i<ds->n;i++) PetscCall(PetscArrayzero(A+l+i*ld,ds->n-l));
     565          26 :     for (i=l;i<ds->n;i++) A[i+i*ld] = d[i];
     566           2 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     567             :   }
     568           4 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&d));
     569             : 
     570             :   /* Set zero wi */
     571           4 :   if (wi) for (i=l;i<ds->n;i++) wi[i] = 0.0;
     572           4 :   PetscFunctionReturn(PETSC_SUCCESS);
     573             : }
     574             : 
     575             : #if !defined(PETSC_USE_COMPLEX)
     576           2 : static PetscErrorCode DSSolve_HEP_BDC(DS ds,PetscScalar *wr,PetscScalar *wi)
     577             : {
     578           2 :   PetscBLASInt   i,j,k,m,n = 0,info,nblks,bs = 0,ld = 0,lde,lrwork,liwork,*ksizes,*iwork,mingapi;
     579           2 :   PetscScalar    *Q,*A;
     580           2 :   PetscReal      *D,*E,*d,*e,tol=PETSC_MACHINE_EPSILON/2,tau1=1e-16,tau2=1e-18,*rwork,mingap;
     581             : 
     582           2 :   PetscFunctionBegin;
     583           2 :   PetscCheck(ds->l==0,PetscObjectComm((PetscObject)ds),PETSC_ERR_SUP,"This method is not prepared for l>1");
     584           2 :   PetscCheck(!ds->compact,PetscObjectComm((PetscObject)ds),PETSC_ERR_SUP,"Not implemented for compact storage");
     585           2 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     586           2 :   PetscCall(PetscBLASIntCast(ds->bs,&bs));
     587           2 :   PetscCall(PetscBLASIntCast(ds->n,&n));
     588           2 :   nblks = n/bs;
     589           2 :   PetscCall(DSGetArrayReal(ds,DS_MAT_T,&d));
     590           2 :   e = d+ld;
     591           2 :   lrwork = 4*n*n+60*n+1;
     592           2 :   liwork = 5*n+5*nblks-1;
     593           2 :   lde = 2*bs+1;
     594           2 :   PetscCall(DSAllocateWork_Private(ds,bs*n+lde*lde*(nblks-1),lrwork,nblks+liwork));
     595           2 :   D      = ds->work;
     596           2 :   E      = ds->work+bs*n;
     597           2 :   rwork  = ds->rwork;
     598           2 :   ksizes = ds->iwork;
     599           2 :   iwork  = ds->iwork+nblks;
     600           2 :   PetscCall(PetscArrayzero(iwork,liwork));
     601             : 
     602             :   /* Copy matrix to block tridiagonal format */
     603           2 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     604             :   j=0;
     605          11 :   for (i=0;i<nblks;i++) {
     606           9 :     ksizes[i]=bs;
     607          36 :     for (k=0;k<bs;k++)
     608         108 :       for (m=0;m<bs;m++)
     609          81 :         D[k+m*bs+i*bs*bs] = PetscRealPart(A[j+k+(j+m)*n]);
     610           9 :     j = j + bs;
     611             :   }
     612             :   j=0;
     613           9 :   for (i=0;i<nblks-1;i++) {
     614          28 :     for (k=0;k<bs;k++)
     615          84 :       for (m=0;m<bs;m++)
     616          63 :         E[k+m*lde+i*lde*lde] = PetscRealPart(A[j+bs+k+(j+m)*n]);
     617           7 :     j = j + bs;
     618             :   }
     619           2 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     620             : 
     621             :   /* Solve the block tridiagonal eigenproblem */
     622           2 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_Q],&Q));
     623           2 :   PetscCall(BDC_dsbtdc_("D","A",n,nblks,ksizes,D,bs,bs,E,lde,lde,tol,tau1,tau2,d,Q,n,rwork,lrwork,iwork,liwork,&mingap,&mingapi,&info,1,1));
     624           2 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_Q],&Q));
     625          29 :   for (i=0;i<ds->n;i++) wr[i] = d[i];
     626             : 
     627             :   /* Create diagonal matrix as a result */
     628           2 :   if (ds->compact) PetscCall(PetscArrayzero(e,ds->n-1));
     629             :   else {
     630           2 :     PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     631          29 :     for (i=0;i<ds->n;i++) PetscCall(PetscArrayzero(A+i*ld,ds->n));
     632          29 :     for (i=0;i<ds->n;i++) A[i+i*ld] = wr[i];
     633           2 :     PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     634             :   }
     635           2 :   PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&d));
     636             : 
     637             :   /* Set zero wi */
     638           2 :   if (wi) for (i=0;i<ds->n;i++) wi[i] = 0.0;
     639           2 :   PetscFunctionReturn(PETSC_SUCCESS);
     640             : }
     641             : #endif
     642             : 
     643        2044 : static PetscErrorCode DSTruncate_HEP(DS ds,PetscInt n,PetscBool trim)
     644             : {
     645        2044 :   PetscInt    i,ld=ds->ld,l=ds->l;
     646        2044 :   PetscScalar *A;
     647             : 
     648        2044 :   PetscFunctionBegin;
     649        2044 :   if (!ds->compact && ds->extrarow) PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     650        2044 :   if (trim) {
     651         208 :     if (!ds->compact && ds->extrarow) {   /* clean extra row */
     652           0 :       for (i=l;i<ds->n;i++) A[ds->n+i*ld] = 0.0;
     653             :     }
     654         208 :     ds->l = 0;
     655         208 :     ds->k = 0;
     656         208 :     ds->n = n;
     657         208 :     ds->t = ds->n;   /* truncated length equal to the new dimension */
     658             :   } else {
     659        1836 :     if (!ds->compact && ds->extrarow && ds->k==ds->n) {
     660             :       /* copy entries of extra row to the new position, then clean last row */
     661           0 :       for (i=l;i<n;i++) A[n+i*ld] = A[ds->n+i*ld];
     662           0 :       for (i=l;i<ds->n;i++) A[ds->n+i*ld] = 0.0;
     663             :     }
     664        1836 :     ds->k = (ds->extrarow)? n: 0;
     665        1836 :     ds->t = ds->n;   /* truncated length equal to previous dimension */
     666        1836 :     ds->n = n;
     667             :   }
     668        2044 :   if (!ds->compact && ds->extrarow) PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     669        2044 :   PetscFunctionReturn(PETSC_SUCCESS);
     670             : }
     671             : 
     672             : #if !defined(PETSC_HAVE_MPIUNI)
     673           2 : static PetscErrorCode DSSynchronize_HEP(DS ds,PetscScalar eigr[],PetscScalar eigi[])
     674             : {
     675           2 :   PetscInt       ld=ds->ld,l=ds->l,k=0,kr=0;
     676           2 :   PetscMPIInt    n,rank,off=0,size,ldn,ld3;
     677           2 :   PetscScalar    *A,*Q;
     678           2 :   PetscReal      *T;
     679             : 
     680           2 :   PetscFunctionBegin;
     681           2 :   if (ds->compact) kr = 3*ld;
     682           0 :   else k = (ds->n-l)*ld;
     683           2 :   if (ds->state>DS_STATE_RAW) k += (ds->n-l)*ld;
     684           2 :   if (eigr) k += (ds->n-l);
     685           2 :   PetscCall(DSAllocateWork_Private(ds,k+kr,0,0));
     686           2 :   PetscCall(PetscMPIIntCast(k*sizeof(PetscScalar)+kr*sizeof(PetscReal),&size));
     687           2 :   PetscCall(PetscMPIIntCast(ds->n-l,&n));
     688           2 :   PetscCall(PetscMPIIntCast(ld*(ds->n-l),&ldn));
     689           2 :   PetscCall(PetscMPIIntCast(ld*3,&ld3));
     690           2 :   if (ds->compact) PetscCall(DSGetArrayReal(ds,DS_MAT_T,&T));
     691           0 :   else PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     692           2 :   if (ds->state>DS_STATE_RAW) PetscCall(MatDenseGetArray(ds->omat[DS_MAT_Q],&Q));
     693           2 :   PetscCallMPI(MPI_Comm_rank(PetscObjectComm((PetscObject)ds),&rank));
     694           2 :   if (!rank) {
     695           1 :     if (ds->compact) PetscCallMPI(MPI_Pack(T,ld3,MPIU_REAL,ds->work,size,&off,PetscObjectComm((PetscObject)ds)));
     696           0 :     else PetscCallMPI(MPI_Pack(A+l*ld,ldn,MPIU_SCALAR,ds->work,size,&off,PetscObjectComm((PetscObject)ds)));
     697           1 :     if (ds->state>DS_STATE_RAW) PetscCallMPI(MPI_Pack(Q+l*ld,ldn,MPIU_SCALAR,ds->work,size,&off,PetscObjectComm((PetscObject)ds)));
     698           1 :     if (eigr) PetscCallMPI(MPI_Pack(eigr+l,n,MPIU_SCALAR,ds->work,size,&off,PetscObjectComm((PetscObject)ds)));
     699             :   }
     700           4 :   PetscCallMPI(MPI_Bcast(ds->work,size,MPI_BYTE,0,PetscObjectComm((PetscObject)ds)));
     701           2 :   if (rank) {
     702           1 :     if (ds->compact) PetscCallMPI(MPI_Unpack(ds->work,size,&off,T,ld3,MPIU_REAL,PetscObjectComm((PetscObject)ds)));
     703           0 :     else PetscCallMPI(MPI_Unpack(ds->work,size,&off,A+l*ld,ldn,MPIU_SCALAR,PetscObjectComm((PetscObject)ds)));
     704           1 :     if (ds->state>DS_STATE_RAW) PetscCallMPI(MPI_Unpack(ds->work,size,&off,Q+l*ld,ldn,MPIU_SCALAR,PetscObjectComm((PetscObject)ds)));
     705           1 :     if (eigr) PetscCallMPI(MPI_Unpack(ds->work,size,&off,eigr+l,n,MPIU_SCALAR,PetscObjectComm((PetscObject)ds)));
     706             :   }
     707           2 :   if (ds->compact) PetscCall(DSRestoreArrayReal(ds,DS_MAT_T,&T));
     708           0 :   else PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     709           2 :   if (ds->state>DS_STATE_RAW) PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_Q],&Q));
     710           2 :   PetscFunctionReturn(PETSC_SUCCESS);
     711             : }
     712             : #endif
     713             : 
     714          99 : static PetscErrorCode DSCond_HEP(DS ds,PetscReal *cond)
     715             : {
     716          99 :   PetscScalar    *work;
     717          99 :   PetscReal      *rwork;
     718          99 :   PetscBLASInt   *ipiv;
     719          99 :   PetscBLASInt   lwork,info,n,ld;
     720          99 :   PetscReal      hn,hin;
     721          99 :   PetscScalar    *A;
     722             : 
     723          99 :   PetscFunctionBegin;
     724          99 :   PetscCall(PetscBLASIntCast(ds->n,&n));
     725          99 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     726          99 :   lwork = 8*ld;
     727          99 :   PetscCall(DSAllocateWork_Private(ds,lwork,ld,ld));
     728          99 :   work  = ds->work;
     729          99 :   rwork = ds->rwork;
     730          99 :   ipiv  = ds->iwork;
     731          99 :   PetscCall(DSSwitchFormat_HEP(ds));
     732             : 
     733             :   /* use workspace matrix W to avoid overwriting A */
     734          99 :   PetscCall(DSAllocateMat_Private(ds,DS_MAT_W));
     735          99 :   PetscCall(MatCopy(ds->omat[DS_MAT_A],ds->omat[DS_MAT_W],SAME_NONZERO_PATTERN));
     736          99 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_W],&A));
     737             : 
     738             :   /* norm of A */
     739          99 :   hn = LAPACKlange_("I",&n,&n,A,&ld,rwork);
     740             : 
     741             :   /* norm of inv(A) */
     742          99 :   PetscCallBLAS("LAPACKgetrf",LAPACKgetrf_(&n,&n,A,&ld,ipiv,&info));
     743          99 :   SlepcCheckLapackInfo("getrf",info);
     744          99 :   PetscCallBLAS("LAPACKgetri",LAPACKgetri_(&n,A,&ld,ipiv,work,&lwork,&info));
     745          99 :   SlepcCheckLapackInfo("getri",info);
     746          99 :   hin = LAPACKlange_("I",&n,&n,A,&ld,rwork);
     747          99 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_W],&A));
     748             : 
     749          99 :   *cond = hn*hin;
     750          99 :   PetscFunctionReturn(PETSC_SUCCESS);
     751             : }
     752             : 
     753          12 : static PetscErrorCode DSTranslateRKS_HEP(DS ds,PetscScalar alpha)
     754             : {
     755          12 :   PetscInt       i,j,k=ds->k;
     756          12 :   PetscScalar    *Q,*A,*R,*tau,*work;
     757          12 :   PetscBLASInt   ld,n1,n0,lwork,info;
     758             : 
     759          12 :   PetscFunctionBegin;
     760          12 :   PetscCall(PetscBLASIntCast(ds->ld,&ld));
     761          12 :   PetscCall(DSAllocateWork_Private(ds,ld*ld,0,0));
     762          12 :   tau = ds->work;
     763          12 :   work = ds->work+ld;
     764          12 :   PetscCall(PetscBLASIntCast(ld*(ld-1),&lwork));
     765          12 :   PetscCall(DSAllocateMat_Private(ds,DS_MAT_W));
     766          12 :   PetscCall(MatDenseGetArray(ds->omat[DS_MAT_A],&A));
     767          12 :   PetscCall(MatDenseGetArrayWrite(ds->omat[DS_MAT_Q],&Q));
     768          12 :   PetscCall(MatDenseGetArrayWrite(ds->omat[DS_MAT_W],&R));
     769             : 
     770             :   /* copy I+alpha*A */
     771          12 :   PetscCall(PetscArrayzero(Q,ld*ld));
     772          12 :   PetscCall(PetscArrayzero(R,ld*ld));
     773         179 :   for (i=0;i<k;i++) {
     774         167 :     Q[i+i*ld] = 1.0 + alpha*A[i+i*ld];
     775         167 :     Q[k+i*ld] = alpha*A[k+i*ld];
     776             :   }
     777             : 
     778             :   /* compute qr */
     779          12 :   PetscCall(PetscBLASIntCast(k+1,&n1));
     780          12 :   PetscCall(PetscBLASIntCast(k,&n0));
     781          12 :   PetscCallBLAS("LAPACKgeqrf",LAPACKgeqrf_(&n1,&n0,Q,&ld,tau,work,&lwork,&info));
     782          12 :   SlepcCheckLapackInfo("geqrf",info);
     783             : 
     784             :   /* copy R from Q */
     785         179 :   for (j=0;j<k;j++)
     786        1452 :     for (i=0;i<=j;i++)
     787        1285 :       R[i+j*ld] = Q[i+j*ld];
     788             : 
     789             :   /* compute orthogonal matrix in Q */
     790          12 :   PetscCallBLAS("LAPACKorgqr",LAPACKorgqr_(&n1,&n1,&n0,Q,&ld,tau,work,&lwork,&info));
     791          12 :   SlepcCheckLapackInfo("orgqr",info);
     792             : 
     793             :   /* compute the updated matrix of projected problem */
     794         179 :   for (j=0;j<k;j++)
     795        2737 :     for (i=0;i<k+1;i++)
     796        2570 :       A[j*ld+i] = Q[i*ld+j];
     797          12 :   alpha = -1.0/alpha;
     798          12 :   PetscCallBLAS("BLAStrsm",BLAStrsm_("R","U","N","N",&n1,&n0,&alpha,R,&ld,A,&ld));
     799         179 :   for (i=0;i<k;i++)
     800         167 :     A[ld*i+i] -= alpha;
     801             : 
     802          12 :   PetscCall(MatDenseRestoreArray(ds->omat[DS_MAT_A],&A));
     803          12 :   PetscCall(MatDenseRestoreArrayWrite(ds->omat[DS_MAT_Q],&Q));
     804          12 :   PetscCall(MatDenseRestoreArrayWrite(ds->omat[DS_MAT_W],&R));
     805          12 :   PetscFunctionReturn(PETSC_SUCCESS);
     806             : }
     807             : 
     808       21891 : static PetscErrorCode DSHermitian_HEP(DS ds,DSMatType m,PetscBool *flg)
     809             : {
     810       21891 :   PetscFunctionBegin;
     811       21891 :   if (m==DS_MAT_A && !ds->extrarow) *flg = PETSC_TRUE;
     812       15296 :   else *flg = PETSC_FALSE;
     813       21891 :   PetscFunctionReturn(PETSC_SUCCESS);
     814             : }
     815             : 
     816             : /*MC
     817             :    DSHEP - Dense Hermitian Eigenvalue Problem.
     818             : 
     819             :    Level: beginner
     820             : 
     821             :    Notes:
     822             :    The problem is expressed as A*X = X*Lambda, where A is real symmetric
     823             :    (or complex Hermitian). Lambda is a diagonal matrix whose diagonal
     824             :    elements are the arguments of DSSolve(). After solve, A is overwritten
     825             :    with Lambda.
     826             : 
     827             :    In the intermediate state A is reduced to tridiagonal form. In compact
     828             :    storage format, the symmetric tridiagonal matrix is stored in T.
     829             : 
     830             :    Used DS matrices:
     831             : +  DS_MAT_A - problem matrix
     832             : .  DS_MAT_T - symmetric tridiagonal matrix
     833             : -  DS_MAT_Q - orthogonal/unitary transformation that reduces to tridiagonal form
     834             :    (intermediate step) or matrix of orthogonal eigenvectors, which is equal to X
     835             : 
     836             :    Implemented methods:
     837             : +  0 - Implicit QR (_steqr)
     838             : .  1 - Multiple Relatively Robust Representations (_stevr)
     839             : .  2 - Divide and Conquer (_stedc)
     840             : -  3 - Block Divide and Conquer (real scalars only)
     841             : 
     842             : .seealso: DSCreate(), DSSetType(), DSType
     843             : M*/
     844         294 : SLEPC_EXTERN PetscErrorCode DSCreate_HEP(DS ds)
     845             : {
     846         294 :   PetscFunctionBegin;
     847         294 :   ds->ops->allocate      = DSAllocate_HEP;
     848         294 :   ds->ops->view          = DSView_HEP;
     849         294 :   ds->ops->vectors       = DSVectors_HEP;
     850         294 :   ds->ops->solve[0]      = DSSolve_HEP_QR;
     851         294 :   ds->ops->solve[1]      = DSSolve_HEP_MRRR;
     852         294 :   ds->ops->solve[2]      = DSSolve_HEP_DC;
     853             : #if !defined(PETSC_USE_COMPLEX)
     854         294 :   ds->ops->solve[3]      = DSSolve_HEP_BDC;
     855             : #endif
     856         294 :   ds->ops->sort          = DSSort_HEP;
     857             : #if !defined(PETSC_HAVE_MPIUNI)
     858         294 :   ds->ops->synchronize   = DSSynchronize_HEP;
     859             : #endif
     860         294 :   ds->ops->truncate      = DSTruncate_HEP;
     861         294 :   ds->ops->update        = DSUpdateExtraRow_HEP;
     862         294 :   ds->ops->cond          = DSCond_HEP;
     863         294 :   ds->ops->transrks      = DSTranslateRKS_HEP;
     864         294 :   ds->ops->hermitian     = DSHermitian_HEP;
     865         294 :   PetscFunctionReturn(PETSC_SUCCESS);
     866             : }

Generated by: LCOV version 1.14