xref: /petsc/src/mat/impls/baij/seq/baijsolvtrannat7.c (revision 2c733ed45a445b0336611d812c866924feeaee2c)
1*2c733ed4SBarry Smith #include <../src/mat/impls/baij/seq/baij.h>
2*2c733ed4SBarry Smith 
3*2c733ed4SBarry Smith PetscErrorCode MatSolveTranspose_SeqBAIJ_7_NaturalOrdering_inplace(Mat A,Vec bb,Vec xx)
4*2c733ed4SBarry Smith {
5*2c733ed4SBarry Smith   Mat_SeqBAIJ     *a=(Mat_SeqBAIJ*)A->data;
6*2c733ed4SBarry Smith   PetscErrorCode  ierr;
7*2c733ed4SBarry Smith   const PetscInt  *diag=a->diag,n=a->mbs,*vi,*ai=a->i,*aj=a->j;
8*2c733ed4SBarry Smith   PetscInt        i,nz,idx,idt,oidx;
9*2c733ed4SBarry Smith   const MatScalar *aa=a->a,*v;
10*2c733ed4SBarry Smith   PetscScalar     s1,s2,s3,s4,s5,s6,s7,x1,x2,x3,x4,x5,x6,x7,*x;
11*2c733ed4SBarry Smith 
12*2c733ed4SBarry Smith   PetscFunctionBegin;
13*2c733ed4SBarry Smith   ierr = VecCopy(bb,xx);CHKERRQ(ierr);
14*2c733ed4SBarry Smith   ierr = VecGetArray(xx,&x);CHKERRQ(ierr);
15*2c733ed4SBarry Smith 
16*2c733ed4SBarry Smith   /* forward solve the U^T */
17*2c733ed4SBarry Smith   idx = 0;
18*2c733ed4SBarry Smith   for (i=0; i<n; i++) {
19*2c733ed4SBarry Smith 
20*2c733ed4SBarry Smith     v = aa + 49*diag[i];
21*2c733ed4SBarry Smith     /* multiply by the inverse of the block diagonal */
22*2c733ed4SBarry Smith     x1 = x[idx];   x2 = x[1+idx]; x3    = x[2+idx]; x4 = x[3+idx]; x5 = x[4+idx];
23*2c733ed4SBarry Smith     x6 = x[5+idx]; x7 = x[6+idx];
24*2c733ed4SBarry Smith     s1 = v[0]*x1  +  v[1]*x2 +  v[2]*x3 +  v[3]*x4 +  v[4]*x5 +  v[5]*x6 +  v[6]*x7;
25*2c733ed4SBarry Smith     s2 = v[7]*x1  +  v[8]*x2 +  v[9]*x3 + v[10]*x4 + v[11]*x5 + v[12]*x6 + v[13]*x7;
26*2c733ed4SBarry Smith     s3 = v[14]*x1 + v[15]*x2 + v[16]*x3 + v[17]*x4 + v[18]*x5 + v[19]*x6 + v[20]*x7;
27*2c733ed4SBarry Smith     s4 = v[21]*x1 + v[22]*x2 + v[23]*x3 + v[24]*x4 + v[25]*x5 + v[26]*x6 + v[27]*x7;
28*2c733ed4SBarry Smith     s5 = v[28]*x1 + v[29]*x2 + v[30]*x3 + v[31]*x4 + v[32]*x5 + v[33]*x6 + v[34]*x7;
29*2c733ed4SBarry Smith     s6 = v[35]*x1 + v[36]*x2 + v[37]*x3 + v[38]*x4 + v[39]*x5 + v[40]*x6 + v[41]*x7;
30*2c733ed4SBarry Smith     s7 = v[42]*x1 + v[43]*x2 + v[44]*x3 + v[45]*x4 + v[46]*x5 + v[47]*x6 + v[48]*x7;
31*2c733ed4SBarry Smith     v += 49;
32*2c733ed4SBarry Smith 
33*2c733ed4SBarry Smith     vi = aj + diag[i] + 1;
34*2c733ed4SBarry Smith     nz = ai[i+1] - diag[i] - 1;
35*2c733ed4SBarry Smith     while (nz--) {
36*2c733ed4SBarry Smith       oidx       = 7*(*vi++);
37*2c733ed4SBarry Smith       x[oidx]   -= v[0]*s1  +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6 +  v[6]*s7;
38*2c733ed4SBarry Smith       x[oidx+1] -= v[7]*s1  +  v[8]*s2 +  v[9]*s3 + v[10]*s4 + v[11]*s5 + v[12]*s6 + v[13]*s7;
39*2c733ed4SBarry Smith       x[oidx+2] -= v[14]*s1 + v[15]*s2 + v[16]*s3 + v[17]*s4 + v[18]*s5 + v[19]*s6 + v[20]*s7;
40*2c733ed4SBarry Smith       x[oidx+3] -= v[21]*s1 + v[22]*s2 + v[23]*s3 + v[24]*s4 + v[25]*s5 + v[26]*s6 + v[27]*s7;
41*2c733ed4SBarry Smith       x[oidx+4] -= v[28]*s1 + v[29]*s2 + v[30]*s3 + v[31]*s4 + v[32]*s5 + v[33]*s6 + v[34]*s7;
42*2c733ed4SBarry Smith       x[oidx+5] -= v[35]*s1 + v[36]*s2 + v[37]*s3 + v[38]*s4 + v[39]*s5 + v[40]*s6 + v[41]*s7;
43*2c733ed4SBarry Smith       x[oidx+6] -= v[42]*s1 + v[43]*s2 + v[44]*s3 + v[45]*s4 + v[46]*s5 + v[47]*s6 + v[48]*s7;
44*2c733ed4SBarry Smith       v         += 49;
45*2c733ed4SBarry Smith     }
46*2c733ed4SBarry Smith     x[idx]   = s1;x[1+idx] = s2; x[2+idx] = s3;x[3+idx] = s4; x[4+idx] = s5;
47*2c733ed4SBarry Smith     x[5+idx] = s6;x[6+idx] = s7;
48*2c733ed4SBarry Smith     idx     += 7;
49*2c733ed4SBarry Smith   }
50*2c733ed4SBarry Smith   /* backward solve the L^T */
51*2c733ed4SBarry Smith   for (i=n-1; i>=0; i--) {
52*2c733ed4SBarry Smith     v   = aa + 49*diag[i] - 49;
53*2c733ed4SBarry Smith     vi  = aj + diag[i] - 1;
54*2c733ed4SBarry Smith     nz  = diag[i] - ai[i];
55*2c733ed4SBarry Smith     idt = 7*i;
56*2c733ed4SBarry Smith     s1  = x[idt];  s2 = x[1+idt]; s3 = x[2+idt];s4 = x[3+idt]; s5 = x[4+idt];
57*2c733ed4SBarry Smith     s6  = x[5+idt];s7 = x[6+idt];
58*2c733ed4SBarry Smith     while (nz--) {
59*2c733ed4SBarry Smith       idx       = 7*(*vi--);
60*2c733ed4SBarry Smith       x[idx]   -=  v[0]*s1 +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6 +  v[6]*s7;
61*2c733ed4SBarry Smith       x[idx+1] -=  v[7]*s1 +  v[8]*s2 +  v[9]*s3 + v[10]*s4 + v[11]*s5 + v[12]*s6 + v[13]*s7;
62*2c733ed4SBarry Smith       x[idx+2] -= v[14]*s1 + v[15]*s2 + v[16]*s3 + v[17]*s4 + v[18]*s5 + v[19]*s6 + v[20]*s7;
63*2c733ed4SBarry Smith       x[idx+3] -= v[21]*s1 + v[22]*s2 + v[23]*s3 + v[24]*s4 + v[25]*s5 + v[26]*s6 + v[27]*s7;
64*2c733ed4SBarry Smith       x[idx+4] -= v[28]*s1 + v[29]*s2 + v[30]*s3 + v[31]*s4 + v[32]*s5 + v[33]*s6 + v[34]*s7;
65*2c733ed4SBarry Smith       x[idx+5] -= v[35]*s1 + v[36]*s2 + v[37]*s3 + v[38]*s4 + v[39]*s5 + v[40]*s6 + v[41]*s7;
66*2c733ed4SBarry Smith       x[idx+6] -= v[42]*s1 + v[43]*s2 + v[44]*s3 + v[45]*s4 + v[46]*s5 + v[47]*s6 + v[48]*s7;
67*2c733ed4SBarry Smith       v        -= 49;
68*2c733ed4SBarry Smith     }
69*2c733ed4SBarry Smith   }
70*2c733ed4SBarry Smith   ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
71*2c733ed4SBarry Smith   ierr = PetscLogFlops(2.0*49*(a->nz) - 7.0*A->cmap->n);CHKERRQ(ierr);
72*2c733ed4SBarry Smith   PetscFunctionReturn(0);
73*2c733ed4SBarry Smith }
74*2c733ed4SBarry Smith PetscErrorCode MatSolveTranspose_SeqBAIJ_7_NaturalOrdering(Mat A,Vec bb,Vec xx)
75*2c733ed4SBarry Smith {
76*2c733ed4SBarry Smith   Mat_SeqBAIJ     *a=(Mat_SeqBAIJ*)A->data;
77*2c733ed4SBarry Smith   PetscErrorCode  ierr;
78*2c733ed4SBarry Smith   const PetscInt  n=a->mbs,*vi,*ai=a->i,*aj=a->j,*diag=a->diag;
79*2c733ed4SBarry Smith   PetscInt        nz,idx,idt,j,i,oidx;
80*2c733ed4SBarry Smith   const PetscInt  bs =A->rmap->bs,bs2=a->bs2;
81*2c733ed4SBarry Smith   const MatScalar *aa=a->a,*v;
82*2c733ed4SBarry Smith   PetscScalar     s1,s2,s3,s4,s5,s6,s7,x1,x2,x3,x4,x5,x6,x7,*x;
83*2c733ed4SBarry Smith 
84*2c733ed4SBarry Smith   PetscFunctionBegin;
85*2c733ed4SBarry Smith   ierr = VecCopy(bb,xx);CHKERRQ(ierr);
86*2c733ed4SBarry Smith   ierr = VecGetArray(xx,&x);CHKERRQ(ierr);
87*2c733ed4SBarry Smith 
88*2c733ed4SBarry Smith   /* forward solve the U^T */
89*2c733ed4SBarry Smith   idx = 0;
90*2c733ed4SBarry Smith   for (i=0; i<n; i++) {
91*2c733ed4SBarry Smith     v = aa + bs2*diag[i];
92*2c733ed4SBarry Smith     /* multiply by the inverse of the block diagonal */
93*2c733ed4SBarry Smith     x1 = x[idx];   x2 = x[1+idx];  x3 = x[2+idx];  x4 = x[3+idx];
94*2c733ed4SBarry Smith     x5 = x[4+idx]; x6 = x[5+idx];  x7 = x[6+idx];
95*2c733ed4SBarry Smith     s1 = v[0]*x1  +  v[1]*x2 +  v[2]*x3 +  v[3]*x4 +  v[4]*x5 +  v[5]*x6 +  v[6]*x7;
96*2c733ed4SBarry Smith     s2 = v[7]*x1  +  v[8]*x2 +  v[9]*x3 + v[10]*x4 + v[11]*x5 + v[12]*x6 + v[13]*x7;
97*2c733ed4SBarry Smith     s3 = v[14]*x1 + v[15]*x2 + v[16]*x3 + v[17]*x4 + v[18]*x5 + v[19]*x6 + v[20]*x7;
98*2c733ed4SBarry Smith     s4 = v[21]*x1 + v[22]*x2 + v[23]*x3 + v[24]*x4 + v[25]*x5 + v[26]*x6 + v[27]*x7;
99*2c733ed4SBarry Smith     s5 = v[28]*x1 + v[29]*x2 + v[30]*x3 + v[31]*x4 + v[32]*x5 + v[33]*x6 + v[34]*x7;
100*2c733ed4SBarry Smith     s6 = v[35]*x1 + v[36]*x2 + v[37]*x3 + v[38]*x4 + v[39]*x5 + v[40]*x6 + v[41]*x7;
101*2c733ed4SBarry Smith     s7 = v[42]*x1 + v[43]*x2 + v[44]*x3 + v[45]*x4 + v[46]*x5 + v[47]*x6 + v[48]*x7;
102*2c733ed4SBarry Smith     v -= bs2;
103*2c733ed4SBarry Smith     vi = aj + diag[i] - 1;
104*2c733ed4SBarry Smith     nz = diag[i] - diag[i+1] - 1;
105*2c733ed4SBarry Smith     for (j=0; j>-nz; j--) {
106*2c733ed4SBarry Smith       oidx       = bs*vi[j];
107*2c733ed4SBarry Smith       x[oidx]   -= v[0]*s1  +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6 +  v[6]*s7;
108*2c733ed4SBarry Smith       x[oidx+1] -= v[7]*s1  +  v[8]*s2 +  v[9]*s3 + v[10]*s4 + v[11]*s5 + v[12]*s6 + v[13]*s7;
109*2c733ed4SBarry Smith       x[oidx+2] -= v[14]*s1 + v[15]*s2 + v[16]*s3 + v[17]*s4 + v[18]*s5 + v[19]*s6 + v[20]*s7;
110*2c733ed4SBarry Smith       x[oidx+3] -= v[21]*s1 + v[22]*s2 + v[23]*s3 + v[24]*s4 + v[25]*s5 + v[26]*s6 + v[27]*s7;
111*2c733ed4SBarry Smith       x[oidx+4] -= v[28]*s1 + v[29]*s2 + v[30]*s3 + v[31]*s4 + v[32]*s5 + v[33]*s6 + v[34]*s7;
112*2c733ed4SBarry Smith       x[oidx+5] -= v[35]*s1 + v[36]*s2 + v[37]*s3 + v[38]*s4 + v[39]*s5 + v[40]*s6 + v[41]*s7;
113*2c733ed4SBarry Smith       x[oidx+6] -= v[42]*s1 + v[43]*s2 + v[44]*s3 + v[45]*s4 + v[46]*s5 + v[47]*s6 + v[48]*s7;
114*2c733ed4SBarry Smith       v         -= bs2;
115*2c733ed4SBarry Smith     }
116*2c733ed4SBarry Smith     x[idx]   = s1;  x[1+idx] = s2;  x[2+idx] = s3;  x[3+idx] = s4; x[4+idx] = s5;
117*2c733ed4SBarry Smith     x[5+idx] = s6;  x[6+idx] = s7;
118*2c733ed4SBarry Smith     idx     += bs;
119*2c733ed4SBarry Smith   }
120*2c733ed4SBarry Smith   /* backward solve the L^T */
121*2c733ed4SBarry Smith   for (i=n-1; i>=0; i--) {
122*2c733ed4SBarry Smith     v   = aa + bs2*ai[i];
123*2c733ed4SBarry Smith     vi  = aj + ai[i];
124*2c733ed4SBarry Smith     nz  = ai[i+1] - ai[i];
125*2c733ed4SBarry Smith     idt = bs*i;
126*2c733ed4SBarry Smith     s1  = x[idt];    s2 = x[1+idt];  s3 = x[2+idt];  s4 = x[3+idt];  s5 = x[4+idt];
127*2c733ed4SBarry Smith     s6  = x[5+idt];  s7 = x[6+idt];
128*2c733ed4SBarry Smith     for (j=0; j<nz; j++) {
129*2c733ed4SBarry Smith       idx       = bs*vi[j];
130*2c733ed4SBarry Smith       x[idx]   -= v[0]*s1  +  v[1]*s2 +  v[2]*s3 +  v[3]*s4 +  v[4]*s5 +  v[5]*s6 +  v[6]*s7;
131*2c733ed4SBarry Smith       x[idx+1] -= v[7]*s1  +  v[8]*s2 +  v[9]*s3 + v[10]*s4 + v[11]*s5 + v[12]*s6 + v[13]*s7;
132*2c733ed4SBarry Smith       x[idx+2] -= v[14]*s1 + v[15]*s2 + v[16]*s3 + v[17]*s4 + v[18]*s5 + v[19]*s6 + v[20]*s7;
133*2c733ed4SBarry Smith       x[idx+3] -= v[21]*s1 + v[22]*s2 + v[23]*s3 + v[24]*s4 + v[25]*s5 + v[26]*s6 + v[27]*s7;
134*2c733ed4SBarry Smith       x[idx+4] -= v[28]*s1 + v[29]*s2 + v[30]*s3 + v[31]*s4 + v[32]*s5 + v[33]*s6 + v[34]*s7;
135*2c733ed4SBarry Smith       x[idx+5] -= v[35]*s1 + v[36]*s2 + v[37]*s3 + v[38]*s4 + v[39]*s5 + v[40]*s6 + v[41]*s7;
136*2c733ed4SBarry Smith       x[idx+6] -= v[42]*s1 + v[43]*s2 + v[44]*s3 + v[45]*s4 + v[46]*s5 + v[47]*s6 + v[48]*s7;
137*2c733ed4SBarry Smith       v        += bs2;
138*2c733ed4SBarry Smith     }
139*2c733ed4SBarry Smith   }
140*2c733ed4SBarry Smith   ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
141*2c733ed4SBarry Smith   ierr = PetscLogFlops(2.0*bs2*(a->nz) - bs*A->cmap->n);CHKERRQ(ierr);
142*2c733ed4SBarry Smith   PetscFunctionReturn(0);
143*2c733ed4SBarry Smith }
144*2c733ed4SBarry Smith 
145