#include <../src/mat/impls/baij/seq/baij.h> #include PetscErrorCode MatSolveTranspose_SeqBAIJ_5_inplace(Mat A,Vec bb,Vec xx) { Mat_SeqBAIJ *a =(Mat_SeqBAIJ*)A->data; IS iscol=a->col,isrow=a->row; PetscErrorCode ierr; const PetscInt *r,*c,*rout,*cout; const PetscInt *diag=a->diag,n=a->mbs,*vi,*ai=a->i,*aj=a->j; PetscInt i,nz,idx,idt,ii,ic,ir,oidx; const MatScalar *aa=a->a,*v; PetscScalar s1,s2,s3,s4,s5,x1,x2,x3,x4,x5,*x,*t; const PetscScalar *b; PetscFunctionBegin; ierr = VecGetArrayRead(bb,&b);CHKERRQ(ierr); ierr = VecGetArray(xx,&x);CHKERRQ(ierr); t = a->solve_work; ierr = ISGetIndices(isrow,&rout);CHKERRQ(ierr); r = rout; ierr = ISGetIndices(iscol,&cout);CHKERRQ(ierr); c = cout; /* copy the b into temp work space according to permutation */ ii = 0; for (i=0; i=0; i--) { v = aa + 25*diag[i] - 25; vi = aj + diag[i] - 1; nz = diag[i] - ai[i]; idt = 5*i; s1 = t[idt]; s2 = t[1+idt]; s3 = t[2+idt];s4 = t[3+idt]; s5 = t[4+idt]; while (nz--) { idx = 5*(*vi--); t[idx] -= v[0]*s1 + v[1]*s2 + v[2]*s3 + v[3]*s4 + v[4]*s5; t[idx+1] -= v[5]*s1 + v[6]*s2 + v[7]*s3 + v[8]*s4 + v[9]*s5; t[idx+2] -= v[10]*s1 + v[11]*s2 + v[12]*s3 + v[13]*s4 + v[14]*s5; t[idx+3] -= v[15]*s1 + v[16]*s2 + v[17]*s3 + v[18]*s4 + v[19]*s5; t[idx+4] -= v[20]*s1 + v[21]*s2 + v[22]*s3 + v[23]*s4 + v[24]*s5; v -= 25; } } /* copy t into x according to permutation */ ii = 0; for (i=0; inz) - 5.0*A->cmap->n);CHKERRQ(ierr); PetscFunctionReturn(0); } PetscErrorCode MatSolveTranspose_SeqBAIJ_5(Mat A,Vec bb,Vec xx) { Mat_SeqBAIJ *a=(Mat_SeqBAIJ*)A->data; PetscErrorCode ierr; IS iscol=a->col,isrow=a->row; const PetscInt n =a->mbs,*vi,*ai=a->i,*aj=a->j,*diag=a->diag; const PetscInt *r,*c,*rout,*cout; PetscInt nz,idx,idt,j,i,oidx,ii,ic,ir; const PetscInt bs =A->rmap->bs,bs2=a->bs2; const MatScalar *aa=a->a,*v; PetscScalar s1,s2,s3,s4,s5,x1,x2,x3,x4,x5,*x,*t; const PetscScalar *b; PetscFunctionBegin; ierr = VecGetArrayRead(bb,&b);CHKERRQ(ierr); ierr = VecGetArray(xx,&x);CHKERRQ(ierr); t = a->solve_work; ierr = ISGetIndices(isrow,&rout);CHKERRQ(ierr); r = rout; ierr = ISGetIndices(iscol,&cout);CHKERRQ(ierr); c = cout; /* copy b into temp work space according to permutation */ for (i=0; i-nz; j--) { oidx = bs*vi[j]; t[oidx] -= v[0]*s1 + v[1]*s2 + v[2]*s3 + v[3]*s4 + v[4]*s5; t[oidx+1] -= v[5]*s1 + v[6]*s2 + v[7]*s3 + v[8]*s4 + v[9]*s5; t[oidx+2] -= v[10]*s1 + v[11]*s2 + v[12]*s3 + v[13]*s4 + v[14]*s5; t[oidx+3] -= v[15]*s1 + v[16]*s2 + v[17]*s3 + v[18]*s4 + v[19]*s5; t[oidx+4] -= v[20]*s1 + v[21]*s2 + v[22]*s3 + v[23]*s4 + v[24]*s5; v -= bs2; } t[idx] = s1;t[1+idx] = s2; t[2+idx] = s3; t[3+idx] = s4; t[4+idx] =s5; idx += bs; } /* backward solve the L^T */ for (i=n-1; i>=0; i--) { v = aa + bs2*ai[i]; vi = aj + ai[i]; nz = ai[i+1] - ai[i]; idt = bs*i; s1 = t[idt]; s2 = t[1+idt]; s3 = t[2+idt]; s4 = t[3+idt]; s5 = t[4+idt]; for (j=0; jnz) - bs*A->cmap->n);CHKERRQ(ierr); PetscFunctionReturn(0); }