xref: /petsc/src/mat/impls/baij/seq/baijsolvtran6.c (revision 9566063d113dddea24716c546802770db7481bc0)
12c733ed4SBarry Smith #include <../src/mat/impls/baij/seq/baij.h>
22c733ed4SBarry Smith #include <petsc/private/kernels/blockinvert.h>
32c733ed4SBarry Smith 
42c733ed4SBarry Smith PetscErrorCode MatSolveTranspose_SeqBAIJ_6_inplace(Mat A,Vec bb,Vec xx)
52c733ed4SBarry Smith {
62c733ed4SBarry Smith   Mat_SeqBAIJ       *a   =(Mat_SeqBAIJ*)A->data;
72c733ed4SBarry Smith   IS                iscol=a->col,isrow=a->row;
82c733ed4SBarry Smith   const PetscInt    *r,*c,*rout,*cout;
92c733ed4SBarry Smith   const PetscInt    *diag=a->diag,n=a->mbs,*vi,*ai=a->i,*aj=a->j;
102c733ed4SBarry Smith   PetscInt          i,nz,idx,idt,ii,ic,ir,oidx;
112c733ed4SBarry Smith   const MatScalar   *aa=a->a,*v;
122c733ed4SBarry Smith   PetscScalar       s1,s2,s3,s4,s5,s6,x1,x2,x3,x4,x5,x6,*x,*t;
132c733ed4SBarry Smith   const PetscScalar *b;
142c733ed4SBarry Smith 
152c733ed4SBarry Smith   PetscFunctionBegin;
16*9566063dSJacob Faibussowitsch   PetscCall(VecGetArrayRead(bb,&b));
17*9566063dSJacob Faibussowitsch   PetscCall(VecGetArray(xx,&x));
182c733ed4SBarry Smith   t    = a->solve_work;
192c733ed4SBarry Smith 
20*9566063dSJacob Faibussowitsch   PetscCall(ISGetIndices(isrow,&rout)); r = rout;
21*9566063dSJacob Faibussowitsch   PetscCall(ISGetIndices(iscol,&cout)); c = cout;
222c733ed4SBarry Smith 
232c733ed4SBarry Smith   /* copy the b into temp work space according to permutation */
242c733ed4SBarry Smith   ii = 0;
252c733ed4SBarry Smith   for (i=0; i<n; i++) {
262c733ed4SBarry Smith     ic      = 6*c[i];
272c733ed4SBarry Smith     t[ii]   = b[ic];
282c733ed4SBarry Smith     t[ii+1] = b[ic+1];
292c733ed4SBarry Smith     t[ii+2] = b[ic+2];
302c733ed4SBarry Smith     t[ii+3] = b[ic+3];
312c733ed4SBarry Smith     t[ii+4] = b[ic+4];
322c733ed4SBarry Smith     t[ii+5] = b[ic+5];
332c733ed4SBarry Smith     ii     += 6;
342c733ed4SBarry Smith   }
352c733ed4SBarry Smith 
362c733ed4SBarry Smith   /* forward solve the U^T */
372c733ed4SBarry Smith   idx = 0;
382c733ed4SBarry Smith   for (i=0; i<n; i++) {
392c733ed4SBarry Smith 
402c733ed4SBarry Smith     v = aa + 36*diag[i];
412c733ed4SBarry Smith     /* multiply by the inverse of the block diagonal */
422c733ed4SBarry Smith     x1 = t[idx];   x2 = t[1+idx]; x3    = t[2+idx]; x4 = t[3+idx]; x5 = t[4+idx];
432c733ed4SBarry Smith     x6 = t[5+idx];
442c733ed4SBarry Smith     s1 = v[0]*x1  +  v[1]*x2 +  v[2]*x3 +  v[3]*x4 +  v[4]*x5 +  v[5]*x6;
452c733ed4SBarry Smith     s2 = v[6]*x1  +  v[7]*x2 +  v[8]*x3 +  v[9]*x4 + v[10]*x5 + v[11]*x6;
462c733ed4SBarry Smith     s3 = v[12]*x1 + v[13]*x2 + v[14]*x3 + v[15]*x4 + v[16]*x5 + v[17]*x6;
472c733ed4SBarry Smith     s4 = v[18]*x1 + v[19]*x2 + v[20]*x3 + v[21]*x4 + v[22]*x5 + v[23]*x6;
482c733ed4SBarry Smith     s5 = v[24]*x1 + v[25]*x2 + v[26]*x3 + v[27]*x4 + v[28]*x5 + v[29]*x6;
492c733ed4SBarry Smith     s6 = v[30]*x1 + v[31]*x2 + v[32]*x3 + v[33]*x4 + v[34]*x5 + v[35]*x6;
502c733ed4SBarry Smith     v += 36;
512c733ed4SBarry Smith 
522c733ed4SBarry Smith     vi = aj + diag[i] + 1;
532c733ed4SBarry Smith     nz = ai[i+1] - diag[i] - 1;
542c733ed4SBarry Smith     while (nz--) {
552c733ed4SBarry Smith       oidx       = 6*(*vi++);
562c733ed4SBarry Smith       t[oidx]   -= v[0]*s1  +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6;
572c733ed4SBarry Smith       t[oidx+1] -= v[6]*s1  +  v[7]*s2 +  v[8]*s3 +  v[9]*s4 + v[10]*s5 + v[11]*s6;
582c733ed4SBarry Smith       t[oidx+2] -= v[12]*s1 + v[13]*s2 + v[14]*s3 + v[15]*s4 + v[16]*s5 + v[17]*s6;
592c733ed4SBarry Smith       t[oidx+3] -= v[18]*s1 + v[19]*s2 + v[20]*s3 + v[21]*s4 + v[22]*s5 + v[23]*s6;
602c733ed4SBarry Smith       t[oidx+4] -= v[24]*s1 + v[25]*s2 + v[26]*s3 + v[27]*s4 + v[28]*s5 + v[29]*s6;
612c733ed4SBarry Smith       t[oidx+5] -= v[30]*s1 + v[31]*s2 + v[32]*s3 + v[33]*s4 + v[34]*s5 + v[35]*s6;
622c733ed4SBarry Smith       v         += 36;
632c733ed4SBarry Smith     }
642c733ed4SBarry Smith     t[idx]   = s1;t[1+idx] = s2; t[2+idx] = s3;t[3+idx] = s4; t[4+idx] = s5;
652c733ed4SBarry Smith     t[5+idx] = s6;
662c733ed4SBarry Smith     idx     += 6;
672c733ed4SBarry Smith   }
682c733ed4SBarry Smith   /* backward solve the L^T */
692c733ed4SBarry Smith   for (i=n-1; i>=0; i--) {
702c733ed4SBarry Smith     v   = aa + 36*diag[i] - 36;
712c733ed4SBarry Smith     vi  = aj + diag[i] - 1;
722c733ed4SBarry Smith     nz  = diag[i] - ai[i];
732c733ed4SBarry Smith     idt = 6*i;
742c733ed4SBarry Smith     s1  = t[idt];  s2 = t[1+idt]; s3 = t[2+idt];s4 = t[3+idt]; s5 = t[4+idt];
752c733ed4SBarry Smith     s6  = t[5+idt];
762c733ed4SBarry Smith     while (nz--) {
772c733ed4SBarry Smith       idx       = 6*(*vi--);
782c733ed4SBarry Smith       t[idx]   -=  v[0]*s1 +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6;
792c733ed4SBarry Smith       t[idx+1] -=  v[6]*s1 +  v[7]*s2 +  v[8]*s3 +  v[9]*s4 + v[10]*s5 + v[11]*s6;
802c733ed4SBarry Smith       t[idx+2] -= v[12]*s1 + v[13]*s2 + v[14]*s3 + v[15]*s4 + v[16]*s5 + v[17]*s6;
812c733ed4SBarry Smith       t[idx+3] -= v[18]*s1 + v[19]*s2 + v[20]*s3 + v[21]*s4 + v[22]*s5 + v[23]*s6;
822c733ed4SBarry Smith       t[idx+4] -= v[24]*s1 + v[25]*s2 + v[26]*s3 + v[27]*s4 + v[28]*s5 + v[29]*s6;
832c733ed4SBarry Smith       t[idx+5] -= v[30]*s1 + v[31]*s2 + v[32]*s3 + v[33]*s4 + v[34]*s5 + v[35]*s6;
842c733ed4SBarry Smith       v        -= 36;
852c733ed4SBarry Smith     }
862c733ed4SBarry Smith   }
872c733ed4SBarry Smith 
882c733ed4SBarry Smith   /* copy t into x according to permutation */
892c733ed4SBarry Smith   ii = 0;
902c733ed4SBarry Smith   for (i=0; i<n; i++) {
912c733ed4SBarry Smith     ir      = 6*r[i];
922c733ed4SBarry Smith     x[ir]   = t[ii];
932c733ed4SBarry Smith     x[ir+1] = t[ii+1];
942c733ed4SBarry Smith     x[ir+2] = t[ii+2];
952c733ed4SBarry Smith     x[ir+3] = t[ii+3];
962c733ed4SBarry Smith     x[ir+4] = t[ii+4];
972c733ed4SBarry Smith     x[ir+5] = t[ii+5];
982c733ed4SBarry Smith     ii     += 6;
992c733ed4SBarry Smith   }
1002c733ed4SBarry Smith 
101*9566063dSJacob Faibussowitsch   PetscCall(ISRestoreIndices(isrow,&rout));
102*9566063dSJacob Faibussowitsch   PetscCall(ISRestoreIndices(iscol,&cout));
103*9566063dSJacob Faibussowitsch   PetscCall(VecRestoreArrayRead(bb,&b));
104*9566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(xx,&x));
105*9566063dSJacob Faibussowitsch   PetscCall(PetscLogFlops(2.0*36*(a->nz) - 6.0*A->cmap->n));
1062c733ed4SBarry Smith   PetscFunctionReturn(0);
1072c733ed4SBarry Smith }
1082c733ed4SBarry Smith 
1092c733ed4SBarry Smith PetscErrorCode MatSolveTranspose_SeqBAIJ_6(Mat A,Vec bb,Vec xx)
1102c733ed4SBarry Smith {
1112c733ed4SBarry Smith   Mat_SeqBAIJ       *a=(Mat_SeqBAIJ*)A->data;
1122c733ed4SBarry Smith   IS                iscol=a->col,isrow=a->row;
1132c733ed4SBarry Smith   const PetscInt    n    =a->mbs,*vi,*ai=a->i,*aj=a->j,*diag=a->diag;
1142c733ed4SBarry Smith   const PetscInt    *r,*c,*rout,*cout;
1152c733ed4SBarry Smith   PetscInt          nz,idx,idt,j,i,oidx,ii,ic,ir;
1162c733ed4SBarry Smith   const PetscInt    bs =A->rmap->bs,bs2=a->bs2;
1172c733ed4SBarry Smith   const MatScalar   *aa=a->a,*v;
1182c733ed4SBarry Smith   PetscScalar       s1,s2,s3,s4,s5,s6,x1,x2,x3,x4,x5,x6,*x,*t;
1192c733ed4SBarry Smith   const PetscScalar *b;
1202c733ed4SBarry Smith 
1212c733ed4SBarry Smith   PetscFunctionBegin;
122*9566063dSJacob Faibussowitsch   PetscCall(VecGetArrayRead(bb,&b));
123*9566063dSJacob Faibussowitsch   PetscCall(VecGetArray(xx,&x));
1242c733ed4SBarry Smith   t    = a->solve_work;
1252c733ed4SBarry Smith 
126*9566063dSJacob Faibussowitsch   PetscCall(ISGetIndices(isrow,&rout)); r = rout;
127*9566063dSJacob Faibussowitsch   PetscCall(ISGetIndices(iscol,&cout)); c = cout;
1282c733ed4SBarry Smith 
1292c733ed4SBarry Smith   /* copy b into temp work space according to permutation */
1302c733ed4SBarry Smith   for (i=0; i<n; i++) {
1312c733ed4SBarry Smith     ii      = bs*i; ic = bs*c[i];
1322c733ed4SBarry Smith     t[ii]   = b[ic]; t[ii+1] = b[ic+1]; t[ii+2] = b[ic+2]; t[ii+3] = b[ic+3];
1332c733ed4SBarry Smith     t[ii+4] = b[ic+4];  t[ii+5] = b[ic+5];
1342c733ed4SBarry Smith   }
1352c733ed4SBarry Smith 
1362c733ed4SBarry Smith   /* forward solve the U^T */
1372c733ed4SBarry Smith   idx = 0;
1382c733ed4SBarry Smith   for (i=0; i<n; i++) {
1392c733ed4SBarry Smith     v = aa + bs2*diag[i];
1402c733ed4SBarry Smith     /* multiply by the inverse of the block diagonal */
1412c733ed4SBarry Smith     x1 = t[idx];   x2 = t[1+idx]; x3    = t[2+idx]; x4 = t[3+idx]; x5 = t[4+idx];
1422c733ed4SBarry Smith     x6 = t[5+idx];
1432c733ed4SBarry Smith     s1 = v[0]*x1  +  v[1]*x2 +  v[2]*x3 +  v[3]*x4 +  v[4]*x5 +  v[5]*x6;
1442c733ed4SBarry Smith     s2 = v[6]*x1  +  v[7]*x2 +  v[8]*x3 +  v[9]*x4 + v[10]*x5 + v[11]*x6;
1452c733ed4SBarry Smith     s3 = v[12]*x1 + v[13]*x2 + v[14]*x3 + v[15]*x4 + v[16]*x5 + v[17]*x6;
1462c733ed4SBarry Smith     s4 = v[18]*x1 + v[19]*x2 + v[20]*x3 + v[21]*x4 + v[22]*x5 + v[23]*x6;
1472c733ed4SBarry Smith     s5 = v[24]*x1 + v[25]*x2 + v[26]*x3 + v[27]*x4 + v[28]*x5 + v[29]*x6;
1482c733ed4SBarry Smith     s6 = v[30]*x1 + v[31]*x2 + v[32]*x3 + v[33]*x4 + v[34]*x5 + v[35]*x6;
1492c733ed4SBarry Smith     v -= bs2;
1502c733ed4SBarry Smith 
1512c733ed4SBarry Smith     vi = aj + diag[i] - 1;
1522c733ed4SBarry Smith     nz = diag[i] - diag[i+1] - 1;
1532c733ed4SBarry Smith     for (j=0; j>-nz; j--) {
1542c733ed4SBarry Smith       oidx       = bs*vi[j];
1552c733ed4SBarry Smith       t[oidx]   -= v[0]*s1  +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6;
1562c733ed4SBarry Smith       t[oidx+1] -= v[6]*s1  +  v[7]*s2 +  v[8]*s3 +  v[9]*s4 + v[10]*s5 + v[11]*s6;
1572c733ed4SBarry Smith       t[oidx+2] -= v[12]*s1 + v[13]*s2 + v[14]*s3 + v[15]*s4 + v[16]*s5 + v[17]*s6;
1582c733ed4SBarry Smith       t[oidx+3] -= v[18]*s1 + v[19]*s2 + v[20]*s3 + v[21]*s4 + v[22]*s5 + v[23]*s6;
1592c733ed4SBarry Smith       t[oidx+4] -= v[24]*s1 + v[25]*s2 + v[26]*s3 + v[27]*s4 + v[28]*s5 + v[29]*s6;
1602c733ed4SBarry Smith       t[oidx+5] -= v[30]*s1 + v[31]*s2 + v[32]*s3 + v[33]*s4 + v[34]*s5 + v[35]*s6;
1612c733ed4SBarry Smith       v         -= bs2;
1622c733ed4SBarry Smith     }
1632c733ed4SBarry Smith     t[idx]   = s1;t[1+idx] = s2;  t[2+idx] = s3;  t[3+idx] = s4; t[4+idx] =s5;
1642c733ed4SBarry Smith     t[5+idx] = s6;
1652c733ed4SBarry Smith     idx     += bs;
1662c733ed4SBarry Smith   }
1672c733ed4SBarry Smith   /* backward solve the L^T */
1682c733ed4SBarry Smith   for (i=n-1; i>=0; i--) {
1692c733ed4SBarry Smith     v   = aa + bs2*ai[i];
1702c733ed4SBarry Smith     vi  = aj + ai[i];
1712c733ed4SBarry Smith     nz  = ai[i+1] - ai[i];
1722c733ed4SBarry Smith     idt = bs*i;
1732c733ed4SBarry Smith     s1  = t[idt];  s2 = t[1+idt];  s3 = t[2+idt];  s4 = t[3+idt]; s5 = t[4+idt];
1742c733ed4SBarry Smith     s6  = t[5+idt];
1752c733ed4SBarry Smith     for (j=0; j<nz; j++) {
1762c733ed4SBarry Smith       idx       = bs*vi[j];
1772c733ed4SBarry Smith       t[idx]   -= v[0]*s1  +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6;
1782c733ed4SBarry Smith       t[idx+1] -= v[6]*s1  +  v[7]*s2 +  v[8]*s3 +  v[9]*s4 + v[10]*s5 + v[11]*s6;
1792c733ed4SBarry Smith       t[idx+2] -= v[12]*s1 + v[13]*s2 + v[14]*s3 + v[15]*s4 + v[16]*s5 + v[17]*s6;
1802c733ed4SBarry Smith       t[idx+3] -= v[18]*s1 + v[19]*s2 + v[20]*s3 + v[21]*s4 + v[22]*s5 + v[23]*s6;
1812c733ed4SBarry Smith       t[idx+4] -= v[24]*s1 + v[25]*s2 + v[26]*s3 + v[27]*s4 + v[28]*s5 + v[29]*s6;
1822c733ed4SBarry Smith       t[idx+5] -= v[30]*s1 + v[31]*s2 + v[32]*s3 + v[33]*s4 + v[34]*s5 + v[35]*s6;
1832c733ed4SBarry Smith       v        += bs2;
1842c733ed4SBarry Smith     }
1852c733ed4SBarry Smith   }
1862c733ed4SBarry Smith 
1872c733ed4SBarry Smith   /* copy t into x according to permutation */
1882c733ed4SBarry Smith   for (i=0; i<n; i++) {
1892c733ed4SBarry Smith     ii      = bs*i;  ir = bs*r[i];
1902c733ed4SBarry Smith     x[ir]   = t[ii];  x[ir+1] = t[ii+1]; x[ir+2] = t[ii+2];  x[ir+3] = t[ii+3];
1912c733ed4SBarry Smith     x[ir+4] = t[ii+4];  x[ir+5] = t[ii+5];
1922c733ed4SBarry Smith   }
1932c733ed4SBarry Smith 
194*9566063dSJacob Faibussowitsch   PetscCall(ISRestoreIndices(isrow,&rout));
195*9566063dSJacob Faibussowitsch   PetscCall(ISRestoreIndices(iscol,&cout));
196*9566063dSJacob Faibussowitsch   PetscCall(VecRestoreArrayRead(bb,&b));
197*9566063dSJacob Faibussowitsch   PetscCall(VecRestoreArray(xx,&x));
198*9566063dSJacob Faibussowitsch   PetscCall(PetscLogFlops(2.0*bs2*(a->nz) - bs*A->cmap->n));
1992c733ed4SBarry Smith   PetscFunctionReturn(0);
2002c733ed4SBarry Smith }
201