xref: /petsc/src/mat/impls/aij/seq/aijfact.c (revision f830108c1b82f9284b2125d4c9c5a60284ab26f4)
1a5eb4965SSatish Balay #ifdef PETSC_RCS_HEADER
2*f830108cSBarry Smith static char vcid[] = "$Id: aijfact.c,v 1.94 1998/03/06 00:14:28 bsmith Exp bsmith $";
3cb512458SBarry Smith #endif
4289bc588SBarry Smith 
570f55243SBarry Smith #include "src/mat/impls/aij/seq/aij.h"
690f02eecSBarry Smith #include "src/vec/vecimpl.h"
71c4feecaSSatish Balay #include "src/inline/dot.h"
83b2fbd54SBarry Smith 
95615d1e5SSatish Balay #undef __FUNC__
10d4bb536fSBarry Smith #define __FUNC__ "MatOrder_Flow_SeqAIJ"
11ca161407SBarry Smith int MatOrder_Flow_SeqAIJ(Mat mat,MatReorderingType type,IS *irow,IS *icol)
123b2fbd54SBarry Smith {
133a40ed3dSBarry Smith   PetscFunctionBegin;
143a40ed3dSBarry Smith 
15e3372554SBarry Smith   SETERRQ(PETSC_ERR_SUP,0,"Code not written");
16d64ed03dSBarry Smith #if !defined(USE_PETSC_DEBUG)
17d64ed03dSBarry Smith   PetscFunctionReturn(0);
18d64ed03dSBarry Smith #endif
193b2fbd54SBarry Smith }
203b2fbd54SBarry Smith 
21289bc588SBarry Smith /*
22289bc588SBarry Smith     Factorization code for AIJ format.
23289bc588SBarry Smith */
245615d1e5SSatish Balay #undef __FUNC__
255615d1e5SSatish Balay #define __FUNC__ "MatLUFactorSymbolic_SeqAIJ"
26416022c9SBarry Smith int MatLUFactorSymbolic_SeqAIJ(Mat A,IS isrow,IS iscol,double f,Mat *B)
27289bc588SBarry Smith {
28416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data, *b;
29289bc588SBarry Smith   IS         isicol;
30416022c9SBarry Smith   int        *r,*ic, ierr, i, n = a->m, *ai = a->i, *aj = a->j;
31416022c9SBarry Smith   int        *ainew,*ajnew, jmax,*fill, *ajtmp, nz,shift = a->indexshift;
3291bf9adeSBarry Smith   int        *idnew, idx, row,m,fm, nnz, nzi, realloc = 0,nzbd,*im;
33289bc588SBarry Smith 
343a40ed3dSBarry Smith   PetscFunctionBegin;
35d3cbd50cSLois Curfman McInnes   PetscValidHeaderSpecific(isrow,IS_COOKIE);
36d3cbd50cSLois Curfman McInnes   PetscValidHeaderSpecific(iscol,IS_COOKIE);
373b2fbd54SBarry Smith 
3878b31e54SBarry Smith   ierr = ISInvertPermutation(iscol,&isicol); CHKERRQ(ierr);
39289bc588SBarry Smith   ISGetIndices(isrow,&r); ISGetIndices(isicol,&ic);
40289bc588SBarry Smith 
41289bc588SBarry Smith   /* get new row pointers */
420452661fSBarry Smith   ainew = (int *) PetscMalloc( (n+1)*sizeof(int) ); CHKPTRQ(ainew);
43dbb450caSBarry Smith   ainew[0] = -shift;
44289bc588SBarry Smith   /* don't know how many column pointers are needed so estimate */
45dbb450caSBarry Smith   jmax = (int) (f*ai[n]+(!shift));
460452661fSBarry Smith   ajnew = (int *) PetscMalloc( (jmax)*sizeof(int) ); CHKPTRQ(ajnew);
47289bc588SBarry Smith   /* fill is a linked list of nonzeros in active row */
480452661fSBarry Smith   fill = (int *) PetscMalloc( (2*n+1)*sizeof(int)); CHKPTRQ(fill);
492fb3ed76SBarry Smith   im = fill + n + 1;
50289bc588SBarry Smith   /* idnew is location of diagonal in factor */
510452661fSBarry Smith   idnew = (int *) PetscMalloc( (n+1)*sizeof(int)); CHKPTRQ(idnew);
52dbb450caSBarry Smith   idnew[0] = -shift;
53289bc588SBarry Smith 
54289bc588SBarry Smith   for ( i=0; i<n; i++ ) {
55289bc588SBarry Smith     /* first copy previous fill into linked list */
56289bc588SBarry Smith     nnz     = nz    = ai[r[i]+1] - ai[r[i]];
576b96ef82SSatish Balay     if (!nz) SETERRQ(PETSC_ERR_MAT_LU_ZRPVT,1,"Empty row in matrix");
58dbb450caSBarry Smith     ajtmp   = aj + ai[r[i]] + shift;
59289bc588SBarry Smith     fill[n] = n;
60289bc588SBarry Smith     while (nz--) {
61289bc588SBarry Smith       fm  = n;
62dbb450caSBarry Smith       idx = ic[*ajtmp++ + shift];
63289bc588SBarry Smith       do {
64289bc588SBarry Smith         m  = fm;
65289bc588SBarry Smith         fm = fill[m];
66289bc588SBarry Smith       } while (fm < idx);
67289bc588SBarry Smith       fill[m]   = idx;
68289bc588SBarry Smith       fill[idx] = fm;
69289bc588SBarry Smith     }
70289bc588SBarry Smith     row = fill[n];
71289bc588SBarry Smith     while ( row < i ) {
72dbb450caSBarry Smith       ajtmp = ajnew + idnew[row] + (!shift);
732fb3ed76SBarry Smith       nzbd  = 1 + idnew[row] - ainew[row];
742fb3ed76SBarry Smith       nz    = im[row] - nzbd;
75289bc588SBarry Smith       fm    = row;
762fb3ed76SBarry Smith       while (nz-- > 0) {
77dbb450caSBarry Smith         idx = *ajtmp++ + shift;
782fb3ed76SBarry Smith         nzbd++;
792fb3ed76SBarry Smith         if (idx == i) im[row] = nzbd;
80289bc588SBarry Smith         do {
81289bc588SBarry Smith           m  = fm;
82289bc588SBarry Smith           fm = fill[m];
83289bc588SBarry Smith         } while (fm < idx);
84289bc588SBarry Smith         if (fm != idx) {
85289bc588SBarry Smith           fill[m]   = idx;
86289bc588SBarry Smith           fill[idx] = fm;
87289bc588SBarry Smith           fm        = idx;
88289bc588SBarry Smith           nnz++;
89289bc588SBarry Smith         }
90289bc588SBarry Smith       }
91289bc588SBarry Smith       row = fill[row];
92289bc588SBarry Smith     }
93289bc588SBarry Smith     /* copy new filled row into permanent storage */
94289bc588SBarry Smith     ainew[i+1] = ainew[i] + nnz;
95496e697eSBarry Smith     if (ainew[i+1] > jmax) {
96289bc588SBarry Smith       /* allocate a longer ajnew */
972fb3ed76SBarry Smith       int maxadd;
98dbb450caSBarry Smith       maxadd = (int) ((f*(ai[n]+(!shift))*(n-i+5))/n);
99bbb6d6a8SBarry Smith       if (maxadd < nnz) maxadd = (n-i)*(nnz+1);
1002fb3ed76SBarry Smith       jmax += maxadd;
1010452661fSBarry Smith       ajtmp = (int *) PetscMalloc( jmax*sizeof(int) );CHKPTRQ(ajtmp);
102416022c9SBarry Smith       PetscMemcpy(ajtmp,ajnew,(ainew[i]+shift)*sizeof(int));
1030452661fSBarry Smith       PetscFree(ajnew);
104289bc588SBarry Smith       ajnew = ajtmp;
1052fb3ed76SBarry Smith       realloc++; /* count how many times we realloc */
106289bc588SBarry Smith     }
107dbb450caSBarry Smith     ajtmp = ajnew + ainew[i] + shift;
108289bc588SBarry Smith     fm    = fill[n];
109289bc588SBarry Smith     nzi   = 0;
1102fb3ed76SBarry Smith     im[i] = nnz;
111289bc588SBarry Smith     while (nnz--) {
112289bc588SBarry Smith       if (fm < i) nzi++;
113dbb450caSBarry Smith       *ajtmp++ = fm - shift;
114289bc588SBarry Smith       fm       = fill[fm];
115289bc588SBarry Smith     }
116289bc588SBarry Smith     idnew[i] = ainew[i] + nzi;
117289bc588SBarry Smith   }
118464e8d44SSatish Balay   if (ai[n] != 0) {
119464e8d44SSatish Balay     double af = ((double)ainew[n])/((double)ai[n]);
120981c4779SBarry Smith     PLogInfo(A,"MatLUFactorSymbolic_SeqAIJ:Reallocs %d Fill ratio:given %g needed %g\n",
121f64065bbSBarry Smith              realloc,f,af);
122981c4779SBarry Smith     PLogInfo(A,"MatLUFactorSymbolic_SeqAIJ:Run with -pc_lu_fill %g or use \n",af);
123981c4779SBarry Smith     PLogInfo(A,"MatLUFactorSymbolic_SeqAIJ:PCLUSetFill(pc,%g);\n",af);
124981c4779SBarry Smith     PLogInfo(A,"MatLUFactorSymbolic_SeqAIJ:for best performance.\n");
12505bf559cSSatish Balay   } else {
126981c4779SBarry Smith     PLogInfo(A,"MatLUFactorSymbolic_SeqAIJ: Empty matrix\n");
12705bf559cSSatish Balay   }
1282fb3ed76SBarry Smith 
129898183ecSLois Curfman McInnes   ierr = ISRestoreIndices(isrow,&r); CHKERRQ(ierr);
130898183ecSLois Curfman McInnes   ierr = ISRestoreIndices(isicol,&ic); CHKERRQ(ierr);
1311987afe7SBarry Smith 
1320452661fSBarry Smith   PetscFree(fill);
133289bc588SBarry Smith 
134289bc588SBarry Smith   /* put together the new matrix */
135b4fd4287SBarry Smith   ierr = MatCreateSeqAIJ(A->comm,n,n,0,PETSC_NULL,B); CHKERRQ(ierr);
1361987afe7SBarry Smith   PLogObjectParent(*B,isicol);
137416022c9SBarry Smith   b = (Mat_SeqAIJ *) (*B)->data;
1380452661fSBarry Smith   PetscFree(b->imax);
139416022c9SBarry Smith   b->singlemalloc = 0;
140e8d4e0b9SBarry Smith   /* the next line frees the default space generated by the Create() */
1410452661fSBarry Smith   PetscFree(b->a); PetscFree(b->ilen);
14291bf9adeSBarry Smith   b->a          = (Scalar *) PetscMalloc((ainew[n]+shift+1)*sizeof(Scalar));CHKPTRQ(b->a);
143416022c9SBarry Smith   b->j          = ajnew;
144416022c9SBarry Smith   b->i          = ainew;
145416022c9SBarry Smith   b->diag       = idnew;
146416022c9SBarry Smith   b->ilen       = 0;
147416022c9SBarry Smith   b->imax       = 0;
148416022c9SBarry Smith   b->row        = isrow;
149416022c9SBarry Smith   b->col        = iscol;
15082bf6240SBarry Smith   b->icol       = isicol;
15191bf9adeSBarry Smith   b->solve_work = (Scalar *) PetscMalloc( (n+1)*sizeof(Scalar));CHKPTRQ(b->solve_work);
152416022c9SBarry Smith   /* In b structure:  Free imax, ilen, old a, old j.
1537fd98bd6SLois Curfman McInnes      Allocate idnew, solve_work, new a, new j */
154416022c9SBarry Smith   PLogObjectMemory(*B,(ainew[n]+shift-n)*(sizeof(int)+sizeof(Scalar)));
155416022c9SBarry Smith   b->maxnz = b->nz = ainew[n] + shift;
1567fd98bd6SLois Curfman McInnes 
157ae068f58SLois Curfman McInnes   (*B)->info.factor_mallocs    = realloc;
158ae068f58SLois Curfman McInnes   (*B)->info.fill_ratio_given  = f;
159eea2913aSSatish Balay   if (ai[i] != 0) {
160ae068f58SLois Curfman McInnes     (*B)->info.fill_ratio_needed = ((double)ainew[n])/((double)ai[i]);
161eea2913aSSatish Balay   } else {
162eea2913aSSatish Balay     (*B)->info.fill_ratio_needed = 0.0;
163eea2913aSSatish Balay   }
164ae068f58SLois Curfman McInnes 
1653a40ed3dSBarry Smith   PetscFunctionReturn(0);
166289bc588SBarry Smith }
1670a6dbcc7SLois Curfman McInnes /* ----------------------------------------------------------- */
16841c01911SSatish Balay int Mat_AIJ_CheckInode(Mat);
16941c01911SSatish Balay 
1705615d1e5SSatish Balay #undef __FUNC__
1715615d1e5SSatish Balay #define __FUNC__ "MatLUFactorNumeric_SeqAIJ"
172416022c9SBarry Smith int MatLUFactorNumeric_SeqAIJ(Mat A,Mat *B)
173289bc588SBarry Smith {
174416022c9SBarry Smith   Mat        C = *B;
175416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data, *b = (Mat_SeqAIJ *)C->data;
17682bf6240SBarry Smith   IS         isrow = b->row, isicol = b->icol;
177416022c9SBarry Smith   int        *r,*ic, ierr, i, j, n = a->m, *ai = b->i, *aj = b->j;
1781987afe7SBarry Smith   int        *ajtmpold, *ajtmp, nz, row, *ics, shift = a->indexshift;
179f2582111SSatish Balay   int        *diag_offset = b->diag,diag,k;
18035aab85fSBarry Smith   int        preserve_row_sums = (int) a->ilu_preserve_row_sums;
1813a40ed3dSBarry Smith   register   int    *pj;
1828ecf7165SBarry Smith   Scalar     *rtmp,*v, *pc, multiplier,sum,inner_sum,*rowsums = 0;
18335aab85fSBarry Smith   double     ssum;
18435aab85fSBarry Smith   register   Scalar *pv, *rtmps,*u_values;
185289bc588SBarry Smith 
1863a40ed3dSBarry Smith   PetscFunctionBegin;
18782bf6240SBarry Smith 
18878b31e54SBarry Smith   ierr  = ISGetIndices(isrow,&r); CHKERRQ(ierr);
18978b31e54SBarry Smith   ierr  = ISGetIndices(isicol,&ic); CHKERRQ(ierr);
1900452661fSBarry Smith   rtmp  = (Scalar *) PetscMalloc( (n+1)*sizeof(Scalar) ); CHKPTRQ(rtmp);
19113ae1565SBarry Smith   PetscMemzero(rtmp,(n+1)*sizeof(Scalar));
1920cf60383SBarry Smith   rtmps = rtmp + shift; ics = ic + shift;
193289bc588SBarry Smith 
19435aab85fSBarry Smith   /* precalcuate row sums */
19535aab85fSBarry Smith   if (preserve_row_sums) {
19635aab85fSBarry Smith     rowsums = (Scalar *) PetscMalloc( n*sizeof(Scalar) ); CHKPTRQ(rowsums);
19735aab85fSBarry Smith     for ( i=0; i<n; i++ ) {
19835aab85fSBarry Smith       nz  = a->i[r[i]+1] - a->i[r[i]];
19935aab85fSBarry Smith       v   = a->a + a->i[r[i]] + shift;
20035aab85fSBarry Smith       sum = 0.0;
20135aab85fSBarry Smith       for ( j=0; j<nz; j++ ) sum += v[j];
20235aab85fSBarry Smith       rowsums[i] = sum;
20335aab85fSBarry Smith     }
20435aab85fSBarry Smith   }
20535aab85fSBarry Smith 
206289bc588SBarry Smith   for ( i=0; i<n; i++ ) {
207289bc588SBarry Smith     nz    = ai[i+1] - ai[i];
208dbb450caSBarry Smith     ajtmp = aj + ai[i] + shift;
20948e94559SBarry Smith     for  ( j=0; j<nz; j++ ) rtmps[ajtmp[j]] = 0.0;
210289bc588SBarry Smith 
211289bc588SBarry Smith     /* load in initial (unfactored row) */
212416022c9SBarry Smith     nz       = a->i[r[i]+1] - a->i[r[i]];
213416022c9SBarry Smith     ajtmpold = a->j + a->i[r[i]] + shift;
214416022c9SBarry Smith     v        = a->a + a->i[r[i]] + shift;
2150cf60383SBarry Smith     for ( j=0; j<nz; j++ ) rtmp[ics[ajtmpold[j]]] =  v[j];
216289bc588SBarry Smith 
217dbb450caSBarry Smith     row = *ajtmp++ + shift;
218f2582111SSatish Balay       while  (row < i ) {
2198c37ef55SBarry Smith       pc = rtmp + row;
2208c37ef55SBarry Smith       if (*pc != 0.0) {
2211987afe7SBarry Smith         pv         = b->a + diag_offset[row] + shift;
2221987afe7SBarry Smith         pj         = b->j + diag_offset[row] + (!shift);
22335aab85fSBarry Smith         multiplier = *pc / *pv++;
2248c37ef55SBarry Smith         *pc        = multiplier;
225f2582111SSatish Balay         nz         = ai[row+1] - diag_offset[row] - 1;
226f2582111SSatish Balay         for (j=0; j<nz; j++) rtmps[pj[j]] -= multiplier * pv[j];
227f2582111SSatish Balay         PLogFlops(2*nz);
228289bc588SBarry Smith       }
229dbb450caSBarry Smith       row = *ajtmp++ + shift;
230289bc588SBarry Smith     }
231416022c9SBarry Smith     /* finished row so stick it into b->a */
232416022c9SBarry Smith     pv = b->a + ai[i] + shift;
233416022c9SBarry Smith     pj = b->j + ai[i] + shift;
2348c37ef55SBarry Smith     nz = ai[i+1] - ai[i];
235416022c9SBarry Smith     for ( j=0; j<nz; j++ ) {pv[j] = rtmps[pj[j]];}
23635aab85fSBarry Smith     diag = diag_offset[i] - ai[i];
23735aab85fSBarry Smith     /*
23835aab85fSBarry Smith           Possibly adjust diagonal entry on current row to force
23935aab85fSBarry Smith         LU matrix to have same row sum as initial matrix.
24035aab85fSBarry Smith     */
241d708749eSBarry Smith     if (pv[diag] == 0.0) {
242d708749eSBarry Smith       SETERRQ(PETSC_ERR_MAT_LU_ZRPVT,0,"Zero pivot");
243d708749eSBarry Smith     }
24435aab85fSBarry Smith     if (preserve_row_sums) {
24535aab85fSBarry Smith       pj  = b->j + ai[i] + shift;
24635aab85fSBarry Smith       sum = rowsums[i];
24735aab85fSBarry Smith       for ( j=0; j<diag; j++ ) {
24835aab85fSBarry Smith         u_values  = b->a + diag_offset[pj[j]] + shift;
24935aab85fSBarry Smith         nz        = ai[pj[j]+1] - diag_offset[pj[j]];
25035aab85fSBarry Smith         inner_sum = 0.0;
25135aab85fSBarry Smith         for ( k=0; k<nz; k++ ) {
25235aab85fSBarry Smith           inner_sum += u_values[k];
25335aab85fSBarry Smith         }
25435aab85fSBarry Smith         sum -= pv[j]*inner_sum;
25535aab85fSBarry Smith 
25635aab85fSBarry Smith       }
25735aab85fSBarry Smith       nz       = ai[i+1] - diag_offset[i] - 1;
25835aab85fSBarry Smith       u_values = b->a + diag_offset[i] + 1 + shift;
25935aab85fSBarry Smith       for ( k=0; k<nz; k++ ) {
26035aab85fSBarry Smith         sum -= u_values[k];
26135aab85fSBarry Smith       }
26235aab85fSBarry Smith       ssum = PetscAbsScalar(sum/pv[diag]);
26335aab85fSBarry Smith       if (ssum < 1000. && ssum > .001) pv[diag] = sum;
26435aab85fSBarry Smith     }
26535aab85fSBarry Smith     /* check pivot entry for current row */
2668c37ef55SBarry Smith   }
2670f11f9aeSSatish Balay 
26835aab85fSBarry Smith   /* invert diagonal entries for simplier triangular solves */
26935aab85fSBarry Smith   for ( i=0; i<n; i++ ) {
27035aab85fSBarry Smith     b->a[diag_offset[i]+shift] = 1.0/b->a[diag_offset[i]+shift];
27135aab85fSBarry Smith   }
27235aab85fSBarry Smith 
27335aab85fSBarry Smith   if (preserve_row_sums) PetscFree(rowsums);
2740452661fSBarry Smith   PetscFree(rtmp);
27578b31e54SBarry Smith   ierr = ISRestoreIndices(isicol,&ic); CHKERRQ(ierr);
27678b31e54SBarry Smith   ierr = ISRestoreIndices(isrow,&r); CHKERRQ(ierr);
277416022c9SBarry Smith   C->factor = FACTOR_LU;
27841c01911SSatish Balay   ierr = Mat_AIJ_CheckInode(C); CHKERRQ(ierr);
279c456f294SBarry Smith   C->assembled = PETSC_TRUE;
280416022c9SBarry Smith   PLogFlops(b->n);
2813a40ed3dSBarry Smith   PetscFunctionReturn(0);
282289bc588SBarry Smith }
2830a6dbcc7SLois Curfman McInnes /* ----------------------------------------------------------- */
2845615d1e5SSatish Balay #undef __FUNC__
2855615d1e5SSatish Balay #define __FUNC__ "MatLUFactor_SeqAIJ"
286416022c9SBarry Smith int MatLUFactor_SeqAIJ(Mat A,IS row,IS col,double f)
287da3a660dSBarry Smith {
288416022c9SBarry Smith   Mat_SeqAIJ     *mat = (Mat_SeqAIJ *) A->data;
2896abc6512SBarry Smith   int            ierr;
290416022c9SBarry Smith   Mat            C;
291*f830108cSBarry Smith   PetscOps       *Abops;
292*f830108cSBarry Smith   struct _MatOps *Aops;
293416022c9SBarry Smith 
2943a40ed3dSBarry Smith   PetscFunctionBegin;
295f2582111SSatish Balay   ierr = MatLUFactorSymbolic(A,row,col,f,&C); CHKERRQ(ierr);
296f2582111SSatish Balay   ierr = MatLUFactorNumeric(A,&C); CHKERRQ(ierr);
297da3a660dSBarry Smith 
298da3a660dSBarry Smith   /* free all the data structures from mat */
2990452661fSBarry Smith   PetscFree(mat->a);
3000452661fSBarry Smith   if (!mat->singlemalloc) {PetscFree(mat->i); PetscFree(mat->j);}
3010452661fSBarry Smith   if (mat->diag) PetscFree(mat->diag);
3020452661fSBarry Smith   if (mat->ilen) PetscFree(mat->ilen);
3030452661fSBarry Smith   if (mat->imax) PetscFree(mat->imax);
3040452661fSBarry Smith   if (mat->solve_work) PetscFree(mat->solve_work);
305a7a49059SBarry Smith   if (mat->inode.size) PetscFree(mat->inode.size);
3060452661fSBarry Smith   PetscFree(mat);
307da3a660dSBarry Smith 
308*f830108cSBarry Smith   /*
309*f830108cSBarry Smith        This is horrible, horrible code. We need to keep the
310*f830108cSBarry Smith     A pointers for the bops and ops but copy everything
311*f830108cSBarry Smith     else from C.
312*f830108cSBarry Smith   */
313*f830108cSBarry Smith   Abops = A->bops;
314*f830108cSBarry Smith   Aops  = A->ops;
315f09e8eb9SSatish Balay   PetscMemcpy(A,C,sizeof(struct _p_Mat));
316*f830108cSBarry Smith   A->bops = Abops;
317*f830108cSBarry Smith   A->ops  = Aops;
318*f830108cSBarry Smith 
3190452661fSBarry Smith   PetscHeaderDestroy(C);
3203a40ed3dSBarry Smith   PetscFunctionReturn(0);
321da3a660dSBarry Smith }
3220a6dbcc7SLois Curfman McInnes /* ----------------------------------------------------------- */
3235615d1e5SSatish Balay #undef __FUNC__
3245615d1e5SSatish Balay #define __FUNC__ "MatSolve_SeqAIJ"
325416022c9SBarry Smith int MatSolve_SeqAIJ(Mat A,Vec bb, Vec xx)
3268c37ef55SBarry Smith {
327416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data;
328416022c9SBarry Smith   IS         iscol = a->col, isrow = a->row;
329416022c9SBarry Smith   int        *r,*c, ierr, i,  n = a->m, *vi, *ai = a->i, *aj = a->j;
3303b2fbd54SBarry Smith   int        nz,shift = a->indexshift,*rout,*cout;
331416022c9SBarry Smith   Scalar     *x,*b,*tmp, *tmps, *aa = a->a, sum, *v;
3328c37ef55SBarry Smith 
3333a40ed3dSBarry Smith   PetscFunctionBegin;
3343a40ed3dSBarry Smith   if (!n) PetscFunctionReturn(0);
33591bf9adeSBarry Smith 
33690f02eecSBarry Smith   VecGetArray_Fast(bb,b);
33790f02eecSBarry Smith   VecGetArray_Fast(xx,x);
338416022c9SBarry Smith   tmp  = a->solve_work;
3398c37ef55SBarry Smith 
3403b2fbd54SBarry Smith   ierr = ISGetIndices(isrow,&rout);CHKERRQ(ierr); r = rout;
3413b2fbd54SBarry Smith   ierr = ISGetIndices(iscol,&cout);CHKERRQ(ierr); c = cout + (n-1);
3428c37ef55SBarry Smith 
3438c37ef55SBarry Smith   /* forward solve the lower triangular */
3448c37ef55SBarry Smith   tmp[0] = b[*r++];
3450cf60383SBarry Smith   tmps   = tmp + shift;
3468c37ef55SBarry Smith   for ( i=1; i<n; i++ ) {
347dbb450caSBarry Smith     v   = aa + ai[i] + shift;
348dbb450caSBarry Smith     vi  = aj + ai[i] + shift;
349416022c9SBarry Smith     nz  = a->diag[i] - ai[i];
3508c37ef55SBarry Smith     sum = b[*r++];
3510cf60383SBarry Smith     while (nz--) sum -= *v++ * tmps[*vi++];
3528c37ef55SBarry Smith     tmp[i] = sum;
3538c37ef55SBarry Smith   }
3548c37ef55SBarry Smith 
3558c37ef55SBarry Smith   /* backward solve the upper triangular */
3568c37ef55SBarry Smith   for ( i=n-1; i>=0; i-- ){
357416022c9SBarry Smith     v   = aa + a->diag[i] + (!shift);
358416022c9SBarry Smith     vi  = aj + a->diag[i] + (!shift);
359416022c9SBarry Smith     nz  = ai[i+1] - a->diag[i] - 1;
3608c37ef55SBarry Smith     sum = tmp[i];
3610cf60383SBarry Smith     while (nz--) sum -= *v++ * tmps[*vi++];
362416022c9SBarry Smith     x[*c--] = tmp[i] = sum*aa[a->diag[i]+shift];
3638c37ef55SBarry Smith   }
3648c37ef55SBarry Smith 
3653b2fbd54SBarry Smith   ierr = ISRestoreIndices(isrow,&rout); CHKERRQ(ierr);
3663b2fbd54SBarry Smith   ierr = ISRestoreIndices(iscol,&cout); CHKERRQ(ierr);
367416022c9SBarry Smith   PLogFlops(2*a->nz - a->n);
3683a40ed3dSBarry Smith   PetscFunctionReturn(0);
3698c37ef55SBarry Smith }
370026e39d0SSatish Balay 
371930ae53cSBarry Smith /* ----------------------------------------------------------- */
372930ae53cSBarry Smith #undef __FUNC__
373930ae53cSBarry Smith #define __FUNC__ "MatSolve_SeqAIJ_NaturalOrdering"
374930ae53cSBarry Smith int MatSolve_SeqAIJ_NaturalOrdering(Mat A,Vec bb, Vec xx)
375930ae53cSBarry Smith {
376930ae53cSBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data;
377930ae53cSBarry Smith   int        i,  n = a->m, *vi, *ai = a->i, *aj = a->j,nz, *adiag = a->diag;
3783a40ed3dSBarry Smith   int        ai_i, adiag_i,ierr;
379930ae53cSBarry Smith   Scalar     *x,*b, *aa = a->a, sum, *v;
380930ae53cSBarry Smith 
3813a40ed3dSBarry Smith   PetscFunctionBegin;
3823a40ed3dSBarry Smith   if (!n) PetscFunctionReturn(0);
383930ae53cSBarry Smith   if (a->indexshift) {
3843a40ed3dSBarry Smith      ierr = MatSolve_SeqAIJ(A,bb,xx);CHKERRQ(ierr);
3853a40ed3dSBarry Smith      PetscFunctionReturn(0);
386930ae53cSBarry Smith   }
387930ae53cSBarry Smith 
388930ae53cSBarry Smith   VecGetArray_Fast(bb,b);
389930ae53cSBarry Smith   VecGetArray_Fast(xx,x);
390930ae53cSBarry Smith 
391319c5e4dSSatish Balay #if defined(USE_FORTRAN_KERNELS)
3921c4feecaSSatish Balay   fortransolveaij_(&n,x,ai,aj,adiag,aa,b);
3931c4feecaSSatish Balay #else
394930ae53cSBarry Smith   /* forward solve the lower triangular */
395930ae53cSBarry Smith   x[0] = b[0];
396930ae53cSBarry Smith   for ( i=1; i<n; i++ ) {
397930ae53cSBarry Smith     ai_i = ai[i];
398930ae53cSBarry Smith     v    = aa + ai_i;
399930ae53cSBarry Smith     vi   = aj + ai_i;
400930ae53cSBarry Smith     nz   = adiag[i] - ai_i;
401930ae53cSBarry Smith     sum  = b[i];
402930ae53cSBarry Smith     while (nz--) sum -= *v++ * x[*vi++];
403930ae53cSBarry Smith     x[i] = sum;
404930ae53cSBarry Smith   }
405930ae53cSBarry Smith 
406930ae53cSBarry Smith   /* backward solve the upper triangular */
407930ae53cSBarry Smith   for ( i=n-1; i>=0; i-- ){
408930ae53cSBarry Smith     adiag_i = adiag[i];
409d708749eSBarry Smith     v       = aa + adiag_i + 1;
410d708749eSBarry Smith     vi      = aj + adiag_i + 1;
411930ae53cSBarry Smith     nz      = ai[i+1] - adiag_i - 1;
412930ae53cSBarry Smith     sum     = x[i];
413930ae53cSBarry Smith     while (nz--) sum -= *v++ * x[*vi++];
414930ae53cSBarry Smith     x[i]    = sum*aa[adiag_i];
415930ae53cSBarry Smith   }
4161c4feecaSSatish Balay #endif
417930ae53cSBarry Smith   PLogFlops(2*a->nz - a->n);
4183a40ed3dSBarry Smith   PetscFunctionReturn(0);
419930ae53cSBarry Smith }
420930ae53cSBarry Smith 
4215615d1e5SSatish Balay #undef __FUNC__
4225615d1e5SSatish Balay #define __FUNC__ "MatSolveAdd_SeqAIJ"
423416022c9SBarry Smith int MatSolveAdd_SeqAIJ(Mat A,Vec bb, Vec yy, Vec xx)
424da3a660dSBarry Smith {
425416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data;
426416022c9SBarry Smith   IS         iscol = a->col, isrow = a->row;
427416022c9SBarry Smith   int        *r,*c, ierr, i,  n = a->m, *vi, *ai = a->i, *aj = a->j;
4283b2fbd54SBarry Smith   int        nz, shift = a->indexshift,*rout,*cout;
429416022c9SBarry Smith   Scalar     *x,*b,*tmp, *aa = a->a, sum, *v;
430da3a660dSBarry Smith 
4313a40ed3dSBarry Smith   PetscFunctionBegin;
43278b31e54SBarry Smith   if (yy != xx) {ierr = VecCopy(yy,xx); CHKERRQ(ierr);}
433da3a660dSBarry Smith 
43490f02eecSBarry Smith   VecGetArray_Fast(bb,b);
43590f02eecSBarry Smith   VecGetArray_Fast(xx,x);
436416022c9SBarry Smith   tmp  = a->solve_work;
437da3a660dSBarry Smith 
4383b2fbd54SBarry Smith   ierr = ISGetIndices(isrow,&rout); CHKERRQ(ierr); r = rout;
4393b2fbd54SBarry Smith   ierr = ISGetIndices(iscol,&cout); CHKERRQ(ierr); c = cout + (n-1);
440da3a660dSBarry Smith 
441da3a660dSBarry Smith   /* forward solve the lower triangular */
442da3a660dSBarry Smith   tmp[0] = b[*r++];
443da3a660dSBarry Smith   for ( i=1; i<n; i++ ) {
444dbb450caSBarry Smith     v   = aa + ai[i] + shift;
445dbb450caSBarry Smith     vi  = aj + ai[i] + shift;
446416022c9SBarry Smith     nz  = a->diag[i] - ai[i];
447da3a660dSBarry Smith     sum = b[*r++];
448dbb450caSBarry Smith     while (nz--) sum -= *v++ * tmp[*vi++ + shift];
449da3a660dSBarry Smith     tmp[i] = sum;
450da3a660dSBarry Smith   }
451da3a660dSBarry Smith 
452da3a660dSBarry Smith   /* backward solve the upper triangular */
453da3a660dSBarry Smith   for ( i=n-1; i>=0; i-- ){
454416022c9SBarry Smith     v   = aa + a->diag[i] + (!shift);
455416022c9SBarry Smith     vi  = aj + a->diag[i] + (!shift);
456416022c9SBarry Smith     nz  = ai[i+1] - a->diag[i] - 1;
457da3a660dSBarry Smith     sum = tmp[i];
458dbb450caSBarry Smith     while (nz--) sum -= *v++ * tmp[*vi++ + shift];
459416022c9SBarry Smith     tmp[i] = sum*aa[a->diag[i]+shift];
460da3a660dSBarry Smith     x[*c--] += tmp[i];
461da3a660dSBarry Smith   }
462da3a660dSBarry Smith 
4633b2fbd54SBarry Smith   ierr = ISRestoreIndices(isrow,&rout); CHKERRQ(ierr);
4643b2fbd54SBarry Smith   ierr = ISRestoreIndices(iscol,&cout); CHKERRQ(ierr);
465416022c9SBarry Smith   PLogFlops(2*a->nz);
466898183ecSLois Curfman McInnes 
4673a40ed3dSBarry Smith   PetscFunctionReturn(0);
468da3a660dSBarry Smith }
469da3a660dSBarry Smith /* -------------------------------------------------------------------*/
4705615d1e5SSatish Balay #undef __FUNC__
4715615d1e5SSatish Balay #define __FUNC__ "MatSolveTrans_SeqAIJ"
472416022c9SBarry Smith int MatSolveTrans_SeqAIJ(Mat A,Vec bb, Vec xx)
473da3a660dSBarry Smith {
474416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data;
475416022c9SBarry Smith   IS         iscol = a->col, isrow = a->row, invisrow,inviscol;
476416022c9SBarry Smith   int        *r,*c, ierr, i, n = a->m, *vi, *ai = a->i, *aj = a->j;
4773b2fbd54SBarry Smith   int        nz,shift = a->indexshift,*rout,*cout;
478416022c9SBarry Smith   Scalar     *x,*b,*tmp, *aa = a->a, *v;
479da3a660dSBarry Smith 
4803a40ed3dSBarry Smith   PetscFunctionBegin;
48190f02eecSBarry Smith   VecGetArray_Fast(bb,b);
48290f02eecSBarry Smith   VecGetArray_Fast(xx,x);
483416022c9SBarry Smith   tmp  = a->solve_work;
484da3a660dSBarry Smith 
485da3a660dSBarry Smith   /* invert the permutations */
48678b31e54SBarry Smith   ierr = ISInvertPermutation(isrow,&invisrow); CHKERRQ(ierr);
48778b31e54SBarry Smith   ierr = ISInvertPermutation(iscol,&inviscol); CHKERRQ(ierr);
488da3a660dSBarry Smith 
4893b2fbd54SBarry Smith   ierr = ISGetIndices(invisrow,&rout); CHKERRQ(ierr); r = rout;
4903b2fbd54SBarry Smith   ierr = ISGetIndices(inviscol,&cout); CHKERRQ(ierr); c = cout;
491da3a660dSBarry Smith 
492da3a660dSBarry Smith   /* copy the b into temp work space according to permutation */
493da3a660dSBarry Smith   for ( i=0; i<n; i++ ) tmp[c[i]] = b[i];
494da3a660dSBarry Smith 
495da3a660dSBarry Smith   /* forward solve the U^T */
496da3a660dSBarry Smith   for ( i=0; i<n; i++ ) {
497416022c9SBarry Smith     v   = aa + a->diag[i] + shift;
498416022c9SBarry Smith     vi  = aj + a->diag[i] + (!shift);
499416022c9SBarry Smith     nz  = ai[i+1] - a->diag[i] - 1;
500da3a660dSBarry Smith     tmp[i] *= *v++;
501da3a660dSBarry Smith     while (nz--) {
502dbb450caSBarry Smith       tmp[*vi++ + shift] -= (*v++)*tmp[i];
503da3a660dSBarry Smith     }
504da3a660dSBarry Smith   }
505da3a660dSBarry Smith 
506da3a660dSBarry Smith   /* backward solve the L^T */
507da3a660dSBarry Smith   for ( i=n-1; i>=0; i-- ){
508416022c9SBarry Smith     v   = aa + a->diag[i] - 1 + shift;
509416022c9SBarry Smith     vi  = aj + a->diag[i] - 1 + shift;
510416022c9SBarry Smith     nz  = a->diag[i] - ai[i];
511da3a660dSBarry Smith     while (nz--) {
512dbb450caSBarry Smith       tmp[*vi-- + shift] -= (*v--)*tmp[i];
513da3a660dSBarry Smith     }
514da3a660dSBarry Smith   }
515da3a660dSBarry Smith 
516da3a660dSBarry Smith   /* copy tmp into x according to permutation */
517da3a660dSBarry Smith   for ( i=0; i<n; i++ ) x[r[i]] = tmp[i];
518da3a660dSBarry Smith 
5193b2fbd54SBarry Smith   ierr = ISRestoreIndices(invisrow,&rout); CHKERRQ(ierr);
5203b2fbd54SBarry Smith   ierr = ISRestoreIndices(inviscol,&cout); CHKERRQ(ierr);
521898183ecSLois Curfman McInnes   ierr = ISDestroy(invisrow); CHKERRQ(ierr);
522898183ecSLois Curfman McInnes   ierr = ISDestroy(inviscol); CHKERRQ(ierr);
523da3a660dSBarry Smith 
524416022c9SBarry Smith   PLogFlops(2*a->nz-a->n);
5253a40ed3dSBarry Smith   PetscFunctionReturn(0);
526da3a660dSBarry Smith }
527da3a660dSBarry Smith 
5285615d1e5SSatish Balay #undef __FUNC__
5295615d1e5SSatish Balay #define __FUNC__ "MatSolveTransAdd_SeqAIJ"
530416022c9SBarry Smith int MatSolveTransAdd_SeqAIJ(Mat A,Vec bb, Vec zz,Vec xx)
531da3a660dSBarry Smith {
532416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data;
533416022c9SBarry Smith   IS         iscol = a->col, isrow = a->row, invisrow,inviscol;
534416022c9SBarry Smith   int        *r,*c, ierr, i, n = a->m, *vi, *ai = a->i, *aj = a->j;
5353b2fbd54SBarry Smith   int        nz,shift = a->indexshift, *rout, *cout;
536416022c9SBarry Smith   Scalar     *x,*b,*tmp, *aa = a->a, *v;
5376abc6512SBarry Smith 
5383a40ed3dSBarry Smith   PetscFunctionBegin;
5396abc6512SBarry Smith   if (zz != xx) VecCopy(zz,xx);
5406abc6512SBarry Smith 
54190f02eecSBarry Smith   VecGetArray_Fast(bb,b);
54290f02eecSBarry Smith   VecGetArray_Fast(xx,x);
543416022c9SBarry Smith   tmp = a->solve_work;
5446abc6512SBarry Smith 
5456abc6512SBarry Smith   /* invert the permutations */
54678b31e54SBarry Smith   ierr = ISInvertPermutation(isrow,&invisrow); CHKERRQ(ierr);
54778b31e54SBarry Smith   ierr = ISInvertPermutation(iscol,&inviscol); CHKERRQ(ierr);
5483b2fbd54SBarry Smith   ierr = ISGetIndices(invisrow,&rout); CHKERRQ(ierr); r = rout;
5493b2fbd54SBarry Smith   ierr = ISGetIndices(inviscol,&cout); CHKERRQ(ierr); c = cout;
5506abc6512SBarry Smith 
5516abc6512SBarry Smith   /* copy the b into temp work space according to permutation */
5526abc6512SBarry Smith   for ( i=0; i<n; i++ ) tmp[c[i]] = b[i];
5536abc6512SBarry Smith 
5546abc6512SBarry Smith   /* forward solve the U^T */
5556abc6512SBarry Smith   for ( i=0; i<n; i++ ) {
556416022c9SBarry Smith     v   = aa + a->diag[i] + shift;
557416022c9SBarry Smith     vi  = aj + a->diag[i] + (!shift);
558416022c9SBarry Smith     nz  = ai[i+1] - a->diag[i] - 1;
5596abc6512SBarry Smith     tmp[i] *= *v++;
5606abc6512SBarry Smith     while (nz--) {
561dbb450caSBarry Smith       tmp[*vi++ + shift] -= (*v++)*tmp[i];
5626abc6512SBarry Smith     }
5636abc6512SBarry Smith   }
5646abc6512SBarry Smith 
5656abc6512SBarry Smith   /* backward solve the L^T */
5666abc6512SBarry Smith   for ( i=n-1; i>=0; i-- ){
567416022c9SBarry Smith     v   = aa + a->diag[i] - 1 + shift;
568416022c9SBarry Smith     vi  = aj + a->diag[i] - 1 + shift;
569416022c9SBarry Smith     nz  = a->diag[i] - ai[i];
5706abc6512SBarry Smith     while (nz--) {
571dbb450caSBarry Smith       tmp[*vi-- + shift] -= (*v--)*tmp[i];
5726abc6512SBarry Smith     }
5736abc6512SBarry Smith   }
5746abc6512SBarry Smith 
5756abc6512SBarry Smith   /* copy tmp into x according to permutation */
5766abc6512SBarry Smith   for ( i=0; i<n; i++ ) x[r[i]] += tmp[i];
5776abc6512SBarry Smith 
5783b2fbd54SBarry Smith   ierr = ISRestoreIndices(invisrow,&rout); CHKERRQ(ierr);
5793b2fbd54SBarry Smith   ierr = ISRestoreIndices(inviscol,&cout); CHKERRQ(ierr);
580898183ecSLois Curfman McInnes   ierr = ISDestroy(invisrow); CHKERRQ(ierr);
581898183ecSLois Curfman McInnes   ierr = ISDestroy(inviscol); CHKERRQ(ierr);
5826abc6512SBarry Smith 
583416022c9SBarry Smith   PLogFlops(2*a->nz);
5843a40ed3dSBarry Smith   PetscFunctionReturn(0);
585da3a660dSBarry Smith }
5869e25ed09SBarry Smith /* ----------------------------------------------------------------*/
58708480c60SBarry Smith 
5885615d1e5SSatish Balay #undef __FUNC__
5895615d1e5SSatish Balay #define __FUNC__ "MatILUFactorSymbolic_SeqAIJ"
59008480c60SBarry Smith int MatILUFactorSymbolic_SeqAIJ(Mat A,IS isrow,IS iscol,double f,int levels,Mat *fact)
5919e25ed09SBarry Smith {
592416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ *) A->data, *b;
5939e25ed09SBarry Smith   IS         isicol;
594416022c9SBarry Smith   int        *r,*ic, ierr, prow, n = a->m, *ai = a->i, *aj = a->j;
59556beaf04SBarry Smith   int        *ainew,*ajnew, jmax,*fill, *xi, nz, *im,*ajfill,*flev;
59656beaf04SBarry Smith   int        *dloc, idx, row,m,fm, nzf, nzi,len,  realloc = 0;
597416022c9SBarry Smith   int        incrlev,nnz,i,shift = a->indexshift;
59877c4ece6SBarry Smith   PetscTruth col_identity, row_identity;
5999e25ed09SBarry Smith 
6003a40ed3dSBarry Smith   PetscFunctionBegin;
60182bf6240SBarry Smith   ierr = ISInvertPermutation(iscol,&isicol); CHKERRQ(ierr);
60282bf6240SBarry Smith 
60308480c60SBarry Smith   /* special case that simply copies fill pattern */
60477c4ece6SBarry Smith   ISIdentity(isrow,&row_identity); ISIdentity(iscol,&col_identity);
60577c4ece6SBarry Smith   if (levels == 0 && row_identity && col_identity) {
6063d1612f7SBarry Smith     ierr = MatConvertSameType_SeqAIJ(A,fact,DO_NOT_COPY_VALUES); CHKERRQ(ierr);
60708480c60SBarry Smith     (*fact)->factor = FACTOR_LU;
60808480c60SBarry Smith     b               = (Mat_SeqAIJ *) (*fact)->data;
60908480c60SBarry Smith     if (!b->diag) {
61008480c60SBarry Smith       ierr = MatMarkDiag_SeqAIJ(*fact); CHKERRQ(ierr);
61108480c60SBarry Smith     }
61208480c60SBarry Smith     b->row             = isrow;
61308480c60SBarry Smith     b->col             = iscol;
61482bf6240SBarry Smith     b->icol            = isicol;
6150452661fSBarry Smith     b->solve_work      = (Scalar *) PetscMalloc((b->m+1)*sizeof(Scalar));CHKPTRQ(b->solve_work);
616*f830108cSBarry Smith     (*fact)->ops->solve = MatSolve_SeqAIJ_NaturalOrdering;
6173a40ed3dSBarry Smith     PetscFunctionReturn(0);
61808480c60SBarry Smith   }
61908480c60SBarry Smith 
620898183ecSLois Curfman McInnes   ierr = ISGetIndices(isrow,&r); CHKERRQ(ierr);
621898183ecSLois Curfman McInnes   ierr = ISGetIndices(isicol,&ic); CHKERRQ(ierr);
6229e25ed09SBarry Smith 
6239e25ed09SBarry Smith   /* get new row pointers */
6240452661fSBarry Smith   ainew = (int *) PetscMalloc( (n+1)*sizeof(int) ); CHKPTRQ(ainew);
625dbb450caSBarry Smith   ainew[0] = -shift;
6269e25ed09SBarry Smith   /* don't know how many column pointers are needed so estimate */
627dbb450caSBarry Smith   jmax = (int) (f*(ai[n]+!shift));
6280452661fSBarry Smith   ajnew = (int *) PetscMalloc( (jmax)*sizeof(int) ); CHKPTRQ(ajnew);
6299e25ed09SBarry Smith   /* ajfill is level of fill for each fill entry */
6300452661fSBarry Smith   ajfill = (int *) PetscMalloc( (jmax)*sizeof(int) ); CHKPTRQ(ajfill);
6319e25ed09SBarry Smith   /* fill is a linked list of nonzeros in active row */
6320452661fSBarry Smith   fill = (int *) PetscMalloc( (n+1)*sizeof(int)); CHKPTRQ(fill);
63356beaf04SBarry Smith   /* im is level for each filled value */
6340452661fSBarry Smith   im = (int *) PetscMalloc( (n+1)*sizeof(int)); CHKPTRQ(im);
63556beaf04SBarry Smith   /* dloc is location of diagonal in factor */
6360452661fSBarry Smith   dloc = (int *) PetscMalloc( (n+1)*sizeof(int)); CHKPTRQ(dloc);
63756beaf04SBarry Smith   dloc[0]  = 0;
63856beaf04SBarry Smith   for ( prow=0; prow<n; prow++ ) {
6399e25ed09SBarry Smith     /* first copy previous fill into linked list */
64056beaf04SBarry Smith     nzf     = nz  = ai[r[prow]+1] - ai[r[prow]];
641385f7a74SSatish Balay     if (!nz) SETERRQ(PETSC_ERR_MAT_LU_ZRPVT,1,"Empty row in matrix");
642dbb450caSBarry Smith     xi      = aj + ai[r[prow]] + shift;
6439e25ed09SBarry Smith     fill[n] = n;
6449e25ed09SBarry Smith     while (nz--) {
6459e25ed09SBarry Smith       fm  = n;
646dbb450caSBarry Smith       idx = ic[*xi++ + shift];
6479e25ed09SBarry Smith       do {
6489e25ed09SBarry Smith         m  = fm;
6499e25ed09SBarry Smith         fm = fill[m];
6509e25ed09SBarry Smith       } while (fm < idx);
6519e25ed09SBarry Smith       fill[m]   = idx;
6529e25ed09SBarry Smith       fill[idx] = fm;
65356beaf04SBarry Smith       im[idx]   = 0;
6549e25ed09SBarry Smith     }
65556beaf04SBarry Smith     nzi = 0;
6569e25ed09SBarry Smith     row = fill[n];
65756beaf04SBarry Smith     while ( row < prow ) {
65856beaf04SBarry Smith       incrlev = im[row] + 1;
65956beaf04SBarry Smith       nz      = dloc[row];
660dbb450caSBarry Smith       xi      = ajnew  + ainew[row] + shift + nz;
661dbb450caSBarry Smith       flev    = ajfill + ainew[row] + shift + nz + 1;
662416022c9SBarry Smith       nnz     = ainew[row+1] - ainew[row] - nz - 1;
663dbb450caSBarry Smith       if (*xi++ + shift != row) {
664965fcd8bSBarry Smith         SETERRQ(PETSC_ERR_MAT_LU_ZRPVT,0,"Zero pivot: try running with -pc_ilu_nonzeros_along_diagonal");
66556beaf04SBarry Smith       }
66656beaf04SBarry Smith       fm      = row;
66756beaf04SBarry Smith       while (nnz-- > 0) {
668dbb450caSBarry Smith         idx = *xi++ + shift;
66956beaf04SBarry Smith         if (*flev + incrlev > levels) {
67056beaf04SBarry Smith           flev++;
67156beaf04SBarry Smith           continue;
67256beaf04SBarry Smith         }
67356beaf04SBarry Smith         do {
6749e25ed09SBarry Smith           m  = fm;
6759e25ed09SBarry Smith           fm = fill[m];
67656beaf04SBarry Smith         } while (fm < idx);
6779e25ed09SBarry Smith         if (fm != idx) {
67856beaf04SBarry Smith           im[idx]   = *flev + incrlev;
6799e25ed09SBarry Smith           fill[m]   = idx;
6809e25ed09SBarry Smith           fill[idx] = fm;
6819e25ed09SBarry Smith           fm        = idx;
68256beaf04SBarry Smith           nzf++;
6839e25ed09SBarry Smith         }
68456beaf04SBarry Smith         else {
68556beaf04SBarry Smith           if (im[idx] > *flev + incrlev) im[idx] = *flev+incrlev;
6869e25ed09SBarry Smith         }
68756beaf04SBarry Smith         flev++;
6889e25ed09SBarry Smith       }
6899e25ed09SBarry Smith       row = fill[row];
69056beaf04SBarry Smith       nzi++;
6919e25ed09SBarry Smith     }
6929e25ed09SBarry Smith     /* copy new filled row into permanent storage */
69356beaf04SBarry Smith     ainew[prow+1] = ainew[prow] + nzf;
694d7e8b826SBarry Smith     if (ainew[prow+1] > jmax-shift) {
6959e25ed09SBarry Smith       /* allocate a longer ajnew */
696bbb6d6a8SBarry Smith       int maxadd;
697dbb450caSBarry Smith       maxadd = (int) ((f*(ai[n]+!shift)*(n-prow+5))/n);
69856beaf04SBarry Smith       if (maxadd < nzf) maxadd = (n-prow)*(nzf+1);
699bbb6d6a8SBarry Smith       jmax += maxadd;
7000452661fSBarry Smith       xi = (int *) PetscMalloc( jmax*sizeof(int) );CHKPTRQ(xi);
701416022c9SBarry Smith       PetscMemcpy(xi,ajnew,(ainew[prow]+shift)*sizeof(int));
7020452661fSBarry Smith       PetscFree(ajnew);
70356beaf04SBarry Smith       ajnew = xi;
7049e25ed09SBarry Smith       /* allocate a longer ajfill */
7050452661fSBarry Smith       xi = (int *) PetscMalloc( jmax*sizeof(int) );CHKPTRQ(xi);
706416022c9SBarry Smith       PetscMemcpy(xi,ajfill,(ainew[prow]+shift)*sizeof(int));
7070452661fSBarry Smith       PetscFree(ajfill);
70856beaf04SBarry Smith       ajfill = xi;
709bbb6d6a8SBarry Smith       realloc++;
7109e25ed09SBarry Smith     }
711dbb450caSBarry Smith     xi          = ajnew + ainew[prow] + shift;
712dbb450caSBarry Smith     flev        = ajfill + ainew[prow] + shift;
71356beaf04SBarry Smith     dloc[prow]  = nzi;
7149e25ed09SBarry Smith     fm          = fill[n];
71556beaf04SBarry Smith     while (nzf--) {
716dbb450caSBarry Smith       *xi++   = fm - shift;
71756beaf04SBarry Smith       *flev++ = im[fm];
7189e25ed09SBarry Smith       fm      = fill[fm];
7199e25ed09SBarry Smith     }
7209e25ed09SBarry Smith   }
7210452661fSBarry Smith   PetscFree(ajfill);
722898183ecSLois Curfman McInnes   ierr = ISRestoreIndices(isrow,&r); CHKERRQ(ierr);
723898183ecSLois Curfman McInnes   ierr = ISRestoreIndices(isicol,&ic); CHKERRQ(ierr);
7240452661fSBarry Smith   PetscFree(fill); PetscFree(im);
7259e25ed09SBarry Smith 
726f64065bbSBarry Smith   {
727464e8d44SSatish Balay     double af = ((double)ainew[n])/((double)ai[n]);
728981c4779SBarry Smith     PLogInfo(A,"MatILUFactorSymbolic_SeqAIJ:Reallocs %d Fill ratio:given %g needed %g\n",
729f64065bbSBarry Smith              realloc,f,af);
730981c4779SBarry Smith     PLogInfo(A,"MatILUFactorSymbolic_SeqAIJ:Run with -pc_ilu_fill %g or use \n",af);
731981c4779SBarry Smith     PLogInfo(A,"MatILUFactorSymbolic_SeqAIJ:PCILUSetFill(pc,%g);\n",af);
732981c4779SBarry Smith     PLogInfo(A,"MatILUFactorSymbolic_SeqAIJ:for best performance.\n");
733f64065bbSBarry Smith   }
734bbb6d6a8SBarry Smith 
7359e25ed09SBarry Smith   /* put together the new matrix */
736b4fd4287SBarry Smith   ierr = MatCreateSeqAIJ(A->comm,n,n,0,PETSC_NULL,fact); CHKERRQ(ierr);
737416022c9SBarry Smith   b = (Mat_SeqAIJ *) (*fact)->data;
7380452661fSBarry Smith   PetscFree(b->imax);
739416022c9SBarry Smith   b->singlemalloc = 0;
740dbb450caSBarry Smith   len = (ainew[n] + shift)*sizeof(Scalar);
7419e25ed09SBarry Smith   /* the next line frees the default space generated by the Create() */
7420452661fSBarry Smith   PetscFree(b->a); PetscFree(b->ilen);
7436b96ef82SSatish Balay   b->a          = (Scalar *) PetscMalloc( len+1 ); CHKPTRQ(b->a);
744416022c9SBarry Smith   b->j          = ajnew;
745416022c9SBarry Smith   b->i          = ainew;
74656beaf04SBarry Smith   for ( i=0; i<n; i++ ) dloc[i] += ainew[i];
747416022c9SBarry Smith   b->diag       = dloc;
748416022c9SBarry Smith   b->ilen       = 0;
749416022c9SBarry Smith   b->imax       = 0;
750416022c9SBarry Smith   b->row        = isrow;
751416022c9SBarry Smith   b->col        = iscol;
75282bf6240SBarry Smith   b->icol       = isicol;
75382bf6240SBarry Smith   b->solve_work = (Scalar *) PetscMalloc( (n+1)*sizeof(Scalar)); CHKPTRQ(b->solve_work);
754416022c9SBarry Smith   /* In b structure:  Free imax, ilen, old a, old j.
75556beaf04SBarry Smith      Allocate dloc, solve_work, new a, new j */
756dbb450caSBarry Smith   PLogObjectMemory(*fact,(ainew[n]+shift-n) * (sizeof(int)+sizeof(Scalar)));
757416022c9SBarry Smith   b->maxnz          = b->nz = ainew[n] + shift;
7589e25ed09SBarry Smith   (*fact)->factor   = FACTOR_LU;
759ae068f58SLois Curfman McInnes 
760ae068f58SLois Curfman McInnes   (*fact)->info.factor_mallocs    = realloc;
761ae068f58SLois Curfman McInnes   (*fact)->info.fill_ratio_given  = f;
762ae068f58SLois Curfman McInnes   (*fact)->info.fill_ratio_needed = ((double)ainew[n])/((double)ai[prow]);
763ae068f58SLois Curfman McInnes 
7643a40ed3dSBarry Smith   PetscFunctionReturn(0);
7659e25ed09SBarry Smith }
766d5d45c9bSBarry Smith 
767d5d45c9bSBarry Smith 
768d5d45c9bSBarry Smith 
769d5d45c9bSBarry Smith 
770