xref: /petsc/src/mat/impls/aij/seq/aij.c (revision 8d5b01009adb95eb3f101f5978bb14431bc39930)
1*8d5b0100SBarry Smith /*$Id: aij.c,v 1.383 2001/08/28 20:01:22 bsmith Exp bsmith $*/
2d5d45c9bSBarry Smith /*
33369ce9aSBarry Smith     Defines the basic matrix operations for the AIJ (compressed row)
4d5d45c9bSBarry Smith   matrix storage format.
5d5d45c9bSBarry Smith */
63369ce9aSBarry Smith 
7a375949dSSatish Balay #include "petscsys.h"                           /*I "petscmat.h" I*/
870f55243SBarry Smith #include "src/mat/impls/aij/seq/aij.h"
9f5eb4b81SSatish Balay #include "src/vec/vecimpl.h"
10f5eb4b81SSatish Balay #include "src/inline/spops.h"
118d195f9aSBarry Smith #include "src/inline/dot.h"
120a835dfdSSatish Balay #include "petscbt.h"
1317ab2063SBarry Smith 
14a2ce50c7SBarry Smith 
15ca44d042SBarry Smith EXTERN int MatToSymmetricIJ_SeqAIJ(int,int*,int*,int,int,int**,int**);
1617ab2063SBarry Smith 
174a2ae208SSatish Balay #undef __FUNCT__
184a2ae208SSatish Balay #define __FUNCT__ "MatGetRowIJ_SeqAIJ"
1936db0b34SBarry Smith int MatGetRowIJ_SeqAIJ(Mat A,int oshift,PetscTruth symmetric,int *m,int **ia,int **ja,PetscTruth *done)
2017ab2063SBarry Smith {
21416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
226945ee14SBarry Smith   int        ierr,i,ishift;
2317ab2063SBarry Smith 
243a40ed3dSBarry Smith   PetscFunctionBegin;
2531625ec5SSatish Balay   *m     = A->m;
263a40ed3dSBarry Smith   if (!ia) PetscFunctionReturn(0);
276945ee14SBarry Smith   ishift = a->indexshift;
2853e63a63SBarry Smith   if (symmetric && !A->structurally_symmetric) {
29273d9f13SBarry Smith     ierr = MatToSymmetricIJ_SeqAIJ(A->m,a->i,a->j,ishift,oshift,ia,ja);CHKERRQ(ierr);
306945ee14SBarry Smith   } else if (oshift == 0 && ishift == -1) {
31435da068SBarry Smith     int nz = a->i[A->m] - 1;
323b2fbd54SBarry Smith     /* malloc space and  subtract 1 from i and j indices */
33b0a32e0cSBarry Smith     ierr = PetscMalloc((A->m+1)*sizeof(int),ia);CHKERRQ(ierr);
34b0a32e0cSBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(int),ja);CHKERRQ(ierr);
353b2fbd54SBarry Smith     for (i=0; i<nz; i++) (*ja)[i] = a->j[i] - 1;
36273d9f13SBarry Smith     for (i=0; i<A->m+1; i++) (*ia)[i] = a->i[i] - 1;
376945ee14SBarry Smith   } else if (oshift == 1 && ishift == 0) {
38435da068SBarry Smith     int nz = a->i[A->m];
393b2fbd54SBarry Smith     /* malloc space and  add 1 to i and j indices */
401bc30dd5SBarry Smith     ierr = PetscMalloc((A->m+1)*sizeof(int),ia);CHKERRQ(ierr);
41b0a32e0cSBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(int),ja);CHKERRQ(ierr);
423b2fbd54SBarry Smith     for (i=0; i<nz; i++) (*ja)[i] = a->j[i] + 1;
43273d9f13SBarry Smith     for (i=0; i<A->m+1; i++) (*ia)[i] = a->i[i] + 1;
446945ee14SBarry Smith   } else {
456945ee14SBarry Smith     *ia = a->i; *ja = a->j;
46a2ce50c7SBarry Smith   }
473a40ed3dSBarry Smith   PetscFunctionReturn(0);
48a2744918SBarry Smith }
49a2744918SBarry Smith 
504a2ae208SSatish Balay #undef __FUNCT__
514a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRowIJ_SeqAIJ"
5236db0b34SBarry Smith int MatRestoreRowIJ_SeqAIJ(Mat A,int oshift,PetscTruth symmetric,int *n,int **ia,int **ja,PetscTruth *done)
536945ee14SBarry Smith {
546945ee14SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
55606d414cSSatish Balay   int        ishift = a->indexshift,ierr;
566945ee14SBarry Smith 
573a40ed3dSBarry Smith   PetscFunctionBegin;
583a40ed3dSBarry Smith   if (!ia) PetscFunctionReturn(0);
5953e63a63SBarry Smith   if ((symmetric && !A->structurally_symmetric) || (oshift == 0 && ishift == -1) || (oshift == 1 && ishift == 0)) {
60606d414cSSatish Balay     ierr = PetscFree(*ia);CHKERRQ(ierr);
61606d414cSSatish Balay     ierr = PetscFree(*ja);CHKERRQ(ierr);
62bcd2baecSBarry Smith   }
633a40ed3dSBarry Smith   PetscFunctionReturn(0);
6417ab2063SBarry Smith }
6517ab2063SBarry Smith 
664a2ae208SSatish Balay #undef __FUNCT__
674a2ae208SSatish Balay #define __FUNCT__ "MatGetColumnIJ_SeqAIJ"
6836db0b34SBarry Smith int MatGetColumnIJ_SeqAIJ(Mat A,int oshift,PetscTruth symmetric,int *nn,int **ia,int **ja,PetscTruth *done)
693b2fbd54SBarry Smith {
703b2fbd54SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
71a93ec695SBarry Smith   int        ierr,i,ishift = a->indexshift,*collengths,*cia,*cja,n = A->n,m = A->m;
72a93ec695SBarry Smith   int        nz = a->i[m]+ishift,row,*jj,mr,col;
733b2fbd54SBarry Smith 
743a40ed3dSBarry Smith   PetscFunctionBegin;
753b2fbd54SBarry Smith   *nn     = A->n;
763a40ed3dSBarry Smith   if (!ia) PetscFunctionReturn(0);
773b2fbd54SBarry Smith   if (symmetric) {
78273d9f13SBarry Smith     ierr = MatToSymmetricIJ_SeqAIJ(A->m,a->i,a->j,ishift,oshift,ia,ja);CHKERRQ(ierr);
793b2fbd54SBarry Smith   } else {
80b0a32e0cSBarry Smith     ierr = PetscMalloc((n+1)*sizeof(int),&collengths);CHKERRQ(ierr);
81549d3d68SSatish Balay     ierr = PetscMemzero(collengths,n*sizeof(int));CHKERRQ(ierr);
82b0a32e0cSBarry Smith     ierr = PetscMalloc((n+1)*sizeof(int),&cia);CHKERRQ(ierr);
83b0a32e0cSBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(int),&cja);CHKERRQ(ierr);
843b2fbd54SBarry Smith     jj = a->j;
853b2fbd54SBarry Smith     for (i=0; i<nz; i++) {
863b2fbd54SBarry Smith       collengths[jj[i] + ishift]++;
873b2fbd54SBarry Smith     }
883b2fbd54SBarry Smith     cia[0] = oshift;
893b2fbd54SBarry Smith     for (i=0; i<n; i++) {
903b2fbd54SBarry Smith       cia[i+1] = cia[i] + collengths[i];
913b2fbd54SBarry Smith     }
92549d3d68SSatish Balay     ierr = PetscMemzero(collengths,n*sizeof(int));CHKERRQ(ierr);
933b2fbd54SBarry Smith     jj   = a->j;
94a93ec695SBarry Smith     for (row=0; row<m; row++) {
95a93ec695SBarry Smith       mr = a->i[row+1] - a->i[row];
96a93ec695SBarry Smith       for (i=0; i<mr; i++) {
973b2fbd54SBarry Smith         col = *jj++ + ishift;
983b2fbd54SBarry Smith         cja[cia[col] + collengths[col]++ - oshift] = row + oshift;
993b2fbd54SBarry Smith       }
1003b2fbd54SBarry Smith     }
101606d414cSSatish Balay     ierr = PetscFree(collengths);CHKERRQ(ierr);
1023b2fbd54SBarry Smith     *ia = cia; *ja = cja;
1033b2fbd54SBarry Smith   }
1043a40ed3dSBarry Smith   PetscFunctionReturn(0);
1053b2fbd54SBarry Smith }
1063b2fbd54SBarry Smith 
1074a2ae208SSatish Balay #undef __FUNCT__
1084a2ae208SSatish Balay #define __FUNCT__ "MatRestoreColumnIJ_SeqAIJ"
10936db0b34SBarry Smith int MatRestoreColumnIJ_SeqAIJ(Mat A,int oshift,PetscTruth symmetric,int *n,int **ia,int **ja,PetscTruth *done)
1103b2fbd54SBarry Smith {
111606d414cSSatish Balay   int ierr;
112606d414cSSatish Balay 
1133a40ed3dSBarry Smith   PetscFunctionBegin;
1143a40ed3dSBarry Smith   if (!ia) PetscFunctionReturn(0);
1153b2fbd54SBarry Smith 
116606d414cSSatish Balay   ierr = PetscFree(*ia);CHKERRQ(ierr);
117606d414cSSatish Balay   ierr = PetscFree(*ja);CHKERRQ(ierr);
1183b2fbd54SBarry Smith 
1193a40ed3dSBarry Smith   PetscFunctionReturn(0);
1203b2fbd54SBarry Smith }
1213b2fbd54SBarry Smith 
122227d817aSBarry Smith #define CHUNKSIZE   15
12317ab2063SBarry Smith 
1244a2ae208SSatish Balay #undef __FUNCT__
1254a2ae208SSatish Balay #define __FUNCT__ "MatSetValues_SeqAIJ"
12687828ca2SBarry Smith int MatSetValues_SeqAIJ(Mat A,int m,int *im,int n,int *in,PetscScalar *v,InsertMode is)
12717ab2063SBarry Smith {
128416022c9SBarry Smith   Mat_SeqAIJ  *a = (Mat_SeqAIJ*)A->data;
129416022c9SBarry Smith   int         *rp,k,low,high,t,ii,row,nrow,i,col,l,rmax,N,sorted = a->sorted;
130273d9f13SBarry Smith   int         *imax = a->imax,*ai = a->i,*ailen = a->ilen;
131549d3d68SSatish Balay   int         *aj = a->j,nonew = a->nonew,shift = a->indexshift,ierr;
13287828ca2SBarry Smith   PetscScalar *ap,value,*aa = a->a;
13336db0b34SBarry Smith   PetscTruth  ignorezeroentries = ((a->ignorezeroentries && is == ADD_VALUES) ? PETSC_TRUE:PETSC_FALSE);
134273d9f13SBarry Smith   PetscTruth  roworiented = a->roworiented;
13517ab2063SBarry Smith 
1363a40ed3dSBarry Smith   PetscFunctionBegin;
13717ab2063SBarry Smith   for (k=0; k<m; k++) { /* loop over added rows */
138416022c9SBarry Smith     row  = im[k];
1395ef9f2a5SBarry Smith     if (row < 0) continue;
140aa482453SBarry Smith #if defined(PETSC_USE_BOPT_g)
141273d9f13SBarry Smith     if (row >= A->m) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %d max %d",row,A->m);
1423b2fbd54SBarry Smith #endif
14317ab2063SBarry Smith     rp   = aj + ai[row] + shift; ap = aa + ai[row] + shift;
14417ab2063SBarry Smith     rmax = imax[row]; nrow = ailen[row];
145416022c9SBarry Smith     low = 0;
14617ab2063SBarry Smith     for (l=0; l<n; l++) { /* loop over added columns */
1475ef9f2a5SBarry Smith       if (in[l] < 0) continue;
148aa482453SBarry Smith #if defined(PETSC_USE_BOPT_g)
149273d9f13SBarry Smith       if (in[l] >= A->n) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %d max %d",in[l],A->n);
1503b2fbd54SBarry Smith #endif
1514b0e389bSBarry Smith       col = in[l] - shift;
1524b0e389bSBarry Smith       if (roworiented) {
1535ef9f2a5SBarry Smith         value = v[l + k*n];
154bef8e0ddSBarry Smith       } else {
1554b0e389bSBarry Smith         value = v[k + l*m];
1564b0e389bSBarry Smith       }
15736db0b34SBarry Smith       if (value == 0.0 && ignorezeroentries) continue;
15836db0b34SBarry Smith 
159416022c9SBarry Smith       if (!sorted) low = 0; high = nrow;
160416022c9SBarry Smith       while (high-low > 5) {
161416022c9SBarry Smith         t = (low+high)/2;
162416022c9SBarry Smith         if (rp[t] > col) high = t;
163416022c9SBarry Smith         else             low  = t;
16417ab2063SBarry Smith       }
165416022c9SBarry Smith       for (i=low; i<high; i++) {
16617ab2063SBarry Smith         if (rp[i] > col) break;
16717ab2063SBarry Smith         if (rp[i] == col) {
168416022c9SBarry Smith           if (is == ADD_VALUES) ap[i] += value;
16917ab2063SBarry Smith           else                  ap[i] = value;
17017ab2063SBarry Smith           goto noinsert;
17117ab2063SBarry Smith         }
17217ab2063SBarry Smith       }
173c2653b3dSLois Curfman McInnes       if (nonew == 1) goto noinsert;
17429bbc08cSBarry Smith       else if (nonew == -1) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero at (%d,%d) in the matrix",row,col);
17517ab2063SBarry Smith       if (nrow >= rmax) {
17617ab2063SBarry Smith         /* there is no extra room in row, therefore enlarge */
177273d9f13SBarry Smith         int    new_nz = ai[A->m] + CHUNKSIZE,len,*new_i,*new_j;
17887828ca2SBarry Smith         PetscScalar *new_a;
17917ab2063SBarry Smith 
18029bbc08cSBarry Smith         if (nonew == -2) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero at (%d,%d) in the matrix requiring new malloc()",row,col);
18196854ed6SLois Curfman McInnes 
18217ab2063SBarry Smith         /* malloc new storage space */
18387828ca2SBarry Smith         len     = new_nz*(sizeof(int)+sizeof(PetscScalar))+(A->m+1)*sizeof(int);
184b0a32e0cSBarry Smith 	ierr    = PetscMalloc(len,&new_a);CHKERRQ(ierr);
18517ab2063SBarry Smith         new_j   = (int*)(new_a + new_nz);
18617ab2063SBarry Smith         new_i   = new_j + new_nz;
18717ab2063SBarry Smith 
18817ab2063SBarry Smith         /* copy over old data into new slots */
18917ab2063SBarry Smith         for (ii=0; ii<row+1; ii++) {new_i[ii] = ai[ii];}
190273d9f13SBarry Smith         for (ii=row+1; ii<A->m+1; ii++) {new_i[ii] = ai[ii]+CHUNKSIZE;}
191549d3d68SSatish Balay         ierr = PetscMemcpy(new_j,aj,(ai[row]+nrow+shift)*sizeof(int));CHKERRQ(ierr);
192416022c9SBarry Smith         len  = (new_nz - CHUNKSIZE - ai[row] - nrow - shift);
193549d3d68SSatish Balay         ierr = PetscMemcpy(new_j+ai[row]+shift+nrow+CHUNKSIZE,aj+ai[row]+shift+nrow,len*sizeof(int));CHKERRQ(ierr);
19487828ca2SBarry Smith         ierr = PetscMemcpy(new_a,aa,(ai[row]+nrow+shift)*sizeof(PetscScalar));CHKERRQ(ierr);
19587828ca2SBarry Smith         ierr = PetscMemcpy(new_a+ai[row]+shift+nrow+CHUNKSIZE,aa+ai[row]+shift+nrow,len*sizeof(PetscScalar));CHKERRQ(ierr);
19617ab2063SBarry Smith         /* free up old matrix storage */
197606d414cSSatish Balay         ierr = PetscFree(a->a);CHKERRQ(ierr);
198606d414cSSatish Balay         if (!a->singlemalloc) {
199606d414cSSatish Balay           ierr = PetscFree(a->i);CHKERRQ(ierr);
200606d414cSSatish Balay           ierr = PetscFree(a->j);CHKERRQ(ierr);
201606d414cSSatish Balay         }
202416022c9SBarry Smith         aa = a->a = new_a; ai = a->i = new_i; aj = a->j = new_j;
203f1e2ffcdSBarry Smith         a->singlemalloc = PETSC_TRUE;
20417ab2063SBarry Smith 
20517ab2063SBarry Smith         rp   = aj + ai[row] + shift; ap = aa + ai[row] + shift;
206416022c9SBarry Smith         rmax = imax[row] = imax[row] + CHUNKSIZE;
20787828ca2SBarry Smith         PetscLogObjectMemory(A,CHUNKSIZE*(sizeof(int) + sizeof(PetscScalar)));
208416022c9SBarry Smith         a->maxnz += CHUNKSIZE;
209b810aeb4SBarry Smith         a->reallocs++;
21017ab2063SBarry Smith       }
211416022c9SBarry Smith       N = nrow++ - 1; a->nz++;
212416022c9SBarry Smith       /* shift up all the later entries in this row */
213416022c9SBarry Smith       for (ii=N; ii>=i; ii--) {
21417ab2063SBarry Smith         rp[ii+1] = rp[ii];
21517ab2063SBarry Smith         ap[ii+1] = ap[ii];
21617ab2063SBarry Smith       }
21717ab2063SBarry Smith       rp[i] = col;
21817ab2063SBarry Smith       ap[i] = value;
21917ab2063SBarry Smith       noinsert:;
220416022c9SBarry Smith       low = i + 1;
22117ab2063SBarry Smith     }
22217ab2063SBarry Smith     ailen[row] = nrow;
22317ab2063SBarry Smith   }
2243a40ed3dSBarry Smith   PetscFunctionReturn(0);
22517ab2063SBarry Smith }
22617ab2063SBarry Smith 
2274a2ae208SSatish Balay #undef __FUNCT__
2284a2ae208SSatish Balay #define __FUNCT__ "MatGetValues_SeqAIJ"
22987828ca2SBarry Smith int MatGetValues_SeqAIJ(Mat A,int m,int *im,int n,int *in,PetscScalar *v)
2307eb43aa7SLois Curfman McInnes {
2317eb43aa7SLois Curfman McInnes   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
232b49de8d1SLois Curfman McInnes   int          *rp,k,low,high,t,row,nrow,i,col,l,*aj = a->j;
2337eb43aa7SLois Curfman McInnes   int          *ai = a->i,*ailen = a->ilen,shift = a->indexshift;
23487828ca2SBarry Smith   PetscScalar  *ap,*aa = a->a,zero = 0.0;
2357eb43aa7SLois Curfman McInnes 
2363a40ed3dSBarry Smith   PetscFunctionBegin;
2377eb43aa7SLois Curfman McInnes   for (k=0; k<m; k++) { /* loop over rows */
2387eb43aa7SLois Curfman McInnes     row  = im[k];
23929bbc08cSBarry Smith     if (row < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Negative row: %d",row);
240273d9f13SBarry Smith     if (row >= A->m) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Row too large: %d",row);
2417eb43aa7SLois Curfman McInnes     rp   = aj + ai[row] + shift; ap = aa + ai[row] + shift;
2427eb43aa7SLois Curfman McInnes     nrow = ailen[row];
2437eb43aa7SLois Curfman McInnes     for (l=0; l<n; l++) { /* loop over columns */
24429bbc08cSBarry Smith       if (in[l] < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Negative column: %d",in[l]);
245273d9f13SBarry Smith       if (in[l] >= A->n) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Column too large: %d",in[l]);
2467eb43aa7SLois Curfman McInnes       col = in[l] - shift;
2477eb43aa7SLois Curfman McInnes       high = nrow; low = 0; /* assume unsorted */
2487eb43aa7SLois Curfman McInnes       while (high-low > 5) {
2497eb43aa7SLois Curfman McInnes         t = (low+high)/2;
2507eb43aa7SLois Curfman McInnes         if (rp[t] > col) high = t;
2517eb43aa7SLois Curfman McInnes         else             low  = t;
2527eb43aa7SLois Curfman McInnes       }
2537eb43aa7SLois Curfman McInnes       for (i=low; i<high; i++) {
2547eb43aa7SLois Curfman McInnes         if (rp[i] > col) break;
2557eb43aa7SLois Curfman McInnes         if (rp[i] == col) {
256b49de8d1SLois Curfman McInnes           *v++ = ap[i];
2577eb43aa7SLois Curfman McInnes           goto finished;
2587eb43aa7SLois Curfman McInnes         }
2597eb43aa7SLois Curfman McInnes       }
260b49de8d1SLois Curfman McInnes       *v++ = zero;
2617eb43aa7SLois Curfman McInnes       finished:;
2627eb43aa7SLois Curfman McInnes     }
2637eb43aa7SLois Curfman McInnes   }
2643a40ed3dSBarry Smith   PetscFunctionReturn(0);
2657eb43aa7SLois Curfman McInnes }
2667eb43aa7SLois Curfman McInnes 
26717ab2063SBarry Smith 
2684a2ae208SSatish Balay #undef __FUNCT__
2694a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqAIJ_Binary"
270b0a32e0cSBarry Smith int MatView_SeqAIJ_Binary(Mat A,PetscViewer viewer)
27117ab2063SBarry Smith {
272416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
273416022c9SBarry Smith   int        i,fd,*col_lens,ierr;
27417ab2063SBarry Smith 
2753a40ed3dSBarry Smith   PetscFunctionBegin;
276b0a32e0cSBarry Smith   ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr);
277b0a32e0cSBarry Smith   ierr = PetscMalloc((4+A->m)*sizeof(int),&col_lens);CHKERRQ(ierr);
278416022c9SBarry Smith   col_lens[0] = MAT_COOKIE;
279273d9f13SBarry Smith   col_lens[1] = A->m;
280273d9f13SBarry Smith   col_lens[2] = A->n;
281416022c9SBarry Smith   col_lens[3] = a->nz;
282416022c9SBarry Smith 
283416022c9SBarry Smith   /* store lengths of each row and write (including header) to file */
284273d9f13SBarry Smith   for (i=0; i<A->m; i++) {
285416022c9SBarry Smith     col_lens[4+i] = a->i[i+1] - a->i[i];
28617ab2063SBarry Smith   }
287273d9f13SBarry Smith   ierr = PetscBinaryWrite(fd,col_lens,4+A->m,PETSC_INT,1);CHKERRQ(ierr);
288606d414cSSatish Balay   ierr = PetscFree(col_lens);CHKERRQ(ierr);
289416022c9SBarry Smith 
290416022c9SBarry Smith   /* store column indices (zero start index) */
291416022c9SBarry Smith   if (a->indexshift) {
292416022c9SBarry Smith     for (i=0; i<a->nz; i++) a->j[i]--;
29317ab2063SBarry Smith   }
2940752156aSBarry Smith   ierr = PetscBinaryWrite(fd,a->j,a->nz,PETSC_INT,0);CHKERRQ(ierr);
295416022c9SBarry Smith   if (a->indexshift) {
296416022c9SBarry Smith     for (i=0; i<a->nz; i++) a->j[i]++;
29717ab2063SBarry Smith   }
298416022c9SBarry Smith 
299416022c9SBarry Smith   /* store nonzero values */
3000752156aSBarry Smith   ierr = PetscBinaryWrite(fd,a->a,a->nz,PETSC_SCALAR,0);CHKERRQ(ierr);
3013a40ed3dSBarry Smith   PetscFunctionReturn(0);
30217ab2063SBarry Smith }
303416022c9SBarry Smith 
3044a2ae208SSatish Balay #undef __FUNCT__
3054a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqAIJ_ASCII"
306b0a32e0cSBarry Smith int MatView_SeqAIJ_ASCII(Mat A,PetscViewer viewer)
307416022c9SBarry Smith {
308416022c9SBarry Smith   Mat_SeqAIJ        *a = (Mat_SeqAIJ*)A->data;
309fb9695e5SSatish Balay   int               ierr,i,j,m = A->m,shift = a->indexshift;
310fb9695e5SSatish Balay   char              *name;
311f3ef73ceSBarry Smith   PetscViewerFormat format;
31217ab2063SBarry Smith 
3133a40ed3dSBarry Smith   PetscFunctionBegin;
314435da068SBarry Smith   ierr = PetscObjectGetName((PetscObject)A,&name);CHKERRQ(ierr);
315b0a32e0cSBarry Smith   ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
316fb9695e5SSatish Balay   if (format == PETSC_VIEWER_ASCII_INFO_LONG || format == PETSC_VIEWER_ASCII_INFO) {
3176831982aSBarry Smith     if (a->inode.size) {
318b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"using I-node routines: found %d nodes, limit used is %d\n",a->inode.node_count,a->inode.limit);CHKERRQ(ierr);
3196831982aSBarry Smith     } else {
320b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"not using I-node routines\n");CHKERRQ(ierr);
3216831982aSBarry Smith     }
322fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_MATLAB) {
323d00d2cf4SBarry Smith     int nofinalvalue = 0;
324273d9f13SBarry Smith     if ((a->i[m] == a->i[m-1]) || (a->j[a->nz-1] != A->n-!shift)) {
325d00d2cf4SBarry Smith       nofinalvalue = 1;
326d00d2cf4SBarry Smith     }
327b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
328b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"%% Size = %d %d \n",m,A->n);CHKERRQ(ierr);
329b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"%% Nonzeros = %d \n",a->nz);CHKERRQ(ierr);
330b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"zzz = zeros(%d,3);\n",a->nz+nofinalvalue);CHKERRQ(ierr);
331b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"zzz = [\n");CHKERRQ(ierr);
33217ab2063SBarry Smith 
33317ab2063SBarry Smith     for (i=0; i<m; i++) {
334416022c9SBarry Smith       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
335aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
336b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"%d %d  %18.16e + %18.16ei \n",i+1,a->j[j]+!shift,PetscRealPart(a->a[j]),PetscImaginaryPart(a->a[j]));CHKERRQ(ierr);
33717ab2063SBarry Smith #else
338b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"%d %d  %18.16e\n",i+1,a->j[j]+!shift,a->a[j]);CHKERRQ(ierr);
33917ab2063SBarry Smith #endif
34017ab2063SBarry Smith       }
34117ab2063SBarry Smith     }
342d00d2cf4SBarry Smith     if (nofinalvalue) {
343b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"%d %d  %18.16e\n",m,A->n,0.0);CHKERRQ(ierr);
344d00d2cf4SBarry Smith     }
345fb9695e5SSatish Balay     ierr = PetscViewerASCIIPrintf(viewer,"];\n %s = spconvert(zzz);\n",name);CHKERRQ(ierr);
346b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
347fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_COMMON) {
348b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
34944cd7ae7SLois Curfman McInnes     for (i=0; i<m; i++) {
350b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"row %d:",i);CHKERRQ(ierr);
35144cd7ae7SLois Curfman McInnes       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
352aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
35336db0b34SBarry Smith         if (PetscImaginaryPart(a->a[j]) > 0.0 && PetscRealPart(a->a[j]) != 0.0) {
354b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," %d %g + %g i",a->j[j]+shift,PetscRealPart(a->a[j]),PetscImaginaryPart(a->a[j]));CHKERRQ(ierr);
35536db0b34SBarry Smith         } else if (PetscImaginaryPart(a->a[j]) < 0.0 && PetscRealPart(a->a[j]) != 0.0) {
356b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," %d %g - %g i",a->j[j]+shift,PetscRealPart(a->a[j]),-PetscImaginaryPart(a->a[j]));CHKERRQ(ierr);
35736db0b34SBarry Smith         } else if (PetscRealPart(a->a[j]) != 0.0) {
358b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," %d %g ",a->j[j]+shift,PetscRealPart(a->a[j]));CHKERRQ(ierr);
3596831982aSBarry Smith         }
36044cd7ae7SLois Curfman McInnes #else
361b0a32e0cSBarry Smith         if (a->a[j] != 0.0) {ierr = PetscViewerASCIIPrintf(viewer," %d %g ",a->j[j]+shift,a->a[j]);CHKERRQ(ierr);}
36244cd7ae7SLois Curfman McInnes #endif
36344cd7ae7SLois Curfman McInnes       }
364b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
36544cd7ae7SLois Curfman McInnes     }
366b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
367fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_SYMMODU) {
368496be53dSLois Curfman McInnes     int nzd=0,fshift=1,*sptr;
369b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
370b0a32e0cSBarry Smith     ierr = PetscMalloc((m+1)*sizeof(int),&sptr);CHKERRQ(ierr);
371496be53dSLois Curfman McInnes     for (i=0; i<m; i++) {
372496be53dSLois Curfman McInnes       sptr[i] = nzd+1;
373496be53dSLois Curfman McInnes       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
374496be53dSLois Curfman McInnes         if (a->j[j] >= i) {
375aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
37636db0b34SBarry Smith           if (PetscImaginaryPart(a->a[j]) != 0.0 || PetscRealPart(a->a[j]) != 0.0) nzd++;
377496be53dSLois Curfman McInnes #else
378496be53dSLois Curfman McInnes           if (a->a[j] != 0.0) nzd++;
379496be53dSLois Curfman McInnes #endif
380496be53dSLois Curfman McInnes         }
381496be53dSLois Curfman McInnes       }
382496be53dSLois Curfman McInnes     }
3832e44a96cSLois Curfman McInnes     sptr[m] = nzd+1;
384b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer," %d %d\n\n",m,nzd);CHKERRQ(ierr);
3852e44a96cSLois Curfman McInnes     for (i=0; i<m+1; i+=6) {
386b0a32e0cSBarry Smith       if (i+4<m) {ierr = PetscViewerASCIIPrintf(viewer," %d %d %d %d %d %d\n",sptr[i],sptr[i+1],sptr[i+2],sptr[i+3],sptr[i+4],sptr[i+5]);CHKERRQ(ierr);}
387b0a32e0cSBarry Smith       else if (i+3<m) {ierr = PetscViewerASCIIPrintf(viewer," %d %d %d %d %d\n",sptr[i],sptr[i+1],sptr[i+2],sptr[i+3],sptr[i+4]);CHKERRQ(ierr);}
388b0a32e0cSBarry Smith       else if (i+2<m) {ierr = PetscViewerASCIIPrintf(viewer," %d %d %d %d\n",sptr[i],sptr[i+1],sptr[i+2],sptr[i+3]);CHKERRQ(ierr);}
389b0a32e0cSBarry Smith       else if (i+1<m) {ierr = PetscViewerASCIIPrintf(viewer," %d %d %d\n",sptr[i],sptr[i+1],sptr[i+2]);CHKERRQ(ierr);}
390b0a32e0cSBarry Smith       else if (i<m)   {ierr = PetscViewerASCIIPrintf(viewer," %d %d\n",sptr[i],sptr[i+1]);CHKERRQ(ierr);}
391b0a32e0cSBarry Smith       else            {ierr = PetscViewerASCIIPrintf(viewer," %d\n",sptr[i]);CHKERRQ(ierr);}
392496be53dSLois Curfman McInnes     }
393b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
394606d414cSSatish Balay     ierr = PetscFree(sptr);CHKERRQ(ierr);
395496be53dSLois Curfman McInnes     for (i=0; i<m; i++) {
396496be53dSLois Curfman McInnes       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
397b0a32e0cSBarry Smith         if (a->j[j] >= i) {ierr = PetscViewerASCIIPrintf(viewer," %d ",a->j[j]+fshift);CHKERRQ(ierr);}
398496be53dSLois Curfman McInnes       }
399b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
400496be53dSLois Curfman McInnes     }
401b0a32e0cSBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
402496be53dSLois Curfman McInnes     for (i=0; i<m; i++) {
403496be53dSLois Curfman McInnes       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
404496be53dSLois Curfman McInnes         if (a->j[j] >= i) {
405aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
40636db0b34SBarry Smith           if (PetscImaginaryPart(a->a[j]) != 0.0 || PetscRealPart(a->a[j]) != 0.0) {
407b0a32e0cSBarry Smith             ierr = PetscViewerASCIIPrintf(viewer," %18.16e %18.16e ",PetscRealPart(a->a[j]),PetscImaginaryPart(a->a[j]));CHKERRQ(ierr);
4086831982aSBarry Smith           }
409496be53dSLois Curfman McInnes #else
410b0a32e0cSBarry Smith           if (a->a[j] != 0.0) {ierr = PetscViewerASCIIPrintf(viewer," %18.16e ",a->a[j]);CHKERRQ(ierr);}
411496be53dSLois Curfman McInnes #endif
412496be53dSLois Curfman McInnes         }
413496be53dSLois Curfman McInnes       }
414b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
415496be53dSLois Curfman McInnes     }
416b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
417fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_DENSE) {
41802594712SBarry Smith     int    cnt = 0,jcnt;
41987828ca2SBarry Smith     PetscScalar value;
42002594712SBarry Smith 
421b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
42202594712SBarry Smith     for (i=0; i<m; i++) {
42302594712SBarry Smith       jcnt = 0;
424273d9f13SBarry Smith       for (j=0; j<A->n; j++) {
425e24b481bSBarry Smith         if (jcnt < a->i[i+1]-a->i[i] && j == a->j[cnt]) {
42602594712SBarry Smith           value = a->a[cnt++];
427e24b481bSBarry Smith           jcnt++;
42802594712SBarry Smith         } else {
42902594712SBarry Smith           value = 0.0;
43002594712SBarry Smith         }
431aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
432b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer," %7.5e+%7.5e i ",PetscRealPart(value),PetscImaginaryPart(value));CHKERRQ(ierr);
43302594712SBarry Smith #else
434b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer," %7.5e ",value);CHKERRQ(ierr);
43502594712SBarry Smith #endif
43602594712SBarry Smith       }
437b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
43802594712SBarry Smith     }
439b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
4403a40ed3dSBarry Smith   } else {
441b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
44217ab2063SBarry Smith     for (i=0; i<m; i++) {
443b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"row %d:",i);CHKERRQ(ierr);
444416022c9SBarry Smith       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
445aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
44636db0b34SBarry Smith         if (PetscImaginaryPart(a->a[j]) > 0.0) {
447b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," %d %g + %g i",a->j[j]+shift,PetscRealPart(a->a[j]),PetscImaginaryPart(a->a[j]));CHKERRQ(ierr);
44836db0b34SBarry Smith         } else if (PetscImaginaryPart(a->a[j]) < 0.0) {
449b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," %d %g - %g i",a->j[j]+shift,PetscRealPart(a->a[j]),-PetscImaginaryPart(a->a[j]));CHKERRQ(ierr);
4503a40ed3dSBarry Smith         } else {
451b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," %d %g ",a->j[j]+shift,PetscRealPart(a->a[j]));CHKERRQ(ierr);
45217ab2063SBarry Smith         }
45317ab2063SBarry Smith #else
454b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer," %d %g ",a->j[j]+shift,a->a[j]);CHKERRQ(ierr);
45517ab2063SBarry Smith #endif
45617ab2063SBarry Smith       }
457b0a32e0cSBarry Smith       ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
45817ab2063SBarry Smith     }
459b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
46017ab2063SBarry Smith   }
461b0a32e0cSBarry Smith   ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
4623a40ed3dSBarry Smith   PetscFunctionReturn(0);
463416022c9SBarry Smith }
464416022c9SBarry Smith 
4654a2ae208SSatish Balay #undef __FUNCT__
4664a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqAIJ_Draw_Zoom"
467b0a32e0cSBarry Smith int MatView_SeqAIJ_Draw_Zoom(PetscDraw draw,void *Aa)
468416022c9SBarry Smith {
469480ef9eaSBarry Smith   Mat               A = (Mat) Aa;
470416022c9SBarry Smith   Mat_SeqAIJ        *a = (Mat_SeqAIJ*)A->data;
471273d9f13SBarry Smith   int               ierr,i,j,m = A->m,shift = a->indexshift,color;
47236db0b34SBarry Smith   PetscReal         xl,yl,xr,yr,x_l,x_r,y_l,y_r,maxv = 0.0;
473b0a32e0cSBarry Smith   PetscViewer       viewer;
474f3ef73ceSBarry Smith   PetscViewerFormat format;
475cddf8d76SBarry Smith 
4763a40ed3dSBarry Smith   PetscFunctionBegin;
477480ef9eaSBarry Smith   ierr = PetscObjectQuery((PetscObject)A,"Zoomviewer",(PetscObject*)&viewer);CHKERRQ(ierr);
478b0a32e0cSBarry Smith   ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
47919bcc07fSBarry Smith 
480b0a32e0cSBarry Smith   ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
481416022c9SBarry Smith   /* loop over matrix elements drawing boxes */
4820513a670SBarry Smith 
483fb9695e5SSatish Balay   if (format != PETSC_VIEWER_DRAW_CONTOUR) {
4840513a670SBarry Smith     /* Blue for negative, Cyan for zero and  Red for positive */
485b0a32e0cSBarry Smith     color = PETSC_DRAW_BLUE;
486416022c9SBarry Smith     for (i=0; i<m; i++) {
487cddf8d76SBarry Smith       y_l = m - i - 1.0; y_r = y_l + 1.0;
488416022c9SBarry Smith       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
489cddf8d76SBarry Smith         x_l = a->j[j] + shift; x_r = x_l + 1.0;
490aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
49136db0b34SBarry Smith         if (PetscRealPart(a->a[j]) >=  0.) continue;
492cddf8d76SBarry Smith #else
493cddf8d76SBarry Smith         if (a->a[j] >=  0.) continue;
494cddf8d76SBarry Smith #endif
495b0a32e0cSBarry Smith         ierr = PetscDrawRectangle(draw,x_l,y_l,x_r,y_r,color,color,color,color);CHKERRQ(ierr);
496cddf8d76SBarry Smith       }
497cddf8d76SBarry Smith     }
498b0a32e0cSBarry Smith     color = PETSC_DRAW_CYAN;
499cddf8d76SBarry Smith     for (i=0; i<m; i++) {
500cddf8d76SBarry Smith       y_l = m - i - 1.0; y_r = y_l + 1.0;
501cddf8d76SBarry Smith       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
502cddf8d76SBarry Smith         x_l = a->j[j] + shift; x_r = x_l + 1.0;
503cddf8d76SBarry Smith         if (a->a[j] !=  0.) continue;
504b0a32e0cSBarry Smith         ierr = PetscDrawRectangle(draw,x_l,y_l,x_r,y_r,color,color,color,color);CHKERRQ(ierr);
505cddf8d76SBarry Smith       }
506cddf8d76SBarry Smith     }
507b0a32e0cSBarry Smith     color = PETSC_DRAW_RED;
508cddf8d76SBarry Smith     for (i=0; i<m; i++) {
509cddf8d76SBarry Smith       y_l = m - i - 1.0; y_r = y_l + 1.0;
510cddf8d76SBarry Smith       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
511cddf8d76SBarry Smith         x_l = a->j[j] + shift; x_r = x_l + 1.0;
512aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
51336db0b34SBarry Smith         if (PetscRealPart(a->a[j]) <=  0.) continue;
514cddf8d76SBarry Smith #else
515cddf8d76SBarry Smith         if (a->a[j] <=  0.) continue;
516cddf8d76SBarry Smith #endif
517b0a32e0cSBarry Smith         ierr = PetscDrawRectangle(draw,x_l,y_l,x_r,y_r,color,color,color,color);CHKERRQ(ierr);
518416022c9SBarry Smith       }
519416022c9SBarry Smith     }
5200513a670SBarry Smith   } else {
5210513a670SBarry Smith     /* use contour shading to indicate magnitude of values */
5220513a670SBarry Smith     /* first determine max of all nonzero values */
5230513a670SBarry Smith     int    nz = a->nz,count;
524b0a32e0cSBarry Smith     PetscDraw   popup;
52536db0b34SBarry Smith     PetscReal scale;
5260513a670SBarry Smith 
5270513a670SBarry Smith     for (i=0; i<nz; i++) {
5280513a670SBarry Smith       if (PetscAbsScalar(a->a[i]) > maxv) maxv = PetscAbsScalar(a->a[i]);
5290513a670SBarry Smith     }
530b0a32e0cSBarry Smith     scale = (245.0 - PETSC_DRAW_BASIC_COLORS)/maxv;
531b0a32e0cSBarry Smith     ierr  = PetscDrawGetPopup(draw,&popup);CHKERRQ(ierr);
532b0a32e0cSBarry Smith     if (popup) {ierr  = PetscDrawScalePopup(popup,0.0,maxv);CHKERRQ(ierr);}
5330513a670SBarry Smith     count = 0;
5340513a670SBarry Smith     for (i=0; i<m; i++) {
5350513a670SBarry Smith       y_l = m - i - 1.0; y_r = y_l + 1.0;
5360513a670SBarry Smith       for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
5370513a670SBarry Smith         x_l = a->j[j] + shift; x_r = x_l + 1.0;
538b0a32e0cSBarry Smith         color = PETSC_DRAW_BASIC_COLORS + (int)(scale*PetscAbsScalar(a->a[count]));
539b0a32e0cSBarry Smith         ierr  = PetscDrawRectangle(draw,x_l,y_l,x_r,y_r,color,color,color,color);CHKERRQ(ierr);
5400513a670SBarry Smith         count++;
5410513a670SBarry Smith       }
5420513a670SBarry Smith     }
5430513a670SBarry Smith   }
544480ef9eaSBarry Smith   PetscFunctionReturn(0);
545480ef9eaSBarry Smith }
546cddf8d76SBarry Smith 
5474a2ae208SSatish Balay #undef __FUNCT__
5484a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqAIJ_Draw"
549b0a32e0cSBarry Smith int MatView_SeqAIJ_Draw(Mat A,PetscViewer viewer)
550480ef9eaSBarry Smith {
551480ef9eaSBarry Smith   int        ierr;
552b0a32e0cSBarry Smith   PetscDraw  draw;
55336db0b34SBarry Smith   PetscReal  xr,yr,xl,yl,h,w;
554480ef9eaSBarry Smith   PetscTruth isnull;
555480ef9eaSBarry Smith 
556480ef9eaSBarry Smith   PetscFunctionBegin;
557b0a32e0cSBarry Smith   ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
558b0a32e0cSBarry Smith   ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr);
559480ef9eaSBarry Smith   if (isnull) PetscFunctionReturn(0);
560480ef9eaSBarry Smith 
561480ef9eaSBarry Smith   ierr = PetscObjectCompose((PetscObject)A,"Zoomviewer",(PetscObject)viewer);CHKERRQ(ierr);
562273d9f13SBarry Smith   xr  = A->n; yr = A->m; h = yr/10.0; w = xr/10.0;
563480ef9eaSBarry Smith   xr += w;    yr += h;  xl = -w;     yl = -h;
564b0a32e0cSBarry Smith   ierr = PetscDrawSetCoordinates(draw,xl,yl,xr,yr);CHKERRQ(ierr);
565b0a32e0cSBarry Smith   ierr = PetscDrawZoom(draw,MatView_SeqAIJ_Draw_Zoom,A);CHKERRQ(ierr);
566480ef9eaSBarry Smith   ierr = PetscObjectCompose((PetscObject)A,"Zoomviewer",PETSC_NULL);CHKERRQ(ierr);
5673a40ed3dSBarry Smith   PetscFunctionReturn(0);
568416022c9SBarry Smith }
569416022c9SBarry Smith 
5704a2ae208SSatish Balay #undef __FUNCT__
5714a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqAIJ"
572b0a32e0cSBarry Smith int MatView_SeqAIJ(Mat A,PetscViewer viewer)
573416022c9SBarry Smith {
574416022c9SBarry Smith   Mat_SeqAIJ  *a = (Mat_SeqAIJ*)A->data;
575bcd2baecSBarry Smith   int         ierr;
5766831982aSBarry Smith   PetscTruth  issocket,isascii,isbinary,isdraw;
577416022c9SBarry Smith 
5783a40ed3dSBarry Smith   PetscFunctionBegin;
579b0a32e0cSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_SOCKET,&issocket);CHKERRQ(ierr);
580b0a32e0cSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr);
581fb9695e5SSatish Balay   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_BINARY,&isbinary);CHKERRQ(ierr);
582fb9695e5SSatish Balay   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_DRAW,&isdraw);CHKERRQ(ierr);
5830f5bd95cSBarry Smith   if (issocket) {
58401820c62SBarry Smith     if (a->indexshift) {
58529bbc08cSBarry Smith       SETERRQ(1,"Can only socket send sparse matrix with 0 based indexing");
58601820c62SBarry Smith     }
587b0a32e0cSBarry Smith     ierr = PetscViewerSocketPutSparse_Private(viewer,A->m,A->n,a->nz,a->a,a->i,a->j);CHKERRQ(ierr);
5880f5bd95cSBarry Smith   } else if (isascii) {
5893a40ed3dSBarry Smith     ierr = MatView_SeqAIJ_ASCII(A,viewer);CHKERRQ(ierr);
5900f5bd95cSBarry Smith   } else if (isbinary) {
5913a40ed3dSBarry Smith     ierr = MatView_SeqAIJ_Binary(A,viewer);CHKERRQ(ierr);
5920f5bd95cSBarry Smith   } else if (isdraw) {
5933a40ed3dSBarry Smith     ierr = MatView_SeqAIJ_Draw(A,viewer);CHKERRQ(ierr);
5945cd90555SBarry Smith   } else {
59529bbc08cSBarry Smith     SETERRQ1(1,"Viewer type %s not supported by SeqAIJ matrices",((PetscObject)viewer)->type_name);
59617ab2063SBarry Smith   }
5973a40ed3dSBarry Smith   PetscFunctionReturn(0);
59817ab2063SBarry Smith }
59919bcc07fSBarry Smith 
6003a7fca6bSBarry Smith EXTERN int Mat_AIJ_CheckInode(Mat,PetscTruth);
6014a2ae208SSatish Balay #undef __FUNCT__
6024a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyEnd_SeqAIJ"
6038f6be9afSLois Curfman McInnes int MatAssemblyEnd_SeqAIJ(Mat A,MatAssemblyType mode)
60417ab2063SBarry Smith {
605416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
60641c01911SSatish Balay   int          fshift = 0,i,j,*ai = a->i,*aj = a->j,*imax = a->imax,ierr;
607273d9f13SBarry Smith   int          m = A->m,*ip,N,*ailen = a->ilen,shift = a->indexshift,rmax = 0;
60887828ca2SBarry Smith   PetscScalar  *aa = a->a,*ap;
60917ab2063SBarry Smith 
6103a40ed3dSBarry Smith   PetscFunctionBegin;
6113a40ed3dSBarry Smith   if (mode == MAT_FLUSH_ASSEMBLY) PetscFunctionReturn(0);
61217ab2063SBarry Smith 
61343ee02c3SBarry Smith   if (m) rmax = ailen[0]; /* determine row with most nonzeros */
61417ab2063SBarry Smith   for (i=1; i<m; i++) {
615416022c9SBarry Smith     /* move each row back by the amount of empty slots (fshift) before it*/
61617ab2063SBarry Smith     fshift += imax[i-1] - ailen[i-1];
61794a9d846SBarry Smith     rmax   = PetscMax(rmax,ailen[i]);
61817ab2063SBarry Smith     if (fshift) {
6190f5bd95cSBarry Smith       ip = aj + ai[i] + shift;
6200f5bd95cSBarry Smith       ap = aa + ai[i] + shift;
62117ab2063SBarry Smith       N  = ailen[i];
62217ab2063SBarry Smith       for (j=0; j<N; j++) {
62317ab2063SBarry Smith         ip[j-fshift] = ip[j];
62417ab2063SBarry Smith         ap[j-fshift] = ap[j];
62517ab2063SBarry Smith       }
62617ab2063SBarry Smith     }
62717ab2063SBarry Smith     ai[i] = ai[i-1] + ailen[i-1];
62817ab2063SBarry Smith   }
62917ab2063SBarry Smith   if (m) {
63017ab2063SBarry Smith     fshift += imax[m-1] - ailen[m-1];
63117ab2063SBarry Smith     ai[m]  = ai[m-1] + ailen[m-1];
63217ab2063SBarry Smith   }
63317ab2063SBarry Smith   /* reset ilen and imax for each row */
63417ab2063SBarry Smith   for (i=0; i<m; i++) {
63517ab2063SBarry Smith     ailen[i] = imax[i] = ai[i+1] - ai[i];
63617ab2063SBarry Smith   }
637416022c9SBarry Smith   a->nz = ai[m] + shift;
63817ab2063SBarry Smith 
63917ab2063SBarry Smith   /* diagonals may have moved, so kill the diagonal pointers */
640416022c9SBarry Smith   if (fshift && a->diag) {
641606d414cSSatish Balay     ierr = PetscFree(a->diag);CHKERRQ(ierr);
642b0a32e0cSBarry Smith     PetscLogObjectMemory(A,-(m+1)*sizeof(int));
643416022c9SBarry Smith     a->diag = 0;
64417ab2063SBarry Smith   }
645b0a32e0cSBarry Smith   PetscLogInfo(A,"MatAssemblyEnd_SeqAIJ:Matrix size: %d X %d; storage space: %d unneeded,%d used\n",m,A->n,fshift,a->nz);
646b0a32e0cSBarry Smith   PetscLogInfo(A,"MatAssemblyEnd_SeqAIJ:Number of mallocs during MatSetValues() is %d\n",a->reallocs);
647b0a32e0cSBarry Smith   PetscLogInfo(A,"MatAssemblyEnd_SeqAIJ:Most nonzeros in any row is %d\n",rmax);
648dd5f02e7SSatish Balay   a->reallocs          = 0;
6494e220ebcSLois Curfman McInnes   A->info.nz_unneeded  = (double)fshift;
65036db0b34SBarry Smith   a->rmax              = rmax;
6514e220ebcSLois Curfman McInnes 
65276dd722bSSatish Balay   /* check out for identical nodes. If found, use inode functions */
6533a7fca6bSBarry Smith   ierr = Mat_AIJ_CheckInode(A,(PetscTruth)(!fshift));CHKERRQ(ierr);
6543a40ed3dSBarry Smith   PetscFunctionReturn(0);
65517ab2063SBarry Smith }
65617ab2063SBarry Smith 
6574a2ae208SSatish Balay #undef __FUNCT__
6584a2ae208SSatish Balay #define __FUNCT__ "MatZeroEntries_SeqAIJ"
6598f6be9afSLois Curfman McInnes int MatZeroEntries_SeqAIJ(Mat A)
66017ab2063SBarry Smith {
661416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
662549d3d68SSatish Balay   int        ierr;
6633a40ed3dSBarry Smith 
6643a40ed3dSBarry Smith   PetscFunctionBegin;
66587828ca2SBarry Smith   ierr = PetscMemzero(a->a,(a->i[A->m]+a->indexshift)*sizeof(PetscScalar));CHKERRQ(ierr);
6663a40ed3dSBarry Smith   PetscFunctionReturn(0);
66717ab2063SBarry Smith }
668416022c9SBarry Smith 
6694a2ae208SSatish Balay #undef __FUNCT__
6704a2ae208SSatish Balay #define __FUNCT__ "MatDestroy_SeqAIJ"
671e1311b90SBarry Smith int MatDestroy_SeqAIJ(Mat A)
67217ab2063SBarry Smith {
673416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
67482bf6240SBarry Smith   int        ierr;
675d5d45c9bSBarry Smith 
6763a40ed3dSBarry Smith   PetscFunctionBegin;
677aa482453SBarry Smith #if defined(PETSC_USE_LOG)
678b0a32e0cSBarry Smith   PetscLogObjectState((PetscObject)A,"Rows=%d, Cols=%d, NZ=%d",A->m,A->n,a->nz);
67917ab2063SBarry Smith #endif
68036db0b34SBarry Smith   if (a->freedata) {
681606d414cSSatish Balay     ierr = PetscFree(a->a);CHKERRQ(ierr);
682606d414cSSatish Balay     if (!a->singlemalloc) {
683606d414cSSatish Balay       ierr = PetscFree(a->i);CHKERRQ(ierr);
684606d414cSSatish Balay       ierr = PetscFree(a->j);CHKERRQ(ierr);
685606d414cSSatish Balay     }
68636db0b34SBarry Smith   }
687c38d4ed2SBarry Smith   if (a->row) {
688c38d4ed2SBarry Smith     ierr = ISDestroy(a->row);CHKERRQ(ierr);
689c38d4ed2SBarry Smith   }
690c38d4ed2SBarry Smith   if (a->col) {
691c38d4ed2SBarry Smith     ierr = ISDestroy(a->col);CHKERRQ(ierr);
692c38d4ed2SBarry Smith   }
693606d414cSSatish Balay   if (a->diag) {ierr = PetscFree(a->diag);CHKERRQ(ierr);}
694606d414cSSatish Balay   if (a->ilen) {ierr = PetscFree(a->ilen);CHKERRQ(ierr);}
695606d414cSSatish Balay   if (a->imax) {ierr = PetscFree(a->imax);CHKERRQ(ierr);}
696273d9f13SBarry Smith   if (a->idiag) {ierr = PetscFree(a->idiag);CHKERRQ(ierr);}
697606d414cSSatish Balay   if (a->solve_work) {ierr = PetscFree(a->solve_work);CHKERRQ(ierr);}
698606d414cSSatish Balay   if (a->inode.size) {ierr = PetscFree(a->inode.size);CHKERRQ(ierr);}
69982bf6240SBarry Smith   if (a->icol) {ierr = ISDestroy(a->icol);CHKERRQ(ierr);}
700606d414cSSatish Balay   if (a->saved_values) {ierr = PetscFree(a->saved_values);CHKERRQ(ierr);}
701cc8ba8e1SBarry Smith   if (a->coloring) {ierr = ISColoringDestroy(a->coloring);CHKERRQ(ierr);}
702606d414cSSatish Balay   ierr = PetscFree(a);CHKERRQ(ierr);
7033a40ed3dSBarry Smith   PetscFunctionReturn(0);
70417ab2063SBarry Smith }
70517ab2063SBarry Smith 
7064a2ae208SSatish Balay #undef __FUNCT__
7074a2ae208SSatish Balay #define __FUNCT__ "MatCompress_SeqAIJ"
7088f6be9afSLois Curfman McInnes int MatCompress_SeqAIJ(Mat A)
70917ab2063SBarry Smith {
7103a40ed3dSBarry Smith   PetscFunctionBegin;
7113a40ed3dSBarry Smith   PetscFunctionReturn(0);
71217ab2063SBarry Smith }
71317ab2063SBarry Smith 
7144a2ae208SSatish Balay #undef __FUNCT__
7154a2ae208SSatish Balay #define __FUNCT__ "MatSetOption_SeqAIJ"
7168f6be9afSLois Curfman McInnes int MatSetOption_SeqAIJ(Mat A,MatOption op)
71717ab2063SBarry Smith {
718416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
7193a40ed3dSBarry Smith 
7203a40ed3dSBarry Smith   PetscFunctionBegin;
721a65d3064SKris Buschelman   switch (op) {
722a65d3064SKris Buschelman     case MAT_ROW_ORIENTED:
723a65d3064SKris Buschelman       a->roworiented       = PETSC_TRUE;
724a65d3064SKris Buschelman       break;
725a65d3064SKris Buschelman     case MAT_KEEP_ZEROED_ROWS:
726a65d3064SKris Buschelman       a->keepzeroedrows    = PETSC_TRUE;
727a65d3064SKris Buschelman       break;
728a65d3064SKris Buschelman     case MAT_COLUMN_ORIENTED:
729a65d3064SKris Buschelman       a->roworiented       = PETSC_FALSE;
730a65d3064SKris Buschelman       break;
731a65d3064SKris Buschelman     case MAT_COLUMNS_SORTED:
732a65d3064SKris Buschelman       a->sorted            = PETSC_TRUE;
733a65d3064SKris Buschelman       break;
734a65d3064SKris Buschelman     case MAT_COLUMNS_UNSORTED:
735a65d3064SKris Buschelman       a->sorted            = PETSC_FALSE;
736a65d3064SKris Buschelman       break;
737a65d3064SKris Buschelman     case MAT_NO_NEW_NONZERO_LOCATIONS:
738a65d3064SKris Buschelman       a->nonew             = 1;
739a65d3064SKris Buschelman       break;
740a65d3064SKris Buschelman     case MAT_NEW_NONZERO_LOCATION_ERR:
741a65d3064SKris Buschelman       a->nonew             = -1;
742a65d3064SKris Buschelman       break;
743a65d3064SKris Buschelman     case MAT_NEW_NONZERO_ALLOCATION_ERR:
744a65d3064SKris Buschelman       a->nonew             = -2;
745a65d3064SKris Buschelman       break;
746a65d3064SKris Buschelman     case MAT_YES_NEW_NONZERO_LOCATIONS:
747a65d3064SKris Buschelman       a->nonew             = 0;
748a65d3064SKris Buschelman       break;
749a65d3064SKris Buschelman     case MAT_IGNORE_ZERO_ENTRIES:
750a65d3064SKris Buschelman       a->ignorezeroentries = PETSC_TRUE;
751a65d3064SKris Buschelman       break;
752a65d3064SKris Buschelman     case MAT_USE_INODES:
753a65d3064SKris Buschelman       a->inode.use         = PETSC_TRUE;
754a65d3064SKris Buschelman       break;
755a65d3064SKris Buschelman     case MAT_DO_NOT_USE_INODES:
756a65d3064SKris Buschelman       a->inode.use         = PETSC_FALSE;
757a65d3064SKris Buschelman       break;
758a65d3064SKris Buschelman     case MAT_ROWS_SORTED:
759a65d3064SKris Buschelman     case MAT_ROWS_UNSORTED:
760a65d3064SKris Buschelman     case MAT_YES_NEW_DIAGONALS:
761a65d3064SKris Buschelman     case MAT_IGNORE_OFF_PROC_ENTRIES:
762a65d3064SKris Buschelman     case MAT_USE_HASH_TABLE:
763d03495bdSKris Buschelman     case MAT_USE_SINGLE_PRECISION_SOLVES:
764b0a32e0cSBarry Smith       PetscLogInfo(A,"MatSetOption_SeqAIJ:Option ignored\n");
765a65d3064SKris Buschelman       break;
766a65d3064SKris Buschelman     case MAT_NO_NEW_DIAGONALS:
76729bbc08cSBarry Smith       SETERRQ(PETSC_ERR_SUP,"MAT_NO_NEW_DIAGONALS");
768a65d3064SKris Buschelman       break;
769a65d3064SKris Buschelman     case MAT_INODE_LIMIT_1:
770a65d3064SKris Buschelman       a->inode.limit  = 1;
771a65d3064SKris Buschelman       break;
772a65d3064SKris Buschelman     case MAT_INODE_LIMIT_2:
773a65d3064SKris Buschelman       a->inode.limit  = 2;
774a65d3064SKris Buschelman       break;
775a65d3064SKris Buschelman     case MAT_INODE_LIMIT_3:
776a65d3064SKris Buschelman       a->inode.limit  = 3;
777a65d3064SKris Buschelman       break;
778a65d3064SKris Buschelman     case MAT_INODE_LIMIT_4:
779a65d3064SKris Buschelman       a->inode.limit  = 4;
780a65d3064SKris Buschelman       break;
781a65d3064SKris Buschelman     case MAT_INODE_LIMIT_5:
782a65d3064SKris Buschelman       a->inode.limit  = 5;
783a65d3064SKris Buschelman       break;
784a65d3064SKris Buschelman     default:
785a65d3064SKris Buschelman       SETERRQ(PETSC_ERR_SUP,"unknown option");
786a65d3064SKris Buschelman       break;
787a65d3064SKris Buschelman   }
7883a40ed3dSBarry Smith   PetscFunctionReturn(0);
78917ab2063SBarry Smith }
79017ab2063SBarry Smith 
7914a2ae208SSatish Balay #undef __FUNCT__
7924a2ae208SSatish Balay #define __FUNCT__ "MatGetDiagonal_SeqAIJ"
7938f6be9afSLois Curfman McInnes int MatGetDiagonal_SeqAIJ(Mat A,Vec v)
79417ab2063SBarry Smith {
795416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
7963a40ed3dSBarry Smith   int          i,j,n,shift = a->indexshift,ierr;
79787828ca2SBarry Smith   PetscScalar  *x,zero = 0.0;
79817ab2063SBarry Smith 
7993a40ed3dSBarry Smith   PetscFunctionBegin;
8003a40ed3dSBarry Smith   ierr = VecSet(&zero,v);CHKERRQ(ierr);
80136db0b34SBarry Smith   ierr = VecGetArray(v,&x);CHKERRQ(ierr);
80236db0b34SBarry Smith   ierr = VecGetLocalSize(v,&n);CHKERRQ(ierr);
803273d9f13SBarry Smith   if (n != A->m) SETERRQ(PETSC_ERR_ARG_SIZ,"Nonconforming matrix and vector");
804273d9f13SBarry Smith   for (i=0; i<A->m; i++) {
805416022c9SBarry Smith     for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
806416022c9SBarry Smith       if (a->j[j]+shift == i) {
807416022c9SBarry Smith         x[i] = a->a[j];
80817ab2063SBarry Smith         break;
80917ab2063SBarry Smith       }
81017ab2063SBarry Smith     }
81117ab2063SBarry Smith   }
81236db0b34SBarry Smith   ierr = VecRestoreArray(v,&x);CHKERRQ(ierr);
8133a40ed3dSBarry Smith   PetscFunctionReturn(0);
81417ab2063SBarry Smith }
81517ab2063SBarry Smith 
816d5d45c9bSBarry Smith 
8174a2ae208SSatish Balay #undef __FUNCT__
8184a2ae208SSatish Balay #define __FUNCT__ "MatMultTransposeAdd_SeqAIJ"
8197c922b88SBarry Smith int MatMultTransposeAdd_SeqAIJ(Mat A,Vec xx,Vec zz,Vec yy)
82017ab2063SBarry Smith {
821416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
8225c897100SBarry Smith   PetscScalar  *x,*y;
8235c897100SBarry Smith   int          ierr,m = A->m,shift = a->indexshift;
8245c897100SBarry Smith #if !defined(PETSC_USE_FORTRAN_KERNEL_MULTTRANSPOSEAIJ)
8255c897100SBarry Smith   PetscScalar  *v,alpha;
8265c897100SBarry Smith   int          n,i,*idx;
8275c897100SBarry Smith #endif
82817ab2063SBarry Smith 
8293a40ed3dSBarry Smith   PetscFunctionBegin;
8302e8a6d31SBarry Smith   if (zz != yy) {ierr = VecCopy(zz,yy);CHKERRQ(ierr);}
831e1311b90SBarry Smith   ierr = VecGetArray(xx,&x);CHKERRQ(ierr);
832e1311b90SBarry Smith   ierr = VecGetArray(yy,&y);CHKERRQ(ierr);
83317ab2063SBarry Smith   y = y + shift; /* shift for Fortran start by 1 indexing */
8345c897100SBarry Smith 
8355c897100SBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_MULTTRANSPOSEAIJ)
8365c897100SBarry Smith   fortranmulttransposeaddaij_(&m,x,a->i,a->j+shift,a->a+shift,y);
8375c897100SBarry Smith #else
83817ab2063SBarry Smith   for (i=0; i<m; i++) {
839416022c9SBarry Smith     idx   = a->j + a->i[i] + shift;
840416022c9SBarry Smith     v     = a->a + a->i[i] + shift;
841416022c9SBarry Smith     n     = a->i[i+1] - a->i[i];
84217ab2063SBarry Smith     alpha = x[i];
84317ab2063SBarry Smith     while (n-->0) {y[*idx++] += alpha * *v++;}
84417ab2063SBarry Smith   }
8455c897100SBarry Smith #endif
846b0a32e0cSBarry Smith   PetscLogFlops(2*a->nz);
847e1311b90SBarry Smith   ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
848e1311b90SBarry Smith   ierr = VecRestoreArray(yy,&y);CHKERRQ(ierr);
8493a40ed3dSBarry Smith   PetscFunctionReturn(0);
85017ab2063SBarry Smith }
85117ab2063SBarry Smith 
8524a2ae208SSatish Balay #undef __FUNCT__
8535c897100SBarry Smith #define __FUNCT__ "MatMultTranspose_SeqAIJ"
8545c897100SBarry Smith int MatMultTranspose_SeqAIJ(Mat A,Vec xx,Vec yy)
8555c897100SBarry Smith {
856*8d5b0100SBarry Smith   PetscScalar  zero = 0.0;
8575c897100SBarry Smith   int          ierr;
8585c897100SBarry Smith 
8595c897100SBarry Smith   PetscFunctionBegin;
8605c897100SBarry Smith   ierr = VecSet(&zero,yy);CHKERRQ(ierr);
8615c897100SBarry Smith   ierr = MatMultTransposeAdd_SeqAIJ(A,xx,yy,yy);CHKERRQ(ierr);
8625c897100SBarry Smith   PetscFunctionReturn(0);
8635c897100SBarry Smith }
8645c897100SBarry Smith 
8655c897100SBarry Smith 
8665c897100SBarry Smith #undef __FUNCT__
8674a2ae208SSatish Balay #define __FUNCT__ "MatMult_SeqAIJ"
86844cd7ae7SLois Curfman McInnes int MatMult_SeqAIJ(Mat A,Vec xx,Vec yy)
86917ab2063SBarry Smith {
870416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
87187828ca2SBarry Smith   PetscScalar  *x,*y,*v,sum;
872273d9f13SBarry Smith   int          ierr,m = A->m,*idx,shift = a->indexshift,*ii;
873aa482453SBarry Smith #if !defined(PETSC_USE_FORTRAN_KERNEL_MULTAIJ)
874e36a17ebSSatish Balay   int          n,i,jrow,j;
875e36a17ebSSatish Balay #endif
87617ab2063SBarry Smith 
877aa482453SBarry Smith #if defined(PETSC_HAVE_PRAGMA_DISJOINT)
878fee21e36SBarry Smith #pragma disjoint(*x,*y,*v)
879fee21e36SBarry Smith #endif
880fee21e36SBarry Smith 
8813a40ed3dSBarry Smith   PetscFunctionBegin;
882e1311b90SBarry Smith   ierr = VecGetArray(xx,&x);CHKERRQ(ierr);
883e1311b90SBarry Smith   ierr = VecGetArray(yy,&y);CHKERRQ(ierr);
88417ab2063SBarry Smith   x    = x + shift;    /* shift for Fortran start by 1 indexing */
885416022c9SBarry Smith   idx  = a->j;
886d64ed03dSBarry Smith   v    = a->a;
887416022c9SBarry Smith   ii   = a->i;
888aa482453SBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_MULTAIJ)
88929b5ca8aSSatish Balay   fortranmultaij_(&m,x,ii,idx+shift,v+shift,y);
8908d195f9aSBarry Smith #else
891d64ed03dSBarry Smith   v    += shift; /* shift for Fortran start by 1 indexing */
892d64ed03dSBarry Smith   idx  += shift;
89317ab2063SBarry Smith   for (i=0; i<m; i++) {
8949ea0dfa2SSatish Balay     jrow = ii[i];
8959ea0dfa2SSatish Balay     n    = ii[i+1] - jrow;
89617ab2063SBarry Smith     sum  = 0.0;
8979ea0dfa2SSatish Balay     for (j=0; j<n; j++) {
8989ea0dfa2SSatish Balay       sum += v[jrow]*x[idx[jrow]]; jrow++;
8999ea0dfa2SSatish Balay      }
90017ab2063SBarry Smith     y[i] = sum;
90117ab2063SBarry Smith   }
9028d195f9aSBarry Smith #endif
903b0a32e0cSBarry Smith   PetscLogFlops(2*a->nz - m);
904e1311b90SBarry Smith   ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
905e1311b90SBarry Smith   ierr = VecRestoreArray(yy,&y);CHKERRQ(ierr);
9063a40ed3dSBarry Smith   PetscFunctionReturn(0);
90717ab2063SBarry Smith }
90817ab2063SBarry Smith 
9094a2ae208SSatish Balay #undef __FUNCT__
9104a2ae208SSatish Balay #define __FUNCT__ "MatMultAdd_SeqAIJ"
91144cd7ae7SLois Curfman McInnes int MatMultAdd_SeqAIJ(Mat A,Vec xx,Vec yy,Vec zz)
91217ab2063SBarry Smith {
913416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
91487828ca2SBarry Smith   PetscScalar  *x,*y,*z,*v,sum;
915273d9f13SBarry Smith   int          ierr,m = A->m,*idx,shift = a->indexshift,*ii;
916aa482453SBarry Smith #if !defined(PETSC_USE_FORTRAN_KERNEL_MULTADDAIJ)
917e36a17ebSSatish Balay   int          n,i,jrow,j;
918e36a17ebSSatish Balay #endif
9199ea0dfa2SSatish Balay 
9203a40ed3dSBarry Smith   PetscFunctionBegin;
921e1311b90SBarry Smith   ierr = VecGetArray(xx,&x);CHKERRQ(ierr);
922e1311b90SBarry Smith   ierr = VecGetArray(yy,&y);CHKERRQ(ierr);
9232e8a6d31SBarry Smith   if (zz != yy) {
924e1311b90SBarry Smith     ierr = VecGetArray(zz,&z);CHKERRQ(ierr);
9252e8a6d31SBarry Smith   } else {
9262e8a6d31SBarry Smith     z = y;
9272e8a6d31SBarry Smith   }
92817ab2063SBarry Smith   x    = x + shift; /* shift for Fortran start by 1 indexing */
929cddf8d76SBarry Smith   idx  = a->j;
930d64ed03dSBarry Smith   v    = a->a;
931cddf8d76SBarry Smith   ii   = a->i;
932aa482453SBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_MULTADDAIJ)
93329b5ca8aSSatish Balay   fortranmultaddaij_(&m,x,ii,idx+shift,v+shift,y,z);
93402ab625aSSatish Balay #else
935d64ed03dSBarry Smith   v   += shift; /* shift for Fortran start by 1 indexing */
936d64ed03dSBarry Smith   idx += shift;
93717ab2063SBarry Smith   for (i=0; i<m; i++) {
9389ea0dfa2SSatish Balay     jrow = ii[i];
9399ea0dfa2SSatish Balay     n    = ii[i+1] - jrow;
94017ab2063SBarry Smith     sum  = y[i];
9419ea0dfa2SSatish Balay     for (j=0; j<n; j++) {
9429ea0dfa2SSatish Balay       sum += v[jrow]*x[idx[jrow]]; jrow++;
9439ea0dfa2SSatish Balay      }
94417ab2063SBarry Smith     z[i] = sum;
94517ab2063SBarry Smith   }
94602ab625aSSatish Balay #endif
947b0a32e0cSBarry Smith   PetscLogFlops(2*a->nz);
948e1311b90SBarry Smith   ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
949e1311b90SBarry Smith   ierr = VecRestoreArray(yy,&y);CHKERRQ(ierr);
9502e8a6d31SBarry Smith   if (zz != yy) {
951e1311b90SBarry Smith     ierr = VecRestoreArray(zz,&z);CHKERRQ(ierr);
9522e8a6d31SBarry Smith   }
9533a40ed3dSBarry Smith   PetscFunctionReturn(0);
95417ab2063SBarry Smith }
95517ab2063SBarry Smith 
95617ab2063SBarry Smith /*
95717ab2063SBarry Smith      Adds diagonal pointers to sparse matrix structure.
95817ab2063SBarry Smith */
9594a2ae208SSatish Balay #undef __FUNCT__
9604a2ae208SSatish Balay #define __FUNCT__ "MatMarkDiagonal_SeqAIJ"
961f1e2ffcdSBarry Smith int MatMarkDiagonal_SeqAIJ(Mat A)
96217ab2063SBarry Smith {
963416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
964b0a32e0cSBarry Smith   int        i,j,*diag,m = A->m,shift = a->indexshift,ierr;
96517ab2063SBarry Smith 
9663a40ed3dSBarry Smith   PetscFunctionBegin;
967f1e2ffcdSBarry Smith   if (a->diag) PetscFunctionReturn(0);
968f1e2ffcdSBarry Smith 
969b0a32e0cSBarry Smith   ierr = PetscMalloc((m+1)*sizeof(int),&diag);CHKERRQ(ierr);
970b0a32e0cSBarry Smith   PetscLogObjectMemory(A,(m+1)*sizeof(int));
971273d9f13SBarry Smith   for (i=0; i<A->m; i++) {
97235b0346bSBarry Smith     diag[i] = a->i[i+1];
973416022c9SBarry Smith     for (j=a->i[i]+shift; j<a->i[i+1]+shift; j++) {
974416022c9SBarry Smith       if (a->j[j]+shift == i) {
97517ab2063SBarry Smith         diag[i] = j - shift;
97617ab2063SBarry Smith         break;
97717ab2063SBarry Smith       }
97817ab2063SBarry Smith     }
97917ab2063SBarry Smith   }
980416022c9SBarry Smith   a->diag = diag;
9813a40ed3dSBarry Smith   PetscFunctionReturn(0);
98217ab2063SBarry Smith }
98317ab2063SBarry Smith 
984be5855fcSBarry Smith /*
985be5855fcSBarry Smith      Checks for missing diagonals
986be5855fcSBarry Smith */
9874a2ae208SSatish Balay #undef __FUNCT__
9884a2ae208SSatish Balay #define __FUNCT__ "MatMissingDiagonal_SeqAIJ"
989f1e2ffcdSBarry Smith int MatMissingDiagonal_SeqAIJ(Mat A)
990be5855fcSBarry Smith {
991be5855fcSBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
992f1e2ffcdSBarry Smith   int        *diag,*jj = a->j,i,shift = a->indexshift,ierr;
993be5855fcSBarry Smith 
994be5855fcSBarry Smith   PetscFunctionBegin;
995f1e2ffcdSBarry Smith   ierr = MatMarkDiagonal_SeqAIJ(A);CHKERRQ(ierr);
996f1e2ffcdSBarry Smith   diag = a->diag;
997273d9f13SBarry Smith   for (i=0; i<A->m; i++) {
998be5855fcSBarry Smith     if (jj[diag[i]+shift] != i-shift) {
99929bbc08cSBarry Smith       SETERRQ1(1,"Matrix is missing diagonal number %d",i);
1000be5855fcSBarry Smith     }
1001be5855fcSBarry Smith   }
1002be5855fcSBarry Smith   PetscFunctionReturn(0);
1003be5855fcSBarry Smith }
1004be5855fcSBarry Smith 
10054a2ae208SSatish Balay #undef __FUNCT__
10064a2ae208SSatish Balay #define __FUNCT__ "MatRelax_SeqAIJ"
100736db0b34SBarry Smith int MatRelax_SeqAIJ(Mat A,Vec bb,PetscReal omega,MatSORType flag,PetscReal fshift,int its,Vec xx)
100817ab2063SBarry Smith {
1009416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
101087828ca2SBarry Smith   PetscScalar  *x,*b,*bs, d,*xs,sum,*v = a->a,*t=0,scale,*ts,*xb,*idiag=0;
1011273d9f13SBarry Smith   int          ierr,*idx,*diag,n = A->n,m = A->m,i,shift = a->indexshift;
101217ab2063SBarry Smith 
10133a40ed3dSBarry Smith   PetscFunctionBegin;
1014e1311b90SBarry Smith   ierr = VecGetArray(xx,&x);CHKERRQ(ierr);
1015fb2e594dSBarry Smith   if (xx != bb) {
1016e1311b90SBarry Smith     ierr = VecGetArray(bb,&b);CHKERRQ(ierr);
1017fb2e594dSBarry Smith   } else {
1018fb2e594dSBarry Smith     b = x;
1019fb2e594dSBarry Smith   }
1020fb2e594dSBarry Smith 
1021f1e2ffcdSBarry Smith   if (!a->diag) {ierr = MatMarkDiagonal_SeqAIJ(A);CHKERRQ(ierr);}
1022416022c9SBarry Smith   diag = a->diag;
1023416022c9SBarry Smith   xs   = x + shift; /* shifted by one for index start of a or a->j*/
102417ab2063SBarry Smith   if (flag == SOR_APPLY_UPPER) {
102517ab2063SBarry Smith    /* apply (U + D/omega) to the vector */
102617ab2063SBarry Smith     bs = b + shift;
102717ab2063SBarry Smith     for (i=0; i<m; i++) {
1028416022c9SBarry Smith         d    = fshift + a->a[diag[i] + shift];
1029416022c9SBarry Smith         n    = a->i[i+1] - diag[i] - 1;
1030b0a32e0cSBarry Smith 	PetscLogFlops(2*n-1);
1031416022c9SBarry Smith         idx  = a->j + diag[i] + (!shift);
1032416022c9SBarry Smith         v    = a->a + diag[i] + (!shift);
103317ab2063SBarry Smith         sum  = b[i]*d/omega;
103417ab2063SBarry Smith         SPARSEDENSEDOT(sum,bs,v,idx,n);
103517ab2063SBarry Smith         x[i] = sum;
103617ab2063SBarry Smith     }
1037cb5b572fSBarry Smith     ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
1038fb2e594dSBarry Smith     if (bb != xx) {ierr = VecRestoreArray(bb,&b);CHKERRQ(ierr);}
10393a40ed3dSBarry Smith     PetscFunctionReturn(0);
104017ab2063SBarry Smith   }
1041c783ea89SBarry Smith 
1042c783ea89SBarry Smith   /* setup workspace for Eisenstat */
1043c783ea89SBarry Smith   if (flag & SOR_EISENSTAT) {
1044c783ea89SBarry Smith     if (!a->idiag) {
104587828ca2SBarry Smith       ierr     = PetscMalloc(2*m*sizeof(PetscScalar),&a->idiag);CHKERRQ(ierr);
1046c783ea89SBarry Smith       a->ssor  = a->idiag + m;
1047c783ea89SBarry Smith       v        = a->a;
1048c783ea89SBarry Smith       for (i=0; i<m; i++) { a->idiag[i] = 1.0/v[diag[i]];}
1049c783ea89SBarry Smith     }
1050c783ea89SBarry Smith     t     = a->ssor;
1051c783ea89SBarry Smith     idiag = a->idiag;
1052c783ea89SBarry Smith   }
1053fc3d8934SBarry Smith     /* Let  A = L + U + D; where L is lower trianglar,
1054fc3d8934SBarry Smith     U is upper triangular, E is diagonal; This routine applies
1055fc3d8934SBarry Smith 
1056fc3d8934SBarry Smith             (L + E)^{-1} A (U + E)^{-1}
1057fc3d8934SBarry Smith 
1058fc3d8934SBarry Smith     to a vector efficiently using Eisenstat's trick. This is for
1059fc3d8934SBarry Smith     the case of SSOR preconditioner, so E is D/omega where omega
106048af12d7SBarry Smith     is the relaxation factor.
1061fc3d8934SBarry Smith     */
1062fc3d8934SBarry Smith 
106348af12d7SBarry Smith   if (flag == SOR_APPLY_LOWER) {
106429bbc08cSBarry Smith     SETERRQ(PETSC_ERR_SUP,"SOR_APPLY_LOWER is not implemented");
106548af12d7SBarry Smith   } else if ((flag & SOR_EISENSTAT) && omega == 1.0 && shift == 0 && fshift == 0.0) {
106648af12d7SBarry Smith     /* special case for omega = 1.0 saves flops and some integer ops */
106787828ca2SBarry Smith     PetscScalar *v2;
106848af12d7SBarry Smith 
1069733d66baSBarry Smith     v2    = a->a;
1070fc3d8934SBarry Smith     /*  x = (E + U)^{-1} b */
1071fc3d8934SBarry Smith     for (i=m-1; i>=0; i--) {
1072fc3d8934SBarry Smith       n    = a->i[i+1] - diag[i] - 1;
1073fc3d8934SBarry Smith       idx  = a->j + diag[i] + 1;
1074fc3d8934SBarry Smith       v    = a->a + diag[i] + 1;
1075fc3d8934SBarry Smith       sum  = b[i];
1076fc3d8934SBarry Smith       SPARSEDENSEMDOT(sum,xs,v,idx,n);
1077b4632166SBarry Smith       x[i] = sum*idiag[i];
1078fc3d8934SBarry Smith 
1079fc3d8934SBarry Smith       /*  t = b - (2*E - D)x */
1080733d66baSBarry Smith       t[i] = b[i] - (v2[diag[i]])*x[i];
1081733d66baSBarry Smith     }
1082fc3d8934SBarry Smith 
1083fc3d8934SBarry Smith     /*  t = (E + L)^{-1}t */
1084fc3d8934SBarry Smith     diag = a->diag;
1085fc3d8934SBarry Smith     for (i=0; i<m; i++) {
1086fc3d8934SBarry Smith       n    = diag[i] - a->i[i];
1087fc3d8934SBarry Smith       idx  = a->j + a->i[i];
1088fc3d8934SBarry Smith       v    = a->a + a->i[i];
1089fc3d8934SBarry Smith       sum  = t[i];
1090fc3d8934SBarry Smith       SPARSEDENSEMDOT(sum,t,v,idx,n);
1091b4632166SBarry Smith       t[i]  = sum*idiag[i];
1092fc3d8934SBarry Smith 
1093fc3d8934SBarry Smith       /*  x = x + t */
1094733d66baSBarry Smith       x[i] += t[i];
1095733d66baSBarry Smith     }
1096733d66baSBarry Smith 
1097b0a32e0cSBarry Smith     PetscLogFlops(3*m-1 + 2*a->nz);
1098fc3d8934SBarry Smith     ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
1099fc3d8934SBarry Smith     if (bb != xx) {ierr = VecRestoreArray(bb,&b);CHKERRQ(ierr);}
1100fc3d8934SBarry Smith     PetscFunctionReturn(0);
11013a40ed3dSBarry Smith   } else if (flag & SOR_EISENSTAT) {
110217ab2063SBarry Smith     /* Let  A = L + U + D; where L is lower trianglar,
110317ab2063SBarry Smith     U is upper triangular, E is diagonal; This routine applies
110417ab2063SBarry Smith 
110517ab2063SBarry Smith             (L + E)^{-1} A (U + E)^{-1}
110617ab2063SBarry Smith 
110717ab2063SBarry Smith     to a vector efficiently using Eisenstat's trick. This is for
110817ab2063SBarry Smith     the case of SSOR preconditioner, so E is D/omega where omega
110917ab2063SBarry Smith     is the relaxation factor.
111017ab2063SBarry Smith     */
111117ab2063SBarry Smith     scale = (2.0/omega) - 1.0;
111217ab2063SBarry Smith 
111317ab2063SBarry Smith     /*  x = (E + U)^{-1} b */
111417ab2063SBarry Smith     for (i=m-1; i>=0; i--) {
1115416022c9SBarry Smith       d    = fshift + a->a[diag[i] + shift];
1116416022c9SBarry Smith       n    = a->i[i+1] - diag[i] - 1;
1117416022c9SBarry Smith       idx  = a->j + diag[i] + (!shift);
1118416022c9SBarry Smith       v    = a->a + diag[i] + (!shift);
111917ab2063SBarry Smith       sum  = b[i];
112017ab2063SBarry Smith       SPARSEDENSEMDOT(sum,xs,v,idx,n);
112117ab2063SBarry Smith       x[i] = omega*(sum/d);
112217ab2063SBarry Smith     }
112317ab2063SBarry Smith 
112417ab2063SBarry Smith     /*  t = b - (2*E - D)x */
1125416022c9SBarry Smith     v = a->a;
112617ab2063SBarry Smith     for (i=0; i<m; i++) { t[i] = b[i] - scale*(v[*diag++ + shift])*x[i]; }
112717ab2063SBarry Smith 
112817ab2063SBarry Smith     /*  t = (E + L)^{-1}t */
1129416022c9SBarry Smith     ts = t + shift; /* shifted by one for index start of a or a->j*/
1130416022c9SBarry Smith     diag = a->diag;
113117ab2063SBarry Smith     for (i=0; i<m; i++) {
1132416022c9SBarry Smith       d    = fshift + a->a[diag[i]+shift];
1133416022c9SBarry Smith       n    = diag[i] - a->i[i];
1134416022c9SBarry Smith       idx  = a->j + a->i[i] + shift;
1135416022c9SBarry Smith       v    = a->a + a->i[i] + shift;
113617ab2063SBarry Smith       sum  = t[i];
113717ab2063SBarry Smith       SPARSEDENSEMDOT(sum,ts,v,idx,n);
113817ab2063SBarry Smith       t[i] = omega*(sum/d);
1139733d66baSBarry Smith       /*  x = x + t */
1140733d66baSBarry Smith       x[i] += t[i];
114117ab2063SBarry Smith     }
114217ab2063SBarry Smith 
1143b0a32e0cSBarry Smith     PetscLogFlops(6*m-1 + 2*a->nz);
1144cb5b572fSBarry Smith     ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
1145fb2e594dSBarry Smith     if (bb != xx) {ierr = VecRestoreArray(bb,&b);CHKERRQ(ierr);}
11463a40ed3dSBarry Smith     PetscFunctionReturn(0);
114717ab2063SBarry Smith   }
114817ab2063SBarry Smith   if (flag & SOR_ZERO_INITIAL_GUESS) {
114917ab2063SBarry Smith     if (flag & SOR_FORWARD_SWEEP || flag & SOR_LOCAL_FORWARD_SWEEP){
115077d8c4bbSBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_RELAXAIJ)
115177d8c4bbSBarry Smith       fortranrelaxaijforwardzero_(&m,&omega,x,a->i,a->j,diag,a->a,b);
115277d8c4bbSBarry Smith #else
115317ab2063SBarry Smith       for (i=0; i<m; i++) {
1154416022c9SBarry Smith         d    = fshift + a->a[diag[i]+shift];
1155416022c9SBarry Smith         n    = diag[i] - a->i[i];
1156b0a32e0cSBarry Smith 	PetscLogFlops(2*n-1);
1157416022c9SBarry Smith         idx  = a->j + a->i[i] + shift;
1158416022c9SBarry Smith         v    = a->a + a->i[i] + shift;
115917ab2063SBarry Smith         sum  = b[i];
116017ab2063SBarry Smith         SPARSEDENSEMDOT(sum,xs,v,idx,n);
116117ab2063SBarry Smith         x[i] = omega*(sum/d);
116217ab2063SBarry Smith       }
116377d8c4bbSBarry Smith #endif
116417ab2063SBarry Smith       xb = x;
11653a40ed3dSBarry Smith     } else xb = b;
116617ab2063SBarry Smith     if ((flag & SOR_FORWARD_SWEEP || flag & SOR_LOCAL_FORWARD_SWEEP) &&
116717ab2063SBarry Smith         (flag & SOR_BACKWARD_SWEEP || flag & SOR_LOCAL_BACKWARD_SWEEP)) {
116817ab2063SBarry Smith       for (i=0; i<m; i++) {
1169416022c9SBarry Smith         x[i] *= a->a[diag[i]+shift];
117017ab2063SBarry Smith       }
1171b0a32e0cSBarry Smith       PetscLogFlops(m);
117217ab2063SBarry Smith     }
117317ab2063SBarry Smith     if (flag & SOR_BACKWARD_SWEEP || flag & SOR_LOCAL_BACKWARD_SWEEP){
117477d8c4bbSBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_RELAXAIJ)
117577d8c4bbSBarry Smith       fortranrelaxaijbackwardzero_(&m,&omega,x,a->i,a->j,diag,a->a,xb);
117677d8c4bbSBarry Smith #else
117717ab2063SBarry Smith       for (i=m-1; i>=0; i--) {
1178416022c9SBarry Smith         d    = fshift + a->a[diag[i] + shift];
1179416022c9SBarry Smith         n    = a->i[i+1] - diag[i] - 1;
1180b0a32e0cSBarry Smith 	PetscLogFlops(2*n-1);
1181416022c9SBarry Smith         idx  = a->j + diag[i] + (!shift);
1182416022c9SBarry Smith         v    = a->a + diag[i] + (!shift);
118317ab2063SBarry Smith         sum  = xb[i];
118417ab2063SBarry Smith         SPARSEDENSEMDOT(sum,xs,v,idx,n);
118517ab2063SBarry Smith         x[i] = omega*(sum/d);
118617ab2063SBarry Smith       }
118777d8c4bbSBarry Smith #endif
118817ab2063SBarry Smith     }
118917ab2063SBarry Smith     its--;
119017ab2063SBarry Smith   }
119117ab2063SBarry Smith   while (its--) {
119217ab2063SBarry Smith     if (flag & SOR_FORWARD_SWEEP || flag & SOR_LOCAL_FORWARD_SWEEP){
119377d8c4bbSBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_RELAXAIJ)
119477d8c4bbSBarry Smith       fortranrelaxaijforward_(&m,&omega,x,a->i,a->j,diag,a->a,b);
119577d8c4bbSBarry Smith #else
119617ab2063SBarry Smith       for (i=0; i<m; i++) {
1197416022c9SBarry Smith         d    = fshift + a->a[diag[i]+shift];
1198416022c9SBarry Smith         n    = a->i[i+1] - a->i[i];
1199b0a32e0cSBarry Smith 	PetscLogFlops(2*n-1);
1200416022c9SBarry Smith         idx  = a->j + a->i[i] + shift;
1201416022c9SBarry Smith         v    = a->a + a->i[i] + shift;
120217ab2063SBarry Smith         sum  = b[i];
120317ab2063SBarry Smith         SPARSEDENSEMDOT(sum,xs,v,idx,n);
12047e33a6baSBarry Smith         x[i] = (1. - omega)*x[i] + omega*(sum + a->a[diag[i]+shift]*x[i])/d;
120517ab2063SBarry Smith       }
120677d8c4bbSBarry Smith #endif
120717ab2063SBarry Smith     }
120817ab2063SBarry Smith     if (flag & SOR_BACKWARD_SWEEP || flag & SOR_LOCAL_BACKWARD_SWEEP){
120977d8c4bbSBarry Smith #if defined(PETSC_USE_FORTRAN_KERNEL_RELAXAIJ)
121077d8c4bbSBarry Smith       fortranrelaxaijbackward_(&m,&omega,x,a->i,a->j,diag,a->a,b);
121177d8c4bbSBarry Smith #else
121217ab2063SBarry Smith       for (i=m-1; i>=0; i--) {
1213416022c9SBarry Smith         d    = fshift + a->a[diag[i] + shift];
1214416022c9SBarry Smith         n    = a->i[i+1] - a->i[i];
1215b0a32e0cSBarry Smith 	PetscLogFlops(2*n-1);
1216416022c9SBarry Smith         idx  = a->j + a->i[i] + shift;
1217416022c9SBarry Smith         v    = a->a + a->i[i] + shift;
121817ab2063SBarry Smith         sum  = b[i];
121917ab2063SBarry Smith         SPARSEDENSEMDOT(sum,xs,v,idx,n);
12207e33a6baSBarry Smith         x[i] = (1. - omega)*x[i] + omega*(sum + a->a[diag[i]+shift]*x[i])/d;
122117ab2063SBarry Smith       }
122277d8c4bbSBarry Smith #endif
122317ab2063SBarry Smith     }
122417ab2063SBarry Smith   }
1225cb5b572fSBarry Smith   ierr = VecRestoreArray(xx,&x);CHKERRQ(ierr);
1226fb2e594dSBarry Smith   if (bb != xx) {ierr = VecRestoreArray(bb,&b);CHKERRQ(ierr);}
12273a40ed3dSBarry Smith   PetscFunctionReturn(0);
122817ab2063SBarry Smith }
122917ab2063SBarry Smith 
12304a2ae208SSatish Balay #undef __FUNCT__
12314a2ae208SSatish Balay #define __FUNCT__ "MatGetInfo_SeqAIJ"
12328f6be9afSLois Curfman McInnes int MatGetInfo_SeqAIJ(Mat A,MatInfoType flag,MatInfo *info)
123317ab2063SBarry Smith {
1234416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
12354e220ebcSLois Curfman McInnes 
12363a40ed3dSBarry Smith   PetscFunctionBegin;
1237273d9f13SBarry Smith   info->rows_global    = (double)A->m;
1238273d9f13SBarry Smith   info->columns_global = (double)A->n;
1239273d9f13SBarry Smith   info->rows_local     = (double)A->m;
1240273d9f13SBarry Smith   info->columns_local  = (double)A->n;
12414e220ebcSLois Curfman McInnes   info->block_size     = 1.0;
12424e220ebcSLois Curfman McInnes   info->nz_allocated   = (double)a->maxnz;
12434e220ebcSLois Curfman McInnes   info->nz_used        = (double)a->nz;
12444e220ebcSLois Curfman McInnes   info->nz_unneeded    = (double)(a->maxnz - a->nz);
12454e220ebcSLois Curfman McInnes   info->assemblies     = (double)A->num_ass;
12464e220ebcSLois Curfman McInnes   info->mallocs        = (double)a->reallocs;
12474e220ebcSLois Curfman McInnes   info->memory         = A->mem;
12484e220ebcSLois Curfman McInnes   if (A->factor) {
12494e220ebcSLois Curfman McInnes     info->fill_ratio_given  = A->info.fill_ratio_given;
12504e220ebcSLois Curfman McInnes     info->fill_ratio_needed = A->info.fill_ratio_needed;
12514e220ebcSLois Curfman McInnes     info->factor_mallocs    = A->info.factor_mallocs;
12524e220ebcSLois Curfman McInnes   } else {
12534e220ebcSLois Curfman McInnes     info->fill_ratio_given  = 0;
12544e220ebcSLois Curfman McInnes     info->fill_ratio_needed = 0;
12554e220ebcSLois Curfman McInnes     info->factor_mallocs    = 0;
12564e220ebcSLois Curfman McInnes   }
12573a40ed3dSBarry Smith   PetscFunctionReturn(0);
125817ab2063SBarry Smith }
125917ab2063SBarry Smith 
1260b9b97703SBarry Smith EXTERN int MatLUFactorSymbolic_SeqAIJ(Mat,IS,IS,MatLUInfo*,Mat*);
1261ca44d042SBarry Smith EXTERN int MatLUFactorNumeric_SeqAIJ(Mat,Mat*);
1262b9b97703SBarry Smith EXTERN int MatLUFactor_SeqAIJ(Mat,IS,IS,MatLUInfo*);
1263ca44d042SBarry Smith EXTERN int MatSolve_SeqAIJ(Mat,Vec,Vec);
1264ca44d042SBarry Smith EXTERN int MatSolveAdd_SeqAIJ(Mat,Vec,Vec,Vec);
1265ca44d042SBarry Smith EXTERN int MatSolveTranspose_SeqAIJ(Mat,Vec,Vec);
1266ca44d042SBarry Smith EXTERN int MatSolveTransposeAdd_SeqAIJ(Mat,Vec,Vec,Vec);
126717ab2063SBarry Smith 
12684a2ae208SSatish Balay #undef __FUNCT__
12694a2ae208SSatish Balay #define __FUNCT__ "MatZeroRows_SeqAIJ"
127087828ca2SBarry Smith int MatZeroRows_SeqAIJ(Mat A,IS is,PetscScalar *diag)
127117ab2063SBarry Smith {
1272416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
1273273d9f13SBarry Smith   int         i,ierr,N,*rows,m = A->m - 1,shift = a->indexshift;
127417ab2063SBarry Smith 
12753a40ed3dSBarry Smith   PetscFunctionBegin;
1276b9b97703SBarry Smith   ierr = ISGetLocalSize(is,&N);CHKERRQ(ierr);
127717ab2063SBarry Smith   ierr = ISGetIndices(is,&rows);CHKERRQ(ierr);
1278f1e2ffcdSBarry Smith   if (a->keepzeroedrows) {
1279f1e2ffcdSBarry Smith     for (i=0; i<N; i++) {
128029bbc08cSBarry Smith       if (rows[i] < 0 || rows[i] > m) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"row out of range");
128187828ca2SBarry Smith       ierr = PetscMemzero(&a->a[a->i[rows[i]]+shift],a->ilen[rows[i]]*sizeof(PetscScalar));CHKERRQ(ierr);
1282f1e2ffcdSBarry Smith     }
1283f1e2ffcdSBarry Smith     if (diag) {
1284f1e2ffcdSBarry Smith       ierr = MatMissingDiagonal_SeqAIJ(A);CHKERRQ(ierr);
1285f1e2ffcdSBarry Smith       ierr = MatMarkDiagonal_SeqAIJ(A);CHKERRQ(ierr);
1286f1e2ffcdSBarry Smith       for (i=0; i<N; i++) {
1287f1e2ffcdSBarry Smith         a->a[a->diag[rows[i]]] = *diag;
1288f1e2ffcdSBarry Smith       }
1289f1e2ffcdSBarry Smith     }
1290f1e2ffcdSBarry Smith   } else {
129117ab2063SBarry Smith     if (diag) {
129217ab2063SBarry Smith       for (i=0; i<N; i++) {
129329bbc08cSBarry Smith         if (rows[i] < 0 || rows[i] > m) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"row out of range");
12947ae801bdSBarry Smith         if (a->ilen[rows[i]] > 0) {
1295416022c9SBarry Smith           a->ilen[rows[i]]          = 1;
1296416022c9SBarry Smith           a->a[a->i[rows[i]]+shift] = *diag;
1297416022c9SBarry Smith           a->j[a->i[rows[i]]+shift] = rows[i]+shift;
12987ae801bdSBarry Smith         } else { /* in case row was completely empty */
1299d64ed03dSBarry Smith           ierr = MatSetValues_SeqAIJ(A,1,&rows[i],1,&rows[i],diag,INSERT_VALUES);CHKERRQ(ierr);
130017ab2063SBarry Smith         }
130117ab2063SBarry Smith       }
13023a40ed3dSBarry Smith     } else {
130317ab2063SBarry Smith       for (i=0; i<N; i++) {
130429bbc08cSBarry Smith         if (rows[i] < 0 || rows[i] > m) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"row out of range");
1305416022c9SBarry Smith         a->ilen[rows[i]] = 0;
130617ab2063SBarry Smith       }
130717ab2063SBarry Smith     }
1308f1e2ffcdSBarry Smith   }
13097ae801bdSBarry Smith   ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr);
131043a90d84SBarry Smith   ierr = MatAssemblyEnd_SeqAIJ(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
13113a40ed3dSBarry Smith   PetscFunctionReturn(0);
131217ab2063SBarry Smith }
131317ab2063SBarry Smith 
13144a2ae208SSatish Balay #undef __FUNCT__
13154a2ae208SSatish Balay #define __FUNCT__ "MatGetOwnershipRange_SeqAIJ"
13168f6be9afSLois Curfman McInnes int MatGetOwnershipRange_SeqAIJ(Mat A,int *m,int *n)
131717ab2063SBarry Smith {
13183a40ed3dSBarry Smith   PetscFunctionBegin;
13194c49b128SBarry Smith   if (m) *m = 0;
1320273d9f13SBarry Smith   if (n) *n = A->m;
13213a40ed3dSBarry Smith   PetscFunctionReturn(0);
132217ab2063SBarry Smith }
1323026e39d0SSatish Balay 
13244a2ae208SSatish Balay #undef __FUNCT__
13254a2ae208SSatish Balay #define __FUNCT__ "MatGetRow_SeqAIJ"
132687828ca2SBarry Smith int MatGetRow_SeqAIJ(Mat A,int row,int *nz,int **idx,PetscScalar **v)
132717ab2063SBarry Smith {
1328416022c9SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
1329b0a32e0cSBarry Smith   int        *itmp,i,shift = a->indexshift,ierr;
133017ab2063SBarry Smith 
13313a40ed3dSBarry Smith   PetscFunctionBegin;
1332273d9f13SBarry Smith   if (row < 0 || row >= A->m) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Row %d out of range",row);
133317ab2063SBarry Smith 
1334416022c9SBarry Smith   *nz = a->i[row+1] - a->i[row];
1335416022c9SBarry Smith   if (v) *v = a->a + a->i[row] + shift;
133617ab2063SBarry Smith   if (idx) {
1337416022c9SBarry Smith     itmp = a->j + a->i[row] + shift;
13384e093b46SBarry Smith     if (*nz && shift) {
1339b0a32e0cSBarry Smith       ierr = PetscMalloc((*nz)*sizeof(int),idx);CHKERRQ(ierr);
134017ab2063SBarry Smith       for (i=0; i<(*nz); i++) {(*idx)[i] = itmp[i] + shift;}
13414e093b46SBarry Smith     } else if (*nz) {
13424e093b46SBarry Smith       *idx = itmp;
134317ab2063SBarry Smith     }
134417ab2063SBarry Smith     else *idx = 0;
134517ab2063SBarry Smith   }
13463a40ed3dSBarry Smith   PetscFunctionReturn(0);
134717ab2063SBarry Smith }
134817ab2063SBarry Smith 
13494a2ae208SSatish Balay #undef __FUNCT__
13504a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRow_SeqAIJ"
135187828ca2SBarry Smith int MatRestoreRow_SeqAIJ(Mat A,int row,int *nz,int **idx,PetscScalar **v)
135217ab2063SBarry Smith {
13534e093b46SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
1354606d414cSSatish Balay   int ierr;
13553a40ed3dSBarry Smith 
13563a40ed3dSBarry Smith   PetscFunctionBegin;
1357606d414cSSatish Balay   if (idx) {if (*idx && a->indexshift) {ierr = PetscFree(*idx);CHKERRQ(ierr);}}
13583a40ed3dSBarry Smith   PetscFunctionReturn(0);
135917ab2063SBarry Smith }
136017ab2063SBarry Smith 
13614a2ae208SSatish Balay #undef __FUNCT__
13624a2ae208SSatish Balay #define __FUNCT__ "MatNorm_SeqAIJ"
136336db0b34SBarry Smith int MatNorm_SeqAIJ(Mat A,NormType type,PetscReal *norm)
136417ab2063SBarry Smith {
1365416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
136687828ca2SBarry Smith   PetscScalar  *v = a->a;
136736db0b34SBarry Smith   PetscReal    sum = 0.0;
1368549d3d68SSatish Balay   int          i,j,shift = a->indexshift,ierr;
136917ab2063SBarry Smith 
13703a40ed3dSBarry Smith   PetscFunctionBegin;
137117ab2063SBarry Smith   if (type == NORM_FROBENIUS) {
1372416022c9SBarry Smith     for (i=0; i<a->nz; i++) {
1373aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
137436db0b34SBarry Smith       sum += PetscRealPart(PetscConj(*v)*(*v)); v++;
137517ab2063SBarry Smith #else
137617ab2063SBarry Smith       sum += (*v)*(*v); v++;
137717ab2063SBarry Smith #endif
137817ab2063SBarry Smith     }
137917ab2063SBarry Smith     *norm = sqrt(sum);
13803a40ed3dSBarry Smith   } else if (type == NORM_1) {
138136db0b34SBarry Smith     PetscReal *tmp;
1382416022c9SBarry Smith     int    *jj = a->j;
1383b0a32e0cSBarry Smith     ierr = PetscMalloc((A->n+1)*sizeof(PetscReal),&tmp);CHKERRQ(ierr);
1384273d9f13SBarry Smith     ierr = PetscMemzero(tmp,A->n*sizeof(PetscReal));CHKERRQ(ierr);
138517ab2063SBarry Smith     *norm = 0.0;
1386416022c9SBarry Smith     for (j=0; j<a->nz; j++) {
1387a2744918SBarry Smith         tmp[*jj++ + shift] += PetscAbsScalar(*v);  v++;
138817ab2063SBarry Smith     }
1389273d9f13SBarry Smith     for (j=0; j<A->n; j++) {
139017ab2063SBarry Smith       if (tmp[j] > *norm) *norm = tmp[j];
139117ab2063SBarry Smith     }
1392606d414cSSatish Balay     ierr = PetscFree(tmp);CHKERRQ(ierr);
13933a40ed3dSBarry Smith   } else if (type == NORM_INFINITY) {
139417ab2063SBarry Smith     *norm = 0.0;
1395273d9f13SBarry Smith     for (j=0; j<A->m; j++) {
1396416022c9SBarry Smith       v = a->a + a->i[j] + shift;
139717ab2063SBarry Smith       sum = 0.0;
1398416022c9SBarry Smith       for (i=0; i<a->i[j+1]-a->i[j]; i++) {
1399cddf8d76SBarry Smith         sum += PetscAbsScalar(*v); v++;
140017ab2063SBarry Smith       }
140117ab2063SBarry Smith       if (sum > *norm) *norm = sum;
140217ab2063SBarry Smith     }
14033a40ed3dSBarry Smith   } else {
140429bbc08cSBarry Smith     SETERRQ(PETSC_ERR_SUP,"No support for two norm");
140517ab2063SBarry Smith   }
14063a40ed3dSBarry Smith   PetscFunctionReturn(0);
140717ab2063SBarry Smith }
140817ab2063SBarry Smith 
14094a2ae208SSatish Balay #undef __FUNCT__
14104a2ae208SSatish Balay #define __FUNCT__ "MatTranspose_SeqAIJ"
14118f6be9afSLois Curfman McInnes int MatTranspose_SeqAIJ(Mat A,Mat *B)
141217ab2063SBarry Smith {
1413416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
1414416022c9SBarry Smith   Mat          C;
1415273d9f13SBarry Smith   int          i,ierr,*aj = a->j,*ai = a->i,m = A->m,len,*col;
1416273d9f13SBarry Smith   int          shift = a->indexshift;
141787828ca2SBarry Smith   PetscScalar  *array = a->a;
141817ab2063SBarry Smith 
14193a40ed3dSBarry Smith   PetscFunctionBegin;
1420273d9f13SBarry Smith   if (!B && m != A->n) SETERRQ(PETSC_ERR_ARG_SIZ,"Square matrix only for in-place");
1421b0a32e0cSBarry Smith   ierr = PetscMalloc((1+A->n)*sizeof(int),&col);CHKERRQ(ierr);
1422273d9f13SBarry Smith   ierr = PetscMemzero(col,(1+A->n)*sizeof(int));CHKERRQ(ierr);
142317ab2063SBarry Smith   if (shift) {
142417ab2063SBarry Smith     for (i=0; i<ai[m]-1; i++) aj[i] -= 1;
142517ab2063SBarry Smith   }
142617ab2063SBarry Smith   for (i=0; i<ai[m]+shift; i++) col[aj[i]] += 1;
1427273d9f13SBarry Smith   ierr = MatCreateSeqAIJ(A->comm,A->n,m,0,col,&C);CHKERRQ(ierr);
1428606d414cSSatish Balay   ierr = PetscFree(col);CHKERRQ(ierr);
142917ab2063SBarry Smith   for (i=0; i<m; i++) {
143017ab2063SBarry Smith     len    = ai[i+1]-ai[i];
1431416022c9SBarry Smith     ierr   = MatSetValues(C,len,aj,1,&i,array,INSERT_VALUES);CHKERRQ(ierr);
1432b9b97703SBarry Smith     array += len;
1433b9b97703SBarry Smith     aj    += len;
143417ab2063SBarry Smith   }
143517ab2063SBarry Smith   if (shift) {
143617ab2063SBarry Smith     for (i=0; i<ai[m]-1; i++) aj[i] += 1;
143717ab2063SBarry Smith   }
143817ab2063SBarry Smith 
14396d4a8577SBarry Smith   ierr = MatAssemblyBegin(C,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
14406d4a8577SBarry Smith   ierr = MatAssemblyEnd(C,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
144117ab2063SBarry Smith 
1442f1e2ffcdSBarry Smith   if (B) {
1443416022c9SBarry Smith     *B = C;
144417ab2063SBarry Smith   } else {
1445273d9f13SBarry Smith     ierr = MatHeaderCopy(A,C);CHKERRQ(ierr);
144617ab2063SBarry Smith   }
14473a40ed3dSBarry Smith   PetscFunctionReturn(0);
144817ab2063SBarry Smith }
144917ab2063SBarry Smith 
14504a2ae208SSatish Balay #undef __FUNCT__
14514a2ae208SSatish Balay #define __FUNCT__ "MatDiagonalScale_SeqAIJ"
14528f6be9afSLois Curfman McInnes int MatDiagonalScale_SeqAIJ(Mat A,Vec ll,Vec rr)
145317ab2063SBarry Smith {
1454416022c9SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
145587828ca2SBarry Smith   PetscScalar  *l,*r,x,*v;
1456273d9f13SBarry Smith   int          ierr,i,j,m = A->m,n = A->n,M,nz = a->nz,*jj,shift = a->indexshift;
145717ab2063SBarry Smith 
14583a40ed3dSBarry Smith   PetscFunctionBegin;
145917ab2063SBarry Smith   if (ll) {
14603ea7c6a1SSatish Balay     /* The local size is used so that VecMPI can be passed to this routine
14613ea7c6a1SSatish Balay        by MatDiagonalScale_MPIAIJ */
1462e1311b90SBarry Smith     ierr = VecGetLocalSize(ll,&m);CHKERRQ(ierr);
1463273d9f13SBarry Smith     if (m != A->m) SETERRQ(PETSC_ERR_ARG_SIZ,"Left scaling vector wrong length");
1464e1311b90SBarry Smith     ierr = VecGetArray(ll,&l);CHKERRQ(ierr);
1465416022c9SBarry Smith     v = a->a;
146617ab2063SBarry Smith     for (i=0; i<m; i++) {
146717ab2063SBarry Smith       x = l[i];
1468416022c9SBarry Smith       M = a->i[i+1] - a->i[i];
146917ab2063SBarry Smith       for (j=0; j<M; j++) { (*v++) *= x;}
147017ab2063SBarry Smith     }
1471e1311b90SBarry Smith     ierr = VecRestoreArray(ll,&l);CHKERRQ(ierr);
1472b0a32e0cSBarry Smith     PetscLogFlops(nz);
147317ab2063SBarry Smith   }
147417ab2063SBarry Smith   if (rr) {
1475e1311b90SBarry Smith     ierr = VecGetLocalSize(rr,&n);CHKERRQ(ierr);
1476273d9f13SBarry Smith     if (n != A->n) SETERRQ(PETSC_ERR_ARG_SIZ,"Right scaling vector wrong length");
1477e1311b90SBarry Smith     ierr = VecGetArray(rr,&r);CHKERRQ(ierr);
1478416022c9SBarry Smith     v = a->a; jj = a->j;
147917ab2063SBarry Smith     for (i=0; i<nz; i++) {
148017ab2063SBarry Smith       (*v++) *= r[*jj++ + shift];
148117ab2063SBarry Smith     }
1482e1311b90SBarry Smith     ierr = VecRestoreArray(rr,&r);CHKERRQ(ierr);
1483b0a32e0cSBarry Smith     PetscLogFlops(nz);
148417ab2063SBarry Smith   }
14853a40ed3dSBarry Smith   PetscFunctionReturn(0);
148617ab2063SBarry Smith }
148717ab2063SBarry Smith 
14884a2ae208SSatish Balay #undef __FUNCT__
14894a2ae208SSatish Balay #define __FUNCT__ "MatGetSubMatrix_SeqAIJ"
14907b2a1423SBarry Smith int MatGetSubMatrix_SeqAIJ(Mat A,IS isrow,IS iscol,int csize,MatReuse scall,Mat *B)
149117ab2063SBarry Smith {
1492db02288aSLois Curfman McInnes   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data,*c;
1493273d9f13SBarry Smith   int          *smap,i,k,kstart,kend,ierr,oldcols = A->n,*lens;
149436db0b34SBarry Smith   int          row,mat_i,*mat_j,tcol,first,step,*mat_ilen,sum,lensi;
149599141d43SSatish Balay   int          *irow,*icol,nrows,ncols,shift = a->indexshift,*ssmap;
149699141d43SSatish Balay   int          *starts,*j_new,*i_new,*aj = a->j,*ai = a->i,ii,*ailen = a->ilen;
149787828ca2SBarry Smith   PetscScalar  *a_new,*mat_a;
1498416022c9SBarry Smith   Mat          C;
1499fee21e36SBarry Smith   PetscTruth   stride;
150017ab2063SBarry Smith 
15013a40ed3dSBarry Smith   PetscFunctionBegin;
1502d64ed03dSBarry Smith   ierr = ISSorted(isrow,(PetscTruth*)&i);CHKERRQ(ierr);
150329bbc08cSBarry Smith   if (!i) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"ISrow is not sorted");
1504d64ed03dSBarry Smith   ierr = ISSorted(iscol,(PetscTruth*)&i);CHKERRQ(ierr);
150529bbc08cSBarry Smith   if (!i) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"IScol is not sorted");
150699141d43SSatish Balay 
150717ab2063SBarry Smith   ierr = ISGetIndices(isrow,&irow);CHKERRQ(ierr);
1508b9b97703SBarry Smith   ierr = ISGetLocalSize(isrow,&nrows);CHKERRQ(ierr);
1509b9b97703SBarry Smith   ierr = ISGetLocalSize(iscol,&ncols);CHKERRQ(ierr);
151017ab2063SBarry Smith 
1511fee21e36SBarry Smith   ierr = ISStrideGetInfo(iscol,&first,&step);CHKERRQ(ierr);
1512fee21e36SBarry Smith   ierr = ISStride(iscol,&stride);CHKERRQ(ierr);
1513fee21e36SBarry Smith   if (stride && step == 1) {
151402834360SBarry Smith     /* special case of contiguous rows */
151531ebf83bSSatish Balay     ierr   = PetscMalloc((2*nrows+1)*sizeof(int),&lens);CHKERRQ(ierr);
151631ebf83bSSatish Balay     starts = lens + nrows;
151702834360SBarry Smith     /* loop over new rows determining lens and starting points */
151802834360SBarry Smith     for (i=0; i<nrows; i++) {
1519a2744918SBarry Smith       kstart  = ai[irow[i]]+shift;
1520a2744918SBarry Smith       kend    = kstart + ailen[irow[i]];
152102834360SBarry Smith       for (k=kstart; k<kend; k++) {
1522d8ced48eSBarry Smith         if (aj[k]+shift >= first) {
152302834360SBarry Smith           starts[i] = k;
152402834360SBarry Smith           break;
152502834360SBarry Smith 	}
152602834360SBarry Smith       }
1527a2744918SBarry Smith       sum = 0;
152802834360SBarry Smith       while (k < kend) {
1529d8ced48eSBarry Smith         if (aj[k++]+shift >= first+ncols) break;
1530a2744918SBarry Smith         sum++;
153102834360SBarry Smith       }
1532a2744918SBarry Smith       lens[i] = sum;
153302834360SBarry Smith     }
153402834360SBarry Smith     /* create submatrix */
1535cddf8d76SBarry Smith     if (scall == MAT_REUSE_MATRIX) {
153608480c60SBarry Smith       int n_cols,n_rows;
153708480c60SBarry Smith       ierr = MatGetSize(*B,&n_rows,&n_cols);CHKERRQ(ierr);
153829bbc08cSBarry Smith       if (n_rows != nrows || n_cols != ncols) SETERRQ(PETSC_ERR_ARG_SIZ,"Reused submatrix wrong size");
1539d8ced48eSBarry Smith       ierr = MatZeroEntries(*B);CHKERRQ(ierr);
154008480c60SBarry Smith       C = *B;
15413a40ed3dSBarry Smith     } else {
154202834360SBarry Smith       ierr = MatCreateSeqAIJ(A->comm,nrows,ncols,0,lens,&C);CHKERRQ(ierr);
154308480c60SBarry Smith     }
1544db02288aSLois Curfman McInnes     c = (Mat_SeqAIJ*)C->data;
1545db02288aSLois Curfman McInnes 
154602834360SBarry Smith     /* loop over rows inserting into submatrix */
1547db02288aSLois Curfman McInnes     a_new    = c->a;
1548db02288aSLois Curfman McInnes     j_new    = c->j;
1549db02288aSLois Curfman McInnes     i_new    = c->i;
1550db02288aSLois Curfman McInnes     i_new[0] = -shift;
155102834360SBarry Smith     for (i=0; i<nrows; i++) {
1552a2744918SBarry Smith       ii    = starts[i];
1553a2744918SBarry Smith       lensi = lens[i];
1554a2744918SBarry Smith       for (k=0; k<lensi; k++) {
1555a2744918SBarry Smith         *j_new++ = aj[ii+k] - first;
155602834360SBarry Smith       }
155787828ca2SBarry Smith       ierr = PetscMemcpy(a_new,a->a + starts[i],lensi*sizeof(PetscScalar));CHKERRQ(ierr);
1558a2744918SBarry Smith       a_new      += lensi;
1559a2744918SBarry Smith       i_new[i+1]  = i_new[i] + lensi;
1560a2744918SBarry Smith       c->ilen[i]  = lensi;
156102834360SBarry Smith     }
1562606d414cSSatish Balay     ierr = PetscFree(lens);CHKERRQ(ierr);
15633a40ed3dSBarry Smith   } else {
156402834360SBarry Smith     ierr  = ISGetIndices(iscol,&icol);CHKERRQ(ierr);
1565b0a32e0cSBarry Smith     ierr  = PetscMalloc((1+oldcols)*sizeof(int),&smap);CHKERRQ(ierr);
156602834360SBarry Smith     ssmap = smap + shift;
1567b0a32e0cSBarry Smith     ierr  = PetscMalloc((1+nrows)*sizeof(int),&lens);CHKERRQ(ierr);
1568549d3d68SSatish Balay     ierr  = PetscMemzero(smap,oldcols*sizeof(int));CHKERRQ(ierr);
156917ab2063SBarry Smith     for (i=0; i<ncols; i++) smap[icol[i]] = i+1;
157002834360SBarry Smith     /* determine lens of each row */
157102834360SBarry Smith     for (i=0; i<nrows; i++) {
1572d8ced48eSBarry Smith       kstart  = ai[irow[i]]+shift;
157302834360SBarry Smith       kend    = kstart + a->ilen[irow[i]];
157402834360SBarry Smith       lens[i] = 0;
157502834360SBarry Smith       for (k=kstart; k<kend; k++) {
1576d8ced48eSBarry Smith         if (ssmap[aj[k]]) {
157702834360SBarry Smith           lens[i]++;
157802834360SBarry Smith         }
157902834360SBarry Smith       }
158002834360SBarry Smith     }
158117ab2063SBarry Smith     /* Create and fill new matrix */
1582a2744918SBarry Smith     if (scall == MAT_REUSE_MATRIX) {
15830f5bd95cSBarry Smith       PetscTruth equal;
15840f5bd95cSBarry Smith 
158599141d43SSatish Balay       c = (Mat_SeqAIJ *)((*B)->data);
1586273d9f13SBarry Smith       if ((*B)->m  != nrows || (*B)->n != ncols) SETERRQ(PETSC_ERR_ARG_SIZ,"Cannot reuse matrix. wrong size");
1587273d9f13SBarry Smith       ierr = PetscMemcmp(c->ilen,lens,(*B)->m*sizeof(int),&equal);CHKERRQ(ierr);
15880f5bd95cSBarry Smith       if (!equal) {
158929bbc08cSBarry Smith         SETERRQ(PETSC_ERR_ARG_SIZ,"Cannot reuse matrix. wrong no of nonzeros");
159099141d43SSatish Balay       }
1591273d9f13SBarry Smith       ierr = PetscMemzero(c->ilen,(*B)->m*sizeof(int));CHKERRQ(ierr);
159208480c60SBarry Smith       C = *B;
15933a40ed3dSBarry Smith     } else {
159402834360SBarry Smith       ierr = MatCreateSeqAIJ(A->comm,nrows,ncols,0,lens,&C);CHKERRQ(ierr);
159508480c60SBarry Smith     }
159699141d43SSatish Balay     c = (Mat_SeqAIJ *)(C->data);
159717ab2063SBarry Smith     for (i=0; i<nrows; i++) {
159899141d43SSatish Balay       row    = irow[i];
159999141d43SSatish Balay       kstart = ai[row]+shift;
160099141d43SSatish Balay       kend   = kstart + a->ilen[row];
160199141d43SSatish Balay       mat_i  = c->i[i]+shift;
160299141d43SSatish Balay       mat_j  = c->j + mat_i;
160399141d43SSatish Balay       mat_a  = c->a + mat_i;
160499141d43SSatish Balay       mat_ilen = c->ilen + i;
160517ab2063SBarry Smith       for (k=kstart; k<kend; k++) {
160699141d43SSatish Balay         if ((tcol=ssmap[a->j[k]])) {
160799141d43SSatish Balay           *mat_j++ = tcol - (!shift);
160899141d43SSatish Balay           *mat_a++ = a->a[k];
160999141d43SSatish Balay           (*mat_ilen)++;
161099141d43SSatish Balay 
161117ab2063SBarry Smith         }
161217ab2063SBarry Smith       }
161317ab2063SBarry Smith     }
161402834360SBarry Smith     /* Free work space */
161502834360SBarry Smith     ierr = ISRestoreIndices(iscol,&icol);CHKERRQ(ierr);
1616606d414cSSatish Balay     ierr = PetscFree(smap);CHKERRQ(ierr);
1617606d414cSSatish Balay     ierr = PetscFree(lens);CHKERRQ(ierr);
161802834360SBarry Smith   }
16196d4a8577SBarry Smith   ierr = MatAssemblyBegin(C,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
16206d4a8577SBarry Smith   ierr = MatAssemblyEnd(C,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
162117ab2063SBarry Smith 
162217ab2063SBarry Smith   ierr = ISRestoreIndices(isrow,&irow);CHKERRQ(ierr);
1623416022c9SBarry Smith   *B = C;
16243a40ed3dSBarry Smith   PetscFunctionReturn(0);
162517ab2063SBarry Smith }
162617ab2063SBarry Smith 
1627a871dcd8SBarry Smith /*
1628a871dcd8SBarry Smith */
16294a2ae208SSatish Balay #undef __FUNCT__
16304a2ae208SSatish Balay #define __FUNCT__ "MatILUFactor_SeqAIJ"
16315ef9f2a5SBarry Smith int MatILUFactor_SeqAIJ(Mat inA,IS row,IS col,MatILUInfo *info)
1632a871dcd8SBarry Smith {
163363b91edcSBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)inA->data;
163408480c60SBarry Smith   int        ierr;
163563b91edcSBarry Smith   Mat        outA;
1636b8a78c4aSBarry Smith   PetscTruth row_identity,col_identity;
163763b91edcSBarry Smith 
16383a40ed3dSBarry Smith   PetscFunctionBegin;
163929bbc08cSBarry Smith   if (info && info->levels != 0) SETERRQ(PETSC_ERR_SUP,"Only levels=0 supported for in-place ilu");
1640b8a78c4aSBarry Smith   ierr = ISIdentity(row,&row_identity);CHKERRQ(ierr);
1641b8a78c4aSBarry Smith   ierr = ISIdentity(col,&col_identity);CHKERRQ(ierr);
1642b8a78c4aSBarry Smith   if (!row_identity || !col_identity) {
164329bbc08cSBarry Smith     SETERRQ(1,"Row and column permutations must be identity for in-place ILU");
1644b8a78c4aSBarry Smith   }
1645a871dcd8SBarry Smith 
164663b91edcSBarry Smith   outA          = inA;
164763b91edcSBarry Smith   inA->factor   = FACTOR_LU;
164863b91edcSBarry Smith   a->row        = row;
164963b91edcSBarry Smith   a->col        = col;
1650c38d4ed2SBarry Smith   ierr = PetscObjectReference((PetscObject)row);CHKERRQ(ierr);
1651c38d4ed2SBarry Smith   ierr = PetscObjectReference((PetscObject)col);CHKERRQ(ierr);
165263b91edcSBarry Smith 
165336db0b34SBarry Smith   /* Create the inverse permutation so that it can be used in MatLUFactorNumeric() */
1654b9b97703SBarry Smith   if (a->icol) {ierr = ISDestroy(a->icol);CHKERRQ(ierr);} /* need to remove old one */
16554c49b128SBarry Smith   ierr = ISInvertPermutation(col,PETSC_DECIDE,&a->icol);CHKERRQ(ierr);
1656b0a32e0cSBarry Smith   PetscLogObjectParent(inA,a->icol);
1657f0ec6fceSSatish Balay 
165894a9d846SBarry Smith   if (!a->solve_work) { /* this matrix may have been factored before */
165987828ca2SBarry Smith      ierr = PetscMalloc((inA->m+1)*sizeof(PetscScalar),&a->solve_work);CHKERRQ(ierr);
166094a9d846SBarry Smith   }
166163b91edcSBarry Smith 
166208480c60SBarry Smith   if (!a->diag) {
1663f1e2ffcdSBarry Smith     ierr = MatMarkDiagonal_SeqAIJ(inA);CHKERRQ(ierr);
166463b91edcSBarry Smith   }
166563b91edcSBarry Smith   ierr = MatLUFactorNumeric_SeqAIJ(inA,&outA);CHKERRQ(ierr);
16663a40ed3dSBarry Smith   PetscFunctionReturn(0);
1667a871dcd8SBarry Smith }
1668a871dcd8SBarry Smith 
1669d9eff348SSatish Balay #include "petscblaslapack.h"
16704a2ae208SSatish Balay #undef __FUNCT__
16714a2ae208SSatish Balay #define __FUNCT__ "MatScale_SeqAIJ"
167287828ca2SBarry Smith int MatScale_SeqAIJ(PetscScalar *alpha,Mat inA)
1673f0b747eeSBarry Smith {
1674f0b747eeSBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)inA->data;
1675f0b747eeSBarry Smith   int        one = 1;
16763a40ed3dSBarry Smith 
16773a40ed3dSBarry Smith   PetscFunctionBegin;
1678f0b747eeSBarry Smith   BLscal_(&a->nz,alpha,a->a,&one);
1679b0a32e0cSBarry Smith   PetscLogFlops(a->nz);
16803a40ed3dSBarry Smith   PetscFunctionReturn(0);
1681f0b747eeSBarry Smith }
1682f0b747eeSBarry Smith 
16834a2ae208SSatish Balay #undef __FUNCT__
16844a2ae208SSatish Balay #define __FUNCT__ "MatGetSubMatrices_SeqAIJ"
16857b2a1423SBarry Smith int MatGetSubMatrices_SeqAIJ(Mat A,int n,IS *irow,IS *icol,MatReuse scall,Mat **B)
1686cddf8d76SBarry Smith {
1687cddf8d76SBarry Smith   int ierr,i;
1688cddf8d76SBarry Smith 
16893a40ed3dSBarry Smith   PetscFunctionBegin;
1690cddf8d76SBarry Smith   if (scall == MAT_INITIAL_MATRIX) {
1691b0a32e0cSBarry Smith     ierr = PetscMalloc((n+1)*sizeof(Mat),B);CHKERRQ(ierr);
1692cddf8d76SBarry Smith   }
1693cddf8d76SBarry Smith 
1694cddf8d76SBarry Smith   for (i=0; i<n; i++) {
16956a6a5d1dSBarry Smith     ierr = MatGetSubMatrix_SeqAIJ(A,irow[i],icol[i],PETSC_DECIDE,scall,&(*B)[i]);CHKERRQ(ierr);
1696cddf8d76SBarry Smith   }
16973a40ed3dSBarry Smith   PetscFunctionReturn(0);
1698cddf8d76SBarry Smith }
1699cddf8d76SBarry Smith 
17004a2ae208SSatish Balay #undef __FUNCT__
17014a2ae208SSatish Balay #define __FUNCT__ "MatGetBlockSize_SeqAIJ"
17028f6be9afSLois Curfman McInnes int MatGetBlockSize_SeqAIJ(Mat A,int *bs)
17035a838052SSatish Balay {
1704f830108cSBarry Smith   PetscFunctionBegin;
17055a838052SSatish Balay   *bs = 1;
17063a40ed3dSBarry Smith   PetscFunctionReturn(0);
17075a838052SSatish Balay }
17085a838052SSatish Balay 
17094a2ae208SSatish Balay #undef __FUNCT__
17104a2ae208SSatish Balay #define __FUNCT__ "MatIncreaseOverlap_SeqAIJ"
17118f6be9afSLois Curfman McInnes int MatIncreaseOverlap_SeqAIJ(Mat A,int is_max,IS *is,int ov)
17124dcbc457SBarry Smith {
1713e4d965acSSatish Balay   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
171406763907SSatish Balay   int        shift,row,i,j,k,l,m,n,*idx,ierr,*nidx,isz,val;
17158a047759SSatish Balay   int        start,end,*ai,*aj;
1716f1af5d2fSBarry Smith   PetscBT    table;
1717bbd702dbSSatish Balay 
17183a40ed3dSBarry Smith   PetscFunctionBegin;
17198a047759SSatish Balay   shift = a->indexshift;
1720273d9f13SBarry Smith   m     = A->m;
1721e4d965acSSatish Balay   ai    = a->i;
17228a047759SSatish Balay   aj    = a->j+shift;
17238a047759SSatish Balay 
172429bbc08cSBarry Smith   if (ov < 0)  SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"illegal overlap value used");
172506763907SSatish Balay 
1726b0a32e0cSBarry Smith   ierr = PetscMalloc((m+1)*sizeof(int),&nidx);CHKERRQ(ierr);
17276831982aSBarry Smith   ierr = PetscBTCreate(m,table);CHKERRQ(ierr);
172806763907SSatish Balay 
1729e4d965acSSatish Balay   for (i=0; i<is_max; i++) {
1730b97fc60eSLois Curfman McInnes     /* Initialize the two local arrays */
1731e4d965acSSatish Balay     isz  = 0;
17326831982aSBarry Smith     ierr = PetscBTMemzero(m,table);CHKERRQ(ierr);
1733e4d965acSSatish Balay 
1734e4d965acSSatish Balay     /* Extract the indices, assume there can be duplicate entries */
17354dcbc457SBarry Smith     ierr = ISGetIndices(is[i],&idx);CHKERRQ(ierr);
1736b9b97703SBarry Smith     ierr = ISGetLocalSize(is[i],&n);CHKERRQ(ierr);
1737e4d965acSSatish Balay 
1738dd097bc3SLois Curfman McInnes     /* Enter these into the temp arrays. I.e., mark table[row], enter row into new index */
1739e4d965acSSatish Balay     for (j=0; j<n ; ++j){
1740f1af5d2fSBarry Smith       if(!PetscBTLookupSet(table,idx[j])) { nidx[isz++] = idx[j];}
17414dcbc457SBarry Smith     }
174206763907SSatish Balay     ierr = ISRestoreIndices(is[i],&idx);CHKERRQ(ierr);
174306763907SSatish Balay     ierr = ISDestroy(is[i]);CHKERRQ(ierr);
1744e4d965acSSatish Balay 
174504a348a9SBarry Smith     k = 0;
174604a348a9SBarry Smith     for (j=0; j<ov; j++){ /* for each overlap */
174704a348a9SBarry Smith       n = isz;
174806763907SSatish Balay       for (; k<n ; k++){ /* do only those rows in nidx[k], which are not done yet */
1749e4d965acSSatish Balay         row   = nidx[k];
1750e4d965acSSatish Balay         start = ai[row];
1751e4d965acSSatish Balay         end   = ai[row+1];
175204a348a9SBarry Smith         for (l = start; l<end ; l++){
17538a047759SSatish Balay           val = aj[l] + shift;
1754f1af5d2fSBarry Smith           if (!PetscBTLookupSet(table,val)) {nidx[isz++] = val;}
1755e4d965acSSatish Balay         }
1756e4d965acSSatish Balay       }
1757e4d965acSSatish Balay     }
1758029af93fSBarry Smith     ierr = ISCreateGeneral(PETSC_COMM_SELF,isz,nidx,(is+i));CHKERRQ(ierr);
1759e4d965acSSatish Balay   }
17606831982aSBarry Smith   ierr = PetscBTDestroy(table);CHKERRQ(ierr);
1761606d414cSSatish Balay   ierr = PetscFree(nidx);CHKERRQ(ierr);
17623a40ed3dSBarry Smith   PetscFunctionReturn(0);
17634dcbc457SBarry Smith }
176417ab2063SBarry Smith 
17650513a670SBarry Smith /* -------------------------------------------------------------- */
17664a2ae208SSatish Balay #undef __FUNCT__
17674a2ae208SSatish Balay #define __FUNCT__ "MatPermute_SeqAIJ"
17680513a670SBarry Smith int MatPermute_SeqAIJ(Mat A,IS rowp,IS colp,Mat *B)
17690513a670SBarry Smith {
17700513a670SBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
177187828ca2SBarry Smith   PetscScalar  *vwork;
1772273d9f13SBarry Smith   int          i,ierr,nz,m = A->m,n = A->n,*cwork;
17730513a670SBarry Smith   int          *row,*col,*cnew,j,*lens;
177456cd22aeSBarry Smith   IS           icolp,irowp;
17750513a670SBarry Smith 
17763a40ed3dSBarry Smith   PetscFunctionBegin;
17774c49b128SBarry Smith   ierr = ISInvertPermutation(rowp,PETSC_DECIDE,&irowp);CHKERRQ(ierr);
177856cd22aeSBarry Smith   ierr = ISGetIndices(irowp,&row);CHKERRQ(ierr);
17794c49b128SBarry Smith   ierr = ISInvertPermutation(colp,PETSC_DECIDE,&icolp);CHKERRQ(ierr);
178056cd22aeSBarry Smith   ierr = ISGetIndices(icolp,&col);CHKERRQ(ierr);
17810513a670SBarry Smith 
17820513a670SBarry Smith   /* determine lengths of permuted rows */
1783b0a32e0cSBarry Smith   ierr = PetscMalloc((m+1)*sizeof(int),&lens);CHKERRQ(ierr);
17840513a670SBarry Smith   for (i=0; i<m; i++) {
17850513a670SBarry Smith     lens[row[i]] = a->i[i+1] - a->i[i];
17860513a670SBarry Smith   }
17870513a670SBarry Smith   ierr = MatCreateSeqAIJ(A->comm,m,n,0,lens,B);CHKERRQ(ierr);
1788606d414cSSatish Balay   ierr = PetscFree(lens);CHKERRQ(ierr);
17890513a670SBarry Smith 
1790b0a32e0cSBarry Smith   ierr = PetscMalloc(n*sizeof(int),&cnew);CHKERRQ(ierr);
17910513a670SBarry Smith   for (i=0; i<m; i++) {
17920513a670SBarry Smith     ierr = MatGetRow(A,i,&nz,&cwork,&vwork);CHKERRQ(ierr);
17930513a670SBarry Smith     for (j=0; j<nz; j++) { cnew[j] = col[cwork[j]];}
17940513a670SBarry Smith     ierr = MatSetValues(*B,1,&row[i],nz,cnew,vwork,INSERT_VALUES);CHKERRQ(ierr);
17950513a670SBarry Smith     ierr = MatRestoreRow(A,i,&nz,&cwork,&vwork);CHKERRQ(ierr);
17960513a670SBarry Smith   }
1797606d414cSSatish Balay   ierr = PetscFree(cnew);CHKERRQ(ierr);
17980513a670SBarry Smith   ierr = MatAssemblyBegin(*B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
17990513a670SBarry Smith   ierr = MatAssemblyEnd(*B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
180056cd22aeSBarry Smith   ierr = ISRestoreIndices(irowp,&row);CHKERRQ(ierr);
180156cd22aeSBarry Smith   ierr = ISRestoreIndices(icolp,&col);CHKERRQ(ierr);
180256cd22aeSBarry Smith   ierr = ISDestroy(irowp);CHKERRQ(ierr);
180356cd22aeSBarry Smith   ierr = ISDestroy(icolp);CHKERRQ(ierr);
18043a40ed3dSBarry Smith   PetscFunctionReturn(0);
18050513a670SBarry Smith }
18060513a670SBarry Smith 
18074a2ae208SSatish Balay #undef __FUNCT__
18084a2ae208SSatish Balay #define __FUNCT__ "MatPrintHelp_SeqAIJ"
1809682d7d0cSBarry Smith int MatPrintHelp_SeqAIJ(Mat A)
1810682d7d0cSBarry Smith {
1811c38d4ed2SBarry Smith   static PetscTruth called = PETSC_FALSE;
1812682d7d0cSBarry Smith   MPI_Comm          comm = A->comm;
1813d132466eSBarry Smith   int               ierr;
1814682d7d0cSBarry Smith 
18153a40ed3dSBarry Smith   PetscFunctionBegin;
1816c38d4ed2SBarry Smith   if (called) {PetscFunctionReturn(0);} else called = PETSC_TRUE;
1817d132466eSBarry Smith   ierr = (*PetscHelpPrintf)(comm," Options for MATSEQAIJ and MATMPIAIJ matrix formats (the defaults):\n");CHKERRQ(ierr);
1818d132466eSBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_lu_pivotthreshold <threshold>: Set pivoting threshold\n");CHKERRQ(ierr);
1819d132466eSBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_aij_oneindex: internal indices begin at 1 instead of the default 0.\n");CHKERRQ(ierr);
1820d132466eSBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_aij_no_inode: Do not use inodes\n");CHKERRQ(ierr);
1821d132466eSBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_aij_inode_limit <limit>: Set inode limit (max limit=5)\n");CHKERRQ(ierr);
1822aa482453SBarry Smith #if defined(PETSC_HAVE_ESSL)
1823d132466eSBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_aij_essl: Use IBM sparse LU factorization and solve.\n");CHKERRQ(ierr);
1824682d7d0cSBarry Smith #endif
1825cd5578b5SBarry Smith #if defined(PETSC_HAVE_LUSOL)
1826cd5578b5SBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_aij_lusol: Use the Stanford LUSOL sparse factorization and solve.\n");CHKERRQ(ierr);
1827cd5578b5SBarry Smith #endif
182887828ca2SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) && !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_SINGLE)
1829ca44d042SBarry Smith   ierr = (*PetscHelpPrintf)(comm,"  -mat_aij_matlab: Use Matlab engine sparse LU factorization and solve.\n");CHKERRQ(ierr);
1830ca44d042SBarry Smith #endif
18313a40ed3dSBarry Smith   PetscFunctionReturn(0);
1832682d7d0cSBarry Smith }
1833ca44d042SBarry Smith EXTERN int MatEqual_SeqAIJ(Mat A,Mat B,PetscTruth* flg);
1834ca44d042SBarry Smith EXTERN int MatFDColoringCreate_SeqAIJ(Mat,ISColoring,MatFDColoring);
1835ca44d042SBarry Smith EXTERN int MatILUDTFactor_SeqAIJ(Mat,MatILUInfo*,IS,IS,Mat*);
18364a2ae208SSatish Balay #undef __FUNCT__
18374a2ae208SSatish Balay #define __FUNCT__ "MatCopy_SeqAIJ"
1838cb5b572fSBarry Smith int MatCopy_SeqAIJ(Mat A,Mat B,MatStructure str)
1839cb5b572fSBarry Smith {
1840be6bf707SBarry Smith   int        ierr;
1841273d9f13SBarry Smith   PetscTruth flg;
1842cb5b572fSBarry Smith 
1843cb5b572fSBarry Smith   PetscFunctionBegin;
1844273d9f13SBarry Smith   ierr = PetscTypeCompare((PetscObject)B,MATSEQAIJ,&flg);CHKERRQ(ierr);
1845273d9f13SBarry Smith   if (str == SAME_NONZERO_PATTERN && flg) {
1846be6bf707SBarry Smith     Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
1847be6bf707SBarry Smith     Mat_SeqAIJ *b = (Mat_SeqAIJ*)B->data;
1848be6bf707SBarry Smith 
1849273d9f13SBarry Smith     if (a->i[A->m]+a->indexshift != b->i[B->m]+a->indexshift) {
185029bbc08cSBarry Smith       SETERRQ(1,"Number of nonzeros in two matrices are different");
1851cb5b572fSBarry Smith     }
185287828ca2SBarry Smith     ierr = PetscMemcpy(b->a,a->a,(a->i[A->m]+a->indexshift)*sizeof(PetscScalar));CHKERRQ(ierr);
1853cb5b572fSBarry Smith   } else {
1854cb5b572fSBarry Smith     ierr = MatCopy_Basic(A,B,str);CHKERRQ(ierr);
1855cb5b572fSBarry Smith   }
1856cb5b572fSBarry Smith   PetscFunctionReturn(0);
1857cb5b572fSBarry Smith }
1858cb5b572fSBarry Smith 
18594a2ae208SSatish Balay #undef __FUNCT__
18604a2ae208SSatish Balay #define __FUNCT__ "MatSetUpPreallocation_SeqAIJ"
1861273d9f13SBarry Smith int MatSetUpPreallocation_SeqAIJ(Mat A)
1862273d9f13SBarry Smith {
1863273d9f13SBarry Smith   int        ierr;
1864273d9f13SBarry Smith 
1865273d9f13SBarry Smith   PetscFunctionBegin;
1866273d9f13SBarry Smith   ierr =  MatSeqAIJSetPreallocation(A,PETSC_DEFAULT,0);CHKERRQ(ierr);
1867273d9f13SBarry Smith   PetscFunctionReturn(0);
1868273d9f13SBarry Smith }
1869273d9f13SBarry Smith 
18704a2ae208SSatish Balay #undef __FUNCT__
18714a2ae208SSatish Balay #define __FUNCT__ "MatGetArray_SeqAIJ"
187287828ca2SBarry Smith int MatGetArray_SeqAIJ(Mat A,PetscScalar **array)
18736c0721eeSBarry Smith {
18746c0721eeSBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
18756c0721eeSBarry Smith   PetscFunctionBegin;
18766c0721eeSBarry Smith   *array = a->a;
18776c0721eeSBarry Smith   PetscFunctionReturn(0);
18786c0721eeSBarry Smith }
18796c0721eeSBarry Smith 
18804a2ae208SSatish Balay #undef __FUNCT__
18814a2ae208SSatish Balay #define __FUNCT__ "MatRestoreArray_SeqAIJ"
188287828ca2SBarry Smith int MatRestoreArray_SeqAIJ(Mat A,PetscScalar **array)
18836c0721eeSBarry Smith {
18846c0721eeSBarry Smith   PetscFunctionBegin;
18856c0721eeSBarry Smith   PetscFunctionReturn(0);
18866c0721eeSBarry Smith }
1887273d9f13SBarry Smith 
1888ee4f033dSBarry Smith #undef __FUNCT__
1889ee4f033dSBarry Smith #define __FUNCT__ "MatFDColoringApply_SeqAIJ"
1890ee4f033dSBarry Smith int MatFDColoringApply_SeqAIJ(Mat J,MatFDColoring coloring,Vec x1,MatStructure *flag,void *sctx)
1891ee4f033dSBarry Smith {
1892ee4f033dSBarry Smith   int           (*f)(void *,Vec,Vec,void*) = (int (*)(void *,Vec,Vec,void *))coloring->f;
1893ee4f033dSBarry Smith   int           k,ierr,N,start,end,l,row,col,srow,**vscaleforrow,m1,m2;
189487828ca2SBarry Smith   PetscScalar   dx,mone = -1.0,*y,*xx,*w3_array;
189587828ca2SBarry Smith   PetscScalar   *vscale_array;
1896ee4f033dSBarry Smith   PetscReal     epsilon = coloring->error_rel,umin = coloring->umin;
1897ee4f033dSBarry Smith   Vec           w1,w2,w3;
1898ee4f033dSBarry Smith   void          *fctx = coloring->fctx;
1899ee4f033dSBarry Smith   PetscTruth    flg;
1900ee4f033dSBarry Smith 
1901ee4f033dSBarry Smith   PetscFunctionBegin;
1902ee4f033dSBarry Smith   if (!coloring->w1) {
1903ee4f033dSBarry Smith     ierr = VecDuplicate(x1,&coloring->w1);CHKERRQ(ierr);
1904ee4f033dSBarry Smith     PetscLogObjectParent(coloring,coloring->w1);
1905ee4f033dSBarry Smith     ierr = VecDuplicate(x1,&coloring->w2);CHKERRQ(ierr);
1906ee4f033dSBarry Smith     PetscLogObjectParent(coloring,coloring->w2);
1907ee4f033dSBarry Smith     ierr = VecDuplicate(x1,&coloring->w3);CHKERRQ(ierr);
1908ee4f033dSBarry Smith     PetscLogObjectParent(coloring,coloring->w3);
1909ee4f033dSBarry Smith   }
1910ee4f033dSBarry Smith   w1 = coloring->w1; w2 = coloring->w2; w3 = coloring->w3;
1911ee4f033dSBarry Smith 
1912ee4f033dSBarry Smith   ierr = MatSetUnfactored(J);CHKERRQ(ierr);
1913ee4f033dSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_fd_coloring_dont_rezero",&flg);CHKERRQ(ierr);
1914ee4f033dSBarry Smith   if (flg) {
1915ee4f033dSBarry Smith     PetscLogInfo(coloring,"MatFDColoringApply_SeqAIJ: Not calling MatZeroEntries()\n");
1916ee4f033dSBarry Smith   } else {
1917ee4f033dSBarry Smith     ierr = MatZeroEntries(J);CHKERRQ(ierr);
1918ee4f033dSBarry Smith   }
1919ee4f033dSBarry Smith 
1920ee4f033dSBarry Smith   ierr = VecGetOwnershipRange(x1,&start,&end);CHKERRQ(ierr);
1921ee4f033dSBarry Smith   ierr = VecGetSize(x1,&N);CHKERRQ(ierr);
1922ee4f033dSBarry Smith 
1923ee4f033dSBarry Smith   /*
1924ee4f033dSBarry Smith        This is a horrible, horrible, hack. See DMMGComputeJacobian_Multigrid() it inproperly sets
1925ee4f033dSBarry Smith      coloring->F for the coarser grids from the finest
1926ee4f033dSBarry Smith   */
1927ee4f033dSBarry Smith   if (coloring->F) {
1928ee4f033dSBarry Smith     ierr = VecGetLocalSize(coloring->F,&m1);CHKERRQ(ierr);
1929ee4f033dSBarry Smith     ierr = VecGetLocalSize(w1,&m2);CHKERRQ(ierr);
1930ee4f033dSBarry Smith     if (m1 != m2) {
1931ee4f033dSBarry Smith       coloring->F = 0;
1932ee4f033dSBarry Smith     }
1933ee4f033dSBarry Smith   }
1934ee4f033dSBarry Smith 
1935ee4f033dSBarry Smith   if (coloring->F) {
1936ee4f033dSBarry Smith     w1          = coloring->F;
1937ee4f033dSBarry Smith     coloring->F = 0;
1938ee4f033dSBarry Smith   } else {
1939ee4f033dSBarry Smith     ierr = (*f)(sctx,x1,w1,fctx);CHKERRQ(ierr);
1940ee4f033dSBarry Smith   }
1941ee4f033dSBarry Smith 
1942ee4f033dSBarry Smith   /*
1943ee4f033dSBarry Smith       Compute all the scale factors and share with other processors
1944ee4f033dSBarry Smith   */
1945ee4f033dSBarry Smith   ierr = VecGetArray(x1,&xx);CHKERRQ(ierr);xx = xx - start;
1946ee4f033dSBarry Smith   ierr = VecGetArray(coloring->vscale,&vscale_array);CHKERRQ(ierr);vscale_array = vscale_array - start;
1947ee4f033dSBarry Smith   for (k=0; k<coloring->ncolors; k++) {
1948ee4f033dSBarry Smith     /*
1949ee4f033dSBarry Smith        Loop over each column associated with color adding the
1950ee4f033dSBarry Smith        perturbation to the vector w3.
1951ee4f033dSBarry Smith     */
1952ee4f033dSBarry Smith     for (l=0; l<coloring->ncolumns[k]; l++) {
1953ee4f033dSBarry Smith       col = coloring->columns[k][l];    /* column of the matrix we are probing for */
1954ee4f033dSBarry Smith       dx  = xx[col];
1955ee4f033dSBarry Smith       if (dx == 0.0) dx = 1.0;
1956ee4f033dSBarry Smith #if !defined(PETSC_USE_COMPLEX)
1957ee4f033dSBarry Smith       if (dx < umin && dx >= 0.0)      dx = umin;
1958ee4f033dSBarry Smith       else if (dx < 0.0 && dx > -umin) dx = -umin;
1959ee4f033dSBarry Smith #else
1960ee4f033dSBarry Smith       if (PetscAbsScalar(dx) < umin && PetscRealPart(dx) >= 0.0)     dx = umin;
1961ee4f033dSBarry Smith       else if (PetscRealPart(dx) < 0.0 && PetscAbsScalar(dx) < umin) dx = -umin;
1962ee4f033dSBarry Smith #endif
1963ee4f033dSBarry Smith       dx                *= epsilon;
1964ee4f033dSBarry Smith       vscale_array[col] = 1.0/dx;
1965ee4f033dSBarry Smith     }
1966ee4f033dSBarry Smith   }
1967ee4f033dSBarry Smith   vscale_array = vscale_array + start;ierr = VecRestoreArray(coloring->vscale,&vscale_array);CHKERRQ(ierr);
1968ee4f033dSBarry Smith   ierr = VecGhostUpdateBegin(coloring->vscale,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
1969ee4f033dSBarry Smith   ierr = VecGhostUpdateEnd(coloring->vscale,INSERT_VALUES,SCATTER_FORWARD);CHKERRQ(ierr);
1970ee4f033dSBarry Smith 
1971ee4f033dSBarry Smith   /*  ierr = VecView(coloring->vscale,PETSC_VIEWER_STDOUT_WORLD);
1972ee4f033dSBarry Smith       ierr = VecView(x1,PETSC_VIEWER_STDOUT_WORLD);*/
1973ee4f033dSBarry Smith 
1974ee4f033dSBarry Smith   if (coloring->vscaleforrow) vscaleforrow = coloring->vscaleforrow;
1975ee4f033dSBarry Smith   else                        vscaleforrow = coloring->columnsforrow;
1976ee4f033dSBarry Smith 
1977ee4f033dSBarry Smith   ierr = VecGetArray(coloring->vscale,&vscale_array);CHKERRQ(ierr);
1978ee4f033dSBarry Smith   /*
1979ee4f033dSBarry Smith       Loop over each color
1980ee4f033dSBarry Smith   */
1981ee4f033dSBarry Smith   for (k=0; k<coloring->ncolors; k++) {
1982ee4f033dSBarry Smith     ierr = VecCopy(x1,w3);CHKERRQ(ierr);
1983ee4f033dSBarry Smith     ierr = VecGetArray(w3,&w3_array);CHKERRQ(ierr);w3_array = w3_array - start;
1984ee4f033dSBarry Smith     /*
1985ee4f033dSBarry Smith        Loop over each column associated with color adding the
1986ee4f033dSBarry Smith        perturbation to the vector w3.
1987ee4f033dSBarry Smith     */
1988ee4f033dSBarry Smith     for (l=0; l<coloring->ncolumns[k]; l++) {
1989ee4f033dSBarry Smith       col = coloring->columns[k][l];    /* column of the matrix we are probing for */
1990ee4f033dSBarry Smith       dx  = xx[col];
1991ee4f033dSBarry Smith       if (dx == 0.0) dx = 1.0;
1992ee4f033dSBarry Smith #if !defined(PETSC_USE_COMPLEX)
1993ee4f033dSBarry Smith       if (dx < umin && dx >= 0.0)      dx = umin;
1994ee4f033dSBarry Smith       else if (dx < 0.0 && dx > -umin) dx = -umin;
1995ee4f033dSBarry Smith #else
1996ee4f033dSBarry Smith       if (PetscAbsScalar(dx) < umin && PetscRealPart(dx) >= 0.0)     dx = umin;
1997ee4f033dSBarry Smith       else if (PetscRealPart(dx) < 0.0 && PetscAbsScalar(dx) < umin) dx = -umin;
1998ee4f033dSBarry Smith #endif
1999ee4f033dSBarry Smith       dx            *= epsilon;
2000ee4f033dSBarry Smith       if (!PetscAbsScalar(dx)) SETERRQ(1,"Computed 0 differencing parameter");
2001ee4f033dSBarry Smith       w3_array[col] += dx;
2002ee4f033dSBarry Smith     }
2003ee4f033dSBarry Smith     w3_array = w3_array + start; ierr = VecRestoreArray(w3,&w3_array);CHKERRQ(ierr);
2004ee4f033dSBarry Smith 
2005ee4f033dSBarry Smith     /*
2006ee4f033dSBarry Smith        Evaluate function at x1 + dx (here dx is a vector of perturbations)
2007ee4f033dSBarry Smith     */
2008ee4f033dSBarry Smith 
2009ee4f033dSBarry Smith     ierr = (*f)(sctx,w3,w2,fctx);CHKERRQ(ierr);
2010ee4f033dSBarry Smith     ierr = VecAXPY(&mone,w1,w2);CHKERRQ(ierr);
2011ee4f033dSBarry Smith 
2012ee4f033dSBarry Smith     /*
2013ee4f033dSBarry Smith        Loop over rows of vector, putting results into Jacobian matrix
2014ee4f033dSBarry Smith     */
2015ee4f033dSBarry Smith     ierr = VecGetArray(w2,&y);CHKERRQ(ierr);
2016ee4f033dSBarry Smith     for (l=0; l<coloring->nrows[k]; l++) {
2017ee4f033dSBarry Smith       row    = coloring->rows[k][l];
2018ee4f033dSBarry Smith       col    = coloring->columnsforrow[k][l];
2019ee4f033dSBarry Smith       y[row] *= vscale_array[vscaleforrow[k][l]];
2020ee4f033dSBarry Smith       srow   = row + start;
2021ee4f033dSBarry Smith       ierr   = MatSetValues_SeqAIJ(J,1,&srow,1,&col,y+row,INSERT_VALUES);CHKERRQ(ierr);
2022ee4f033dSBarry Smith     }
2023ee4f033dSBarry Smith     ierr = VecRestoreArray(w2,&y);CHKERRQ(ierr);
2024ee4f033dSBarry Smith   }
2025ee4f033dSBarry Smith   ierr = VecRestoreArray(coloring->vscale,&vscale_array);CHKERRQ(ierr);
2026ee4f033dSBarry Smith   xx = xx + start; ierr  = VecRestoreArray(x1,&xx);CHKERRQ(ierr);
2027ee4f033dSBarry Smith   ierr  = MatAssemblyBegin(J,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2028ee4f033dSBarry Smith   ierr  = MatAssemblyEnd(J,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2029ee4f033dSBarry Smith   PetscFunctionReturn(0);
2030ee4f033dSBarry Smith }
2031ee4f033dSBarry Smith 
2032682d7d0cSBarry Smith /* -------------------------------------------------------------------*/
20330a6ffc59SBarry Smith static struct _MatOps MatOps_Values = {MatSetValues_SeqAIJ,
2034cb5b572fSBarry Smith        MatGetRow_SeqAIJ,
2035cb5b572fSBarry Smith        MatRestoreRow_SeqAIJ,
2036cb5b572fSBarry Smith        MatMult_SeqAIJ,
2037cb5b572fSBarry Smith        MatMultAdd_SeqAIJ,
20387c922b88SBarry Smith        MatMultTranspose_SeqAIJ,
20397c922b88SBarry Smith        MatMultTransposeAdd_SeqAIJ,
2040cb5b572fSBarry Smith        MatSolve_SeqAIJ,
2041cb5b572fSBarry Smith        MatSolveAdd_SeqAIJ,
20427c922b88SBarry Smith        MatSolveTranspose_SeqAIJ,
20437c922b88SBarry Smith        MatSolveTransposeAdd_SeqAIJ,
2044cb5b572fSBarry Smith        MatLUFactor_SeqAIJ,
2045cb5b572fSBarry Smith        0,
204617ab2063SBarry Smith        MatRelax_SeqAIJ,
204717ab2063SBarry Smith        MatTranspose_SeqAIJ,
2048cb5b572fSBarry Smith        MatGetInfo_SeqAIJ,
2049cb5b572fSBarry Smith        MatEqual_SeqAIJ,
2050cb5b572fSBarry Smith        MatGetDiagonal_SeqAIJ,
2051cb5b572fSBarry Smith        MatDiagonalScale_SeqAIJ,
2052cb5b572fSBarry Smith        MatNorm_SeqAIJ,
2053cb5b572fSBarry Smith        0,
2054cb5b572fSBarry Smith        MatAssemblyEnd_SeqAIJ,
205517ab2063SBarry Smith        MatCompress_SeqAIJ,
2056cb5b572fSBarry Smith        MatSetOption_SeqAIJ,
2057cb5b572fSBarry Smith        MatZeroEntries_SeqAIJ,
2058cb5b572fSBarry Smith        MatZeroRows_SeqAIJ,
2059cb5b572fSBarry Smith        MatLUFactorSymbolic_SeqAIJ,
2060cb5b572fSBarry Smith        MatLUFactorNumeric_SeqAIJ,
2061cb5b572fSBarry Smith        0,
2062cb5b572fSBarry Smith        0,
2063273d9f13SBarry Smith        MatSetUpPreallocation_SeqAIJ,
2064273d9f13SBarry Smith        0,
2065cb5b572fSBarry Smith        MatGetOwnershipRange_SeqAIJ,
2066cb5b572fSBarry Smith        MatILUFactorSymbolic_SeqAIJ,
2067cb5b572fSBarry Smith        0,
20686c0721eeSBarry Smith        MatGetArray_SeqAIJ,
20696c0721eeSBarry Smith        MatRestoreArray_SeqAIJ,
2070be6bf707SBarry Smith        MatDuplicate_SeqAIJ,
2071cb5b572fSBarry Smith        0,
2072cb5b572fSBarry Smith        0,
2073cb5b572fSBarry Smith        MatILUFactor_SeqAIJ,
2074cb5b572fSBarry Smith        0,
2075cb5b572fSBarry Smith        0,
2076cb5b572fSBarry Smith        MatGetSubMatrices_SeqAIJ,
2077cb5b572fSBarry Smith        MatIncreaseOverlap_SeqAIJ,
2078cb5b572fSBarry Smith        MatGetValues_SeqAIJ,
2079cb5b572fSBarry Smith        MatCopy_SeqAIJ,
2080f0b747eeSBarry Smith        MatPrintHelp_SeqAIJ,
2081cb5b572fSBarry Smith        MatScale_SeqAIJ,
2082cb5b572fSBarry Smith        0,
2083cb5b572fSBarry Smith        0,
20846945ee14SBarry Smith        MatILUDTFactor_SeqAIJ,
20856945ee14SBarry Smith        MatGetBlockSize_SeqAIJ,
20863b2fbd54SBarry Smith        MatGetRowIJ_SeqAIJ,
20873b2fbd54SBarry Smith        MatRestoreRowIJ_SeqAIJ,
20883b2fbd54SBarry Smith        MatGetColumnIJ_SeqAIJ,
2089a93ec695SBarry Smith        MatRestoreColumnIJ_SeqAIJ,
2090a93ec695SBarry Smith        MatFDColoringCreate_SeqAIJ,
2091b9617806SBarry Smith        0,
20920513a670SBarry Smith        0,
2093cda55fadSBarry Smith        MatPermute_SeqAIJ,
2094cda55fadSBarry Smith        0,
2095cda55fadSBarry Smith        0,
2096b9b97703SBarry Smith        MatDestroy_SeqAIJ,
2097b9b97703SBarry Smith        MatView_SeqAIJ,
20988a124369SBarry Smith        MatGetPetscMaps_Petsc,
2099ee4f033dSBarry Smith        0,
2100ee4f033dSBarry Smith        0,
2101ee4f033dSBarry Smith        0,
2102ee4f033dSBarry Smith        0,
2103ee4f033dSBarry Smith        0,
2104ee4f033dSBarry Smith        0,
2105ee4f033dSBarry Smith        0,
2106ee4f033dSBarry Smith        0,
2107ee4f033dSBarry Smith        MatSetColoring_SeqAIJ,
2108ee4f033dSBarry Smith        MatSetValuesAdic_SeqAIJ,
2109ee4f033dSBarry Smith        MatSetValuesAdifor_SeqAIJ,
2110ee4f033dSBarry Smith        MatFDColoringApply_SeqAIJ};
211117ab2063SBarry Smith 
2112ca44d042SBarry Smith EXTERN int MatUseSuperLU_SeqAIJ(Mat);
2113ca44d042SBarry Smith EXTERN int MatUseEssl_SeqAIJ(Mat);
2114cd5578b5SBarry Smith EXTERN int MatUseLUSOL_SeqAIJ(Mat);
2115ca44d042SBarry Smith EXTERN int MatUseMatlab_SeqAIJ(Mat);
2116ca44d042SBarry Smith EXTERN int MatUseDXML_SeqAIJ(Mat);
211717ab2063SBarry Smith 
2118fb2e594dSBarry Smith EXTERN_C_BEGIN
21194a2ae208SSatish Balay #undef __FUNCT__
21204a2ae208SSatish Balay #define __FUNCT__ "MatSeqAIJSetColumnIndices_SeqAIJ"
212115091d37SBarry Smith 
2122bef8e0ddSBarry Smith int MatSeqAIJSetColumnIndices_SeqAIJ(Mat mat,int *indices)
2123bef8e0ddSBarry Smith {
2124bef8e0ddSBarry Smith   Mat_SeqAIJ *aij = (Mat_SeqAIJ *)mat->data;
2125bef8e0ddSBarry Smith   int        i,nz,n;
2126bef8e0ddSBarry Smith 
2127bef8e0ddSBarry Smith   PetscFunctionBegin;
2128bef8e0ddSBarry Smith 
2129bef8e0ddSBarry Smith   nz = aij->maxnz;
2130273d9f13SBarry Smith   n  = mat->n;
2131bef8e0ddSBarry Smith   for (i=0; i<nz; i++) {
2132bef8e0ddSBarry Smith     aij->j[i] = indices[i];
2133bef8e0ddSBarry Smith   }
2134bef8e0ddSBarry Smith   aij->nz = nz;
2135bef8e0ddSBarry Smith   for (i=0; i<n; i++) {
2136bef8e0ddSBarry Smith     aij->ilen[i] = aij->imax[i];
2137bef8e0ddSBarry Smith   }
2138bef8e0ddSBarry Smith 
2139bef8e0ddSBarry Smith   PetscFunctionReturn(0);
2140bef8e0ddSBarry Smith }
2141fb2e594dSBarry Smith EXTERN_C_END
2142bef8e0ddSBarry Smith 
21434a2ae208SSatish Balay #undef __FUNCT__
21444a2ae208SSatish Balay #define __FUNCT__ "MatSeqAIJSetColumnIndices"
2145bef8e0ddSBarry Smith /*@
2146bef8e0ddSBarry Smith     MatSeqAIJSetColumnIndices - Set the column indices for all the rows
2147bef8e0ddSBarry Smith        in the matrix.
2148bef8e0ddSBarry Smith 
2149bef8e0ddSBarry Smith   Input Parameters:
2150bef8e0ddSBarry Smith +  mat - the SeqAIJ matrix
2151bef8e0ddSBarry Smith -  indices - the column indices
2152bef8e0ddSBarry Smith 
215315091d37SBarry Smith   Level: advanced
215415091d37SBarry Smith 
2155bef8e0ddSBarry Smith   Notes:
2156bef8e0ddSBarry Smith     This can be called if you have precomputed the nonzero structure of the
2157bef8e0ddSBarry Smith   matrix and want to provide it to the matrix object to improve the performance
2158bef8e0ddSBarry Smith   of the MatSetValues() operation.
2159bef8e0ddSBarry Smith 
2160bef8e0ddSBarry Smith     You MUST have set the correct numbers of nonzeros per row in the call to
2161bef8e0ddSBarry Smith   MatCreateSeqAIJ().
2162bef8e0ddSBarry Smith 
2163bef8e0ddSBarry Smith     MUST be called before any calls to MatSetValues();
2164bef8e0ddSBarry Smith 
2165b9617806SBarry Smith     The indices should start with zero, not one.
2166b9617806SBarry Smith 
2167bef8e0ddSBarry Smith @*/
2168bef8e0ddSBarry Smith int MatSeqAIJSetColumnIndices(Mat mat,int *indices)
2169bef8e0ddSBarry Smith {
2170bef8e0ddSBarry Smith   int ierr,(*f)(Mat,int *);
2171bef8e0ddSBarry Smith 
2172bef8e0ddSBarry Smith   PetscFunctionBegin;
2173bef8e0ddSBarry Smith   PetscValidHeaderSpecific(mat,MAT_COOKIE);
2174b9617806SBarry Smith   ierr = PetscObjectQueryFunction((PetscObject)mat,"MatSeqAIJSetColumnIndices_C",(void (**)())&f);CHKERRQ(ierr);
2175bef8e0ddSBarry Smith   if (f) {
2176bef8e0ddSBarry Smith     ierr = (*f)(mat,indices);CHKERRQ(ierr);
2177bef8e0ddSBarry Smith   } else {
217829bbc08cSBarry Smith     SETERRQ(1,"Wrong type of matrix to set column indices");
2179bef8e0ddSBarry Smith   }
2180bef8e0ddSBarry Smith   PetscFunctionReturn(0);
2181bef8e0ddSBarry Smith }
2182bef8e0ddSBarry Smith 
2183be6bf707SBarry Smith /* ----------------------------------------------------------------------------------------*/
2184be6bf707SBarry Smith 
2185fb2e594dSBarry Smith EXTERN_C_BEGIN
21864a2ae208SSatish Balay #undef __FUNCT__
21874a2ae208SSatish Balay #define __FUNCT__ "MatStoreValues_SeqAIJ"
2188be6bf707SBarry Smith int MatStoreValues_SeqAIJ(Mat mat)
2189be6bf707SBarry Smith {
2190be6bf707SBarry Smith   Mat_SeqAIJ *aij = (Mat_SeqAIJ *)mat->data;
2191273d9f13SBarry Smith   int        nz = aij->i[mat->m]+aij->indexshift,ierr;
2192be6bf707SBarry Smith 
2193be6bf707SBarry Smith   PetscFunctionBegin;
2194be6bf707SBarry Smith   if (aij->nonew != 1) {
219529bbc08cSBarry Smith     SETERRQ(1,"Must call MatSetOption(A,MAT_NO_NEW_NONZERO_LOCATIONS);first");
2196be6bf707SBarry Smith   }
2197be6bf707SBarry Smith 
2198be6bf707SBarry Smith   /* allocate space for values if not already there */
2199be6bf707SBarry Smith   if (!aij->saved_values) {
220087828ca2SBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(PetscScalar),&aij->saved_values);CHKERRQ(ierr);
2201be6bf707SBarry Smith   }
2202be6bf707SBarry Smith 
2203be6bf707SBarry Smith   /* copy values over */
220487828ca2SBarry Smith   ierr = PetscMemcpy(aij->saved_values,aij->a,nz*sizeof(PetscScalar));CHKERRQ(ierr);
2205be6bf707SBarry Smith   PetscFunctionReturn(0);
2206be6bf707SBarry Smith }
2207fb2e594dSBarry Smith EXTERN_C_END
2208be6bf707SBarry Smith 
22094a2ae208SSatish Balay #undef __FUNCT__
2210b9617806SBarry Smith #define __FUNCT__ "MatStoreValues"
2211be6bf707SBarry Smith /*@
2212be6bf707SBarry Smith     MatStoreValues - Stashes a copy of the matrix values; this allows, for
2213be6bf707SBarry Smith        example, reuse of the linear part of a Jacobian, while recomputing the
2214be6bf707SBarry Smith        nonlinear portion.
2215be6bf707SBarry Smith 
2216be6bf707SBarry Smith    Collect on Mat
2217be6bf707SBarry Smith 
2218be6bf707SBarry Smith   Input Parameters:
2219be6bf707SBarry Smith .  mat - the matrix (currently on AIJ matrices support this option)
2220be6bf707SBarry Smith 
222115091d37SBarry Smith   Level: advanced
222215091d37SBarry Smith 
2223be6bf707SBarry Smith   Common Usage, with SNESSolve():
2224be6bf707SBarry Smith $    Create Jacobian matrix
2225be6bf707SBarry Smith $    Set linear terms into matrix
2226be6bf707SBarry Smith $    Apply boundary conditions to matrix, at this time matrix must have
2227be6bf707SBarry Smith $      final nonzero structure (i.e. setting the nonlinear terms and applying
2228be6bf707SBarry Smith $      boundary conditions again will not change the nonzero structure
2229be6bf707SBarry Smith $    ierr = MatSetOption(mat,MAT_NO_NEW_NONZERO_LOCATIONS);
2230be6bf707SBarry Smith $    ierr = MatStoreValues(mat);
2231be6bf707SBarry Smith $    Call SNESSetJacobian() with matrix
2232be6bf707SBarry Smith $    In your Jacobian routine
2233be6bf707SBarry Smith $      ierr = MatRetrieveValues(mat);
2234be6bf707SBarry Smith $      Set nonlinear terms in matrix
2235be6bf707SBarry Smith 
2236be6bf707SBarry Smith   Common Usage without SNESSolve(), i.e. when you handle nonlinear solve yourself:
2237be6bf707SBarry Smith $    // build linear portion of Jacobian
2238be6bf707SBarry Smith $    ierr = MatSetOption(mat,MAT_NO_NEW_NONZERO_LOCATIONS);
2239be6bf707SBarry Smith $    ierr = MatStoreValues(mat);
2240be6bf707SBarry Smith $    loop over nonlinear iterations
2241be6bf707SBarry Smith $       ierr = MatRetrieveValues(mat);
2242be6bf707SBarry Smith $       // call MatSetValues(mat,...) to set nonliner portion of Jacobian
2243be6bf707SBarry Smith $       // call MatAssemblyBegin/End() on matrix
2244be6bf707SBarry Smith $       Solve linear system with Jacobian
2245be6bf707SBarry Smith $    endloop
2246be6bf707SBarry Smith 
2247be6bf707SBarry Smith   Notes:
2248be6bf707SBarry Smith     Matrix must already be assemblied before calling this routine
2249be6bf707SBarry Smith     Must set the matrix option MatSetOption(mat,MAT_NO_NEW_NONZERO_LOCATIONS); before
2250be6bf707SBarry Smith     calling this routine.
2251be6bf707SBarry Smith 
2252be6bf707SBarry Smith .seealso: MatRetrieveValues()
2253be6bf707SBarry Smith 
2254be6bf707SBarry Smith @*/
2255be6bf707SBarry Smith int MatStoreValues(Mat mat)
2256be6bf707SBarry Smith {
2257be6bf707SBarry Smith   int ierr,(*f)(Mat);
2258be6bf707SBarry Smith 
2259be6bf707SBarry Smith   PetscFunctionBegin;
2260be6bf707SBarry Smith   PetscValidHeaderSpecific(mat,MAT_COOKIE);
226129bbc08cSBarry Smith   if (!mat->assembled) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix");
226229bbc08cSBarry Smith   if (mat->factor) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix");
2263be6bf707SBarry Smith 
2264b9617806SBarry Smith   ierr = PetscObjectQueryFunction((PetscObject)mat,"MatStoreValues_C",(void (**)())&f);CHKERRQ(ierr);
2265be6bf707SBarry Smith   if (f) {
2266be6bf707SBarry Smith     ierr = (*f)(mat);CHKERRQ(ierr);
2267be6bf707SBarry Smith   } else {
226829bbc08cSBarry Smith     SETERRQ(1,"Wrong type of matrix to store values");
2269be6bf707SBarry Smith   }
2270be6bf707SBarry Smith   PetscFunctionReturn(0);
2271be6bf707SBarry Smith }
2272be6bf707SBarry Smith 
2273fb2e594dSBarry Smith EXTERN_C_BEGIN
22744a2ae208SSatish Balay #undef __FUNCT__
22754a2ae208SSatish Balay #define __FUNCT__ "MatRetrieveValues_SeqAIJ"
2276be6bf707SBarry Smith int MatRetrieveValues_SeqAIJ(Mat mat)
2277be6bf707SBarry Smith {
2278be6bf707SBarry Smith   Mat_SeqAIJ *aij = (Mat_SeqAIJ *)mat->data;
2279273d9f13SBarry Smith   int        nz = aij->i[mat->m]+aij->indexshift,ierr;
2280be6bf707SBarry Smith 
2281be6bf707SBarry Smith   PetscFunctionBegin;
2282be6bf707SBarry Smith   if (aij->nonew != 1) {
228329bbc08cSBarry Smith     SETERRQ(1,"Must call MatSetOption(A,MAT_NO_NEW_NONZERO_LOCATIONS);first");
2284be6bf707SBarry Smith   }
2285be6bf707SBarry Smith   if (!aij->saved_values) {
228629bbc08cSBarry Smith     SETERRQ(1,"Must call MatStoreValues(A);first");
2287be6bf707SBarry Smith   }
2288be6bf707SBarry Smith 
2289be6bf707SBarry Smith   /* copy values over */
229087828ca2SBarry Smith   ierr = PetscMemcpy(aij->a,aij->saved_values,nz*sizeof(PetscScalar));CHKERRQ(ierr);
2291be6bf707SBarry Smith   PetscFunctionReturn(0);
2292be6bf707SBarry Smith }
2293fb2e594dSBarry Smith EXTERN_C_END
2294be6bf707SBarry Smith 
22954a2ae208SSatish Balay #undef __FUNCT__
22964a2ae208SSatish Balay #define __FUNCT__ "MatRetrieveValues"
2297be6bf707SBarry Smith /*@
2298be6bf707SBarry Smith     MatRetrieveValues - Retrieves the copy of the matrix values; this allows, for
2299be6bf707SBarry Smith        example, reuse of the linear part of a Jacobian, while recomputing the
2300be6bf707SBarry Smith        nonlinear portion.
2301be6bf707SBarry Smith 
2302be6bf707SBarry Smith    Collect on Mat
2303be6bf707SBarry Smith 
2304be6bf707SBarry Smith   Input Parameters:
2305be6bf707SBarry Smith .  mat - the matrix (currently on AIJ matrices support this option)
2306be6bf707SBarry Smith 
230715091d37SBarry Smith   Level: advanced
230815091d37SBarry Smith 
2309be6bf707SBarry Smith .seealso: MatStoreValues()
2310be6bf707SBarry Smith 
2311be6bf707SBarry Smith @*/
2312be6bf707SBarry Smith int MatRetrieveValues(Mat mat)
2313be6bf707SBarry Smith {
2314be6bf707SBarry Smith   int ierr,(*f)(Mat);
2315be6bf707SBarry Smith 
2316be6bf707SBarry Smith   PetscFunctionBegin;
2317be6bf707SBarry Smith   PetscValidHeaderSpecific(mat,MAT_COOKIE);
231829bbc08cSBarry Smith   if (!mat->assembled) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix");
231929bbc08cSBarry Smith   if (mat->factor) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix");
2320be6bf707SBarry Smith 
2321b9617806SBarry Smith   ierr = PetscObjectQueryFunction((PetscObject)mat,"MatRetrieveValues_C",(void (**)())&f);CHKERRQ(ierr);
2322be6bf707SBarry Smith   if (f) {
2323be6bf707SBarry Smith     ierr = (*f)(mat);CHKERRQ(ierr);
2324be6bf707SBarry Smith   } else {
232529bbc08cSBarry Smith     SETERRQ(1,"Wrong type of matrix to retrieve values");
2326be6bf707SBarry Smith   }
2327be6bf707SBarry Smith   PetscFunctionReturn(0);
2328be6bf707SBarry Smith }
2329be6bf707SBarry Smith 
2330f83d6046SBarry Smith /*
2331f83d6046SBarry Smith    This allows SeqAIJ matrices to be passed to the matlab engine
2332f83d6046SBarry Smith */
233387828ca2SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) && !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_SINGLE)
2334f83d6046SBarry Smith #include "engine.h"   /* Matlab include file */
2335f83d6046SBarry Smith #include "mex.h"      /* Matlab include file */
2336f83d6046SBarry Smith EXTERN_C_BEGIN
23374a2ae208SSatish Balay #undef __FUNCT__
23384a2ae208SSatish Balay #define __FUNCT__ "MatMatlabEnginePut_SeqAIJ"
2339f83d6046SBarry Smith int MatMatlabEnginePut_SeqAIJ(PetscObject obj,void *engine)
2340f83d6046SBarry Smith {
234166826eb6SBarry Smith   int        ierr,i,*ai,*aj;
2342f83d6046SBarry Smith   Mat        B = (Mat)obj;
234387828ca2SBarry Smith   PetscScalar*array;
2344f83d6046SBarry Smith   mxArray    *mat;
2345d79a51d8SBarry Smith   Mat_SeqAIJ *aij = (Mat_SeqAIJ*)B->data;
2346d79a51d8SBarry Smith 
2347f83d6046SBarry Smith   PetscFunctionBegin;
234801820c62SBarry Smith   mat  = mxCreateSparse(B->n,B->m,aij->nz,mxREAL);
234987828ca2SBarry Smith   ierr = PetscMemcpy(mxGetPr(mat),aij->a,aij->nz*sizeof(PetscScalar));CHKERRQ(ierr);
2350d79a51d8SBarry Smith   /* Matlab stores by column, not row so we pass in the transpose of the matrix */
235166826eb6SBarry Smith   ierr = PetscMemcpy(mxGetIr(mat),aij->j,aij->nz*sizeof(int));CHKERRQ(ierr);
235266826eb6SBarry Smith   ierr = PetscMemcpy(mxGetJc(mat),aij->i,(B->m+1)*sizeof(int));CHKERRQ(ierr);
2353f83d6046SBarry Smith 
235401820c62SBarry Smith   /* Matlab indices start at 0 for sparse (what a surprise) */
235501820c62SBarry Smith   if (aij->indexshift) {
235601820c62SBarry Smith     for (i=0; i<B->m+1; i++) {
235701820c62SBarry Smith       ai[i]--;
2358d79a51d8SBarry Smith     }
2359d79a51d8SBarry Smith     for (i=0; i<aij->nz; i++) {
236001820c62SBarry Smith       aj[i]--;
2361d79a51d8SBarry Smith     }
2362d79a51d8SBarry Smith   }
2363ca44d042SBarry Smith   ierr = PetscObjectName(obj);CHKERRQ(ierr);
2364f83d6046SBarry Smith   mxSetName(mat,obj->name);
2365f83d6046SBarry Smith   engPutArray((Engine *)engine,mat);
2366f83d6046SBarry Smith   PetscFunctionReturn(0);
2367f83d6046SBarry Smith }
2368f83d6046SBarry Smith EXTERN_C_END
236966826eb6SBarry Smith 
237066826eb6SBarry Smith EXTERN_C_BEGIN
23714a2ae208SSatish Balay #undef __FUNCT__
23724a2ae208SSatish Balay #define __FUNCT__ "MatMatlabEngineGet_SeqAIJ"
237366826eb6SBarry Smith int MatMatlabEngineGet_SeqAIJ(PetscObject obj,void *engine)
237466826eb6SBarry Smith {
237566826eb6SBarry Smith   int        ierr,ii;
237666826eb6SBarry Smith   Mat        mat = (Mat)obj;
237766826eb6SBarry Smith   Mat_SeqAIJ *aij = (Mat_SeqAIJ*)mat->data;
237866826eb6SBarry Smith   mxArray    *mmat;
237966826eb6SBarry Smith 
23806c0721eeSBarry Smith   PetscFunctionBegin;
238166826eb6SBarry Smith   ierr = PetscFree(aij->a);CHKERRQ(ierr);
238266826eb6SBarry Smith   aij->indexshift = 0;
238366826eb6SBarry Smith 
238466826eb6SBarry Smith   mmat = engGetArray((Engine *)engine,obj->name);
238566826eb6SBarry Smith 
2386a65776f3SBarry Smith   aij->nz           = (mxGetJc(mmat))[mat->m];
238787828ca2SBarry Smith   ierr              = PetscMalloc(aij->nz*(sizeof(int)+sizeof(PetscScalar))+(mat->m+1)*sizeof(int),&aij->a);CHKERRQ(ierr);
238866826eb6SBarry Smith   aij->j            = (int*)(aij->a + aij->nz);
238966826eb6SBarry Smith   aij->i            = aij->j + aij->nz;
239066826eb6SBarry Smith   aij->singlemalloc = PETSC_TRUE;
239166826eb6SBarry Smith   aij->freedata     = PETSC_TRUE;
239266826eb6SBarry Smith 
239387828ca2SBarry Smith   ierr = PetscMemcpy(aij->a,mxGetPr(mmat),aij->nz*sizeof(PetscScalar));CHKERRQ(ierr);
239466826eb6SBarry Smith   /* Matlab stores by column, not row so we pass in the transpose of the matrix */
239566826eb6SBarry Smith   ierr = PetscMemcpy(aij->j,mxGetIr(mmat),aij->nz*sizeof(int));CHKERRQ(ierr);
239666826eb6SBarry Smith   ierr = PetscMemcpy(aij->i,mxGetJc(mmat),(mat->m+1)*sizeof(int));CHKERRQ(ierr);
239766826eb6SBarry Smith 
239866826eb6SBarry Smith   for (ii=0; ii<mat->m; ii++) {
239966826eb6SBarry Smith     aij->ilen[ii] = aij->imax[ii] = aij->i[ii+1] - aij->i[ii];
240066826eb6SBarry Smith   }
240166826eb6SBarry Smith 
240266826eb6SBarry Smith   ierr = MatAssemblyBegin(mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
240366826eb6SBarry Smith   ierr = MatAssemblyEnd(mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
240466826eb6SBarry Smith 
240566826eb6SBarry Smith   PetscFunctionReturn(0);
240666826eb6SBarry Smith }
240766826eb6SBarry Smith EXTERN_C_END
2408f83d6046SBarry Smith #endif
2409f83d6046SBarry Smith 
2410be6bf707SBarry Smith /* --------------------------------------------------------------------------------*/
2411cb5b572fSBarry Smith 
24124a2ae208SSatish Balay #undef __FUNCT__
24134a2ae208SSatish Balay #define __FUNCT__ "MatCreateSeqAIJ"
241417ab2063SBarry Smith /*@C
2415682d7d0cSBarry Smith    MatCreateSeqAIJ - Creates a sparse matrix in AIJ (compressed row) format
24160d15e28bSLois Curfman McInnes    (the default parallel PETSc format).  For good matrix assembly performance
24176e62573dSLois Curfman McInnes    the user should preallocate the matrix storage by setting the parameter nz
241851c19458SBarry Smith    (or the array nnz).  By setting these parameters accurately, performance
24192bd5e0b2SLois Curfman McInnes    during matrix assembly can be increased by more than a factor of 50.
242017ab2063SBarry Smith 
2421db81eaa0SLois Curfman McInnes    Collective on MPI_Comm
2422db81eaa0SLois Curfman McInnes 
242317ab2063SBarry Smith    Input Parameters:
2424db81eaa0SLois Curfman McInnes +  comm - MPI communicator, set to PETSC_COMM_SELF
242517ab2063SBarry Smith .  m - number of rows
242617ab2063SBarry Smith .  n - number of columns
242717ab2063SBarry Smith .  nz - number of nonzeros per row (same for all rows)
242851c19458SBarry Smith -  nnz - array containing the number of nonzeros in the various rows
24292bd5e0b2SLois Curfman McInnes          (possibly different for each row) or PETSC_NULL
243017ab2063SBarry Smith 
243117ab2063SBarry Smith    Output Parameter:
2432416022c9SBarry Smith .  A - the matrix
243317ab2063SBarry Smith 
2434b259b22eSLois Curfman McInnes    Notes:
243517ab2063SBarry Smith    The AIJ format (also called the Yale sparse matrix format or
243617ab2063SBarry Smith    compressed row storage), is fully compatible with standard Fortran 77
24370002213bSLois Curfman McInnes    storage.  That is, the stored row and column indices can begin at
243844cd7ae7SLois Curfman McInnes    either one (as in Fortran) or zero.  See the users' manual for details.
243917ab2063SBarry Smith 
244017ab2063SBarry Smith    Specify the preallocated storage with either nz or nnz (not both).
2441a40aa06bSLois Curfman McInnes    Set nz=PETSC_DEFAULT and nnz=PETSC_NULL for PETSc to control dynamic memory
24423d323bbdSBarry Smith    allocation.  For large problems you MUST preallocate memory or you
24436da5968aSLois Curfman McInnes    will get TERRIBLE performance, see the users' manual chapter on matrices.
244417ab2063SBarry Smith 
2445682d7d0cSBarry Smith    By default, this format uses inodes (identical nodes) when possible, to
24464fca80b9SLois Curfman McInnes    improve numerical efficiency of matrix-vector products and solves. We
2447682d7d0cSBarry Smith    search for consecutive rows with the same nonzero structure, thereby
24486c7ebb05SLois Curfman McInnes    reusing matrix information to achieve increased efficiency.
24496c7ebb05SLois Curfman McInnes 
24506c7ebb05SLois Curfman McInnes    Options Database Keys:
2451db81eaa0SLois Curfman McInnes +  -mat_aij_no_inode  - Do not use inodes
2452db81eaa0SLois Curfman McInnes .  -mat_aij_inode_limit <limit> - Sets inode limit (max limit=5)
2453db81eaa0SLois Curfman McInnes -  -mat_aij_oneindex - Internally use indexing starting at 1
2454db81eaa0SLois Curfman McInnes         rather than 0.  Note that when calling MatSetValues(),
2455db81eaa0SLois Curfman McInnes         the user still MUST index entries starting at 0!
245617ab2063SBarry Smith 
2457027ccd11SLois Curfman McInnes    Level: intermediate
2458027ccd11SLois Curfman McInnes 
245936db0b34SBarry Smith .seealso: MatCreate(), MatCreateMPIAIJ(), MatSetValues(), MatSeqAIJSetColumnIndices(), MatCreateSeqAIJWithArrays()
246036db0b34SBarry Smith 
246117ab2063SBarry Smith @*/
2462416022c9SBarry Smith int MatCreateSeqAIJ(MPI_Comm comm,int m,int n,int nz,int *nnz,Mat *A)
246317ab2063SBarry Smith {
2464273d9f13SBarry Smith   int ierr;
24656945ee14SBarry Smith 
24663a40ed3dSBarry Smith   PetscFunctionBegin;
2467273d9f13SBarry Smith   ierr = MatCreate(comm,m,n,m,n,A);CHKERRQ(ierr);
2468273d9f13SBarry Smith   ierr = MatSetType(*A,MATSEQAIJ);CHKERRQ(ierr);
2469273d9f13SBarry Smith   ierr = MatSeqAIJSetPreallocation(*A,nz,nnz);CHKERRQ(ierr);
2470273d9f13SBarry Smith   PetscFunctionReturn(0);
2471273d9f13SBarry Smith }
2472273d9f13SBarry Smith 
24734a2ae208SSatish Balay #undef __FUNCT__
24744a2ae208SSatish Balay #define __FUNCT__ "MatSeqAIJSetPreallocation"
2475273d9f13SBarry Smith /*@C
2476273d9f13SBarry Smith    MatSeqAIJSetPreallocation - For good matrix assembly performance
2477273d9f13SBarry Smith    the user should preallocate the matrix storage by setting the parameter nz
2478273d9f13SBarry Smith    (or the array nnz).  By setting these parameters accurately, performance
2479273d9f13SBarry Smith    during matrix assembly can be increased by more than a factor of 50.
2480273d9f13SBarry Smith 
2481273d9f13SBarry Smith    Collective on MPI_Comm
2482273d9f13SBarry Smith 
2483273d9f13SBarry Smith    Input Parameters:
2484273d9f13SBarry Smith +  comm - MPI communicator, set to PETSC_COMM_SELF
2485273d9f13SBarry Smith .  m - number of rows
2486273d9f13SBarry Smith .  n - number of columns
2487273d9f13SBarry Smith .  nz - number of nonzeros per row (same for all rows)
2488273d9f13SBarry Smith -  nnz - array containing the number of nonzeros in the various rows
2489273d9f13SBarry Smith          (possibly different for each row) or PETSC_NULL
2490273d9f13SBarry Smith 
2491273d9f13SBarry Smith    Output Parameter:
2492273d9f13SBarry Smith .  A - the matrix
2493273d9f13SBarry Smith 
2494273d9f13SBarry Smith    Notes:
2495273d9f13SBarry Smith    The AIJ format (also called the Yale sparse matrix format or
2496273d9f13SBarry Smith    compressed row storage), is fully compatible with standard Fortran 77
2497273d9f13SBarry Smith    storage.  That is, the stored row and column indices can begin at
2498273d9f13SBarry Smith    either one (as in Fortran) or zero.  See the users' manual for details.
2499273d9f13SBarry Smith 
2500273d9f13SBarry Smith    Specify the preallocated storage with either nz or nnz (not both).
2501273d9f13SBarry Smith    Set nz=PETSC_DEFAULT and nnz=PETSC_NULL for PETSc to control dynamic memory
2502273d9f13SBarry Smith    allocation.  For large problems you MUST preallocate memory or you
2503273d9f13SBarry Smith    will get TERRIBLE performance, see the users' manual chapter on matrices.
2504273d9f13SBarry Smith 
2505273d9f13SBarry Smith    By default, this format uses inodes (identical nodes) when possible, to
2506273d9f13SBarry Smith    improve numerical efficiency of matrix-vector products and solves. We
2507273d9f13SBarry Smith    search for consecutive rows with the same nonzero structure, thereby
2508273d9f13SBarry Smith    reusing matrix information to achieve increased efficiency.
2509273d9f13SBarry Smith 
2510273d9f13SBarry Smith    Options Database Keys:
2511273d9f13SBarry Smith +  -mat_aij_no_inode  - Do not use inodes
2512273d9f13SBarry Smith .  -mat_aij_inode_limit <limit> - Sets inode limit (max limit=5)
2513273d9f13SBarry Smith -  -mat_aij_oneindex - Internally use indexing starting at 1
2514273d9f13SBarry Smith         rather than 0.  Note that when calling MatSetValues(),
2515273d9f13SBarry Smith         the user still MUST index entries starting at 0!
2516273d9f13SBarry Smith 
2517273d9f13SBarry Smith    Level: intermediate
2518273d9f13SBarry Smith 
2519273d9f13SBarry Smith .seealso: MatCreate(), MatCreateMPIAIJ(), MatSetValues(), MatSeqAIJSetColumnIndices(), MatCreateSeqAIJWithArrays()
2520273d9f13SBarry Smith 
2521273d9f13SBarry Smith @*/
2522273d9f13SBarry Smith int MatSeqAIJSetPreallocation(Mat B,int nz,int *nnz)
2523273d9f13SBarry Smith {
2524273d9f13SBarry Smith   Mat_SeqAIJ *b;
2525273d9f13SBarry Smith   int        i,len,ierr;
2526273d9f13SBarry Smith   PetscTruth flg2;
2527273d9f13SBarry Smith 
2528273d9f13SBarry Smith   PetscFunctionBegin;
2529273d9f13SBarry Smith   ierr = PetscTypeCompare((PetscObject)B,MATSEQAIJ,&flg2);CHKERRQ(ierr);
2530273d9f13SBarry Smith   if (!flg2) PetscFunctionReturn(0);
2531d5d45c9bSBarry Smith 
2532435da068SBarry Smith   if (nz == PETSC_DEFAULT || nz == PETSC_DECIDE) nz = 5;
2533435da068SBarry Smith   if (nz < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"nz cannot be less than 0: value %d",nz);
2534b73539f3SBarry Smith   if (nnz) {
2535273d9f13SBarry Smith     for (i=0; i<B->m; i++) {
253629bbc08cSBarry Smith       if (nnz[i] < 0) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"nnz cannot be less than 0: local row %d value %d",i,nnz[i]);
25373a7fca6bSBarry Smith       if (nnz[i] > B->n) SETERRQ3(PETSC_ERR_ARG_OUTOFRANGE,"nnz cannot be greater than row length: local row %d value %d rowlength %d",i,nnz[i],B->n);
2538b73539f3SBarry Smith     }
2539b73539f3SBarry Smith   }
2540b73539f3SBarry Smith 
2541273d9f13SBarry Smith   B->preallocated = PETSC_TRUE;
2542273d9f13SBarry Smith   b = (Mat_SeqAIJ*)B->data;
2543273d9f13SBarry Smith 
2544b0a32e0cSBarry Smith   ierr = PetscMalloc((B->m+1)*sizeof(int),&b->imax);CHKERRQ(ierr);
2545273d9f13SBarry Smith   if (!nnz) {
2546435da068SBarry Smith     if (nz == PETSC_DEFAULT || nz == PETSC_DECIDE) nz = 10;
2547273d9f13SBarry Smith     else if (nz <= 0)        nz = 1;
2548273d9f13SBarry Smith     for (i=0; i<B->m; i++) b->imax[i] = nz;
2549273d9f13SBarry Smith     nz = nz*B->m;
2550273d9f13SBarry Smith   } else {
2551273d9f13SBarry Smith     nz = 0;
2552273d9f13SBarry Smith     for (i=0; i<B->m; i++) {b->imax[i] = nnz[i]; nz += nnz[i];}
2553273d9f13SBarry Smith   }
2554273d9f13SBarry Smith 
2555273d9f13SBarry Smith   /* allocate the matrix space */
255687828ca2SBarry Smith   len             = nz*(sizeof(int) + sizeof(PetscScalar)) + (B->m+1)*sizeof(int);
2557b0a32e0cSBarry Smith   ierr            = PetscMalloc(len,&b->a);CHKERRQ(ierr);
2558273d9f13SBarry Smith   b->j            = (int*)(b->a + nz);
2559273d9f13SBarry Smith   ierr            = PetscMemzero(b->j,nz*sizeof(int));CHKERRQ(ierr);
2560273d9f13SBarry Smith   b->i            = b->j + nz;
2561273d9f13SBarry Smith   b->singlemalloc = PETSC_TRUE;
2562273d9f13SBarry Smith   b->freedata     = PETSC_TRUE;
2563273d9f13SBarry Smith 
2564273d9f13SBarry Smith   b->i[0] = -b->indexshift;
2565273d9f13SBarry Smith   for (i=1; i<B->m+1; i++) {
2566273d9f13SBarry Smith     b->i[i] = b->i[i-1] + b->imax[i-1];
2567273d9f13SBarry Smith   }
2568273d9f13SBarry Smith 
2569273d9f13SBarry Smith   /* b->ilen will count nonzeros in each row so far. */
2570b0a32e0cSBarry Smith   ierr = PetscMalloc((B->m+1)*sizeof(int),&b->ilen);CHKERRQ(ierr);
2571b0a32e0cSBarry Smith   PetscLogObjectMemory(B,len+2*(B->m+1)*sizeof(int)+sizeof(struct _p_Mat)+sizeof(Mat_SeqAIJ));
2572273d9f13SBarry Smith   for (i=0; i<B->m; i++) { b->ilen[i] = 0;}
2573273d9f13SBarry Smith 
2574273d9f13SBarry Smith   b->nz                = 0;
2575273d9f13SBarry Smith   b->maxnz             = nz;
2576273d9f13SBarry Smith   B->info.nz_unneeded  = (double)b->maxnz;
2577273d9f13SBarry Smith   PetscFunctionReturn(0);
2578273d9f13SBarry Smith }
2579273d9f13SBarry Smith 
2580273d9f13SBarry Smith EXTERN_C_BEGIN
25814a2ae208SSatish Balay #undef __FUNCT__
25824a2ae208SSatish Balay #define __FUNCT__ "MatCreate_SeqAIJ"
2583273d9f13SBarry Smith int MatCreate_SeqAIJ(Mat B)
2584273d9f13SBarry Smith {
2585273d9f13SBarry Smith   Mat_SeqAIJ *b;
2586273d9f13SBarry Smith   int        ierr,size;
2587273d9f13SBarry Smith   PetscTruth flg;
2588273d9f13SBarry Smith 
2589273d9f13SBarry Smith   PetscFunctionBegin;
2590273d9f13SBarry Smith   ierr = MPI_Comm_size(B->comm,&size);CHKERRQ(ierr);
2591273d9f13SBarry Smith   if (size > 1) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Comm must be of size 1");
2592273d9f13SBarry Smith 
2593273d9f13SBarry Smith   B->m = B->M = PetscMax(B->m,B->M);
2594273d9f13SBarry Smith   B->n = B->N = PetscMax(B->n,B->N);
2595273d9f13SBarry Smith 
2596b0a32e0cSBarry Smith   ierr = PetscNew(Mat_SeqAIJ,&b);CHKERRQ(ierr);
2597b0a32e0cSBarry Smith   B->data             = (void*)b;
2598549d3d68SSatish Balay   ierr = PetscMemzero(b,sizeof(Mat_SeqAIJ));CHKERRQ(ierr);
2599549d3d68SSatish Balay   ierr = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
2600416022c9SBarry Smith   B->factor           = 0;
2601416022c9SBarry Smith   B->lupivotthreshold = 1.0;
260290f02eecSBarry Smith   B->mapping          = 0;
260387828ca2SBarry Smith   ierr = PetscOptionsGetReal(PETSC_NULL,"-mat_lu_pivotthreshold",&B->lupivotthreshold,PETSC_NULL);CHKERRQ(ierr);
2604b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-pc_ilu_preserve_row_sums",&b->ilu_preserve_row_sums);CHKERRQ(ierr);
2605416022c9SBarry Smith   b->row              = 0;
2606416022c9SBarry Smith   b->col              = 0;
260782bf6240SBarry Smith   b->icol             = 0;
2608416022c9SBarry Smith   b->indexshift       = 0;
2609b810aeb4SBarry Smith   b->reallocs         = 0;
2610b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_oneindex",&flg);CHKERRQ(ierr);
261169957df2SSatish Balay   if (flg) b->indexshift = -1;
261217ab2063SBarry Smith 
26138a124369SBarry Smith   ierr = PetscMapCreateMPI(B->comm,B->m,B->m,&B->rmap);CHKERRQ(ierr);
26148a124369SBarry Smith   ierr = PetscMapCreateMPI(B->comm,B->n,B->n,&B->cmap);CHKERRQ(ierr);
2615a5ae1ecdSBarry Smith 
2616f1e2ffcdSBarry Smith   b->sorted            = PETSC_FALSE;
261736db0b34SBarry Smith   b->ignorezeroentries = PETSC_FALSE;
2618f1e2ffcdSBarry Smith   b->roworiented       = PETSC_TRUE;
2619416022c9SBarry Smith   b->nonew             = 0;
2620416022c9SBarry Smith   b->diag              = 0;
2621416022c9SBarry Smith   b->solve_work        = 0;
262271bd300dSLois Curfman McInnes   b->spptr             = 0;
2623b65db4caSBarry Smith   b->inode.use         = PETSC_TRUE;
2624754ec7b1SSatish Balay   b->inode.node_count  = 0;
2625754ec7b1SSatish Balay   b->inode.size        = 0;
26266c7ebb05SLois Curfman McInnes   b->inode.limit       = 5;
26276c7ebb05SLois Curfman McInnes   b->inode.max_limit   = 5;
2628be6bf707SBarry Smith   b->saved_values      = 0;
2629d7f994e1SBarry Smith   b->idiag             = 0;
2630d7f994e1SBarry Smith   b->ssor              = 0;
2631f1e2ffcdSBarry Smith   b->keepzeroedrows    = PETSC_FALSE;
263217ab2063SBarry Smith 
263335d8aa7fSBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)B,MATSEQAIJ);CHKERRQ(ierr);
263435d8aa7fSBarry Smith 
2635aa482453SBarry Smith #if defined(PETSC_HAVE_SUPERLU)
2636b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_superlu",&flg);CHKERRQ(ierr);
263769957df2SSatish Balay   if (flg) { ierr = MatUseSuperLU_SeqAIJ(B);CHKERRQ(ierr); }
26384b14c69eSBarry Smith #endif
2639b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_essl",&flg);CHKERRQ(ierr);
264069957df2SSatish Balay   if (flg) { ierr = MatUseEssl_SeqAIJ(B);CHKERRQ(ierr); }
2641b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_lusol",&flg);CHKERRQ(ierr);
2642cd5578b5SBarry Smith   if (flg) { ierr = MatUseLUSOL_SeqAIJ(B);CHKERRQ(ierr); }
2643b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_matlab",&flg);CHKERRQ(ierr);
2644ca44d042SBarry Smith   if (flg) {ierr = MatUseMatlab_SeqAIJ(B);CHKERRQ(ierr);}
2645b0a32e0cSBarry Smith   ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_dxml",&flg);CHKERRQ(ierr);
264669957df2SSatish Balay   if (flg) {
264729bbc08cSBarry Smith     if (!b->indexshift) SETERRQ(PETSC_ERR_LIB,"need -mat_aij_oneindex with -mat_aij_dxml");
2648416022c9SBarry Smith     ierr = MatUseDXML_SeqAIJ(B);CHKERRQ(ierr);
264917ab2063SBarry Smith   }
2650f1af5d2fSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatSeqAIJSetColumnIndices_C",
2651bef8e0ddSBarry Smith                                      "MatSeqAIJSetColumnIndices_SeqAIJ",
2652bc4b532fSSatish Balay                                      MatSeqAIJSetColumnIndices_SeqAIJ);CHKERRQ(ierr);
2653f1af5d2fSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatStoreValues_C",
2654be6bf707SBarry Smith                                      "MatStoreValues_SeqAIJ",
2655bc4b532fSSatish Balay                                      MatStoreValues_SeqAIJ);CHKERRQ(ierr);
2656f1af5d2fSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatRetrieveValues_C",
2657be6bf707SBarry Smith                                      "MatRetrieveValues_SeqAIJ",
2658bc4b532fSSatish Balay                                      MatRetrieveValues_SeqAIJ);CHKERRQ(ierr);
265987828ca2SBarry Smith #if defined(PETSC_HAVE_MATLAB_ENGINE) && !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_SINGLE)
2660f83d6046SBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"PetscMatlabEnginePut_C","MatMatlabEnginePut_SeqAIJ",MatMatlabEnginePut_SeqAIJ);CHKERRQ(ierr);
266166826eb6SBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"PetscMatlabEngineGet_C","MatMatlabEngineGet_SeqAIJ",MatMatlabEngineGet_SeqAIJ);CHKERRQ(ierr);
2662f83d6046SBarry Smith #endif
26633a40ed3dSBarry Smith   PetscFunctionReturn(0);
266417ab2063SBarry Smith }
2665273d9f13SBarry Smith EXTERN_C_END
266617ab2063SBarry Smith 
26674a2ae208SSatish Balay #undef __FUNCT__
26684a2ae208SSatish Balay #define __FUNCT__ "MatDuplicate_SeqAIJ"
2669be6bf707SBarry Smith int MatDuplicate_SeqAIJ(Mat A,MatDuplicateOption cpvalues,Mat *B)
267017ab2063SBarry Smith {
2671416022c9SBarry Smith   Mat        C;
2672416022c9SBarry Smith   Mat_SeqAIJ *c,*a = (Mat_SeqAIJ*)A->data;
2673273d9f13SBarry Smith   int        i,len,m = A->m,shift = a->indexshift,ierr;
267417ab2063SBarry Smith 
26753a40ed3dSBarry Smith   PetscFunctionBegin;
26764043dd9cSLois Curfman McInnes   *B = 0;
2677273d9f13SBarry Smith   ierr = MatCreate(A->comm,A->m,A->n,A->m,A->n,&C);CHKERRQ(ierr);
2678273d9f13SBarry Smith   ierr = MatSetType(C,MATSEQAIJ);CHKERRQ(ierr);
2679273d9f13SBarry Smith   c    = (Mat_SeqAIJ*)C->data;
2680273d9f13SBarry Smith 
2681416022c9SBarry Smith   C->factor         = A->factor;
2682416022c9SBarry Smith   c->row            = 0;
2683416022c9SBarry Smith   c->col            = 0;
268482bf6240SBarry Smith   c->icol           = 0;
2685416022c9SBarry Smith   c->indexshift     = shift;
2686f1e2ffcdSBarry Smith   c->keepzeroedrows = a->keepzeroedrows;
2687c456f294SBarry Smith   C->assembled      = PETSC_TRUE;
268817ab2063SBarry Smith 
2689273d9f13SBarry Smith   C->M          = A->m;
2690273d9f13SBarry Smith   C->N          = A->n;
269117ab2063SBarry Smith 
2692b0a32e0cSBarry Smith   ierr = PetscMalloc((m+1)*sizeof(int),&c->imax);CHKERRQ(ierr);
2693b0a32e0cSBarry Smith   ierr = PetscMalloc((m+1)*sizeof(int),&c->ilen);CHKERRQ(ierr);
269417ab2063SBarry Smith   for (i=0; i<m; i++) {
2695416022c9SBarry Smith     c->imax[i] = a->imax[i];
2696416022c9SBarry Smith     c->ilen[i] = a->ilen[i];
269717ab2063SBarry Smith   }
269817ab2063SBarry Smith 
269917ab2063SBarry Smith   /* allocate the matrix space */
2700f1e2ffcdSBarry Smith   c->singlemalloc = PETSC_TRUE;
270187828ca2SBarry Smith   len   = (m+1)*sizeof(int)+(a->i[m])*(sizeof(PetscScalar)+sizeof(int));
2702b0a32e0cSBarry Smith   ierr  = PetscMalloc(len,&c->a);CHKERRQ(ierr);
2703416022c9SBarry Smith   c->j  = (int*)(c->a + a->i[m] + shift);
2704416022c9SBarry Smith   c->i  = c->j + a->i[m] + shift;
2705549d3d68SSatish Balay   ierr = PetscMemcpy(c->i,a->i,(m+1)*sizeof(int));CHKERRQ(ierr);
270617ab2063SBarry Smith   if (m > 0) {
2707549d3d68SSatish Balay     ierr = PetscMemcpy(c->j,a->j,(a->i[m]+shift)*sizeof(int));CHKERRQ(ierr);
2708be6bf707SBarry Smith     if (cpvalues == MAT_COPY_VALUES) {
270987828ca2SBarry Smith       ierr = PetscMemcpy(c->a,a->a,(a->i[m]+shift)*sizeof(PetscScalar));CHKERRQ(ierr);
2710be6bf707SBarry Smith     } else {
271187828ca2SBarry Smith       ierr = PetscMemzero(c->a,(a->i[m]+shift)*sizeof(PetscScalar));CHKERRQ(ierr);
271217ab2063SBarry Smith     }
271308480c60SBarry Smith   }
271417ab2063SBarry Smith 
2715b0a32e0cSBarry Smith   PetscLogObjectMemory(C,len+2*(m+1)*sizeof(int)+sizeof(struct _p_Mat)+sizeof(Mat_SeqAIJ));
2716416022c9SBarry Smith   c->sorted      = a->sorted;
2717416022c9SBarry Smith   c->roworiented = a->roworiented;
2718416022c9SBarry Smith   c->nonew       = a->nonew;
27197a743949SBarry Smith   c->ilu_preserve_row_sums = a->ilu_preserve_row_sums;
2720be6bf707SBarry Smith   c->saved_values = 0;
2721d7f994e1SBarry Smith   c->idiag        = 0;
2722d7f994e1SBarry Smith   c->ssor         = 0;
272336db0b34SBarry Smith   c->ignorezeroentries = a->ignorezeroentries;
272436db0b34SBarry Smith   c->freedata     = PETSC_TRUE;
272517ab2063SBarry Smith 
2726416022c9SBarry Smith   if (a->diag) {
2727b0a32e0cSBarry Smith     ierr = PetscMalloc((m+1)*sizeof(int),&c->diag);CHKERRQ(ierr);
2728b0a32e0cSBarry Smith     PetscLogObjectMemory(C,(m+1)*sizeof(int));
272917ab2063SBarry Smith     for (i=0; i<m; i++) {
2730416022c9SBarry Smith       c->diag[i] = a->diag[i];
273117ab2063SBarry Smith     }
27323a40ed3dSBarry Smith   } else c->diag        = 0;
2733b65db4caSBarry Smith   c->inode.use          = a->inode.use;
27346c7ebb05SLois Curfman McInnes   c->inode.limit        = a->inode.limit;
27356c7ebb05SLois Curfman McInnes   c->inode.max_limit    = a->inode.max_limit;
2736754ec7b1SSatish Balay   if (a->inode.size){
2737b0a32e0cSBarry Smith     ierr                = PetscMalloc((m+1)*sizeof(int),&c->inode.size);CHKERRQ(ierr);
2738754ec7b1SSatish Balay     c->inode.node_count = a->inode.node_count;
2739549d3d68SSatish Balay     ierr                = PetscMemcpy(c->inode.size,a->inode.size,(m+1)*sizeof(int));CHKERRQ(ierr);
2740754ec7b1SSatish Balay   } else {
2741754ec7b1SSatish Balay     c->inode.size       = 0;
2742754ec7b1SSatish Balay     c->inode.node_count = 0;
2743754ec7b1SSatish Balay   }
2744416022c9SBarry Smith   c->nz                 = a->nz;
2745416022c9SBarry Smith   c->maxnz              = a->maxnz;
2746416022c9SBarry Smith   c->solve_work         = 0;
274776dd722bSSatish Balay   c->spptr              = 0;      /* Dangerous -I'm throwing away a->spptr */
2748273d9f13SBarry Smith   C->preallocated       = PETSC_TRUE;
2749754ec7b1SSatish Balay 
2750416022c9SBarry Smith   *B = C;
2751b0a32e0cSBarry Smith   ierr = PetscFListDuplicate(A->qlist,&C->qlist);CHKERRQ(ierr);
27523a40ed3dSBarry Smith   PetscFunctionReturn(0);
275317ab2063SBarry Smith }
275417ab2063SBarry Smith 
2755273d9f13SBarry Smith EXTERN_C_BEGIN
27564a2ae208SSatish Balay #undef __FUNCT__
27574a2ae208SSatish Balay #define __FUNCT__ "MatLoad_SeqAIJ"
2758b0a32e0cSBarry Smith int MatLoad_SeqAIJ(PetscViewer viewer,MatType type,Mat *A)
275917ab2063SBarry Smith {
2760416022c9SBarry Smith   Mat_SeqAIJ   *a;
2761416022c9SBarry Smith   Mat          B;
276217699dbbSLois Curfman McInnes   int          i,nz,ierr,fd,header[4],size,*rowlengths = 0,M,N,shift;
2763bcd2baecSBarry Smith   MPI_Comm     comm;
276417ab2063SBarry Smith 
27653a40ed3dSBarry Smith   PetscFunctionBegin;
2766e864ced6SBarry Smith   ierr = PetscObjectGetComm((PetscObject)viewer,&comm);CHKERRQ(ierr);
2767d132466eSBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
276829bbc08cSBarry Smith   if (size > 1) SETERRQ(PETSC_ERR_ARG_SIZ,"view must have one processor");
2769b0a32e0cSBarry Smith   ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr);
27700752156aSBarry Smith   ierr = PetscBinaryRead(fd,header,4,PETSC_INT);CHKERRQ(ierr);
277129bbc08cSBarry Smith   if (header[0] != MAT_COOKIE) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"not matrix object in file");
277217ab2063SBarry Smith   M = header[1]; N = header[2]; nz = header[3];
277317ab2063SBarry Smith 
2774d64ed03dSBarry Smith   if (nz < 0) {
277529bbc08cSBarry Smith     SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"Matrix stored in special format on disk,cannot load as SeqAIJ");
2776d64ed03dSBarry Smith   }
2777d64ed03dSBarry Smith 
277817ab2063SBarry Smith   /* read in row lengths */
2779b0a32e0cSBarry Smith   ierr = PetscMalloc(M*sizeof(int),&rowlengths);CHKERRQ(ierr);
27800752156aSBarry Smith   ierr = PetscBinaryRead(fd,rowlengths,M,PETSC_INT);CHKERRQ(ierr);
278117ab2063SBarry Smith 
278217ab2063SBarry Smith   /* create our matrix */
2783416022c9SBarry Smith   ierr = MatCreateSeqAIJ(comm,M,N,0,rowlengths,A);CHKERRQ(ierr);
2784416022c9SBarry Smith   B = *A;
2785416022c9SBarry Smith   a = (Mat_SeqAIJ*)B->data;
2786416022c9SBarry Smith   shift = a->indexshift;
278717ab2063SBarry Smith 
278817ab2063SBarry Smith   /* read in column indices and adjust for Fortran indexing*/
27890752156aSBarry Smith   ierr = PetscBinaryRead(fd,a->j,nz,PETSC_INT);CHKERRQ(ierr);
279017ab2063SBarry Smith   if (shift) {
279117ab2063SBarry Smith     for (i=0; i<nz; i++) {
2792416022c9SBarry Smith       a->j[i] += 1;
279317ab2063SBarry Smith     }
279417ab2063SBarry Smith   }
279517ab2063SBarry Smith 
279617ab2063SBarry Smith   /* read in nonzero values */
27970752156aSBarry Smith   ierr = PetscBinaryRead(fd,a->a,nz,PETSC_SCALAR);CHKERRQ(ierr);
279817ab2063SBarry Smith 
279917ab2063SBarry Smith   /* set matrix "i" values */
2800416022c9SBarry Smith   a->i[0] = -shift;
280117ab2063SBarry Smith   for (i=1; i<= M; i++) {
2802416022c9SBarry Smith     a->i[i]      = a->i[i-1] + rowlengths[i-1];
2803416022c9SBarry Smith     a->ilen[i-1] = rowlengths[i-1];
280417ab2063SBarry Smith   }
2805606d414cSSatish Balay   ierr = PetscFree(rowlengths);CHKERRQ(ierr);
280617ab2063SBarry Smith 
28076d4a8577SBarry Smith   ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
28086d4a8577SBarry Smith   ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
28093a40ed3dSBarry Smith   PetscFunctionReturn(0);
281017ab2063SBarry Smith }
2811273d9f13SBarry Smith EXTERN_C_END
281217ab2063SBarry Smith 
28134a2ae208SSatish Balay #undef __FUNCT__
2814b9617806SBarry Smith #define __FUNCT__ "MatEqual_SeqAIJ"
28158f6be9afSLois Curfman McInnes int MatEqual_SeqAIJ(Mat A,Mat B,PetscTruth* flg)
28167264ac53SSatish Balay {
28177264ac53SSatish Balay   Mat_SeqAIJ *a = (Mat_SeqAIJ *)A->data,*b = (Mat_SeqAIJ *)B->data;
28180f5bd95cSBarry Smith   int        ierr;
2819273d9f13SBarry Smith   PetscTruth flag;
28207264ac53SSatish Balay 
28213a40ed3dSBarry Smith   PetscFunctionBegin;
2822273d9f13SBarry Smith   ierr = PetscTypeCompare((PetscObject)B,MATSEQAIJ,&flag);CHKERRQ(ierr);
2823273d9f13SBarry Smith   if (!flag) SETERRQ(PETSC_ERR_ARG_INCOMP,"Matrices must be same type");
28247264ac53SSatish Balay 
28257264ac53SSatish Balay   /* If the  matrix dimensions are not equal,or no of nonzeros or shift */
2826273d9f13SBarry Smith   if ((A->m != B->m) || (A->n != B->n) ||(a->nz != b->nz)|| (a->indexshift != b->indexshift)) {
2827ca44d042SBarry Smith     *flg = PETSC_FALSE;
2828ca44d042SBarry Smith     PetscFunctionReturn(0);
2829bcd2baecSBarry Smith   }
28307264ac53SSatish Balay 
28317264ac53SSatish Balay   /* if the a->i are the same */
2832273d9f13SBarry Smith   ierr = PetscMemcmp(a->i,b->i,(A->m+1)*sizeof(int),flg);CHKERRQ(ierr);
28330f5bd95cSBarry Smith   if (*flg == PETSC_FALSE) PetscFunctionReturn(0);
28347264ac53SSatish Balay 
28357264ac53SSatish Balay   /* if a->j are the same */
28360f5bd95cSBarry Smith   ierr = PetscMemcmp(a->j,b->j,(a->nz)*sizeof(int),flg);CHKERRQ(ierr);
28370f5bd95cSBarry Smith   if (*flg == PETSC_FALSE) PetscFunctionReturn(0);
2838bcd2baecSBarry Smith 
2839bcd2baecSBarry Smith   /* if a->a are the same */
284087828ca2SBarry Smith   ierr = PetscMemcmp(a->a,b->a,(a->nz)*sizeof(PetscScalar),flg);CHKERRQ(ierr);
28410f5bd95cSBarry Smith 
28423a40ed3dSBarry Smith   PetscFunctionReturn(0);
28437264ac53SSatish Balay 
28447264ac53SSatish Balay }
284536db0b34SBarry Smith 
28464a2ae208SSatish Balay #undef __FUNCT__
28474a2ae208SSatish Balay #define __FUNCT__ "MatCreateSeqAIJWithArrays"
284836db0b34SBarry Smith /*@C
284936db0b34SBarry Smith      MatCreateSeqAIJWithArrays - Creates an sequential AIJ matrix using matrix elements (in CSR format)
285036db0b34SBarry Smith               provided by the user.
285136db0b34SBarry Smith 
285236db0b34SBarry Smith       Coolective on MPI_Comm
285336db0b34SBarry Smith 
285436db0b34SBarry Smith    Input Parameters:
285536db0b34SBarry Smith +   comm - must be an MPI communicator of size 1
285636db0b34SBarry Smith .   m - number of rows
285736db0b34SBarry Smith .   n - number of columns
285836db0b34SBarry Smith .   i - row indices
285936db0b34SBarry Smith .   j - column indices
286036db0b34SBarry Smith -   a - matrix values
286136db0b34SBarry Smith 
286236db0b34SBarry Smith    Output Parameter:
286336db0b34SBarry Smith .   mat - the matrix
286436db0b34SBarry Smith 
286536db0b34SBarry Smith    Level: intermediate
286636db0b34SBarry Smith 
286736db0b34SBarry Smith    Notes:
28680551d7c0SBarry Smith        The i, j, and a arrays are not copied by this routine, the user must free these arrays
286936db0b34SBarry Smith     once the matrix is destroyed
287036db0b34SBarry Smith 
287136db0b34SBarry Smith        You cannot set new nonzero locations into this matrix, that will generate an error.
287236db0b34SBarry Smith 
287336db0b34SBarry Smith        The i and j indices can be either 0- or 1 based
287436db0b34SBarry Smith 
287536db0b34SBarry Smith .seealso: MatCreate(), MatCreateMPIAIJ(), MatCreateSeqAIJ()
287636db0b34SBarry Smith 
287736db0b34SBarry Smith @*/
287887828ca2SBarry Smith int MatCreateSeqAIJWithArrays(MPI_Comm comm,int m,int n,int* i,int*j,PetscScalar *a,Mat *mat)
287936db0b34SBarry Smith {
288036db0b34SBarry Smith   int        ierr,ii;
288136db0b34SBarry Smith   Mat_SeqAIJ *aij;
288236db0b34SBarry Smith 
288336db0b34SBarry Smith   PetscFunctionBegin;
288436db0b34SBarry Smith   ierr = MatCreateSeqAIJ(comm,m,n,0,0,mat);CHKERRQ(ierr);
288536db0b34SBarry Smith   aij  = (Mat_SeqAIJ*)(*mat)->data;
288636db0b34SBarry Smith   ierr = PetscFree(aij->a);CHKERRQ(ierr);
288736db0b34SBarry Smith 
288836db0b34SBarry Smith   if (i[0] == 1) {
288936db0b34SBarry Smith     aij->indexshift = -1;
289036db0b34SBarry Smith   } else if (i[0]) {
289129bbc08cSBarry Smith     SETERRQ(1,"i (row indices) do not start with 0 or 1");
289236db0b34SBarry Smith   }
289336db0b34SBarry Smith   aij->i = i;
289436db0b34SBarry Smith   aij->j = j;
289536db0b34SBarry Smith   aij->a = a;
289636db0b34SBarry Smith   aij->singlemalloc = PETSC_FALSE;
289736db0b34SBarry Smith   aij->nonew        = -1;             /*this indicates that inserting a new value in the matrix that generates a new nonzero is an error*/
289836db0b34SBarry Smith   aij->freedata     = PETSC_FALSE;
289936db0b34SBarry Smith 
290036db0b34SBarry Smith   for (ii=0; ii<m; ii++) {
290136db0b34SBarry Smith     aij->ilen[ii] = aij->imax[ii] = i[ii+1] - i[ii];
29029860f2b2SBarry Smith #if defined(PETSC_USE_BOPT_g)
290329bbc08cSBarry Smith     if (i[ii+1] - i[ii] < 0) SETERRQ2(1,"Negative row length in i (row indices) row = %d length = %d",ii,i[ii+1] - i[ii]);
290436db0b34SBarry Smith #endif
290536db0b34SBarry Smith   }
29069860f2b2SBarry Smith #if defined(PETSC_USE_BOPT_g)
290736db0b34SBarry Smith   for (ii=0; ii<aij->i[m]; ii++) {
290829bbc08cSBarry Smith     if (j[ii] < -aij->indexshift) SETERRQ2(1,"Negative column index at location = %d index = %d",ii,j[ii]);
290929bbc08cSBarry Smith     if (j[ii] > n - 1 -aij->indexshift) SETERRQ2(1,"Column index to large at location = %d index = %d",ii,j[ii]);
291036db0b34SBarry Smith   }
291136db0b34SBarry Smith #endif
291236db0b34SBarry Smith 
2913b65db4caSBarry Smith   /* changes indices to start at 0 */
2914b65db4caSBarry Smith   if (i[0]) {
2915b65db4caSBarry Smith     aij->indexshift = 0;
2916b65db4caSBarry Smith     for (ii=0; ii<m; ii++) {
2917b65db4caSBarry Smith       i[ii]--;
2918b65db4caSBarry Smith     }
2919b65db4caSBarry Smith     for (ii=0; ii<i[m]; ii++) {
2920b65db4caSBarry Smith       j[ii]--;
2921b65db4caSBarry Smith     }
2922b65db4caSBarry Smith   }
2923b65db4caSBarry Smith 
2924b65db4caSBarry Smith   ierr = MatAssemblyBegin(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2925b65db4caSBarry Smith   ierr = MatAssemblyEnd(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
292636db0b34SBarry Smith   PetscFunctionReturn(0);
292736db0b34SBarry Smith }
292836db0b34SBarry Smith 
2929cc8ba8e1SBarry Smith #undef __FUNCT__
2930ee4f033dSBarry Smith #define __FUNCT__ "MatSetColoring_SeqAIJ"
2931ee4f033dSBarry Smith int MatSetColoring_SeqAIJ(Mat A,ISColoring coloring)
2932cc8ba8e1SBarry Smith {
2933cc8ba8e1SBarry Smith   int        ierr;
2934cc8ba8e1SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
293536db0b34SBarry Smith 
2936cc8ba8e1SBarry Smith   PetscFunctionBegin;
2937cc8ba8e1SBarry Smith   ierr        = ISColoringReference(coloring);CHKERRQ(ierr);
2938cc8ba8e1SBarry Smith   a->coloring = coloring;
2939cc8ba8e1SBarry Smith   PetscFunctionReturn(0);
2940cc8ba8e1SBarry Smith }
2941cc8ba8e1SBarry Smith 
294287828ca2SBarry Smith #if defined(PETSC_HAVE_ADIC) && !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_SINGLE)
2943ee4f033dSBarry Smith EXTERN_C_BEGIN
2944cc8ba8e1SBarry Smith #include "adic_utils.h"
2945ee4f033dSBarry Smith EXTERN_C_END
2946cc8ba8e1SBarry Smith 
2947cc8ba8e1SBarry Smith #undef __FUNCT__
2948ee4f033dSBarry Smith #define __FUNCT__ "MatSetValuesAdic_SeqAIJ"
2949ee4f033dSBarry Smith int MatSetValuesAdic_SeqAIJ(Mat A,void *advalues)
2950cc8ba8e1SBarry Smith {
2951cc8ba8e1SBarry Smith   Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data;
2952ee4f033dSBarry Smith   int        m = A->m,*ii = a->i,*jj = a->j,nz,i,*color,j,nlen;
295387828ca2SBarry Smith   PetscScalar*v = a->a,*values;
2954ee4f033dSBarry Smith   char       *cadvalues = (char *)advalues;
2955cc8ba8e1SBarry Smith 
2956cc8ba8e1SBarry Smith   PetscFunctionBegin;
2957cc8ba8e1SBarry Smith   if (!a->coloring) SETERRQ(1,"Coloring not set for matrix");
2958ee4f033dSBarry Smith   nlen  = my_AD_GetDerivTypeSize();
2959cc8ba8e1SBarry Smith   color = a->coloring->colors;
2960cc8ba8e1SBarry Smith   /* loop over rows */
2961cc8ba8e1SBarry Smith   for (i=0; i<m; i++) {
2962cc8ba8e1SBarry Smith     nz = ii[i+1] - ii[i];
2963cc8ba8e1SBarry Smith     /* loop over columns putting computed value into matrix */
2964ee4f033dSBarry Smith     values = my_AD_GetGradArray(cadvalues);
2965cc8ba8e1SBarry Smith     for (j=0; j<nz; j++) {
2966cc8ba8e1SBarry Smith       *v++ = values[color[*jj++]];
2967cc8ba8e1SBarry Smith     }
2968ee4f033dSBarry Smith     cadvalues += nlen; /* jump to next row of derivatives */
2969ee4f033dSBarry Smith   }
2970ee4f033dSBarry Smith   PetscFunctionReturn(0);
2971ee4f033dSBarry Smith }
2972ee4f033dSBarry Smith 
2973ee4f033dSBarry Smith #else
2974ee4f033dSBarry Smith 
2975ee4f033dSBarry Smith #undef __FUNCT__
2976ee4f033dSBarry Smith #define __FUNCT__ "MatSetValuesAdic_SeqAIJ"
2977ee4f033dSBarry Smith int MatSetValuesAdic_SeqAIJ(Mat A,void *advalues)
2978ee4f033dSBarry Smith {
2979ee4f033dSBarry Smith   PetscFunctionBegin;
2980ee4f033dSBarry Smith   SETERRQ(1,"PETSc installed without ADIC");
2981ee4f033dSBarry Smith }
2982ee4f033dSBarry Smith 
2983ee4f033dSBarry Smith #endif
2984ee4f033dSBarry Smith 
2985ee4f033dSBarry Smith #undef __FUNCT__
2986ee4f033dSBarry Smith #define __FUNCT__ "MatSetValuesAdifor_SeqAIJ"
2987ee4f033dSBarry Smith int MatSetValuesAdifor_SeqAIJ(Mat A,int nl,void *advalues)
2988ee4f033dSBarry Smith {
2989ee4f033dSBarry Smith   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
2990ee4f033dSBarry Smith   int          m = A->m,*ii = a->i,*jj = a->j,nz,i,*color,j;
299187828ca2SBarry Smith   PetscScalar  *v = a->a,*values = (PetscScalar *)advalues;
2992ee4f033dSBarry Smith 
2993ee4f033dSBarry Smith   PetscFunctionBegin;
2994ee4f033dSBarry Smith   if (!a->coloring) SETERRQ(1,"Coloring not set for matrix");
2995ee4f033dSBarry Smith   color = a->coloring->colors;
2996ee4f033dSBarry Smith   /* loop over rows */
2997ee4f033dSBarry Smith   for (i=0; i<m; i++) {
2998ee4f033dSBarry Smith     nz = ii[i+1] - ii[i];
2999ee4f033dSBarry Smith     /* loop over columns putting computed value into matrix */
3000ee4f033dSBarry Smith     for (j=0; j<nz; j++) {
3001ee4f033dSBarry Smith       *v++ = values[color[*jj++]];
3002ee4f033dSBarry Smith     }
3003ee4f033dSBarry Smith     values += nl; /* jump to next row of derivatives */
3004cc8ba8e1SBarry Smith   }
3005cc8ba8e1SBarry Smith   PetscFunctionReturn(0);
3006cc8ba8e1SBarry Smith }
300736db0b34SBarry Smith 
3008