xref: /petsc/src/mat/impls/aij/mpi/mpiaij.c (revision a45adfd634f538af0df75033dc42d977b3d42dfd)
173f4d377SMatthew Knepley /*$Id: mpiaij.c,v 1.344 2001/08/10 03:30:48 bsmith Exp $*/
28a729477SBarry Smith 
370f55243SBarry Smith #include "src/mat/impls/aij/mpi/mpiaij.h"
4f5eb4b81SSatish Balay #include "src/vec/vecimpl.h"
5d9942c19SSatish Balay #include "src/inline/spops.h"
68a729477SBarry Smith 
70f5bd95cSBarry Smith /*
80f5bd95cSBarry Smith   Local utility routine that creates a mapping from the global column
99e25ed09SBarry Smith number to the local number in the off-diagonal part of the local
100f5bd95cSBarry Smith storage of the matrix.  When PETSC_USE_CTABLE is used this is scalable at
110f5bd95cSBarry Smith a slightly higher hash table cost; without it it is not scalable (each processor
120f5bd95cSBarry Smith has an order N integer array but is fast to acess.
139e25ed09SBarry Smith */
144a2ae208SSatish Balay #undef __FUNCT__
154a2ae208SSatish Balay #define __FUNCT__ "CreateColmap_MPIAIJ_Private"
160a198c4cSBarry Smith int CreateColmap_MPIAIJ_Private(Mat mat)
179e25ed09SBarry Smith {
1844a69424SLois Curfman McInnes   Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data;
19273d9f13SBarry Smith   int        n = aij->B->n,i,ierr;
20dbb450caSBarry Smith 
213a40ed3dSBarry Smith   PetscFunctionBegin;
22aa482453SBarry Smith #if defined (PETSC_USE_CTABLE)
23273d9f13SBarry Smith   ierr = PetscTableCreate(n,&aij->colmap);CHKERRQ(ierr);
24b1fc9764SSatish Balay   for (i=0; i<n; i++){
250f5bd95cSBarry Smith     ierr = PetscTableAdd(aij->colmap,aij->garray[i]+1,i+1);CHKERRQ(ierr);
26b1fc9764SSatish Balay   }
27b1fc9764SSatish Balay #else
28b0a32e0cSBarry Smith   ierr = PetscMalloc((mat->N+1)*sizeof(int),&aij->colmap);CHKERRQ(ierr);
29b0a32e0cSBarry Smith   PetscLogObjectMemory(mat,mat->N*sizeof(int));
30273d9f13SBarry Smith   ierr = PetscMemzero(aij->colmap,mat->N*sizeof(int));CHKERRQ(ierr);
31905e6a2fSBarry Smith   for (i=0; i<n; i++) aij->colmap[aij->garray[i]] = i+1;
32b1fc9764SSatish Balay #endif
333a40ed3dSBarry Smith   PetscFunctionReturn(0);
349e25ed09SBarry Smith }
359e25ed09SBarry Smith 
360520107fSSatish Balay #define CHUNKSIZE   15
3730770e4dSSatish Balay #define MatSetValues_SeqAIJ_A_Private(row,col,value,addv) \
380520107fSSatish Balay { \
390520107fSSatish Balay  \
400520107fSSatish Balay     rp   = aj + ai[row] + shift; ap = aa + ai[row] + shift; \
4130770e4dSSatish Balay     rmax = aimax[row]; nrow = ailen[row];  \
42f5e9677aSSatish Balay     col1 = col - shift; \
43f5e9677aSSatish Balay      \
44ba4e3ef2SSatish Balay     low = 0; high = nrow; \
45ba4e3ef2SSatish Balay     while (high-low > 5) { \
46ba4e3ef2SSatish Balay       t = (low+high)/2; \
47ba4e3ef2SSatish Balay       if (rp[t] > col) high = t; \
48ba4e3ef2SSatish Balay       else             low  = t; \
49ba4e3ef2SSatish Balay     } \
502335bdd2SSatish Balay       for (_i=low; _i<high; _i++) { \
51f5e9677aSSatish Balay         if (rp[_i] > col1) break; \
52f5e9677aSSatish Balay         if (rp[_i] == col1) { \
530520107fSSatish Balay           if (addv == ADD_VALUES) ap[_i] += value;   \
540520107fSSatish Balay           else                  ap[_i] = value; \
5530770e4dSSatish Balay           goto a_noinsert; \
560520107fSSatish Balay         } \
570520107fSSatish Balay       }  \
5889280ab3SLois Curfman McInnes       if (nonew == 1) goto a_noinsert; \
59*a45adfd6SMatthew Knepley       else if (nonew == -1) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%d, %d) into matrix", row, col); \
600520107fSSatish Balay       if (nrow >= rmax) { \
610520107fSSatish Balay         /* there is no extra room in row, therefore enlarge */ \
62273d9f13SBarry Smith         int    new_nz = ai[am] + CHUNKSIZE,len,*new_i,*new_j; \
6387828ca2SBarry Smith         PetscScalar *new_a; \
640520107fSSatish Balay  \
65*a45adfd6SMatthew Knepley         if (nonew == -2) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%d, %d) in the matrix", row, col); \
6689280ab3SLois Curfman McInnes  \
670520107fSSatish Balay         /* malloc new storage space */ \
6887828ca2SBarry Smith         len     = new_nz*(sizeof(int)+sizeof(PetscScalar))+(am+1)*sizeof(int); \
69b0a32e0cSBarry Smith         ierr    = PetscMalloc(len,&new_a);CHKERRQ(ierr); \
700520107fSSatish Balay         new_j   = (int*)(new_a + new_nz); \
710520107fSSatish Balay         new_i   = new_j + new_nz; \
720520107fSSatish Balay  \
730520107fSSatish Balay         /* copy over old data into new slots */ \
740520107fSSatish Balay         for (ii=0; ii<row+1; ii++) {new_i[ii] = ai[ii];} \
75273d9f13SBarry Smith         for (ii=row+1; ii<am+1; ii++) {new_i[ii] = ai[ii]+CHUNKSIZE;} \
76549d3d68SSatish Balay         ierr = PetscMemcpy(new_j,aj,(ai[row]+nrow+shift)*sizeof(int));CHKERRQ(ierr); \
770520107fSSatish Balay         len = (new_nz - CHUNKSIZE - ai[row] - nrow - shift); \
78549d3d68SSatish Balay         ierr = PetscMemcpy(new_j+ai[row]+shift+nrow+CHUNKSIZE,aj+ai[row]+shift+nrow, \
79549d3d68SSatish Balay                                                            len*sizeof(int));CHKERRQ(ierr); \
8087828ca2SBarry Smith         ierr = PetscMemcpy(new_a,aa,(ai[row]+nrow+shift)*sizeof(PetscScalar));CHKERRQ(ierr); \
81549d3d68SSatish Balay         ierr = PetscMemcpy(new_a+ai[row]+shift+nrow+CHUNKSIZE,aa+ai[row]+shift+nrow, \
8287828ca2SBarry Smith                                                            len*sizeof(PetscScalar));CHKERRQ(ierr);  \
830520107fSSatish Balay         /* free up old matrix storage */ \
84f5e9677aSSatish Balay  \
85606d414cSSatish Balay         ierr = PetscFree(a->a);CHKERRQ(ierr);  \
86606d414cSSatish Balay         if (!a->singlemalloc) { \
87606d414cSSatish Balay            ierr = PetscFree(a->i);CHKERRQ(ierr); \
88606d414cSSatish Balay            ierr = PetscFree(a->j);CHKERRQ(ierr); \
89606d414cSSatish Balay         } \
900520107fSSatish Balay         aa = a->a = new_a; ai = a->i = new_i; aj = a->j = new_j;  \
917c922b88SBarry Smith         a->singlemalloc = PETSC_TRUE; \
920520107fSSatish Balay  \
930520107fSSatish Balay         rp   = aj + ai[row] + shift; ap = aa + ai[row] + shift; \
9430770e4dSSatish Balay         rmax = aimax[row] = aimax[row] + CHUNKSIZE; \
9587828ca2SBarry Smith         PetscLogObjectMemory(A,CHUNKSIZE*(sizeof(int) + sizeof(PetscScalar))); \
960520107fSSatish Balay         a->maxnz += CHUNKSIZE; \
970520107fSSatish Balay         a->reallocs++; \
980520107fSSatish Balay       } \
990520107fSSatish Balay       N = nrow++ - 1; a->nz++; \
1000520107fSSatish Balay       /* shift up all the later entries in this row */ \
1010520107fSSatish Balay       for (ii=N; ii>=_i; ii--) { \
1020520107fSSatish Balay         rp[ii+1] = rp[ii]; \
1030520107fSSatish Balay         ap[ii+1] = ap[ii]; \
1040520107fSSatish Balay       } \
105f5e9677aSSatish Balay       rp[_i] = col1;  \
1060520107fSSatish Balay       ap[_i] = value;  \
10730770e4dSSatish Balay       a_noinsert: ; \
1080520107fSSatish Balay       ailen[row] = nrow; \
1090520107fSSatish Balay }
1100a198c4cSBarry Smith 
11130770e4dSSatish Balay #define MatSetValues_SeqAIJ_B_Private(row,col,value,addv) \
11230770e4dSSatish Balay { \
11330770e4dSSatish Balay  \
11430770e4dSSatish Balay     rp   = bj + bi[row] + shift; ap = ba + bi[row] + shift; \
11530770e4dSSatish Balay     rmax = bimax[row]; nrow = bilen[row];  \
11630770e4dSSatish Balay     col1 = col - shift; \
11730770e4dSSatish Balay      \
118ba4e3ef2SSatish Balay     low = 0; high = nrow; \
119ba4e3ef2SSatish Balay     while (high-low > 5) { \
120ba4e3ef2SSatish Balay       t = (low+high)/2; \
121ba4e3ef2SSatish Balay       if (rp[t] > col) high = t; \
122ba4e3ef2SSatish Balay       else             low  = t; \
123ba4e3ef2SSatish Balay     } \
1242335bdd2SSatish Balay        for (_i=low; _i<high; _i++) { \
12530770e4dSSatish Balay         if (rp[_i] > col1) break; \
12630770e4dSSatish Balay         if (rp[_i] == col1) { \
12730770e4dSSatish Balay           if (addv == ADD_VALUES) ap[_i] += value;   \
12830770e4dSSatish Balay           else                  ap[_i] = value; \
12930770e4dSSatish Balay           goto b_noinsert; \
13030770e4dSSatish Balay         } \
13130770e4dSSatish Balay       }  \
13289280ab3SLois Curfman McInnes       if (nonew == 1) goto b_noinsert; \
133*a45adfd6SMatthew Knepley       else if (nonew == -1) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%d, %d) into matrix", row, col); \
13430770e4dSSatish Balay       if (nrow >= rmax) { \
13530770e4dSSatish Balay         /* there is no extra room in row, therefore enlarge */ \
136273d9f13SBarry Smith         int    new_nz = bi[bm] + CHUNKSIZE,len,*new_i,*new_j; \
13787828ca2SBarry Smith         PetscScalar *new_a; \
13830770e4dSSatish Balay  \
139*a45adfd6SMatthew Knepley         if (nonew == -2) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%d, %d) in the matrix", row, col); \
14089280ab3SLois Curfman McInnes  \
14130770e4dSSatish Balay         /* malloc new storage space */ \
14287828ca2SBarry Smith         len     = new_nz*(sizeof(int)+sizeof(PetscScalar))+(bm+1)*sizeof(int); \
143b0a32e0cSBarry Smith         ierr    = PetscMalloc(len,&new_a);CHKERRQ(ierr); \
14430770e4dSSatish Balay         new_j   = (int*)(new_a + new_nz); \
14530770e4dSSatish Balay         new_i   = new_j + new_nz; \
14630770e4dSSatish Balay  \
14730770e4dSSatish Balay         /* copy over old data into new slots */ \
14830770e4dSSatish Balay         for (ii=0; ii<row+1; ii++) {new_i[ii] = bi[ii];} \
149273d9f13SBarry Smith         for (ii=row+1; ii<bm+1; ii++) {new_i[ii] = bi[ii]+CHUNKSIZE;} \
150549d3d68SSatish Balay         ierr = PetscMemcpy(new_j,bj,(bi[row]+nrow+shift)*sizeof(int));CHKERRQ(ierr); \
15130770e4dSSatish Balay         len = (new_nz - CHUNKSIZE - bi[row] - nrow - shift); \
152549d3d68SSatish Balay         ierr = PetscMemcpy(new_j+bi[row]+shift+nrow+CHUNKSIZE,bj+bi[row]+shift+nrow, \
153549d3d68SSatish Balay                                                            len*sizeof(int));CHKERRQ(ierr); \
15487828ca2SBarry Smith         ierr = PetscMemcpy(new_a,ba,(bi[row]+nrow+shift)*sizeof(PetscScalar));CHKERRQ(ierr); \
155549d3d68SSatish Balay         ierr = PetscMemcpy(new_a+bi[row]+shift+nrow+CHUNKSIZE,ba+bi[row]+shift+nrow, \
15687828ca2SBarry Smith                                                            len*sizeof(PetscScalar));CHKERRQ(ierr);  \
15730770e4dSSatish Balay         /* free up old matrix storage */ \
15830770e4dSSatish Balay  \
159606d414cSSatish Balay         ierr = PetscFree(b->a);CHKERRQ(ierr);  \
160606d414cSSatish Balay         if (!b->singlemalloc) { \
161606d414cSSatish Balay           ierr = PetscFree(b->i);CHKERRQ(ierr); \
162606d414cSSatish Balay           ierr = PetscFree(b->j);CHKERRQ(ierr); \
163606d414cSSatish Balay         } \
16474c639caSSatish Balay         ba = b->a = new_a; bi = b->i = new_i; bj = b->j = new_j;  \
1657c922b88SBarry Smith         b->singlemalloc = PETSC_TRUE; \
16630770e4dSSatish Balay  \
16730770e4dSSatish Balay         rp   = bj + bi[row] + shift; ap = ba + bi[row] + shift; \
16830770e4dSSatish Balay         rmax = bimax[row] = bimax[row] + CHUNKSIZE; \
16987828ca2SBarry Smith         PetscLogObjectMemory(B,CHUNKSIZE*(sizeof(int) + sizeof(PetscScalar))); \
17074c639caSSatish Balay         b->maxnz += CHUNKSIZE; \
17174c639caSSatish Balay         b->reallocs++; \
17230770e4dSSatish Balay       } \
17374c639caSSatish Balay       N = nrow++ - 1; b->nz++; \
17430770e4dSSatish Balay       /* shift up all the later entries in this row */ \
17530770e4dSSatish Balay       for (ii=N; ii>=_i; ii--) { \
17630770e4dSSatish Balay         rp[ii+1] = rp[ii]; \
17730770e4dSSatish Balay         ap[ii+1] = ap[ii]; \
17830770e4dSSatish Balay       } \
17930770e4dSSatish Balay       rp[_i] = col1;  \
18030770e4dSSatish Balay       ap[_i] = value;  \
18130770e4dSSatish Balay       b_noinsert: ; \
18230770e4dSSatish Balay       bilen[row] = nrow; \
18330770e4dSSatish Balay }
18430770e4dSSatish Balay 
1854a2ae208SSatish Balay #undef __FUNCT__
1864a2ae208SSatish Balay #define __FUNCT__ "MatSetValues_MPIAIJ"
187f15d580aSBarry Smith int MatSetValues_MPIAIJ(Mat mat,int m,const int im[],int n,const int in[],const PetscScalar v[],InsertMode addv)
1888a729477SBarry Smith {
18944a69424SLois Curfman McInnes   Mat_MPIAIJ   *aij = (Mat_MPIAIJ*)mat->data;
19087828ca2SBarry Smith   PetscScalar  value;
1911eb62cbbSBarry Smith   int          ierr,i,j,rstart = aij->rstart,rend = aij->rend;
1921eb62cbbSBarry Smith   int          cstart = aij->cstart,cend = aij->cend,row,col;
193273d9f13SBarry Smith   PetscTruth   roworiented = aij->roworiented;
1948a729477SBarry Smith 
1950520107fSSatish Balay   /* Some Variables required in the macro */
1964ee7247eSSatish Balay   Mat          A = aij->A;
1974ee7247eSSatish Balay   Mat_SeqAIJ   *a = (Mat_SeqAIJ*)A->data;
19830770e4dSSatish Balay   int          *aimax = a->imax,*ai = a->i,*ailen = a->ilen,*aj = a->j;
19987828ca2SBarry Smith   PetscScalar  *aa = a->a;
200329f5518SBarry Smith   PetscTruth   ignorezeroentries = (((a->ignorezeroentries)&&(addv==ADD_VALUES))?PETSC_TRUE:PETSC_FALSE);
20130770e4dSSatish Balay   Mat          B = aij->B;
20230770e4dSSatish Balay   Mat_SeqAIJ   *b = (Mat_SeqAIJ*)B->data;
203273d9f13SBarry Smith   int          *bimax = b->imax,*bi = b->i,*bilen = b->ilen,*bj = b->j,bm = aij->B->m,am = aij->A->m;
20487828ca2SBarry Smith   PetscScalar  *ba = b->a;
20530770e4dSSatish Balay 
206ba4e3ef2SSatish Balay   int          *rp,ii,nrow,_i,rmax,N,col1,low,high,t;
207bfec09a0SHong Zhang   int          nonew = a->nonew,shift=0;
20887828ca2SBarry Smith   PetscScalar  *ap;
2094ee7247eSSatish Balay 
2103a40ed3dSBarry Smith   PetscFunctionBegin;
2118a729477SBarry Smith   for (i=0; i<m; i++) {
2125ef9f2a5SBarry Smith     if (im[i] < 0) continue;
213aa482453SBarry Smith #if defined(PETSC_USE_BOPT_g)
214590ac198SBarry Smith     if (im[i] >= mat->M) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %d max %d",im[i],mat->M-1);
2150a198c4cSBarry Smith #endif
2164b0e389bSBarry Smith     if (im[i] >= rstart && im[i] < rend) {
2174b0e389bSBarry Smith       row = im[i] - rstart;
2181eb62cbbSBarry Smith       for (j=0; j<n; j++) {
2194b0e389bSBarry Smith         if (in[j] >= cstart && in[j] < cend){
2204b0e389bSBarry Smith           col = in[j] - cstart;
2214b0e389bSBarry Smith           if (roworiented) value = v[i*n+j]; else value = v[i+j*m];
222329f5518SBarry Smith           if (ignorezeroentries && value == 0.0) continue;
22330770e4dSSatish Balay           MatSetValues_SeqAIJ_A_Private(row,col,value,addv);
2240520107fSSatish Balay           /* ierr = MatSetValues_SeqAIJ(aij->A,1,&row,1,&col,&value,addv);CHKERRQ(ierr); */
225273d9f13SBarry Smith         } else if (in[j] < 0) continue;
226aa482453SBarry Smith #if defined(PETSC_USE_BOPT_g)
227590ac198SBarry Smith         else if (in[j] >= mat->N) {SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %d max %d",in[j],mat->N-1);}
2280a198c4cSBarry Smith #endif
2291eb62cbbSBarry Smith         else {
230227d817aSBarry Smith           if (mat->was_assembled) {
231905e6a2fSBarry Smith             if (!aij->colmap) {
232905e6a2fSBarry Smith               ierr = CreateColmap_MPIAIJ_Private(mat);CHKERRQ(ierr);
233905e6a2fSBarry Smith             }
234aa482453SBarry Smith #if defined (PETSC_USE_CTABLE)
2350f5bd95cSBarry Smith             ierr = PetscTableFind(aij->colmap,in[j]+1,&col);CHKERRQ(ierr);
236fa46199cSSatish Balay 	    col--;
237b1fc9764SSatish Balay #else
238905e6a2fSBarry Smith             col = aij->colmap[in[j]] - 1;
239b1fc9764SSatish Balay #endif
240ec8511deSBarry Smith             if (col < 0 && !((Mat_SeqAIJ*)(aij->A->data))->nonew) {
2412493cbb0SBarry Smith               ierr = DisAssemble_MPIAIJ(mat);CHKERRQ(ierr);
2424b0e389bSBarry Smith               col =  in[j];
2439bf004c3SSatish Balay               /* Reinitialize the variables required by MatSetValues_SeqAIJ_B_Private() */
244f9508a3cSSatish Balay               B = aij->B;
245f9508a3cSSatish Balay               b = (Mat_SeqAIJ*)B->data;
246f9508a3cSSatish Balay               bimax = b->imax; bi = b->i; bilen = b->ilen; bj = b->j;
247f9508a3cSSatish Balay               ba = b->a;
248d6dfbf8fSBarry Smith             }
249c48de900SBarry Smith           } else col = in[j];
2504b0e389bSBarry Smith           if (roworiented) value = v[i*n+j]; else value = v[i+j*m];
251329f5518SBarry Smith           if (ignorezeroentries && value == 0.0) continue;
25230770e4dSSatish Balay           MatSetValues_SeqAIJ_B_Private(row,col,value,addv);
25330770e4dSSatish Balay           /* ierr = MatSetValues_SeqAIJ(aij->B,1,&row,1,&col,&value,addv);CHKERRQ(ierr); */
2541eb62cbbSBarry Smith         }
2551eb62cbbSBarry Smith       }
2565ef9f2a5SBarry Smith     } else {
25790f02eecSBarry Smith       if (!aij->donotstash) {
258d36fbae8SSatish Balay         if (roworiented) {
259329f5518SBarry Smith           if (ignorezeroentries && v[i*n] == 0.0) continue;
2608798bf22SSatish Balay           ierr = MatStashValuesRow_Private(&mat->stash,im[i],n,in,v+i*n);CHKERRQ(ierr);
261d36fbae8SSatish Balay         } else {
262329f5518SBarry Smith           if (ignorezeroentries && v[i] == 0.0) continue;
2638798bf22SSatish Balay           ierr = MatStashValuesCol_Private(&mat->stash,im[i],n,in,v+i,m);CHKERRQ(ierr);
2644b0e389bSBarry Smith         }
2651eb62cbbSBarry Smith       }
2668a729477SBarry Smith     }
26790f02eecSBarry Smith   }
2683a40ed3dSBarry Smith   PetscFunctionReturn(0);
2698a729477SBarry Smith }
2708a729477SBarry Smith 
2714a2ae208SSatish Balay #undef __FUNCT__
2724a2ae208SSatish Balay #define __FUNCT__ "MatGetValues_MPIAIJ"
273f15d580aSBarry Smith int MatGetValues_MPIAIJ(Mat mat,int m,const int idxm[],int n,const int idxn[],PetscScalar v[])
274b49de8d1SLois Curfman McInnes {
275b49de8d1SLois Curfman McInnes   Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data;
276b49de8d1SLois Curfman McInnes   int        ierr,i,j,rstart = aij->rstart,rend = aij->rend;
277b49de8d1SLois Curfman McInnes   int        cstart = aij->cstart,cend = aij->cend,row,col;
278b49de8d1SLois Curfman McInnes 
2793a40ed3dSBarry Smith   PetscFunctionBegin;
280b49de8d1SLois Curfman McInnes   for (i=0; i<m; i++) {
281590ac198SBarry Smith     if (idxm[i] < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Negative row: %d",idxm[i]);
282952d7e9fSSatish Balay     if (idxm[i] >= mat->M) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %d max %d",idxm[i],mat->M-1);
283b49de8d1SLois Curfman McInnes     if (idxm[i] >= rstart && idxm[i] < rend) {
284b49de8d1SLois Curfman McInnes       row = idxm[i] - rstart;
285b49de8d1SLois Curfman McInnes       for (j=0; j<n; j++) {
286590ac198SBarry Smith         if (idxn[j] < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"Negative column: %d",idxn[j]);
287590ac198SBarry Smith         if (idxn[j] >= mat->N) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %d max %d",idxn[j],mat->N-1);
288b49de8d1SLois Curfman McInnes         if (idxn[j] >= cstart && idxn[j] < cend){
289b49de8d1SLois Curfman McInnes           col = idxn[j] - cstart;
290b49de8d1SLois Curfman McInnes           ierr = MatGetValues(aij->A,1,&row,1,&col,v+i*n+j);CHKERRQ(ierr);
291fa852ad4SSatish Balay         } else {
292905e6a2fSBarry Smith           if (!aij->colmap) {
293905e6a2fSBarry Smith             ierr = CreateColmap_MPIAIJ_Private(mat);CHKERRQ(ierr);
294905e6a2fSBarry Smith           }
295aa482453SBarry Smith #if defined (PETSC_USE_CTABLE)
2960f5bd95cSBarry Smith           ierr = PetscTableFind(aij->colmap,idxn[j]+1,&col);CHKERRQ(ierr);
297fa46199cSSatish Balay           col --;
298b1fc9764SSatish Balay #else
299905e6a2fSBarry Smith           col = aij->colmap[idxn[j]] - 1;
300b1fc9764SSatish Balay #endif
301e60e1c95SSatish Balay           if ((col < 0) || (aij->garray[col] != idxn[j])) *(v+i*n+j) = 0.0;
302d9d09a02SSatish Balay           else {
303b49de8d1SLois Curfman McInnes             ierr = MatGetValues(aij->B,1,&row,1,&col,v+i*n+j);CHKERRQ(ierr);
304b49de8d1SLois Curfman McInnes           }
305b49de8d1SLois Curfman McInnes         }
306b49de8d1SLois Curfman McInnes       }
307a8c6a408SBarry Smith     } else {
30829bbc08cSBarry Smith       SETERRQ(PETSC_ERR_SUP,"Only local values currently supported");
309b49de8d1SLois Curfman McInnes     }
310b49de8d1SLois Curfman McInnes   }
3113a40ed3dSBarry Smith   PetscFunctionReturn(0);
312b49de8d1SLois Curfman McInnes }
313bc5ccf88SSatish Balay 
3144a2ae208SSatish Balay #undef __FUNCT__
3154a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyBegin_MPIAIJ"
316bc5ccf88SSatish Balay int MatAssemblyBegin_MPIAIJ(Mat mat,MatAssemblyType mode)
317bc5ccf88SSatish Balay {
318bc5ccf88SSatish Balay   Mat_MPIAIJ  *aij = (Mat_MPIAIJ*)mat->data;
319d36fbae8SSatish Balay   int         ierr,nstash,reallocs;
320bc5ccf88SSatish Balay   InsertMode  addv;
321bc5ccf88SSatish Balay 
322bc5ccf88SSatish Balay   PetscFunctionBegin;
323bc5ccf88SSatish Balay   if (aij->donotstash) {
324bc5ccf88SSatish Balay     PetscFunctionReturn(0);
325bc5ccf88SSatish Balay   }
326bc5ccf88SSatish Balay 
327bc5ccf88SSatish Balay   /* make sure all processors are either in INSERTMODE or ADDMODE */
328bc5ccf88SSatish Balay   ierr = MPI_Allreduce(&mat->insertmode,&addv,1,MPI_INT,MPI_BOR,mat->comm);CHKERRQ(ierr);
329bc5ccf88SSatish Balay   if (addv == (ADD_VALUES|INSERT_VALUES)) {
33029bbc08cSBarry Smith     SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Some processors inserted others added");
331bc5ccf88SSatish Balay   }
332bc5ccf88SSatish Balay   mat->insertmode = addv; /* in case this processor had no cache */
333bc5ccf88SSatish Balay 
3348798bf22SSatish Balay   ierr = MatStashScatterBegin_Private(&mat->stash,aij->rowners);CHKERRQ(ierr);
3358798bf22SSatish Balay   ierr = MatStashGetInfo_Private(&mat->stash,&nstash,&reallocs);CHKERRQ(ierr);
336b0a32e0cSBarry Smith   PetscLogInfo(aij->A,"MatAssemblyBegin_MPIAIJ:Stash has %d entries, uses %d mallocs.\n",nstash,reallocs);
337bc5ccf88SSatish Balay   PetscFunctionReturn(0);
338bc5ccf88SSatish Balay }
339bc5ccf88SSatish Balay 
340bc5ccf88SSatish Balay 
3414a2ae208SSatish Balay #undef __FUNCT__
3424a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyEnd_MPIAIJ"
343bc5ccf88SSatish Balay int MatAssemblyEnd_MPIAIJ(Mat mat,MatAssemblyType mode)
344bc5ccf88SSatish Balay {
345bc5ccf88SSatish Balay   Mat_MPIAIJ  *aij = (Mat_MPIAIJ*)mat->data;
34624f910e3SHong Zhang   Mat_SeqAIJ  *a=(Mat_SeqAIJ *)aij->A->data,*b= (Mat_SeqAIJ *)aij->B->data;
347a2d1c673SSatish Balay   int         i,j,rstart,ncols,n,ierr,flg;
348bc5ccf88SSatish Balay   int         *row,*col,other_disassembled;
34987828ca2SBarry Smith   PetscScalar *val;
350bc5ccf88SSatish Balay   InsertMode  addv = mat->insertmode;
351bc5ccf88SSatish Balay 
352bc5ccf88SSatish Balay   PetscFunctionBegin;
353bc5ccf88SSatish Balay   if (!aij->donotstash) {
354a2d1c673SSatish Balay     while (1) {
3558798bf22SSatish Balay       ierr = MatStashScatterGetMesg_Private(&mat->stash,&n,&row,&col,&val,&flg);CHKERRQ(ierr);
356a2d1c673SSatish Balay       if (!flg) break;
357a2d1c673SSatish Balay 
358bc5ccf88SSatish Balay       for (i=0; i<n;) {
359bc5ccf88SSatish Balay         /* Now identify the consecutive vals belonging to the same row */
360bc5ccf88SSatish Balay         for (j=i,rstart=row[j]; j<n; j++) { if (row[j] != rstart) break; }
361bc5ccf88SSatish Balay         if (j < n) ncols = j-i;
362bc5ccf88SSatish Balay         else       ncols = n-i;
363bc5ccf88SSatish Balay         /* Now assemble all these values with a single function call */
364bc5ccf88SSatish Balay         ierr = MatSetValues_MPIAIJ(mat,1,row+i,ncols,col+i,val+i,addv);CHKERRQ(ierr);
365bc5ccf88SSatish Balay         i = j;
366bc5ccf88SSatish Balay       }
367bc5ccf88SSatish Balay     }
3688798bf22SSatish Balay     ierr = MatStashScatterEnd_Private(&mat->stash);CHKERRQ(ierr);
369bc5ccf88SSatish Balay   }
370bc5ccf88SSatish Balay 
371bc5ccf88SSatish Balay   ierr = MatAssemblyBegin(aij->A,mode);CHKERRQ(ierr);
372bc5ccf88SSatish Balay   ierr = MatAssemblyEnd(aij->A,mode);CHKERRQ(ierr);
373bc5ccf88SSatish Balay 
374bc5ccf88SSatish Balay   /* determine if any processor has disassembled, if so we must
375bc5ccf88SSatish Balay      also disassemble ourselfs, in order that we may reassemble. */
376bc5ccf88SSatish Balay   /*
377bc5ccf88SSatish Balay      if nonzero structure of submatrix B cannot change then we know that
378bc5ccf88SSatish Balay      no processor disassembled thus we can skip this stuff
379bc5ccf88SSatish Balay   */
380bc5ccf88SSatish Balay   if (!((Mat_SeqAIJ*)aij->B->data)->nonew)  {
381bc5ccf88SSatish Balay     ierr = MPI_Allreduce(&mat->was_assembled,&other_disassembled,1,MPI_INT,MPI_PROD,mat->comm);CHKERRQ(ierr);
382bc5ccf88SSatish Balay     if (mat->was_assembled && !other_disassembled) {
383bc5ccf88SSatish Balay       ierr = DisAssemble_MPIAIJ(mat);CHKERRQ(ierr);
384bc5ccf88SSatish Balay     }
385bc5ccf88SSatish Balay   }
386bc5ccf88SSatish Balay 
387bc5ccf88SSatish Balay   if (!mat->was_assembled && mode == MAT_FINAL_ASSEMBLY) {
388bc5ccf88SSatish Balay     ierr = MatSetUpMultiply_MPIAIJ(mat);CHKERRQ(ierr);
389bc5ccf88SSatish Balay   }
390bc5ccf88SSatish Balay   ierr = MatAssemblyBegin(aij->B,mode);CHKERRQ(ierr);
391bc5ccf88SSatish Balay   ierr = MatAssemblyEnd(aij->B,mode);CHKERRQ(ierr);
392bc5ccf88SSatish Balay 
393606d414cSSatish Balay   if (aij->rowvalues) {
394606d414cSSatish Balay     ierr = PetscFree(aij->rowvalues);CHKERRQ(ierr);
395606d414cSSatish Balay     aij->rowvalues = 0;
396606d414cSSatish Balay   }
397a30b2313SHong Zhang 
398a30b2313SHong Zhang   /* used by MatAXPY() */
399a30b2313SHong Zhang   a->xtoy = 0; b->xtoy = 0;
400a30b2313SHong Zhang   a->XtoY = 0; b->XtoY = 0;
401a30b2313SHong Zhang 
402bc5ccf88SSatish Balay   PetscFunctionReturn(0);
403bc5ccf88SSatish Balay }
404bc5ccf88SSatish Balay 
4054a2ae208SSatish Balay #undef __FUNCT__
4064a2ae208SSatish Balay #define __FUNCT__ "MatZeroEntries_MPIAIJ"
4078f6be9afSLois Curfman McInnes int MatZeroEntries_MPIAIJ(Mat A)
4081eb62cbbSBarry Smith {
40944a69424SLois Curfman McInnes   Mat_MPIAIJ *l = (Mat_MPIAIJ*)A->data;
410dbd7a890SLois Curfman McInnes   int        ierr;
4113a40ed3dSBarry Smith 
4123a40ed3dSBarry Smith   PetscFunctionBegin;
41378b31e54SBarry Smith   ierr = MatZeroEntries(l->A);CHKERRQ(ierr);
41478b31e54SBarry Smith   ierr = MatZeroEntries(l->B);CHKERRQ(ierr);
4153a40ed3dSBarry Smith   PetscFunctionReturn(0);
4161eb62cbbSBarry Smith }
4171eb62cbbSBarry Smith 
4184a2ae208SSatish Balay #undef __FUNCT__
4194a2ae208SSatish Balay #define __FUNCT__ "MatZeroRows_MPIAIJ"
420268466fbSBarry Smith int MatZeroRows_MPIAIJ(Mat A,IS is,const PetscScalar *diag)
4211eb62cbbSBarry Smith {
42244a69424SLois Curfman McInnes   Mat_MPIAIJ     *l = (Mat_MPIAIJ*)A->data;
42317699dbbSLois Curfman McInnes   int            i,ierr,N,*rows,*owners = l->rowners,size = l->size;
424c1dc657dSBarry Smith   int            *nprocs,j,idx,nsends,row;
42517699dbbSLois Curfman McInnes   int            nmax,*svalues,*starts,*owner,nrecvs,rank = l->rank;
4265392566eSBarry Smith   int            *rvalues,tag = A->tag,count,base,slen,n,*source;
4276a5c57faSSatish Balay   int            *lens,imdex,*lrows,*values,rstart=l->rstart;
428d6dfbf8fSBarry Smith   MPI_Comm       comm = A->comm;
4291eb62cbbSBarry Smith   MPI_Request    *send_waits,*recv_waits;
4301eb62cbbSBarry Smith   MPI_Status     recv_status,*send_status;
4311eb62cbbSBarry Smith   IS             istmp;
43235d8aa7fSBarry Smith   PetscTruth     found;
4331eb62cbbSBarry Smith 
4343a40ed3dSBarry Smith   PetscFunctionBegin;
435e03a110bSBarry Smith   ierr = ISGetLocalSize(is,&N);CHKERRQ(ierr);
43678b31e54SBarry Smith   ierr = ISGetIndices(is,&rows);CHKERRQ(ierr);
4371eb62cbbSBarry Smith 
4381eb62cbbSBarry Smith   /*  first count number of contributors to each processor */
439b0a32e0cSBarry Smith   ierr = PetscMalloc(2*size*sizeof(int),&nprocs);CHKERRQ(ierr);
440549d3d68SSatish Balay   ierr   = PetscMemzero(nprocs,2*size*sizeof(int));CHKERRQ(ierr);
441b0a32e0cSBarry Smith   ierr = PetscMalloc((N+1)*sizeof(int),&owner);CHKERRQ(ierr); /* see note*/
4421eb62cbbSBarry Smith   for (i=0; i<N; i++) {
4431eb62cbbSBarry Smith     idx = rows[i];
44435d8aa7fSBarry Smith     found = PETSC_FALSE;
44517699dbbSLois Curfman McInnes     for (j=0; j<size; j++) {
4461eb62cbbSBarry Smith       if (idx >= owners[j] && idx < owners[j+1]) {
447c1dc657dSBarry Smith         nprocs[2*j]++; nprocs[2*j+1] = 1; owner[i] = j; found = PETSC_TRUE; break;
4481eb62cbbSBarry Smith       }
4491eb62cbbSBarry Smith     }
45029bbc08cSBarry Smith     if (!found) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Index out of range");
4511eb62cbbSBarry Smith   }
452c1dc657dSBarry Smith   nsends = 0;  for (i=0; i<size; i++) { nsends += nprocs[2*i+1];}
4531eb62cbbSBarry Smith 
4541eb62cbbSBarry Smith   /* inform other processors of number of messages and max length*/
455c1dc657dSBarry Smith   ierr = PetscMaxSum(comm,nprocs,&nmax,&nrecvs);CHKERRQ(ierr);
4561eb62cbbSBarry Smith 
4571eb62cbbSBarry Smith   /* post receives:   */
458b0a32e0cSBarry Smith   ierr = PetscMalloc((nrecvs+1)*(nmax+1)*sizeof(int),&rvalues);CHKERRQ(ierr);
459b0a32e0cSBarry Smith   ierr = PetscMalloc((nrecvs+1)*sizeof(MPI_Request),&recv_waits);CHKERRQ(ierr);
4601eb62cbbSBarry Smith   for (i=0; i<nrecvs; i++) {
461ca161407SBarry Smith     ierr = MPI_Irecv(rvalues+nmax*i,nmax,MPI_INT,MPI_ANY_SOURCE,tag,comm,recv_waits+i);CHKERRQ(ierr);
4621eb62cbbSBarry Smith   }
4631eb62cbbSBarry Smith 
4641eb62cbbSBarry Smith   /* do sends:
4651eb62cbbSBarry Smith       1) starts[i] gives the starting index in svalues for stuff going to
4661eb62cbbSBarry Smith          the ith processor
4671eb62cbbSBarry Smith   */
468b0a32e0cSBarry Smith   ierr = PetscMalloc((N+1)*sizeof(int),&svalues);CHKERRQ(ierr);
469b0a32e0cSBarry Smith   ierr = PetscMalloc((nsends+1)*sizeof(MPI_Request),&send_waits);CHKERRQ(ierr);
470b0a32e0cSBarry Smith   ierr = PetscMalloc((size+1)*sizeof(int),&starts);CHKERRQ(ierr);
4711eb62cbbSBarry Smith   starts[0] = 0;
472c1dc657dSBarry Smith   for (i=1; i<size; i++) { starts[i] = starts[i-1] + nprocs[2*i-2];}
4731eb62cbbSBarry Smith   for (i=0; i<N; i++) {
4741eb62cbbSBarry Smith     svalues[starts[owner[i]]++] = rows[i];
4751eb62cbbSBarry Smith   }
4766831982aSBarry Smith   ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr);
4771eb62cbbSBarry Smith 
4781eb62cbbSBarry Smith   starts[0] = 0;
479c1dc657dSBarry Smith   for (i=1; i<size+1; i++) { starts[i] = starts[i-1] + nprocs[2*i-2];}
4801eb62cbbSBarry Smith   count = 0;
48117699dbbSLois Curfman McInnes   for (i=0; i<size; i++) {
482c1dc657dSBarry Smith     if (nprocs[2*i+1]) {
483c1dc657dSBarry Smith       ierr = MPI_Isend(svalues+starts[i],nprocs[2*i],MPI_INT,i,tag,comm,send_waits+count++);CHKERRQ(ierr);
4841eb62cbbSBarry Smith     }
4851eb62cbbSBarry Smith   }
486606d414cSSatish Balay   ierr = PetscFree(starts);CHKERRQ(ierr);
4871eb62cbbSBarry Smith 
48817699dbbSLois Curfman McInnes   base = owners[rank];
4891eb62cbbSBarry Smith 
4901eb62cbbSBarry Smith   /*  wait on receives */
491b0a32e0cSBarry Smith   ierr   = PetscMalloc(2*(nrecvs+1)*sizeof(int),&lens);CHKERRQ(ierr);
4921eb62cbbSBarry Smith   source = lens + nrecvs;
4931eb62cbbSBarry Smith   count  = nrecvs; slen = 0;
4941eb62cbbSBarry Smith   while (count) {
495ca161407SBarry Smith     ierr = MPI_Waitany(nrecvs,recv_waits,&imdex,&recv_status);CHKERRQ(ierr);
4961eb62cbbSBarry Smith     /* unpack receives into our local space */
497ca161407SBarry Smith     ierr = MPI_Get_count(&recv_status,MPI_INT,&n);CHKERRQ(ierr);
498d6dfbf8fSBarry Smith     source[imdex]  = recv_status.MPI_SOURCE;
499d6dfbf8fSBarry Smith     lens[imdex]    = n;
5001eb62cbbSBarry Smith     slen          += n;
5011eb62cbbSBarry Smith     count--;
5021eb62cbbSBarry Smith   }
503606d414cSSatish Balay   ierr = PetscFree(recv_waits);CHKERRQ(ierr);
5041eb62cbbSBarry Smith 
5051eb62cbbSBarry Smith   /* move the data into the send scatter */
506b0a32e0cSBarry Smith   ierr = PetscMalloc((slen+1)*sizeof(int),&lrows);CHKERRQ(ierr);
5071eb62cbbSBarry Smith   count = 0;
5081eb62cbbSBarry Smith   for (i=0; i<nrecvs; i++) {
5091eb62cbbSBarry Smith     values = rvalues + i*nmax;
5101eb62cbbSBarry Smith     for (j=0; j<lens[i]; j++) {
5111eb62cbbSBarry Smith       lrows[count++] = values[j] - base;
5121eb62cbbSBarry Smith     }
5131eb62cbbSBarry Smith   }
514606d414cSSatish Balay   ierr = PetscFree(rvalues);CHKERRQ(ierr);
515606d414cSSatish Balay   ierr = PetscFree(lens);CHKERRQ(ierr);
516606d414cSSatish Balay   ierr = PetscFree(owner);CHKERRQ(ierr);
517606d414cSSatish Balay   ierr = PetscFree(nprocs);CHKERRQ(ierr);
5181eb62cbbSBarry Smith 
5191eb62cbbSBarry Smith   /* actually zap the local rows */
520029af93fSBarry Smith   ierr = ISCreateGeneral(PETSC_COMM_SELF,slen,lrows,&istmp);CHKERRQ(ierr);
521b0a32e0cSBarry Smith   PetscLogObjectParent(A,istmp);
5226a5c57faSSatish Balay 
5236eb55b6aSBarry Smith   /*
5246eb55b6aSBarry Smith         Zero the required rows. If the "diagonal block" of the matrix
5256eb55b6aSBarry Smith      is square and the user wishes to set the diagonal we use seperate
5266eb55b6aSBarry Smith      code so that MatSetValues() is not called for each diagonal allocating
5276eb55b6aSBarry Smith      new memory, thus calling lots of mallocs and slowing things down.
5286eb55b6aSBarry Smith 
5296eb55b6aSBarry Smith        Contributed by: Mathew Knepley
5306eb55b6aSBarry Smith   */
531e2d53e46SBarry Smith   /* must zero l->B before l->A because the (diag) case below may put values into l->B*/
532e2d53e46SBarry Smith   ierr = MatZeroRows(l->B,istmp,0);CHKERRQ(ierr);
5336eb55b6aSBarry Smith   if (diag && (l->A->M == l->A->N)) {
5346eb55b6aSBarry Smith     ierr      = MatZeroRows(l->A,istmp,diag);CHKERRQ(ierr);
535e2d53e46SBarry Smith   } else if (diag) {
536e2d53e46SBarry Smith     ierr = MatZeroRows(l->A,istmp,0);CHKERRQ(ierr);
537fa46199cSSatish Balay     if (((Mat_SeqAIJ*)l->A->data)->nonew) {
53829bbc08cSBarry Smith       SETERRQ(PETSC_ERR_SUP,"MatZeroRows() on rectangular matrices cannot be used with the Mat options\n\
539fa46199cSSatish Balay MAT_NO_NEW_NONZERO_LOCATIONS,MAT_NEW_NONZERO_LOCATION_ERR,MAT_NEW_NONZERO_ALLOCATION_ERR");
5406525c446SSatish Balay     }
541e2d53e46SBarry Smith     for (i = 0; i < slen; i++) {
542e2d53e46SBarry Smith       row  = lrows[i] + rstart;
543e2d53e46SBarry Smith       ierr = MatSetValues(A,1,&row,1,&row,diag,INSERT_VALUES);CHKERRQ(ierr);
544e2d53e46SBarry Smith     }
545e2d53e46SBarry Smith     ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
546e2d53e46SBarry Smith     ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
5476eb55b6aSBarry Smith   } else {
5486a5c57faSSatish Balay     ierr = MatZeroRows(l->A,istmp,0);CHKERRQ(ierr);
5496eb55b6aSBarry Smith   }
55078b31e54SBarry Smith   ierr = ISDestroy(istmp);CHKERRQ(ierr);
551606d414cSSatish Balay   ierr = PetscFree(lrows);CHKERRQ(ierr);
55272dacd9aSBarry Smith 
5531eb62cbbSBarry Smith   /* wait on sends */
5541eb62cbbSBarry Smith   if (nsends) {
555b0a32e0cSBarry Smith     ierr = PetscMalloc(nsends*sizeof(MPI_Status),&send_status);CHKERRQ(ierr);
556ca161407SBarry Smith     ierr = MPI_Waitall(nsends,send_waits,send_status);CHKERRQ(ierr);
557606d414cSSatish Balay     ierr = PetscFree(send_status);CHKERRQ(ierr);
5581eb62cbbSBarry Smith   }
559606d414cSSatish Balay   ierr = PetscFree(send_waits);CHKERRQ(ierr);
560606d414cSSatish Balay   ierr = PetscFree(svalues);CHKERRQ(ierr);
5611eb62cbbSBarry Smith 
5623a40ed3dSBarry Smith   PetscFunctionReturn(0);
5631eb62cbbSBarry Smith }
5641eb62cbbSBarry Smith 
5654a2ae208SSatish Balay #undef __FUNCT__
5664a2ae208SSatish Balay #define __FUNCT__ "MatMult_MPIAIJ"
5678f6be9afSLois Curfman McInnes int MatMult_MPIAIJ(Mat A,Vec xx,Vec yy)
5681eb62cbbSBarry Smith {
569416022c9SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
570fbd6ef76SBarry Smith   int        ierr,nt;
571416022c9SBarry Smith 
5723a40ed3dSBarry Smith   PetscFunctionBegin;
573a2ce50c7SBarry Smith   ierr = VecGetLocalSize(xx,&nt);CHKERRQ(ierr);
574273d9f13SBarry Smith   if (nt != A->n) {
575273d9f13SBarry Smith     SETERRQ2(PETSC_ERR_ARG_SIZ,"Incompatible partition of A (%d) and xx (%d)",A->n,nt);
576fbd6ef76SBarry Smith   }
57743a90d84SBarry Smith   ierr = VecScatterBegin(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr);
578f830108cSBarry Smith   ierr = (*a->A->ops->mult)(a->A,xx,yy);CHKERRQ(ierr);
57943a90d84SBarry Smith   ierr = VecScatterEnd(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr);
580f830108cSBarry Smith   ierr = (*a->B->ops->multadd)(a->B,a->lvec,yy,yy);CHKERRQ(ierr);
5813a40ed3dSBarry Smith   PetscFunctionReturn(0);
5821eb62cbbSBarry Smith }
5831eb62cbbSBarry Smith 
5844a2ae208SSatish Balay #undef __FUNCT__
5854a2ae208SSatish Balay #define __FUNCT__ "MatMultAdd_MPIAIJ"
5868f6be9afSLois Curfman McInnes int MatMultAdd_MPIAIJ(Mat A,Vec xx,Vec yy,Vec zz)
587da3a660dSBarry Smith {
588416022c9SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
589da3a660dSBarry Smith   int        ierr;
5903a40ed3dSBarry Smith 
5913a40ed3dSBarry Smith   PetscFunctionBegin;
59243a90d84SBarry Smith   ierr = VecScatterBegin(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr);
593f830108cSBarry Smith   ierr = (*a->A->ops->multadd)(a->A,xx,yy,zz);CHKERRQ(ierr);
59443a90d84SBarry Smith   ierr = VecScatterEnd(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr);
595f830108cSBarry Smith   ierr = (*a->B->ops->multadd)(a->B,a->lvec,zz,zz);CHKERRQ(ierr);
5963a40ed3dSBarry Smith   PetscFunctionReturn(0);
597da3a660dSBarry Smith }
598da3a660dSBarry Smith 
5994a2ae208SSatish Balay #undef __FUNCT__
6004a2ae208SSatish Balay #define __FUNCT__ "MatMultTranspose_MPIAIJ"
6017c922b88SBarry Smith int MatMultTranspose_MPIAIJ(Mat A,Vec xx,Vec yy)
602da3a660dSBarry Smith {
603416022c9SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
604da3a660dSBarry Smith   int        ierr;
605da3a660dSBarry Smith 
6063a40ed3dSBarry Smith   PetscFunctionBegin;
607da3a660dSBarry Smith   /* do nondiagonal part */
6087c922b88SBarry Smith   ierr = (*a->B->ops->multtranspose)(a->B,xx,a->lvec);CHKERRQ(ierr);
609da3a660dSBarry Smith   /* send it on its way */
610537820f0SBarry Smith   ierr = VecScatterBegin(a->lvec,yy,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr);
611da3a660dSBarry Smith   /* do local part */
6127c922b88SBarry Smith   ierr = (*a->A->ops->multtranspose)(a->A,xx,yy);CHKERRQ(ierr);
613da3a660dSBarry Smith   /* receive remote parts: note this assumes the values are not actually */
614da3a660dSBarry Smith   /* inserted in yy until the next line, which is true for my implementation*/
615da3a660dSBarry Smith   /* but is not perhaps always true. */
616537820f0SBarry Smith   ierr = VecScatterEnd(a->lvec,yy,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr);
6173a40ed3dSBarry Smith   PetscFunctionReturn(0);
618da3a660dSBarry Smith }
619da3a660dSBarry Smith 
620cd0d46ebSvictorle EXTERN_C_BEGIN
621cd0d46ebSvictorle #undef __FUNCT__
622cd0d46ebSvictorle #define __FUNCT__ "MatIsSymmetric_MPIAIJ"
623cd0d46ebSvictorle int MatIsSymmetric_MPIAIJ(Mat Amat,Mat Bmat,PetscTruth *f)
624cd0d46ebSvictorle {
6254f423910Svictorle   MPI_Comm comm;
626cd0d46ebSvictorle   Mat_MPIAIJ *Aij = (Mat_MPIAIJ *) Amat->data, *Bij;
62766501d38Svictorle   Mat        Adia = Aij->A, Bdia, Aoff,Boff,*Aoffs,*Boffs;
628cd0d46ebSvictorle   IS         Me,Notme;
6294f423910Svictorle   int        M,N,first,last,*notme,ntids,i, ierr;
630cd0d46ebSvictorle 
631cd0d46ebSvictorle   PetscFunctionBegin;
63242e5f5b4Svictorle 
63342e5f5b4Svictorle   /* Easy test: symmetric diagonal block */
63466501d38Svictorle   Bij = (Mat_MPIAIJ *) Bmat->data; Bdia = Bij->A;
63566501d38Svictorle   ierr = MatIsSymmetric(Adia,Bdia,f); CHKERRQ(ierr);
636cd0d46ebSvictorle   if (!*f) PetscFunctionReturn(0);
6374f423910Svictorle   ierr = PetscObjectGetComm((PetscObject)Amat,&comm); CHKERRQ(ierr);
6384f423910Svictorle   ierr = MPI_Comm_size(comm,&ntids); CHKERRQ(ierr);
6394f423910Svictorle   if (ntids==1) PetscFunctionReturn(0);
64042e5f5b4Svictorle 
64142e5f5b4Svictorle   /* Hard test: off-diagonal block. This takes a MatGetSubMatrix. */
642cd0d46ebSvictorle   ierr = MatGetSize(Amat,&M,&N); CHKERRQ(ierr);
643cd0d46ebSvictorle   ierr = MatGetOwnershipRange(Amat,&first,&last); CHKERRQ(ierr);
644cd0d46ebSvictorle   ierr = PetscMalloc((N-last+first)*sizeof(int),&notme); CHKERRQ(ierr);
645cd0d46ebSvictorle   for (i=0; i<first; i++) notme[i] = i;
646cd0d46ebSvictorle   for (i=last; i<M; i++) notme[i-last+first] = i;
647268466fbSBarry Smith   ierr = ISCreateGeneral(MPI_COMM_SELF,N-last+first,notme,&Notme); CHKERRQ(ierr);
648268466fbSBarry Smith   ierr = ISCreateStride(MPI_COMM_SELF,last-first,first,1,&Me); CHKERRQ(ierr);
649268466fbSBarry Smith   ierr = MatGetSubMatrices(Amat,1,&Me,&Notme,MAT_INITIAL_MATRIX,&Aoffs); CHKERRQ(ierr);
65066501d38Svictorle   Aoff = Aoffs[0];
651268466fbSBarry Smith   ierr = MatGetSubMatrices(Bmat,1,&Notme,&Me,MAT_INITIAL_MATRIX,&Boffs); CHKERRQ(ierr);
65266501d38Svictorle   Boff = Boffs[0];
653cd0d46ebSvictorle   ierr = MatIsSymmetric(Aoff,Boff,f); CHKERRQ(ierr);
65466501d38Svictorle   ierr = MatDestroyMatrices(1,&Aoffs); CHKERRQ(ierr);
65566501d38Svictorle   ierr = MatDestroyMatrices(1,&Boffs); CHKERRQ(ierr);
65642e5f5b4Svictorle   ierr = ISDestroy(Me); CHKERRQ(ierr);
65742e5f5b4Svictorle   ierr = ISDestroy(Notme); CHKERRQ(ierr);
65842e5f5b4Svictorle 
659cd0d46ebSvictorle   PetscFunctionReturn(0);
660cd0d46ebSvictorle }
661cd0d46ebSvictorle EXTERN_C_END
662cd0d46ebSvictorle 
6634a2ae208SSatish Balay #undef __FUNCT__
6644a2ae208SSatish Balay #define __FUNCT__ "MatMultTransposeAdd_MPIAIJ"
6657c922b88SBarry Smith int MatMultTransposeAdd_MPIAIJ(Mat A,Vec xx,Vec yy,Vec zz)
666da3a660dSBarry Smith {
667416022c9SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
668da3a660dSBarry Smith   int        ierr;
669da3a660dSBarry Smith 
6703a40ed3dSBarry Smith   PetscFunctionBegin;
671da3a660dSBarry Smith   /* do nondiagonal part */
6727c922b88SBarry Smith   ierr = (*a->B->ops->multtranspose)(a->B,xx,a->lvec);CHKERRQ(ierr);
673da3a660dSBarry Smith   /* send it on its way */
674537820f0SBarry Smith   ierr = VecScatterBegin(a->lvec,zz,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr);
675da3a660dSBarry Smith   /* do local part */
6767c922b88SBarry Smith   ierr = (*a->A->ops->multtransposeadd)(a->A,xx,yy,zz);CHKERRQ(ierr);
677da3a660dSBarry Smith   /* receive remote parts: note this assumes the values are not actually */
678da3a660dSBarry Smith   /* inserted in yy until the next line, which is true for my implementation*/
679da3a660dSBarry Smith   /* but is not perhaps always true. */
6800a198c4cSBarry Smith   ierr = VecScatterEnd(a->lvec,zz,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr);
6813a40ed3dSBarry Smith   PetscFunctionReturn(0);
682da3a660dSBarry Smith }
683da3a660dSBarry Smith 
6841eb62cbbSBarry Smith /*
6851eb62cbbSBarry Smith   This only works correctly for square matrices where the subblock A->A is the
6861eb62cbbSBarry Smith    diagonal block
6871eb62cbbSBarry Smith */
6884a2ae208SSatish Balay #undef __FUNCT__
6894a2ae208SSatish Balay #define __FUNCT__ "MatGetDiagonal_MPIAIJ"
6908f6be9afSLois Curfman McInnes int MatGetDiagonal_MPIAIJ(Mat A,Vec v)
6911eb62cbbSBarry Smith {
6923a40ed3dSBarry Smith   int        ierr;
693416022c9SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
6943a40ed3dSBarry Smith 
6953a40ed3dSBarry Smith   PetscFunctionBegin;
696273d9f13SBarry Smith   if (A->M != A->N) SETERRQ(PETSC_ERR_SUP,"Supports only square matrix where A->A is diag block");
6975baf8537SBarry Smith   if (a->rstart != a->cstart || a->rend != a->cend) {
69829bbc08cSBarry Smith     SETERRQ(PETSC_ERR_ARG_SIZ,"row partition must equal col partition");
6993a40ed3dSBarry Smith   }
7003a40ed3dSBarry Smith   ierr = MatGetDiagonal(a->A,v);CHKERRQ(ierr);
7013a40ed3dSBarry Smith   PetscFunctionReturn(0);
7021eb62cbbSBarry Smith }
7031eb62cbbSBarry Smith 
7044a2ae208SSatish Balay #undef __FUNCT__
7054a2ae208SSatish Balay #define __FUNCT__ "MatScale_MPIAIJ"
706268466fbSBarry Smith int MatScale_MPIAIJ(const PetscScalar aa[],Mat A)
707052efed2SBarry Smith {
708052efed2SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
709052efed2SBarry Smith   int        ierr;
7103a40ed3dSBarry Smith 
7113a40ed3dSBarry Smith   PetscFunctionBegin;
712052efed2SBarry Smith   ierr = MatScale(aa,a->A);CHKERRQ(ierr);
713052efed2SBarry Smith   ierr = MatScale(aa,a->B);CHKERRQ(ierr);
7143a40ed3dSBarry Smith   PetscFunctionReturn(0);
715052efed2SBarry Smith }
716052efed2SBarry Smith 
7174a2ae208SSatish Balay #undef __FUNCT__
7184a2ae208SSatish Balay #define __FUNCT__ "MatDestroy_MPIAIJ"
719e1311b90SBarry Smith int MatDestroy_MPIAIJ(Mat mat)
7201eb62cbbSBarry Smith {
72144a69424SLois Curfman McInnes   Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data;
7221eb62cbbSBarry Smith   int        ierr;
72383e2fdc7SBarry Smith 
7243a40ed3dSBarry Smith   PetscFunctionBegin;
725aa482453SBarry Smith #if defined(PETSC_USE_LOG)
726b0a32e0cSBarry Smith   PetscLogObjectState((PetscObject)mat,"Rows=%d, Cols=%d",mat->M,mat->N);
727a5a9c739SBarry Smith #endif
7288798bf22SSatish Balay   ierr = MatStashDestroy_Private(&mat->stash);CHKERRQ(ierr);
729606d414cSSatish Balay   ierr = PetscFree(aij->rowners);CHKERRQ(ierr);
73078b31e54SBarry Smith   ierr = MatDestroy(aij->A);CHKERRQ(ierr);
73178b31e54SBarry Smith   ierr = MatDestroy(aij->B);CHKERRQ(ierr);
732aa482453SBarry Smith #if defined (PETSC_USE_CTABLE)
7330f5bd95cSBarry Smith   if (aij->colmap) {ierr = PetscTableDelete(aij->colmap);CHKERRQ(ierr);}
734b1fc9764SSatish Balay #else
735606d414cSSatish Balay   if (aij->colmap) {ierr = PetscFree(aij->colmap);CHKERRQ(ierr);}
736b1fc9764SSatish Balay #endif
737606d414cSSatish Balay   if (aij->garray) {ierr = PetscFree(aij->garray);CHKERRQ(ierr);}
7387c922b88SBarry Smith   if (aij->lvec)   {ierr = VecDestroy(aij->lvec);CHKERRQ(ierr);}
7397c922b88SBarry Smith   if (aij->Mvctx)  {ierr = VecScatterDestroy(aij->Mvctx);CHKERRQ(ierr);}
740606d414cSSatish Balay   if (aij->rowvalues) {ierr = PetscFree(aij->rowvalues);CHKERRQ(ierr);}
741606d414cSSatish Balay   ierr = PetscFree(aij);CHKERRQ(ierr);
7423a40ed3dSBarry Smith   PetscFunctionReturn(0);
7431eb62cbbSBarry Smith }
744ee50ffe9SBarry Smith 
7454a2ae208SSatish Balay #undef __FUNCT__
7468e2fed03SBarry Smith #define __FUNCT__ "MatView_MPIAIJ_Binary"
7478e2fed03SBarry Smith int MatView_MPIAIJ_Binary(Mat mat,PetscViewer viewer)
7488e2fed03SBarry Smith {
7498e2fed03SBarry Smith   Mat_MPIAIJ        *aij = (Mat_MPIAIJ*)mat->data;
7508e2fed03SBarry Smith   Mat_SeqAIJ*       A = (Mat_SeqAIJ*)aij->A->data;
7518e2fed03SBarry Smith   Mat_SeqAIJ*       B = (Mat_SeqAIJ*)aij->B->data;
7528e2fed03SBarry Smith   int               nz,fd,ierr,header[4],rank,size,*row_lengths,*range,rlen,i,tag = ((PetscObject)viewer)->tag;
753b021249fSBarry Smith   int               nzmax,*column_indices,j,k,col,*garray = aij->garray,cnt,cstart = aij->cstart,rnz;
7548e2fed03SBarry Smith   PetscScalar       *column_values;
7558e2fed03SBarry Smith 
7568e2fed03SBarry Smith   PetscFunctionBegin;
7578e2fed03SBarry Smith   ierr = MPI_Comm_rank(mat->comm,&rank);CHKERRQ(ierr);
7588e2fed03SBarry Smith   ierr = MPI_Comm_size(mat->comm,&size);CHKERRQ(ierr);
7598e2fed03SBarry Smith   nz   = A->nz + B->nz;
7608e2fed03SBarry Smith   if (rank == 0) {
7618e2fed03SBarry Smith     header[0] = MAT_FILE_COOKIE;
7628e2fed03SBarry Smith     header[1] = mat->M;
7638e2fed03SBarry Smith     header[2] = mat->N;
7648e2fed03SBarry Smith     ierr = MPI_Reduce(&nz,&header[3],1,MPI_INT,MPI_SUM,0,mat->comm);CHKERRQ(ierr);
7658e2fed03SBarry Smith     ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr);
7668e2fed03SBarry Smith     ierr = PetscBinaryWrite(fd,header,4,PETSC_INT,1);CHKERRQ(ierr);
7678e2fed03SBarry Smith     /* get largest number of rows any processor has */
7688e2fed03SBarry Smith     rlen = mat->m;
7698e2fed03SBarry Smith     ierr = PetscMapGetGlobalRange(mat->rmap,&range);CHKERRQ(ierr);
7708e2fed03SBarry Smith     for (i=1; i<size; i++) {
7718e2fed03SBarry Smith       rlen = PetscMax(rlen,range[i+1] - range[i]);
7728e2fed03SBarry Smith     }
7738e2fed03SBarry Smith   } else {
7748e2fed03SBarry Smith     ierr = MPI_Reduce(&nz,0,1,MPI_INT,MPI_SUM,0,mat->comm);CHKERRQ(ierr);
7758e2fed03SBarry Smith     rlen = mat->m;
7768e2fed03SBarry Smith   }
7778e2fed03SBarry Smith 
7788e2fed03SBarry Smith   /* load up the local row counts */
7798e2fed03SBarry Smith   ierr = PetscMalloc((rlen+1)*sizeof(int),&row_lengths);CHKERRQ(ierr);
7808e2fed03SBarry Smith   for (i=0; i<mat->m; i++) {
7818e2fed03SBarry Smith     row_lengths[i] = A->i[i+1] - A->i[i] + B->i[i+1] - B->i[i];
7828e2fed03SBarry Smith   }
7838e2fed03SBarry Smith 
7848e2fed03SBarry Smith   /* store the row lengths to the file */
7858e2fed03SBarry Smith   if (rank == 0) {
7868e2fed03SBarry Smith     MPI_Status status;
7878e2fed03SBarry Smith     ierr = PetscBinaryWrite(fd,row_lengths,mat->m,PETSC_INT,1);CHKERRQ(ierr);
7888e2fed03SBarry Smith     for (i=1; i<size; i++) {
7898e2fed03SBarry Smith       rlen = range[i+1] - range[i];
7908e2fed03SBarry Smith       ierr = MPI_Recv(row_lengths,rlen,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr);
7918e2fed03SBarry Smith       ierr = PetscBinaryWrite(fd,row_lengths,rlen,PETSC_INT,1);CHKERRQ(ierr);
7928e2fed03SBarry Smith     }
7938e2fed03SBarry Smith   } else {
7948e2fed03SBarry Smith     ierr = MPI_Send(row_lengths,mat->m,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr);
7958e2fed03SBarry Smith   }
7968e2fed03SBarry Smith   ierr = PetscFree(row_lengths);CHKERRQ(ierr);
7978e2fed03SBarry Smith 
7988e2fed03SBarry Smith   /* load up the local column indices */
7998e2fed03SBarry Smith   nzmax = nz; /* )th processor needs space a largest processor needs */
8008e2fed03SBarry Smith   ierr = MPI_Reduce(&nz,&nzmax,1,MPI_INT,MPI_MAX,0,mat->comm);CHKERRQ(ierr);
8018e2fed03SBarry Smith   ierr = PetscMalloc((nzmax+1)*sizeof(int),&column_indices);CHKERRQ(ierr);
8028e2fed03SBarry Smith   cnt  = 0;
8038e2fed03SBarry Smith   for (i=0; i<mat->m; i++) {
8048e2fed03SBarry Smith     for (j=B->i[i]; j<B->i[i+1]; j++) {
8058e2fed03SBarry Smith       if ( (col = garray[B->j[j]]) > cstart) break;
8068e2fed03SBarry Smith       column_indices[cnt++] = col;
8078e2fed03SBarry Smith     }
8088e2fed03SBarry Smith     for (k=A->i[i]; k<A->i[i+1]; k++) {
8098e2fed03SBarry Smith       column_indices[cnt++] = A->j[k] + cstart;
8108e2fed03SBarry Smith     }
8118e2fed03SBarry Smith     for (; j<B->i[i+1]; j++) {
8128e2fed03SBarry Smith       column_indices[cnt++] = garray[B->j[j]];
8138e2fed03SBarry Smith     }
8148e2fed03SBarry Smith   }
8158e2fed03SBarry Smith   if (cnt != A->nz + B->nz) SETERRQ2(PETSC_ERR_LIB,"Internal PETSc error: cnt = %d nz = %d",cnt,A->nz+B->nz);
8168e2fed03SBarry Smith 
8178e2fed03SBarry Smith   /* store the column indices to the file */
8188e2fed03SBarry Smith   if (rank == 0) {
8198e2fed03SBarry Smith     MPI_Status status;
8208e2fed03SBarry Smith     ierr = PetscBinaryWrite(fd,column_indices,nz,PETSC_INT,1);CHKERRQ(ierr);
8218e2fed03SBarry Smith     for (i=1; i<size; i++) {
822b021249fSBarry Smith       ierr = MPI_Recv(&rnz,1,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr);
823b021249fSBarry Smith       if (rnz > nzmax) SETERRQ2(PETSC_ERR_LIB,"Internal PETSc error: nz = %d nzmax = %d",nz,nzmax);
824b021249fSBarry Smith       ierr = MPI_Recv(column_indices,rnz,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr);
825b021249fSBarry Smith       ierr = PetscBinaryWrite(fd,column_indices,rnz,PETSC_INT,1);CHKERRQ(ierr);
8268e2fed03SBarry Smith     }
8278e2fed03SBarry Smith   } else {
8288e2fed03SBarry Smith     ierr = MPI_Send(&nz,1,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr);
8298e2fed03SBarry Smith     ierr = MPI_Send(column_indices,nz,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr);
8308e2fed03SBarry Smith   }
8318e2fed03SBarry Smith   ierr = PetscFree(column_indices);CHKERRQ(ierr);
8328e2fed03SBarry Smith 
8338e2fed03SBarry Smith   /* load up the local column values */
8348e2fed03SBarry Smith   ierr = PetscMalloc((nzmax+1)*sizeof(PetscScalar),&column_values);CHKERRQ(ierr);
8358e2fed03SBarry Smith   cnt  = 0;
8368e2fed03SBarry Smith   for (i=0; i<mat->m; i++) {
8378e2fed03SBarry Smith     for (j=B->i[i]; j<B->i[i+1]; j++) {
8388e2fed03SBarry Smith       if ( garray[B->j[j]] > cstart) break;
8398e2fed03SBarry Smith       column_values[cnt++] = B->a[j];
8408e2fed03SBarry Smith     }
8418e2fed03SBarry Smith     for (k=A->i[i]; k<A->i[i+1]; k++) {
8428e2fed03SBarry Smith       column_values[cnt++] = A->a[k];
8438e2fed03SBarry Smith     }
8448e2fed03SBarry Smith     for (; j<B->i[i+1]; j++) {
8458e2fed03SBarry Smith       column_values[cnt++] = B->a[j];
8468e2fed03SBarry Smith     }
8478e2fed03SBarry Smith   }
8488e2fed03SBarry Smith   if (cnt != A->nz + B->nz) SETERRQ2(1,"Internal PETSc error: cnt = %d nz = %d",cnt,A->nz+B->nz);
8498e2fed03SBarry Smith 
8508e2fed03SBarry Smith   /* store the column values to the file */
8518e2fed03SBarry Smith   if (rank == 0) {
8528e2fed03SBarry Smith     MPI_Status status;
8538e2fed03SBarry Smith     ierr = PetscBinaryWrite(fd,column_values,nz,PETSC_SCALAR,1);CHKERRQ(ierr);
8548e2fed03SBarry Smith     for (i=1; i<size; i++) {
855b021249fSBarry Smith       ierr = MPI_Recv(&rnz,1,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr);
856b021249fSBarry Smith       if (rnz > nzmax) SETERRQ2(PETSC_ERR_LIB,"Internal PETSc error: nz = %d nzmax = %d",nz,nzmax);
857b021249fSBarry Smith       ierr = MPI_Recv(column_values,rnz,MPIU_SCALAR,i,tag,mat->comm,&status);CHKERRQ(ierr);
858b021249fSBarry Smith       ierr = PetscBinaryWrite(fd,column_values,rnz,PETSC_SCALAR,1);CHKERRQ(ierr);
8598e2fed03SBarry Smith     }
8608e2fed03SBarry Smith   } else {
8618e2fed03SBarry Smith     ierr = MPI_Send(&nz,1,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr);
8628e2fed03SBarry Smith     ierr = MPI_Send(column_values,nz,MPIU_SCALAR,0,tag,mat->comm);CHKERRQ(ierr);
8638e2fed03SBarry Smith   }
8648e2fed03SBarry Smith   ierr = PetscFree(column_values);CHKERRQ(ierr);
8658e2fed03SBarry Smith   PetscFunctionReturn(0);
8668e2fed03SBarry Smith }
8678e2fed03SBarry Smith 
8688e2fed03SBarry Smith #undef __FUNCT__
8694a2ae208SSatish Balay #define __FUNCT__ "MatView_MPIAIJ_ASCIIorDraworSocket"
870b0a32e0cSBarry Smith int MatView_MPIAIJ_ASCIIorDraworSocket(Mat mat,PetscViewer viewer)
871416022c9SBarry Smith {
87244a69424SLois Curfman McInnes   Mat_MPIAIJ        *aij = (Mat_MPIAIJ*)mat->data;
873bfec09a0SHong Zhang   int               ierr,rank = aij->rank,size = aij->size;
8748e2fed03SBarry Smith   PetscTruth        isdraw,isascii,flg,isbinary;
875b0a32e0cSBarry Smith   PetscViewer       sviewer;
876f3ef73ceSBarry Smith   PetscViewerFormat format;
877416022c9SBarry Smith 
8783a40ed3dSBarry Smith   PetscFunctionBegin;
879fb9695e5SSatish Balay   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_DRAW,&isdraw);CHKERRQ(ierr);
880b0a32e0cSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr);
8818e2fed03SBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_BINARY,&isbinary);CHKERRQ(ierr);
8820f5bd95cSBarry Smith   if (isascii) {
883b0a32e0cSBarry Smith     ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
884456192e2SBarry Smith     if (format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
8854e220ebcSLois Curfman McInnes       MatInfo info;
8861dab6e02SBarry Smith       ierr = MPI_Comm_rank(mat->comm,&rank);CHKERRQ(ierr);
887888f2ed8SSatish Balay       ierr = MatGetInfo(mat,MAT_LOCAL,&info);CHKERRQ(ierr);
888b0a32e0cSBarry Smith       ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_no_inode",&flg);CHKERRQ(ierr);
8896831982aSBarry Smith       if (flg) {
890b0a32e0cSBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] Local rows %d nz %d nz alloced %d mem %d, not using I-node routines\n",
891273d9f13SBarry Smith 					      rank,mat->m,(int)info.nz_used,(int)info.nz_allocated,(int)info.memory);CHKERRQ(ierr);
8926831982aSBarry Smith       } else {
893b0a32e0cSBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] Local rows %d nz %d nz alloced %d mem %d, using I-node routines\n",
894273d9f13SBarry Smith 		    rank,mat->m,(int)info.nz_used,(int)info.nz_allocated,(int)info.memory);CHKERRQ(ierr);
8956831982aSBarry Smith       }
896888f2ed8SSatish Balay       ierr = MatGetInfo(aij->A,MAT_LOCAL,&info);CHKERRQ(ierr);
897b0a32e0cSBarry Smith       ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] on-diagonal part: nz %d \n",rank,(int)info.nz_used);CHKERRQ(ierr);
898888f2ed8SSatish Balay       ierr = MatGetInfo(aij->B,MAT_LOCAL,&info);CHKERRQ(ierr);
899b0a32e0cSBarry Smith       ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] off-diagonal part: nz %d \n",rank,(int)info.nz_used);CHKERRQ(ierr);
900b0a32e0cSBarry Smith       ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
901a40aa06bSLois Curfman McInnes       ierr = VecScatterView(aij->Mvctx,viewer);CHKERRQ(ierr);
9023a40ed3dSBarry Smith       PetscFunctionReturn(0);
903fb9695e5SSatish Balay     } else if (format == PETSC_VIEWER_ASCII_INFO) {
9043a40ed3dSBarry Smith       PetscFunctionReturn(0);
9054aedb280SBarry Smith     } else if (format == PETSC_VIEWER_ASCII_FACTOR_INFO) {
9064aedb280SBarry Smith       PetscFunctionReturn(0);
90708480c60SBarry Smith     }
9088e2fed03SBarry Smith   } else if (isbinary) {
9098e2fed03SBarry Smith     if (size == 1) {
9108e2fed03SBarry Smith       ierr = PetscObjectSetName((PetscObject)aij->A,mat->name);CHKERRQ(ierr);
9118e2fed03SBarry Smith       ierr = MatView(aij->A,viewer);CHKERRQ(ierr);
9128e2fed03SBarry Smith     } else {
9138e2fed03SBarry Smith       ierr = MatView_MPIAIJ_Binary(mat,viewer);CHKERRQ(ierr);
9148e2fed03SBarry Smith     }
9158e2fed03SBarry Smith     PetscFunctionReturn(0);
9160f5bd95cSBarry Smith   } else if (isdraw) {
917b0a32e0cSBarry Smith     PetscDraw  draw;
91819bcc07fSBarry Smith     PetscTruth isnull;
919b0a32e0cSBarry Smith     ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
920b0a32e0cSBarry Smith     ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr); if (isnull) PetscFunctionReturn(0);
92119bcc07fSBarry Smith   }
92219bcc07fSBarry Smith 
92317699dbbSLois Curfman McInnes   if (size == 1) {
924e36acaf3SBarry Smith     ierr = PetscObjectSetName((PetscObject)aij->A,mat->name);CHKERRQ(ierr);
92578b31e54SBarry Smith     ierr = MatView(aij->A,viewer);CHKERRQ(ierr);
9263a40ed3dSBarry Smith   } else {
92795373324SBarry Smith     /* assemble the entire matrix onto first processor. */
92895373324SBarry Smith     Mat         A;
929ec8511deSBarry Smith     Mat_SeqAIJ *Aloc;
930273d9f13SBarry Smith     int         M = mat->M,N = mat->N,m,*ai,*aj,row,*cols,i,*ct;
93187828ca2SBarry Smith     PetscScalar *a;
9322ee70a88SLois Curfman McInnes 
93317699dbbSLois Curfman McInnes     if (!rank) {
93455843e3eSBarry Smith       ierr = MatCreateMPIAIJ(mat->comm,M,N,M,N,0,PETSC_NULL,0,PETSC_NULL,&A);CHKERRQ(ierr);
9353a40ed3dSBarry Smith     } else {
93655843e3eSBarry Smith       ierr = MatCreateMPIAIJ(mat->comm,0,0,M,N,0,PETSC_NULL,0,PETSC_NULL,&A);CHKERRQ(ierr);
93795373324SBarry Smith     }
938b0a32e0cSBarry Smith     PetscLogObjectParent(mat,A);
939416022c9SBarry Smith 
94095373324SBarry Smith     /* copy over the A part */
941ec8511deSBarry Smith     Aloc = (Mat_SeqAIJ*)aij->A->data;
942273d9f13SBarry Smith     m = aij->A->m; ai = Aloc->i; aj = Aloc->j; a = Aloc->a;
94395373324SBarry Smith     row = aij->rstart;
944bfec09a0SHong Zhang     for (i=0; i<ai[m]; i++) {aj[i] += aij->cstart ;}
94595373324SBarry Smith     for (i=0; i<m; i++) {
946416022c9SBarry Smith       ierr = MatSetValues(A,1,&row,ai[i+1]-ai[i],aj,a,INSERT_VALUES);CHKERRQ(ierr);
94795373324SBarry Smith       row++; a += ai[i+1]-ai[i]; aj += ai[i+1]-ai[i];
94895373324SBarry Smith     }
9492ee70a88SLois Curfman McInnes     aj = Aloc->j;
950bfec09a0SHong Zhang     for (i=0; i<ai[m]; i++) {aj[i] -= aij->cstart;}
95195373324SBarry Smith 
95295373324SBarry Smith     /* copy over the B part */
953ec8511deSBarry Smith     Aloc = (Mat_SeqAIJ*)aij->B->data;
954273d9f13SBarry Smith     m    = aij->B->m;  ai = Aloc->i; aj = Aloc->j; a = Aloc->a;
95595373324SBarry Smith     row  = aij->rstart;
956b0a32e0cSBarry Smith     ierr = PetscMalloc((ai[m]+1)*sizeof(int),&cols);CHKERRQ(ierr);
957b0a32e0cSBarry Smith     ct   = cols;
958bfec09a0SHong Zhang     for (i=0; i<ai[m]; i++) {cols[i] = aij->garray[aj[i]];}
95995373324SBarry Smith     for (i=0; i<m; i++) {
960416022c9SBarry Smith       ierr = MatSetValues(A,1,&row,ai[i+1]-ai[i],cols,a,INSERT_VALUES);CHKERRQ(ierr);
96195373324SBarry Smith       row++; a += ai[i+1]-ai[i]; cols += ai[i+1]-ai[i];
96295373324SBarry Smith     }
963606d414cSSatish Balay     ierr = PetscFree(ct);CHKERRQ(ierr);
9646d4a8577SBarry Smith     ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
9656d4a8577SBarry Smith     ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
96655843e3eSBarry Smith     /*
96755843e3eSBarry Smith        Everyone has to call to draw the matrix since the graphics waits are
968b0a32e0cSBarry Smith        synchronized across all processors that share the PetscDraw object
96955843e3eSBarry Smith     */
970b0a32e0cSBarry Smith     ierr = PetscViewerGetSingleton(viewer,&sviewer);CHKERRQ(ierr);
971e03a110bSBarry Smith     if (!rank) {
972e36acaf3SBarry Smith       ierr = PetscObjectSetName((PetscObject)((Mat_MPIAIJ*)(A->data))->A,mat->name);CHKERRQ(ierr);
9736831982aSBarry Smith       ierr = MatView(((Mat_MPIAIJ*)(A->data))->A,sviewer);CHKERRQ(ierr);
97495373324SBarry Smith     }
975b0a32e0cSBarry Smith     ierr = PetscViewerRestoreSingleton(viewer,&sviewer);CHKERRQ(ierr);
97678b31e54SBarry Smith     ierr = MatDestroy(A);CHKERRQ(ierr);
97795373324SBarry Smith   }
9783a40ed3dSBarry Smith   PetscFunctionReturn(0);
9791eb62cbbSBarry Smith }
9801eb62cbbSBarry Smith 
9814a2ae208SSatish Balay #undef __FUNCT__
9824a2ae208SSatish Balay #define __FUNCT__ "MatView_MPIAIJ"
983b0a32e0cSBarry Smith int MatView_MPIAIJ(Mat mat,PetscViewer viewer)
984416022c9SBarry Smith {
985416022c9SBarry Smith   int        ierr;
9866831982aSBarry Smith   PetscTruth isascii,isdraw,issocket,isbinary;
987416022c9SBarry Smith 
9883a40ed3dSBarry Smith   PetscFunctionBegin;
989b0a32e0cSBarry Smith   ierr  = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr);
990fb9695e5SSatish Balay   ierr  = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_DRAW,&isdraw);CHKERRQ(ierr);
991fb9695e5SSatish Balay   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_BINARY,&isbinary);CHKERRQ(ierr);
992b0a32e0cSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_SOCKET,&issocket);CHKERRQ(ierr);
9930f5bd95cSBarry Smith   if (isascii || isdraw || isbinary || issocket) {
9947b2a1423SBarry Smith     ierr = MatView_MPIAIJ_ASCIIorDraworSocket(mat,viewer);CHKERRQ(ierr);
9955cd90555SBarry Smith   } else {
99629bbc08cSBarry Smith     SETERRQ1(1,"Viewer type %s not supported by MPIAIJ matrices",((PetscObject)viewer)->type_name);
997416022c9SBarry Smith   }
9983a40ed3dSBarry Smith   PetscFunctionReturn(0);
999416022c9SBarry Smith }
1000416022c9SBarry Smith 
10011eb62cbbSBarry Smith 
1002c14dc6b6SHong Zhang 
10034a2ae208SSatish Balay #undef __FUNCT__
10044a2ae208SSatish Balay #define __FUNCT__ "MatRelax_MPIAIJ"
1005c14dc6b6SHong Zhang int MatRelax_MPIAIJ(Mat matin,Vec bb,PetscReal omega,MatSORType flag,PetscReal fshift,int its,int lits,Vec xx)
10068a729477SBarry Smith {
100744a69424SLois Curfman McInnes   Mat_MPIAIJ   *mat = (Mat_MPIAIJ*)matin->data;
1008c14dc6b6SHong Zhang   int          ierr;
1009c14dc6b6SHong Zhang   Vec          bb1;
1010a6c309e7SHong Zhang   PetscScalar  mone=-1.0;
10118a729477SBarry Smith 
10123a40ed3dSBarry Smith   PetscFunctionBegin;
101391723122SBarry Smith   if (its <= 0 || lits <= 0) SETERRQ2(PETSC_ERR_ARG_WRONG,"Relaxation requires global its %d and local its %d both positive",its,lits);
1014c14dc6b6SHong Zhang 
1015c14dc6b6SHong Zhang   ierr = VecDuplicate(bb,&bb1);CHKERRQ(ierr);
10162798e883SHong Zhang 
1017c16cb8f2SBarry Smith   if ((flag & SOR_LOCAL_SYMMETRIC_SWEEP) == SOR_LOCAL_SYMMETRIC_SWEEP){
1018da3a660dSBarry Smith     if (flag & SOR_ZERO_INITIAL_GUESS) {
1019bd3bf7d3SHong Zhang       ierr = (*mat->A->ops->relax)(mat->A,bb,omega,flag,fshift,lits,lits,xx);CHKERRQ(ierr);
10202798e883SHong Zhang       its--;
1021da3a660dSBarry Smith     }
10222798e883SHong Zhang 
10232798e883SHong Zhang     while (its--) {
10243a40ed3dSBarry Smith       ierr = VecScatterBegin(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr);
10253a40ed3dSBarry Smith       ierr = VecScatterEnd(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr);
10262798e883SHong Zhang 
1027c14dc6b6SHong Zhang       /* update rhs: bb1 = bb - B*x */
1028c14dc6b6SHong Zhang       ierr = VecScale(&mone,mat->lvec);CHKERRQ(ierr);
1029c14dc6b6SHong Zhang       ierr = (*mat->B->ops->multadd)(mat->B,mat->lvec,bb,bb1);CHKERRQ(ierr);
10302798e883SHong Zhang 
1031c14dc6b6SHong Zhang       /* local sweep */
1032bd3bf7d3SHong Zhang       ierr = (*mat->A->ops->relax)(mat->A,bb1,omega,SOR_SYMMETRIC_SWEEP,fshift,lits,lits,xx);
1033c14dc6b6SHong Zhang       CHKERRQ(ierr);
10342798e883SHong Zhang     }
10353a40ed3dSBarry Smith   } else if (flag & SOR_LOCAL_FORWARD_SWEEP){
1036da3a660dSBarry Smith     if (flag & SOR_ZERO_INITIAL_GUESS) {
1037c14dc6b6SHong Zhang       ierr = (*mat->A->ops->relax)(mat->A,bb,omega,flag,fshift,lits,PETSC_NULL,xx);CHKERRQ(ierr);
10382798e883SHong Zhang       its--;
1039da3a660dSBarry Smith     }
10402798e883SHong Zhang     while (its--) {
10413a40ed3dSBarry Smith       ierr = VecScatterBegin(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr);
10423a40ed3dSBarry Smith       ierr = VecScatterEnd(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr);
10432798e883SHong Zhang 
1044c14dc6b6SHong Zhang       /* update rhs: bb1 = bb - B*x */
1045c14dc6b6SHong Zhang       ierr = VecScale(&mone,mat->lvec);CHKERRQ(ierr);
1046c14dc6b6SHong Zhang       ierr = (*mat->B->ops->multadd)(mat->B,mat->lvec,bb,bb1);CHKERRQ(ierr);
1047c14dc6b6SHong Zhang 
1048c14dc6b6SHong Zhang       /* local sweep */
1049a6c309e7SHong Zhang       ierr = (*mat->A->ops->relax)(mat->A,bb1,omega,SOR_FORWARD_SWEEP,fshift,lits,PETSC_NULL,xx);
1050c14dc6b6SHong Zhang       CHKERRQ(ierr);
10512798e883SHong Zhang     }
10523a40ed3dSBarry Smith   } else if (flag & SOR_LOCAL_BACKWARD_SWEEP){
1053da3a660dSBarry Smith     if (flag & SOR_ZERO_INITIAL_GUESS) {
1054c14dc6b6SHong Zhang       ierr = (*mat->A->ops->relax)(mat->A,bb,omega,flag,fshift,lits,PETSC_NULL,xx);CHKERRQ(ierr);
10552798e883SHong Zhang       its--;
1056da3a660dSBarry Smith     }
10572798e883SHong Zhang     while (its--) {
10582e8a6d31SBarry Smith       ierr = VecScatterBegin(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr);
10592e8a6d31SBarry Smith       ierr = VecScatterEnd(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr);
10602798e883SHong Zhang 
1061c14dc6b6SHong Zhang       /* update rhs: bb1 = bb - B*x */
1062c14dc6b6SHong Zhang       ierr = VecScale(&mone,mat->lvec);CHKERRQ(ierr);
1063c14dc6b6SHong Zhang       ierr = (*mat->B->ops->multadd)(mat->B,mat->lvec,bb,bb1);CHKERRQ(ierr);
10642798e883SHong Zhang 
1065c14dc6b6SHong Zhang       /* local sweep */
1066a6c309e7SHong Zhang       ierr = (*mat->A->ops->relax)(mat->A,bb1,omega,SOR_BACKWARD_SWEEP,fshift,lits,PETSC_NULL,xx);
1067c14dc6b6SHong Zhang       CHKERRQ(ierr);
10682798e883SHong Zhang     }
10693a40ed3dSBarry Smith   } else {
107029bbc08cSBarry Smith     SETERRQ(PETSC_ERR_SUP,"Parallel SOR not supported");
1071c16cb8f2SBarry Smith   }
1072c14dc6b6SHong Zhang 
1073c14dc6b6SHong Zhang   ierr = VecDestroy(bb1);CHKERRQ(ierr);
10743a40ed3dSBarry Smith   PetscFunctionReturn(0);
10758a729477SBarry Smith }
1076a66be287SLois Curfman McInnes 
10774a2ae208SSatish Balay #undef __FUNCT__
10784a2ae208SSatish Balay #define __FUNCT__ "MatGetInfo_MPIAIJ"
10798f6be9afSLois Curfman McInnes int MatGetInfo_MPIAIJ(Mat matin,MatInfoType flag,MatInfo *info)
1080a66be287SLois Curfman McInnes {
1081a66be287SLois Curfman McInnes   Mat_MPIAIJ *mat = (Mat_MPIAIJ*)matin->data;
1082a66be287SLois Curfman McInnes   Mat        A = mat->A,B = mat->B;
10834e220ebcSLois Curfman McInnes   int        ierr;
1084329f5518SBarry Smith   PetscReal  isend[5],irecv[5];
1085a66be287SLois Curfman McInnes 
10863a40ed3dSBarry Smith   PetscFunctionBegin;
10874e220ebcSLois Curfman McInnes   info->block_size     = 1.0;
10884e220ebcSLois Curfman McInnes   ierr = MatGetInfo(A,MAT_LOCAL,info);CHKERRQ(ierr);
10894e220ebcSLois Curfman McInnes   isend[0] = info->nz_used; isend[1] = info->nz_allocated; isend[2] = info->nz_unneeded;
10904e220ebcSLois Curfman McInnes   isend[3] = info->memory;  isend[4] = info->mallocs;
10914e220ebcSLois Curfman McInnes   ierr = MatGetInfo(B,MAT_LOCAL,info);CHKERRQ(ierr);
10924e220ebcSLois Curfman McInnes   isend[0] += info->nz_used; isend[1] += info->nz_allocated; isend[2] += info->nz_unneeded;
10934e220ebcSLois Curfman McInnes   isend[3] += info->memory;  isend[4] += info->mallocs;
1094a66be287SLois Curfman McInnes   if (flag == MAT_LOCAL) {
10954e220ebcSLois Curfman McInnes     info->nz_used      = isend[0];
10964e220ebcSLois Curfman McInnes     info->nz_allocated = isend[1];
10974e220ebcSLois Curfman McInnes     info->nz_unneeded  = isend[2];
10984e220ebcSLois Curfman McInnes     info->memory       = isend[3];
10994e220ebcSLois Curfman McInnes     info->mallocs      = isend[4];
1100a66be287SLois Curfman McInnes   } else if (flag == MAT_GLOBAL_MAX) {
1101d7d1e502SBarry Smith     ierr = MPI_Allreduce(isend,irecv,5,MPIU_REAL,MPI_MAX,matin->comm);CHKERRQ(ierr);
11024e220ebcSLois Curfman McInnes     info->nz_used      = irecv[0];
11034e220ebcSLois Curfman McInnes     info->nz_allocated = irecv[1];
11044e220ebcSLois Curfman McInnes     info->nz_unneeded  = irecv[2];
11054e220ebcSLois Curfman McInnes     info->memory       = irecv[3];
11064e220ebcSLois Curfman McInnes     info->mallocs      = irecv[4];
1107a66be287SLois Curfman McInnes   } else if (flag == MAT_GLOBAL_SUM) {
1108d7d1e502SBarry Smith     ierr = MPI_Allreduce(isend,irecv,5,MPIU_REAL,MPI_SUM,matin->comm);CHKERRQ(ierr);
11094e220ebcSLois Curfman McInnes     info->nz_used      = irecv[0];
11104e220ebcSLois Curfman McInnes     info->nz_allocated = irecv[1];
11114e220ebcSLois Curfman McInnes     info->nz_unneeded  = irecv[2];
11124e220ebcSLois Curfman McInnes     info->memory       = irecv[3];
11134e220ebcSLois Curfman McInnes     info->mallocs      = irecv[4];
1114a66be287SLois Curfman McInnes   }
11154e220ebcSLois Curfman McInnes   info->fill_ratio_given  = 0; /* no parallel LU/ILU/Cholesky */
11164e220ebcSLois Curfman McInnes   info->fill_ratio_needed = 0;
11174e220ebcSLois Curfman McInnes   info->factor_mallocs    = 0;
1118273d9f13SBarry Smith   info->rows_global       = (double)matin->M;
1119273d9f13SBarry Smith   info->columns_global    = (double)matin->N;
1120273d9f13SBarry Smith   info->rows_local        = (double)matin->m;
1121273d9f13SBarry Smith   info->columns_local     = (double)matin->N;
11224e220ebcSLois Curfman McInnes 
11233a40ed3dSBarry Smith   PetscFunctionReturn(0);
1124a66be287SLois Curfman McInnes }
1125a66be287SLois Curfman McInnes 
11264a2ae208SSatish Balay #undef __FUNCT__
11274a2ae208SSatish Balay #define __FUNCT__ "MatSetOption_MPIAIJ"
11288f6be9afSLois Curfman McInnes int MatSetOption_MPIAIJ(Mat A,MatOption op)
1129c74985f6SBarry Smith {
1130c0bbcb79SLois Curfman McInnes   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
11311dee9f54SBarry Smith   int        ierr;
1132c74985f6SBarry Smith 
11333a40ed3dSBarry Smith   PetscFunctionBegin;
113412c028f9SKris Buschelman   switch (op) {
113512c028f9SKris Buschelman   case MAT_NO_NEW_NONZERO_LOCATIONS:
113612c028f9SKris Buschelman   case MAT_YES_NEW_NONZERO_LOCATIONS:
113712c028f9SKris Buschelman   case MAT_COLUMNS_UNSORTED:
113812c028f9SKris Buschelman   case MAT_COLUMNS_SORTED:
113912c028f9SKris Buschelman   case MAT_NEW_NONZERO_ALLOCATION_ERR:
114012c028f9SKris Buschelman   case MAT_KEEP_ZEROED_ROWS:
114112c028f9SKris Buschelman   case MAT_NEW_NONZERO_LOCATION_ERR:
114212c028f9SKris Buschelman   case MAT_USE_INODES:
114312c028f9SKris Buschelman   case MAT_DO_NOT_USE_INODES:
114412c028f9SKris Buschelman   case MAT_IGNORE_ZERO_ENTRIES:
11451dee9f54SBarry Smith     ierr = MatSetOption(a->A,op);CHKERRQ(ierr);
11461dee9f54SBarry Smith     ierr = MatSetOption(a->B,op);CHKERRQ(ierr);
114712c028f9SKris Buschelman     break;
114812c028f9SKris Buschelman   case MAT_ROW_ORIENTED:
11497c922b88SBarry Smith     a->roworiented = PETSC_TRUE;
11501dee9f54SBarry Smith     ierr = MatSetOption(a->A,op);CHKERRQ(ierr);
11511dee9f54SBarry Smith     ierr = MatSetOption(a->B,op);CHKERRQ(ierr);
115212c028f9SKris Buschelman     break;
115312c028f9SKris Buschelman   case MAT_ROWS_SORTED:
115412c028f9SKris Buschelman   case MAT_ROWS_UNSORTED:
115512c028f9SKris Buschelman   case MAT_YES_NEW_DIAGONALS:
1156b0a32e0cSBarry Smith     PetscLogInfo(A,"MatSetOption_MPIAIJ:Option ignored\n");
115712c028f9SKris Buschelman     break;
115812c028f9SKris Buschelman   case MAT_COLUMN_ORIENTED:
11597c922b88SBarry Smith     a->roworiented = PETSC_FALSE;
11601dee9f54SBarry Smith     ierr = MatSetOption(a->A,op);CHKERRQ(ierr);
11611dee9f54SBarry Smith     ierr = MatSetOption(a->B,op);CHKERRQ(ierr);
116212c028f9SKris Buschelman     break;
116312c028f9SKris Buschelman   case MAT_IGNORE_OFF_PROC_ENTRIES:
11647c922b88SBarry Smith     a->donotstash = PETSC_TRUE;
116512c028f9SKris Buschelman     break;
116612c028f9SKris Buschelman   case MAT_NO_NEW_DIAGONALS:
116729bbc08cSBarry Smith     SETERRQ(PETSC_ERR_SUP,"MAT_NO_NEW_DIAGONALS");
116812c028f9SKris Buschelman   default:
116929bbc08cSBarry Smith     SETERRQ(PETSC_ERR_SUP,"unknown option");
11703a40ed3dSBarry Smith   }
11713a40ed3dSBarry Smith   PetscFunctionReturn(0);
1172c74985f6SBarry Smith }
1173c74985f6SBarry Smith 
11744a2ae208SSatish Balay #undef __FUNCT__
11754a2ae208SSatish Balay #define __FUNCT__ "MatGetRow_MPIAIJ"
117687828ca2SBarry Smith int MatGetRow_MPIAIJ(Mat matin,int row,int *nz,int **idx,PetscScalar **v)
117739e00950SLois Curfman McInnes {
1178154123eaSLois Curfman McInnes   Mat_MPIAIJ   *mat = (Mat_MPIAIJ*)matin->data;
117987828ca2SBarry Smith   PetscScalar  *vworkA,*vworkB,**pvA,**pvB,*v_p;
1180154123eaSLois Curfman McInnes   int          i,ierr,*cworkA,*cworkB,**pcA,**pcB,cstart = mat->cstart;
1181154123eaSLois Curfman McInnes   int          nztot,nzA,nzB,lrow,rstart = mat->rstart,rend = mat->rend;
118270f0671dSBarry Smith   int          *cmap,*idx_p;
118339e00950SLois Curfman McInnes 
11843a40ed3dSBarry Smith   PetscFunctionBegin;
118529bbc08cSBarry Smith   if (mat->getrowactive == PETSC_TRUE) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Already active");
11867a0afa10SBarry Smith   mat->getrowactive = PETSC_TRUE;
11877a0afa10SBarry Smith 
118870f0671dSBarry Smith   if (!mat->rowvalues && (idx || v)) {
11897a0afa10SBarry Smith     /*
11907a0afa10SBarry Smith         allocate enough space to hold information from the longest row.
11917a0afa10SBarry Smith     */
11927a0afa10SBarry Smith     Mat_SeqAIJ *Aa = (Mat_SeqAIJ*)mat->A->data,*Ba = (Mat_SeqAIJ*)mat->B->data;
1193273d9f13SBarry Smith     int     max = 1,tmp;
1194273d9f13SBarry Smith     for (i=0; i<matin->m; i++) {
11957a0afa10SBarry Smith       tmp = Aa->i[i+1] - Aa->i[i] + Ba->i[i+1] - Ba->i[i];
11967a0afa10SBarry Smith       if (max < tmp) { max = tmp; }
11977a0afa10SBarry Smith     }
119887828ca2SBarry Smith     ierr = PetscMalloc(max*(sizeof(int)+sizeof(PetscScalar)),&mat->rowvalues);CHKERRQ(ierr);
11997a0afa10SBarry Smith     mat->rowindices = (int*)(mat->rowvalues + max);
12007a0afa10SBarry Smith   }
12017a0afa10SBarry Smith 
120229bbc08cSBarry Smith   if (row < rstart || row >= rend) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Only local rows")
1203abc0e9e4SLois Curfman McInnes   lrow = row - rstart;
120439e00950SLois Curfman McInnes 
1205154123eaSLois Curfman McInnes   pvA = &vworkA; pcA = &cworkA; pvB = &vworkB; pcB = &cworkB;
1206154123eaSLois Curfman McInnes   if (!v)   {pvA = 0; pvB = 0;}
1207154123eaSLois Curfman McInnes   if (!idx) {pcA = 0; if (!v) pcB = 0;}
1208f830108cSBarry Smith   ierr = (*mat->A->ops->getrow)(mat->A,lrow,&nzA,pcA,pvA);CHKERRQ(ierr);
1209f830108cSBarry Smith   ierr = (*mat->B->ops->getrow)(mat->B,lrow,&nzB,pcB,pvB);CHKERRQ(ierr);
1210154123eaSLois Curfman McInnes   nztot = nzA + nzB;
1211154123eaSLois Curfman McInnes 
121270f0671dSBarry Smith   cmap  = mat->garray;
1213154123eaSLois Curfman McInnes   if (v  || idx) {
1214154123eaSLois Curfman McInnes     if (nztot) {
1215154123eaSLois Curfman McInnes       /* Sort by increasing column numbers, assuming A and B already sorted */
121670f0671dSBarry Smith       int imark = -1;
1217154123eaSLois Curfman McInnes       if (v) {
121870f0671dSBarry Smith         *v = v_p = mat->rowvalues;
121939e00950SLois Curfman McInnes         for (i=0; i<nzB; i++) {
122070f0671dSBarry Smith           if (cmap[cworkB[i]] < cstart)   v_p[i] = vworkB[i];
1221154123eaSLois Curfman McInnes           else break;
1222154123eaSLois Curfman McInnes         }
1223154123eaSLois Curfman McInnes         imark = i;
122470f0671dSBarry Smith         for (i=0; i<nzA; i++)     v_p[imark+i] = vworkA[i];
122570f0671dSBarry Smith         for (i=imark; i<nzB; i++) v_p[nzA+i]   = vworkB[i];
1226154123eaSLois Curfman McInnes       }
1227154123eaSLois Curfman McInnes       if (idx) {
122870f0671dSBarry Smith         *idx = idx_p = mat->rowindices;
122970f0671dSBarry Smith         if (imark > -1) {
123070f0671dSBarry Smith           for (i=0; i<imark; i++) {
123170f0671dSBarry Smith             idx_p[i] = cmap[cworkB[i]];
123270f0671dSBarry Smith           }
123370f0671dSBarry Smith         } else {
1234154123eaSLois Curfman McInnes           for (i=0; i<nzB; i++) {
123570f0671dSBarry Smith             if (cmap[cworkB[i]] < cstart)   idx_p[i] = cmap[cworkB[i]];
1236154123eaSLois Curfman McInnes             else break;
1237154123eaSLois Curfman McInnes           }
1238154123eaSLois Curfman McInnes           imark = i;
123970f0671dSBarry Smith         }
124070f0671dSBarry Smith         for (i=0; i<nzA; i++)     idx_p[imark+i] = cstart + cworkA[i];
124170f0671dSBarry Smith         for (i=imark; i<nzB; i++) idx_p[nzA+i]   = cmap[cworkB[i]];
124239e00950SLois Curfman McInnes       }
12433f97c4b0SBarry Smith     } else {
12441ca473b0SSatish Balay       if (idx) *idx = 0;
12451ca473b0SSatish Balay       if (v)   *v   = 0;
12461ca473b0SSatish Balay     }
1247154123eaSLois Curfman McInnes   }
124839e00950SLois Curfman McInnes   *nz = nztot;
1249f830108cSBarry Smith   ierr = (*mat->A->ops->restorerow)(mat->A,lrow,&nzA,pcA,pvA);CHKERRQ(ierr);
1250f830108cSBarry Smith   ierr = (*mat->B->ops->restorerow)(mat->B,lrow,&nzB,pcB,pvB);CHKERRQ(ierr);
12513a40ed3dSBarry Smith   PetscFunctionReturn(0);
125239e00950SLois Curfman McInnes }
125339e00950SLois Curfman McInnes 
12544a2ae208SSatish Balay #undef __FUNCT__
12554a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRow_MPIAIJ"
125687828ca2SBarry Smith int MatRestoreRow_MPIAIJ(Mat mat,int row,int *nz,int **idx,PetscScalar **v)
125739e00950SLois Curfman McInnes {
12587a0afa10SBarry Smith   Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data;
12593a40ed3dSBarry Smith 
12603a40ed3dSBarry Smith   PetscFunctionBegin;
12617a0afa10SBarry Smith   if (aij->getrowactive == PETSC_FALSE) {
126229bbc08cSBarry Smith     SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"MatGetRow not called");
12637a0afa10SBarry Smith   }
12647a0afa10SBarry Smith   aij->getrowactive = PETSC_FALSE;
12653a40ed3dSBarry Smith   PetscFunctionReturn(0);
126639e00950SLois Curfman McInnes }
126739e00950SLois Curfman McInnes 
12684a2ae208SSatish Balay #undef __FUNCT__
12694a2ae208SSatish Balay #define __FUNCT__ "MatNorm_MPIAIJ"
1270329f5518SBarry Smith int MatNorm_MPIAIJ(Mat mat,NormType type,PetscReal *norm)
1271855ac2c5SLois Curfman McInnes {
1272855ac2c5SLois Curfman McInnes   Mat_MPIAIJ   *aij = (Mat_MPIAIJ*)mat->data;
1273ec8511deSBarry Smith   Mat_SeqAIJ   *amat = (Mat_SeqAIJ*)aij->A->data,*bmat = (Mat_SeqAIJ*)aij->B->data;
1274bfec09a0SHong Zhang   int          ierr,i,j,cstart = aij->cstart;
1275329f5518SBarry Smith   PetscReal    sum = 0.0;
127687828ca2SBarry Smith   PetscScalar  *v;
127704ca555eSLois Curfman McInnes 
12783a40ed3dSBarry Smith   PetscFunctionBegin;
127917699dbbSLois Curfman McInnes   if (aij->size == 1) {
128014183eadSLois Curfman McInnes     ierr =  MatNorm(aij->A,type,norm);CHKERRQ(ierr);
128137fa93a5SLois Curfman McInnes   } else {
128204ca555eSLois Curfman McInnes     if (type == NORM_FROBENIUS) {
128304ca555eSLois Curfman McInnes       v = amat->a;
128404ca555eSLois Curfman McInnes       for (i=0; i<amat->nz; i++) {
1285aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
1286329f5518SBarry Smith         sum += PetscRealPart(PetscConj(*v)*(*v)); v++;
128704ca555eSLois Curfman McInnes #else
128804ca555eSLois Curfman McInnes         sum += (*v)*(*v); v++;
128904ca555eSLois Curfman McInnes #endif
129004ca555eSLois Curfman McInnes       }
129104ca555eSLois Curfman McInnes       v = bmat->a;
129204ca555eSLois Curfman McInnes       for (i=0; i<bmat->nz; i++) {
1293aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX)
1294329f5518SBarry Smith         sum += PetscRealPart(PetscConj(*v)*(*v)); v++;
129504ca555eSLois Curfman McInnes #else
129604ca555eSLois Curfman McInnes         sum += (*v)*(*v); v++;
129704ca555eSLois Curfman McInnes #endif
129804ca555eSLois Curfman McInnes       }
1299d7d1e502SBarry Smith       ierr = MPI_Allreduce(&sum,norm,1,MPIU_REAL,MPI_SUM,mat->comm);CHKERRQ(ierr);
130004ca555eSLois Curfman McInnes       *norm = sqrt(*norm);
13013a40ed3dSBarry Smith     } else if (type == NORM_1) { /* max column norm */
1302329f5518SBarry Smith       PetscReal *tmp,*tmp2;
130304ca555eSLois Curfman McInnes       int    *jj,*garray = aij->garray;
1304b0a32e0cSBarry Smith       ierr = PetscMalloc((mat->N+1)*sizeof(PetscReal),&tmp);CHKERRQ(ierr);
1305b0a32e0cSBarry Smith       ierr = PetscMalloc((mat->N+1)*sizeof(PetscReal),&tmp2);CHKERRQ(ierr);
1306273d9f13SBarry Smith       ierr = PetscMemzero(tmp,mat->N*sizeof(PetscReal));CHKERRQ(ierr);
130704ca555eSLois Curfman McInnes       *norm = 0.0;
130804ca555eSLois Curfman McInnes       v = amat->a; jj = amat->j;
130904ca555eSLois Curfman McInnes       for (j=0; j<amat->nz; j++) {
1310bfec09a0SHong Zhang         tmp[cstart + *jj++ ] += PetscAbsScalar(*v);  v++;
131104ca555eSLois Curfman McInnes       }
131204ca555eSLois Curfman McInnes       v = bmat->a; jj = bmat->j;
131304ca555eSLois Curfman McInnes       for (j=0; j<bmat->nz; j++) {
1314bfec09a0SHong Zhang         tmp[garray[*jj++]] += PetscAbsScalar(*v); v++;
131504ca555eSLois Curfman McInnes       }
1316d7d1e502SBarry Smith       ierr = MPI_Allreduce(tmp,tmp2,mat->N,MPIU_REAL,MPI_SUM,mat->comm);CHKERRQ(ierr);
1317273d9f13SBarry Smith       for (j=0; j<mat->N; j++) {
131804ca555eSLois Curfman McInnes         if (tmp2[j] > *norm) *norm = tmp2[j];
131904ca555eSLois Curfman McInnes       }
1320606d414cSSatish Balay       ierr = PetscFree(tmp);CHKERRQ(ierr);
1321606d414cSSatish Balay       ierr = PetscFree(tmp2);CHKERRQ(ierr);
13223a40ed3dSBarry Smith     } else if (type == NORM_INFINITY) { /* max row norm */
1323329f5518SBarry Smith       PetscReal ntemp = 0.0;
1324273d9f13SBarry Smith       for (j=0; j<aij->A->m; j++) {
1325bfec09a0SHong Zhang         v = amat->a + amat->i[j];
132604ca555eSLois Curfman McInnes         sum = 0.0;
132704ca555eSLois Curfman McInnes         for (i=0; i<amat->i[j+1]-amat->i[j]; i++) {
1328cddf8d76SBarry Smith           sum += PetscAbsScalar(*v); v++;
132904ca555eSLois Curfman McInnes         }
1330bfec09a0SHong Zhang         v = bmat->a + bmat->i[j];
133104ca555eSLois Curfman McInnes         for (i=0; i<bmat->i[j+1]-bmat->i[j]; i++) {
1332cddf8d76SBarry Smith           sum += PetscAbsScalar(*v); v++;
133304ca555eSLois Curfman McInnes         }
1334515d9167SLois Curfman McInnes         if (sum > ntemp) ntemp = sum;
133504ca555eSLois Curfman McInnes       }
1336d7d1e502SBarry Smith       ierr = MPI_Allreduce(&ntemp,norm,1,MPIU_REAL,MPI_MAX,mat->comm);CHKERRQ(ierr);
1337ca161407SBarry Smith     } else {
133829bbc08cSBarry Smith       SETERRQ(PETSC_ERR_SUP,"No support for two norm");
133904ca555eSLois Curfman McInnes     }
134037fa93a5SLois Curfman McInnes   }
13413a40ed3dSBarry Smith   PetscFunctionReturn(0);
1342855ac2c5SLois Curfman McInnes }
1343855ac2c5SLois Curfman McInnes 
13444a2ae208SSatish Balay #undef __FUNCT__
13454a2ae208SSatish Balay #define __FUNCT__ "MatTranspose_MPIAIJ"
13468f6be9afSLois Curfman McInnes int MatTranspose_MPIAIJ(Mat A,Mat *matout)
1347b7c46309SBarry Smith {
1348b7c46309SBarry Smith   Mat_MPIAIJ   *a = (Mat_MPIAIJ*)A->data;
1349dbb450caSBarry Smith   Mat_SeqAIJ   *Aloc = (Mat_SeqAIJ*)a->A->data;
1350bfec09a0SHong Zhang   int          ierr;
1351273d9f13SBarry Smith   int          M = A->M,N = A->N,m,*ai,*aj,row,*cols,i,*ct;
13523a40ed3dSBarry Smith   Mat          B;
135387828ca2SBarry Smith   PetscScalar  *array;
1354b7c46309SBarry Smith 
13553a40ed3dSBarry Smith   PetscFunctionBegin;
13567c922b88SBarry Smith   if (!matout && M != N) {
135729bbc08cSBarry Smith     SETERRQ(PETSC_ERR_ARG_SIZ,"Square matrix only for in-place");
1358d4bb536fSBarry Smith   }
1359d4bb536fSBarry Smith 
1360273d9f13SBarry Smith   ierr = MatCreateMPIAIJ(A->comm,A->n,A->m,N,M,0,PETSC_NULL,0,PETSC_NULL,&B);CHKERRQ(ierr);
1361b7c46309SBarry Smith 
1362b7c46309SBarry Smith   /* copy over the A part */
1363ec8511deSBarry Smith   Aloc = (Mat_SeqAIJ*)a->A->data;
1364273d9f13SBarry Smith   m = a->A->m; ai = Aloc->i; aj = Aloc->j; array = Aloc->a;
1365b7c46309SBarry Smith   row = a->rstart;
1366bfec09a0SHong Zhang   for (i=0; i<ai[m]; i++) {aj[i] += a->cstart ;}
1367b7c46309SBarry Smith   for (i=0; i<m; i++) {
1368416022c9SBarry Smith     ierr = MatSetValues(B,ai[i+1]-ai[i],aj,1,&row,array,INSERT_VALUES);CHKERRQ(ierr);
1369b7c46309SBarry Smith     row++; array += ai[i+1]-ai[i]; aj += ai[i+1]-ai[i];
1370b7c46309SBarry Smith   }
1371b7c46309SBarry Smith   aj = Aloc->j;
1372bfec09a0SHong Zhang   for (i=0; i<ai[m]; i++) {aj[i] -= a->cstart ;}
1373b7c46309SBarry Smith 
1374b7c46309SBarry Smith   /* copy over the B part */
1375ec8511deSBarry Smith   Aloc = (Mat_SeqAIJ*)a->B->data;
1376273d9f13SBarry Smith   m = a->B->m;  ai = Aloc->i; aj = Aloc->j; array = Aloc->a;
1377b7c46309SBarry Smith   row  = a->rstart;
1378bfec09a0SHong Zhang   ierr = PetscMalloc((1+ai[m])*sizeof(int),&cols);CHKERRQ(ierr);
1379b0a32e0cSBarry Smith   ct   = cols;
1380bfec09a0SHong Zhang   for (i=0; i<ai[m]; i++) {cols[i] = a->garray[aj[i]];}
1381b7c46309SBarry Smith   for (i=0; i<m; i++) {
1382416022c9SBarry Smith     ierr = MatSetValues(B,ai[i+1]-ai[i],cols,1,&row,array,INSERT_VALUES);CHKERRQ(ierr);
1383b7c46309SBarry Smith     row++; array += ai[i+1]-ai[i]; cols += ai[i+1]-ai[i];
1384b7c46309SBarry Smith   }
1385606d414cSSatish Balay   ierr = PetscFree(ct);CHKERRQ(ierr);
13866d4a8577SBarry Smith   ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
13876d4a8577SBarry Smith   ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
13887c922b88SBarry Smith   if (matout) {
13890de55854SLois Curfman McInnes     *matout = B;
13900de55854SLois Curfman McInnes   } else {
1391273d9f13SBarry Smith     ierr = MatHeaderCopy(A,B);CHKERRQ(ierr);
13920de55854SLois Curfman McInnes   }
13933a40ed3dSBarry Smith   PetscFunctionReturn(0);
1394b7c46309SBarry Smith }
1395b7c46309SBarry Smith 
13964a2ae208SSatish Balay #undef __FUNCT__
13974a2ae208SSatish Balay #define __FUNCT__ "MatDiagonalScale_MPIAIJ"
13984b967eb1SSatish Balay int MatDiagonalScale_MPIAIJ(Mat mat,Vec ll,Vec rr)
1399a008b906SSatish Balay {
14004b967eb1SSatish Balay   Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data;
14014b967eb1SSatish Balay   Mat        a = aij->A,b = aij->B;
1402a008b906SSatish Balay   int        ierr,s1,s2,s3;
1403a008b906SSatish Balay 
14043a40ed3dSBarry Smith   PetscFunctionBegin;
14054b967eb1SSatish Balay   ierr = MatGetLocalSize(mat,&s2,&s3);CHKERRQ(ierr);
14064b967eb1SSatish Balay   if (rr) {
1407e1311b90SBarry Smith     ierr = VecGetLocalSize(rr,&s1);CHKERRQ(ierr);
140829bbc08cSBarry Smith     if (s1!=s3) SETERRQ(PETSC_ERR_ARG_SIZ,"right vector non-conforming local size");
14094b967eb1SSatish Balay     /* Overlap communication with computation. */
141043a90d84SBarry Smith     ierr = VecScatterBegin(rr,aij->lvec,INSERT_VALUES,SCATTER_FORWARD,aij->Mvctx);CHKERRQ(ierr);
1411a008b906SSatish Balay   }
14124b967eb1SSatish Balay   if (ll) {
1413e1311b90SBarry Smith     ierr = VecGetLocalSize(ll,&s1);CHKERRQ(ierr);
141429bbc08cSBarry Smith     if (s1!=s2) SETERRQ(PETSC_ERR_ARG_SIZ,"left vector non-conforming local size");
1415f830108cSBarry Smith     ierr = (*b->ops->diagonalscale)(b,ll,0);CHKERRQ(ierr);
14164b967eb1SSatish Balay   }
14174b967eb1SSatish Balay   /* scale  the diagonal block */
1418f830108cSBarry Smith   ierr = (*a->ops->diagonalscale)(a,ll,rr);CHKERRQ(ierr);
14194b967eb1SSatish Balay 
14204b967eb1SSatish Balay   if (rr) {
14214b967eb1SSatish Balay     /* Do a scatter end and then right scale the off-diagonal block */
142243a90d84SBarry Smith     ierr = VecScatterEnd(rr,aij->lvec,INSERT_VALUES,SCATTER_FORWARD,aij->Mvctx);CHKERRQ(ierr);
1423f830108cSBarry Smith     ierr = (*b->ops->diagonalscale)(b,0,aij->lvec);CHKERRQ(ierr);
14244b967eb1SSatish Balay   }
14254b967eb1SSatish Balay 
14263a40ed3dSBarry Smith   PetscFunctionReturn(0);
1427a008b906SSatish Balay }
1428a008b906SSatish Balay 
1429a008b906SSatish Balay 
14304a2ae208SSatish Balay #undef __FUNCT__
14314a2ae208SSatish Balay #define __FUNCT__ "MatPrintHelp_MPIAIJ"
14328f6be9afSLois Curfman McInnes int MatPrintHelp_MPIAIJ(Mat A)
1433682d7d0cSBarry Smith {
1434682d7d0cSBarry Smith   Mat_MPIAIJ *a   = (Mat_MPIAIJ*)A->data;
14353a40ed3dSBarry Smith   int        ierr;
1436682d7d0cSBarry Smith 
14373a40ed3dSBarry Smith   PetscFunctionBegin;
14383a40ed3dSBarry Smith   if (!a->rank) {
14393a40ed3dSBarry Smith     ierr = MatPrintHelp_SeqAIJ(a->A);CHKERRQ(ierr);
14403a40ed3dSBarry Smith   }
14413a40ed3dSBarry Smith   PetscFunctionReturn(0);
1442682d7d0cSBarry Smith }
1443682d7d0cSBarry Smith 
14444a2ae208SSatish Balay #undef __FUNCT__
14454a2ae208SSatish Balay #define __FUNCT__ "MatGetBlockSize_MPIAIJ"
14468f6be9afSLois Curfman McInnes int MatGetBlockSize_MPIAIJ(Mat A,int *bs)
14475a838052SSatish Balay {
14483a40ed3dSBarry Smith   PetscFunctionBegin;
14495a838052SSatish Balay   *bs = 1;
14503a40ed3dSBarry Smith   PetscFunctionReturn(0);
14515a838052SSatish Balay }
14524a2ae208SSatish Balay #undef __FUNCT__
14534a2ae208SSatish Balay #define __FUNCT__ "MatSetUnfactored_MPIAIJ"
14548f6be9afSLois Curfman McInnes int MatSetUnfactored_MPIAIJ(Mat A)
1455bb5a7306SBarry Smith {
1456bb5a7306SBarry Smith   Mat_MPIAIJ *a   = (Mat_MPIAIJ*)A->data;
1457bb5a7306SBarry Smith   int        ierr;
14583a40ed3dSBarry Smith 
14593a40ed3dSBarry Smith   PetscFunctionBegin;
1460bb5a7306SBarry Smith   ierr = MatSetUnfactored(a->A);CHKERRQ(ierr);
14613a40ed3dSBarry Smith   PetscFunctionReturn(0);
1462bb5a7306SBarry Smith }
1463bb5a7306SBarry Smith 
14644a2ae208SSatish Balay #undef __FUNCT__
14654a2ae208SSatish Balay #define __FUNCT__ "MatEqual_MPIAIJ"
1466d4bb536fSBarry Smith int MatEqual_MPIAIJ(Mat A,Mat B,PetscTruth *flag)
1467d4bb536fSBarry Smith {
1468d4bb536fSBarry Smith   Mat_MPIAIJ *matB = (Mat_MPIAIJ*)B->data,*matA = (Mat_MPIAIJ*)A->data;
1469d4bb536fSBarry Smith   Mat        a,b,c,d;
1470d4bb536fSBarry Smith   PetscTruth flg;
1471d4bb536fSBarry Smith   int        ierr;
1472d4bb536fSBarry Smith 
14733a40ed3dSBarry Smith   PetscFunctionBegin;
1474d4bb536fSBarry Smith   a = matA->A; b = matA->B;
1475d4bb536fSBarry Smith   c = matB->A; d = matB->B;
1476d4bb536fSBarry Smith 
1477d4bb536fSBarry Smith   ierr = MatEqual(a,c,&flg);CHKERRQ(ierr);
1478d4bb536fSBarry Smith   if (flg == PETSC_TRUE) {
1479d4bb536fSBarry Smith     ierr = MatEqual(b,d,&flg);CHKERRQ(ierr);
1480d4bb536fSBarry Smith   }
1481ca161407SBarry Smith   ierr = MPI_Allreduce(&flg,flag,1,MPI_INT,MPI_LAND,A->comm);CHKERRQ(ierr);
14823a40ed3dSBarry Smith   PetscFunctionReturn(0);
1483d4bb536fSBarry Smith }
1484d4bb536fSBarry Smith 
14854a2ae208SSatish Balay #undef __FUNCT__
14864a2ae208SSatish Balay #define __FUNCT__ "MatCopy_MPIAIJ"
1487cb5b572fSBarry Smith int MatCopy_MPIAIJ(Mat A,Mat B,MatStructure str)
1488cb5b572fSBarry Smith {
1489cb5b572fSBarry Smith   int        ierr;
1490cb5b572fSBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ *)A->data;
1491cb5b572fSBarry Smith   Mat_MPIAIJ *b = (Mat_MPIAIJ *)B->data;
1492cb5b572fSBarry Smith 
1493cb5b572fSBarry Smith   PetscFunctionBegin;
149433f4a19fSKris Buschelman   /* If the two matrices don't have the same copy implementation, they aren't compatible for fast copy. */
149533f4a19fSKris Buschelman   if ((str != SAME_NONZERO_PATTERN) || (A->ops->copy != B->ops->copy)) {
1496cb5b572fSBarry Smith     /* because of the column compression in the off-processor part of the matrix a->B,
1497cb5b572fSBarry Smith        the number of columns in a->B and b->B may be different, hence we cannot call
1498cb5b572fSBarry Smith        the MatCopy() directly on the two parts. If need be, we can provide a more
1499cb5b572fSBarry Smith        efficient copy than the MatCopy_Basic() by first uncompressing the a->B matrices
1500cb5b572fSBarry Smith        then copying the submatrices */
1501cb5b572fSBarry Smith     ierr = MatCopy_Basic(A,B,str);CHKERRQ(ierr);
1502cb5b572fSBarry Smith   } else {
1503cb5b572fSBarry Smith     ierr = MatCopy(a->A,b->A,str);CHKERRQ(ierr);
1504cb5b572fSBarry Smith     ierr = MatCopy(a->B,b->B,str);CHKERRQ(ierr);
1505cb5b572fSBarry Smith   }
1506cb5b572fSBarry Smith   PetscFunctionReturn(0);
1507cb5b572fSBarry Smith }
1508cb5b572fSBarry Smith 
15094a2ae208SSatish Balay #undef __FUNCT__
15104a2ae208SSatish Balay #define __FUNCT__ "MatSetUpPreallocation_MPIAIJ"
1511273d9f13SBarry Smith int MatSetUpPreallocation_MPIAIJ(Mat A)
1512273d9f13SBarry Smith {
1513273d9f13SBarry Smith   int        ierr;
1514273d9f13SBarry Smith 
1515273d9f13SBarry Smith   PetscFunctionBegin;
1516273d9f13SBarry Smith   ierr =  MatMPIAIJSetPreallocation(A,PETSC_DEFAULT,0,PETSC_DEFAULT,0);CHKERRQ(ierr);
1517273d9f13SBarry Smith   PetscFunctionReturn(0);
1518273d9f13SBarry Smith }
1519273d9f13SBarry Smith 
1520ac90fabeSBarry Smith #include "petscblaslapack.h"
1521ac90fabeSBarry Smith #undef __FUNCT__
1522ac90fabeSBarry Smith #define __FUNCT__ "MatAXPY_MPIAIJ"
1523268466fbSBarry Smith int MatAXPY_MPIAIJ(const PetscScalar a[],Mat X,Mat Y,MatStructure str)
1524ac90fabeSBarry Smith {
152524f910e3SHong Zhang   int        ierr,one=1,i;
1526ac90fabeSBarry Smith   Mat_MPIAIJ *xx = (Mat_MPIAIJ *)X->data,*yy = (Mat_MPIAIJ *)Y->data;
1527ac90fabeSBarry Smith   Mat_SeqAIJ *x,*y;
1528ac90fabeSBarry Smith 
1529ac90fabeSBarry Smith   PetscFunctionBegin;
1530ac90fabeSBarry Smith   if (str == SAME_NONZERO_PATTERN) {
1531ac90fabeSBarry Smith     x = (Mat_SeqAIJ *)xx->A->data;
1532ac90fabeSBarry Smith     y = (Mat_SeqAIJ *)yy->A->data;
1533268466fbSBarry Smith     BLaxpy_(&x->nz,(PetscScalar*)a,x->a,&one,y->a,&one);
1534ac90fabeSBarry Smith     x = (Mat_SeqAIJ *)xx->B->data;
1535ac90fabeSBarry Smith     y = (Mat_SeqAIJ *)yy->B->data;
1536268466fbSBarry Smith     BLaxpy_(&x->nz,(PetscScalar*)a,x->a,&one,y->a,&one);
1537a30b2313SHong Zhang   } else if (str == SUBSET_NONZERO_PATTERN) {
1538c537a176SHong Zhang     ierr = MatAXPY_SeqAIJ(a,xx->A,yy->A,str);CHKERRQ(ierr);
1539c537a176SHong Zhang 
1540c537a176SHong Zhang     x = (Mat_SeqAIJ *)xx->B->data;
1541a30b2313SHong Zhang     y = (Mat_SeqAIJ *)yy->B->data;
1542a30b2313SHong Zhang     if (y->xtoy && y->XtoY != xx->B) {
1543a30b2313SHong Zhang       ierr = PetscFree(y->xtoy);CHKERRQ(ierr);
1544a30b2313SHong Zhang       ierr = MatDestroy(y->XtoY);CHKERRQ(ierr);
1545c537a176SHong Zhang     }
1546a30b2313SHong Zhang     if (!y->xtoy) { /* get xtoy */
154724f910e3SHong Zhang       ierr = MatAXPYGetxtoy_Private(xx->B->m,x->i,x->j,xx->garray,y->i,y->j,yy->garray,&y->xtoy);CHKERRQ(ierr);
1548a30b2313SHong Zhang       y->XtoY = xx->B;
1549c537a176SHong Zhang     }
1550a30b2313SHong Zhang     for (i=0; i<x->nz; i++) y->a[y->xtoy[i]] += (*a)*(x->a[i]);
1551ac90fabeSBarry Smith   } else {
1552ac90fabeSBarry Smith     ierr = MatAXPY_Basic(a,X,Y,str);CHKERRQ(ierr);
1553ac90fabeSBarry Smith   }
1554ac90fabeSBarry Smith   PetscFunctionReturn(0);
1555ac90fabeSBarry Smith }
1556ac90fabeSBarry Smith 
15578a729477SBarry Smith /* -------------------------------------------------------------------*/
1558cda55fadSBarry Smith static struct _MatOps MatOps_Values = {MatSetValues_MPIAIJ,
1559cda55fadSBarry Smith        MatGetRow_MPIAIJ,
1560cda55fadSBarry Smith        MatRestoreRow_MPIAIJ,
1561cda55fadSBarry Smith        MatMult_MPIAIJ,
156297304618SKris Buschelman /* 4*/ MatMultAdd_MPIAIJ,
15637c922b88SBarry Smith        MatMultTranspose_MPIAIJ,
15647c922b88SBarry Smith        MatMultTransposeAdd_MPIAIJ,
1565cda55fadSBarry Smith        0,
1566cda55fadSBarry Smith        0,
1567cda55fadSBarry Smith        0,
156897304618SKris Buschelman /*10*/ 0,
1569cda55fadSBarry Smith        0,
1570cda55fadSBarry Smith        0,
157144a69424SLois Curfman McInnes        MatRelax_MPIAIJ,
1572b7c46309SBarry Smith        MatTranspose_MPIAIJ,
157397304618SKris Buschelman /*15*/ MatGetInfo_MPIAIJ,
1574cda55fadSBarry Smith        MatEqual_MPIAIJ,
1575cda55fadSBarry Smith        MatGetDiagonal_MPIAIJ,
1576cda55fadSBarry Smith        MatDiagonalScale_MPIAIJ,
1577cda55fadSBarry Smith        MatNorm_MPIAIJ,
157897304618SKris Buschelman /*20*/ MatAssemblyBegin_MPIAIJ,
1579cda55fadSBarry Smith        MatAssemblyEnd_MPIAIJ,
15801eb62cbbSBarry Smith        0,
1581cda55fadSBarry Smith        MatSetOption_MPIAIJ,
1582cda55fadSBarry Smith        MatZeroEntries_MPIAIJ,
158397304618SKris Buschelman /*25*/ MatZeroRows_MPIAIJ,
158487828ca2SBarry Smith #if !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_SINGLE)
1585b9617806SBarry Smith        MatLUFactorSymbolic_MPIAIJ_TFS,
1586b9617806SBarry Smith #else
1587cda55fadSBarry Smith        0,
1588b9617806SBarry Smith #endif
1589cda55fadSBarry Smith        0,
1590cda55fadSBarry Smith        0,
1591cda55fadSBarry Smith        0,
159297304618SKris Buschelman /*30*/ MatSetUpPreallocation_MPIAIJ,
1593cda55fadSBarry Smith        0,
1594cda55fadSBarry Smith        0,
1595cda55fadSBarry Smith        0,
1596cda55fadSBarry Smith        0,
159797304618SKris Buschelman /*35*/ MatDuplicate_MPIAIJ,
1598cda55fadSBarry Smith        0,
1599cda55fadSBarry Smith        0,
1600cda55fadSBarry Smith        0,
1601cda55fadSBarry Smith        0,
160297304618SKris Buschelman /*40*/ MatAXPY_MPIAIJ,
1603cda55fadSBarry Smith        MatGetSubMatrices_MPIAIJ,
1604cda55fadSBarry Smith        MatIncreaseOverlap_MPIAIJ,
1605cda55fadSBarry Smith        MatGetValues_MPIAIJ,
1606cb5b572fSBarry Smith        MatCopy_MPIAIJ,
160797304618SKris Buschelman /*45*/ MatPrintHelp_MPIAIJ,
1608cda55fadSBarry Smith        MatScale_MPIAIJ,
1609cda55fadSBarry Smith        0,
1610cda55fadSBarry Smith        0,
1611cda55fadSBarry Smith        0,
161297304618SKris Buschelman /*50*/ MatGetBlockSize_MPIAIJ,
1613cda55fadSBarry Smith        0,
1614cda55fadSBarry Smith        0,
1615cda55fadSBarry Smith        0,
1616cda55fadSBarry Smith        0,
161797304618SKris Buschelman /*55*/ MatFDColoringCreate_MPIAIJ,
1618cda55fadSBarry Smith        0,
1619cda55fadSBarry Smith        MatSetUnfactored_MPIAIJ,
1620cda55fadSBarry Smith        0,
1621cda55fadSBarry Smith        0,
162297304618SKris Buschelman /*60*/ MatGetSubMatrix_MPIAIJ,
1623e03a110bSBarry Smith        MatDestroy_MPIAIJ,
1624e03a110bSBarry Smith        MatView_MPIAIJ,
16258a124369SBarry Smith        MatGetPetscMaps_Petsc,
1626a2243be0SBarry Smith        0,
162797304618SKris Buschelman /*65*/ 0,
1628a2243be0SBarry Smith        0,
1629a2243be0SBarry Smith        0,
1630a2243be0SBarry Smith        0,
1631a2243be0SBarry Smith        0,
163297304618SKris Buschelman /*70*/ 0,
1633a2243be0SBarry Smith        0,
1634a2243be0SBarry Smith        MatSetColoring_MPIAIJ,
1635779c1a83SBarry Smith        MatSetValuesAdic_MPIAIJ,
163697304618SKris Buschelman        MatSetValuesAdifor_MPIAIJ,
163797304618SKris Buschelman /*75*/ 0,
163897304618SKris Buschelman        0,
163997304618SKris Buschelman        0,
164097304618SKris Buschelman        0,
164197304618SKris Buschelman        0,
164297304618SKris Buschelman /*80*/ 0,
164397304618SKris Buschelman        0,
164497304618SKris Buschelman        0,
164597304618SKris Buschelman        0,
164697304618SKris Buschelman        0,
164797304618SKris Buschelman /*85*/ MatLoad_MPIAIJ};
164836ce4990SBarry Smith 
16492e8a6d31SBarry Smith /* ----------------------------------------------------------------------------------------*/
16502e8a6d31SBarry Smith 
1651fb2e594dSBarry Smith EXTERN_C_BEGIN
16524a2ae208SSatish Balay #undef __FUNCT__
16534a2ae208SSatish Balay #define __FUNCT__ "MatStoreValues_MPIAIJ"
16542e8a6d31SBarry Smith int MatStoreValues_MPIAIJ(Mat mat)
16552e8a6d31SBarry Smith {
16562e8a6d31SBarry Smith   Mat_MPIAIJ *aij = (Mat_MPIAIJ *)mat->data;
16572e8a6d31SBarry Smith   int        ierr;
16582e8a6d31SBarry Smith 
16592e8a6d31SBarry Smith   PetscFunctionBegin;
16602e8a6d31SBarry Smith   ierr = MatStoreValues(aij->A);CHKERRQ(ierr);
16612e8a6d31SBarry Smith   ierr = MatStoreValues(aij->B);CHKERRQ(ierr);
16622e8a6d31SBarry Smith   PetscFunctionReturn(0);
16632e8a6d31SBarry Smith }
1664fb2e594dSBarry Smith EXTERN_C_END
16652e8a6d31SBarry Smith 
1666fb2e594dSBarry Smith EXTERN_C_BEGIN
16674a2ae208SSatish Balay #undef __FUNCT__
16684a2ae208SSatish Balay #define __FUNCT__ "MatRetrieveValues_MPIAIJ"
16692e8a6d31SBarry Smith int MatRetrieveValues_MPIAIJ(Mat mat)
16702e8a6d31SBarry Smith {
16712e8a6d31SBarry Smith   Mat_MPIAIJ *aij = (Mat_MPIAIJ *)mat->data;
16722e8a6d31SBarry Smith   int        ierr;
16732e8a6d31SBarry Smith 
16742e8a6d31SBarry Smith   PetscFunctionBegin;
16752e8a6d31SBarry Smith   ierr = MatRetrieveValues(aij->A);CHKERRQ(ierr);
16762e8a6d31SBarry Smith   ierr = MatRetrieveValues(aij->B);CHKERRQ(ierr);
16772e8a6d31SBarry Smith   PetscFunctionReturn(0);
16782e8a6d31SBarry Smith }
1679fb2e594dSBarry Smith EXTERN_C_END
16808a729477SBarry Smith 
1681e090d566SSatish Balay #include "petscpc.h"
168227508adbSBarry Smith EXTERN_C_BEGIN
16834a2ae208SSatish Balay #undef __FUNCT__
1684a23d5eceSKris Buschelman #define __FUNCT__ "MatMPIAIJSetPreallocation_MPIAIJ"
1685d10c748bSKris Buschelman int MatMPIAIJSetPreallocation_MPIAIJ(Mat B,int d_nz,const int d_nnz[],int o_nz,const int o_nnz[])
1686a23d5eceSKris Buschelman {
1687a23d5eceSKris Buschelman   Mat_MPIAIJ   *b;
1688a23d5eceSKris Buschelman   int          ierr,i;
1689a23d5eceSKris Buschelman 
1690a23d5eceSKris Buschelman   PetscFunctionBegin;
1691a23d5eceSKris Buschelman   B->preallocated = PETSC_TRUE;
1692a23d5eceSKris Buschelman   if (d_nz == PETSC_DEFAULT || d_nz == PETSC_DECIDE) d_nz = 5;
1693a23d5eceSKris Buschelman   if (o_nz == PETSC_DEFAULT || o_nz == PETSC_DECIDE) o_nz = 2;
1694a23d5eceSKris Buschelman   if (d_nz < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"d_nz cannot be less than 0: value %d",d_nz);
1695a23d5eceSKris Buschelman   if (o_nz < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"o_nz cannot be less than 0: value %d",o_nz);
1696a23d5eceSKris Buschelman   if (d_nnz) {
1697a23d5eceSKris Buschelman     for (i=0; i<B->m; i++) {
1698a23d5eceSKris Buschelman       if (d_nnz[i] < 0) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"d_nnz cannot be less than 0: local row %d value %d",i,d_nnz[i]);
1699a23d5eceSKris Buschelman     }
1700a23d5eceSKris Buschelman   }
1701a23d5eceSKris Buschelman   if (o_nnz) {
1702a23d5eceSKris Buschelman     for (i=0; i<B->m; i++) {
1703a23d5eceSKris Buschelman       if (o_nnz[i] < 0) SETERRQ2(PETSC_ERR_ARG_OUTOFRANGE,"o_nnz cannot be less than 0: local row %d value %d",i,o_nnz[i]);
1704a23d5eceSKris Buschelman     }
1705a23d5eceSKris Buschelman   }
1706a23d5eceSKris Buschelman   b = (Mat_MPIAIJ*)B->data;
1707a23d5eceSKris Buschelman 
1708a23d5eceSKris Buschelman   ierr = MatCreateSeqAIJ(PETSC_COMM_SELF,B->m,B->n,d_nz,d_nnz,&b->A);CHKERRQ(ierr);
1709a23d5eceSKris Buschelman   PetscLogObjectParent(B,b->A);
1710a23d5eceSKris Buschelman   ierr = MatCreateSeqAIJ(PETSC_COMM_SELF,B->m,B->N,o_nz,o_nnz,&b->B);CHKERRQ(ierr);
1711a23d5eceSKris Buschelman   PetscLogObjectParent(B,b->B);
1712a23d5eceSKris Buschelman 
1713a23d5eceSKris Buschelman   PetscFunctionReturn(0);
1714a23d5eceSKris Buschelman }
1715a23d5eceSKris Buschelman EXTERN_C_END
1716a23d5eceSKris Buschelman 
17170bad9183SKris Buschelman /*MC
1718fafad747SKris Buschelman    MATMPIAIJ - MATMPIAIJ = "mpiaij" - A matrix type to be used for parallel sparse matrices.
17190bad9183SKris Buschelman 
17200bad9183SKris Buschelman    Options Database Keys:
17210bad9183SKris Buschelman . -mat_type mpiaij - sets the matrix type to "mpiaij" during a call to MatSetFromOptions()
17220bad9183SKris Buschelman 
17230bad9183SKris Buschelman   Level: beginner
17240bad9183SKris Buschelman 
17250bad9183SKris Buschelman .seealso: MatCreateMPIAIJ
17260bad9183SKris Buschelman M*/
17270bad9183SKris Buschelman 
1728a23d5eceSKris Buschelman EXTERN_C_BEGIN
1729a23d5eceSKris Buschelman #undef __FUNCT__
17304a2ae208SSatish Balay #define __FUNCT__ "MatCreate_MPIAIJ"
1731273d9f13SBarry Smith int MatCreate_MPIAIJ(Mat B)
17328a729477SBarry Smith {
173344cd7ae7SLois Curfman McInnes   Mat_MPIAIJ *b;
1734f1af5d2fSBarry Smith   int        ierr,i,size;
1735416022c9SBarry Smith 
17363a40ed3dSBarry Smith   PetscFunctionBegin;
1737273d9f13SBarry Smith   ierr = MPI_Comm_size(B->comm,&size);CHKERRQ(ierr);
17381d55c564SBarry Smith 
1739b0a32e0cSBarry Smith   ierr            = PetscNew(Mat_MPIAIJ,&b);CHKERRQ(ierr);
1740b0a32e0cSBarry Smith   B->data         = (void*)b;
1741549d3d68SSatish Balay   ierr            = PetscMemzero(b,sizeof(Mat_MPIAIJ));CHKERRQ(ierr);
1742549d3d68SSatish Balay   ierr            = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
174344cd7ae7SLois Curfman McInnes   B->factor       = 0;
174444cd7ae7SLois Curfman McInnes   B->assembled    = PETSC_FALSE;
174590f02eecSBarry Smith   B->mapping      = 0;
1746d6dfbf8fSBarry Smith 
174747794344SBarry Smith   B->insertmode      = NOT_SET_VALUES;
17489eb4d147SSatish Balay   b->size            = size;
1749273d9f13SBarry Smith   ierr = MPI_Comm_rank(B->comm,&b->rank);CHKERRQ(ierr);
17501eb62cbbSBarry Smith 
1751273d9f13SBarry Smith   ierr = PetscSplitOwnership(B->comm,&B->m,&B->M);CHKERRQ(ierr);
1752273d9f13SBarry Smith   ierr = PetscSplitOwnership(B->comm,&B->n,&B->N);CHKERRQ(ierr);
17531eb62cbbSBarry Smith 
1754c7fcc2eaSBarry Smith   /* the information in the maps duplicates the information computed below, eventually
1755c7fcc2eaSBarry Smith      we should remove the duplicate information that is not contained in the maps */
17568a124369SBarry Smith   ierr = PetscMapCreateMPI(B->comm,B->m,B->M,&B->rmap);CHKERRQ(ierr);
17578a124369SBarry Smith   ierr = PetscMapCreateMPI(B->comm,B->n,B->N,&B->cmap);CHKERRQ(ierr);
1758c7fcc2eaSBarry Smith 
17591eb62cbbSBarry Smith   /* build local table of row and column ownerships */
1760b0a32e0cSBarry Smith   ierr = PetscMalloc(2*(b->size+2)*sizeof(int),&b->rowners);CHKERRQ(ierr);
1761b0a32e0cSBarry Smith   PetscLogObjectMemory(B,2*(b->size+2)*sizeof(int)+sizeof(struct _p_Mat)+sizeof(Mat_MPIAIJ));
1762603f58a4SSatish Balay   b->cowners = b->rowners + b->size + 2;
1763273d9f13SBarry Smith   ierr = MPI_Allgather(&B->m,1,MPI_INT,b->rowners+1,1,MPI_INT,B->comm);CHKERRQ(ierr);
176444cd7ae7SLois Curfman McInnes   b->rowners[0] = 0;
176544cd7ae7SLois Curfman McInnes   for (i=2; i<=b->size; i++) {
176644cd7ae7SLois Curfman McInnes     b->rowners[i] += b->rowners[i-1];
17678a729477SBarry Smith   }
176844cd7ae7SLois Curfman McInnes   b->rstart = b->rowners[b->rank];
176944cd7ae7SLois Curfman McInnes   b->rend   = b->rowners[b->rank+1];
1770273d9f13SBarry Smith   ierr = MPI_Allgather(&B->n,1,MPI_INT,b->cowners+1,1,MPI_INT,B->comm);CHKERRQ(ierr);
177144cd7ae7SLois Curfman McInnes   b->cowners[0] = 0;
177244cd7ae7SLois Curfman McInnes   for (i=2; i<=b->size; i++) {
177344cd7ae7SLois Curfman McInnes     b->cowners[i] += b->cowners[i-1];
17748a729477SBarry Smith   }
177544cd7ae7SLois Curfman McInnes   b->cstart = b->cowners[b->rank];
177644cd7ae7SLois Curfman McInnes   b->cend   = b->cowners[b->rank+1];
17778a729477SBarry Smith 
17781eb62cbbSBarry Smith   /* build cache for off array entries formed */
17797e2c5f70SBarry Smith   ierr = MatStashCreate_Private(B->comm,1,&B->stash);CHKERRQ(ierr);
17807c922b88SBarry Smith   b->donotstash  = PETSC_FALSE;
178144cd7ae7SLois Curfman McInnes   b->colmap      = 0;
178244cd7ae7SLois Curfman McInnes   b->garray      = 0;
17837c922b88SBarry Smith   b->roworiented = PETSC_TRUE;
17848a729477SBarry Smith 
17851eb62cbbSBarry Smith   /* stuff used for matrix vector multiply */
17867c922b88SBarry Smith   b->lvec      = PETSC_NULL;
17877c922b88SBarry Smith   b->Mvctx     = PETSC_NULL;
17888a729477SBarry Smith 
17897a0afa10SBarry Smith   /* stuff for MatGetRow() */
179044cd7ae7SLois Curfman McInnes   b->rowindices   = 0;
179144cd7ae7SLois Curfman McInnes   b->rowvalues    = 0;
179244cd7ae7SLois Curfman McInnes   b->getrowactive = PETSC_FALSE;
17931a8d6bc9SBarry Smith 
1794f1af5d2fSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatStoreValues_C",
17952e8a6d31SBarry Smith                                      "MatStoreValues_MPIAIJ",
17960c97f09dSSatish Balay                                      MatStoreValues_MPIAIJ);CHKERRQ(ierr);
1797f1af5d2fSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatRetrieveValues_C",
17982e8a6d31SBarry Smith                                      "MatRetrieveValues_MPIAIJ",
17990c97f09dSSatish Balay                                      MatRetrieveValues_MPIAIJ);CHKERRQ(ierr);
1800f1af5d2fSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetDiagonalBlock_C",
18015ef9f2a5SBarry Smith 				     "MatGetDiagonalBlock_MPIAIJ",
18020c97f09dSSatish Balay                                      MatGetDiagonalBlock_MPIAIJ);CHKERRQ(ierr);
1803cd0d46ebSvictorle   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatIsSymmetric_C",
1804cd0d46ebSvictorle 				     "MatIsSymmetric_MPIAIJ",
1805cd0d46ebSvictorle 				     MatIsSymmetric_MPIAIJ); CHKERRQ(ierr);
1806a23d5eceSKris Buschelman   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatMPIAIJSetPreallocation_C",
1807a23d5eceSKris Buschelman 				     "MatMPIAIJSetPreallocation_MPIAIJ",
1808a23d5eceSKris Buschelman 				     MatMPIAIJSetPreallocation_MPIAIJ); CHKERRQ(ierr);
180992b32695SKris Buschelman   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatDiagonalScaleLocal_C",
181092b32695SKris Buschelman 				     "MatDiagonalScaleLocal_MPIAIJ",
181192b32695SKris Buschelman 				     MatDiagonalScaleLocal_MPIAIJ); CHKERRQ(ierr);
18123a40ed3dSBarry Smith   PetscFunctionReturn(0);
1813d6dfbf8fSBarry Smith }
1814273d9f13SBarry Smith EXTERN_C_END
1815c74985f6SBarry Smith 
1816209238afSKris Buschelman /*MC
1817002d173eSKris Buschelman    MATAIJ - MATAIJ = "aij" - A matrix type to be used for sparse matrices.
1818209238afSKris Buschelman 
1819209238afSKris Buschelman    This matrix type is identical to MATSEQAIJ when constructed with a single process communicator,
1820209238afSKris Buschelman    and MATMPIAIJ otherwise.
1821209238afSKris Buschelman 
1822209238afSKris Buschelman    Options Database Keys:
1823209238afSKris Buschelman . -mat_type aij - sets the matrix type to "aij" during a call to MatSetFromOptions()
1824209238afSKris Buschelman 
1825209238afSKris Buschelman   Level: beginner
1826209238afSKris Buschelman 
1827209238afSKris Buschelman .seealso: MatCreateMPIAIJ,MATSEQAIJ,MATMPIAIJ
1828209238afSKris Buschelman M*/
1829209238afSKris Buschelman 
1830209238afSKris Buschelman EXTERN_C_BEGIN
1831209238afSKris Buschelman #undef __FUNCT__
1832209238afSKris Buschelman #define __FUNCT__ "MatCreate_AIJ"
1833209238afSKris Buschelman int MatCreate_AIJ(Mat A) {
1834209238afSKris Buschelman   int ierr,size;
1835209238afSKris Buschelman 
1836209238afSKris Buschelman   PetscFunctionBegin;
1837209238afSKris Buschelman   ierr = PetscObjectChangeTypeName((PetscObject)A,MATAIJ);CHKERRQ(ierr);
1838209238afSKris Buschelman   ierr = MPI_Comm_size(A->comm,&size);CHKERRQ(ierr);
1839209238afSKris Buschelman   if (size == 1) {
1840209238afSKris Buschelman     ierr = MatSetType(A,MATSEQAIJ);CHKERRQ(ierr);
1841209238afSKris Buschelman   } else {
1842209238afSKris Buschelman     ierr = MatSetType(A,MATMPIAIJ);CHKERRQ(ierr);
1843209238afSKris Buschelman   }
1844209238afSKris Buschelman   PetscFunctionReturn(0);
1845209238afSKris Buschelman }
1846209238afSKris Buschelman EXTERN_C_END
1847209238afSKris Buschelman 
18484a2ae208SSatish Balay #undef __FUNCT__
18494a2ae208SSatish Balay #define __FUNCT__ "MatDuplicate_MPIAIJ"
18502e8a6d31SBarry Smith int MatDuplicate_MPIAIJ(Mat matin,MatDuplicateOption cpvalues,Mat *newmat)
1851d6dfbf8fSBarry Smith {
1852d6dfbf8fSBarry Smith   Mat        mat;
1853416022c9SBarry Smith   Mat_MPIAIJ *a,*oldmat = (Mat_MPIAIJ*)matin->data;
185416d6aa21SSatish Balay   int        ierr;
1855d6dfbf8fSBarry Smith 
18563a40ed3dSBarry Smith   PetscFunctionBegin;
1857416022c9SBarry Smith   *newmat       = 0;
1858273d9f13SBarry Smith   ierr = MatCreate(matin->comm,matin->m,matin->n,matin->M,matin->N,&mat);CHKERRQ(ierr);
1859273d9f13SBarry Smith   ierr = MatSetType(mat,MATMPIAIJ);CHKERRQ(ierr);
1860273d9f13SBarry Smith   a    = (Mat_MPIAIJ*)mat->data;
1861549d3d68SSatish Balay   ierr              = PetscMemcpy(mat->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
1862d6dfbf8fSBarry Smith   mat->factor       = matin->factor;
1863c456f294SBarry Smith   mat->assembled    = PETSC_TRUE;
1864e7641de0SSatish Balay   mat->insertmode   = NOT_SET_VALUES;
1865273d9f13SBarry Smith   mat->preallocated = PETSC_TRUE;
1866d6dfbf8fSBarry Smith 
1867416022c9SBarry Smith   a->rstart       = oldmat->rstart;
1868416022c9SBarry Smith   a->rend         = oldmat->rend;
1869416022c9SBarry Smith   a->cstart       = oldmat->cstart;
1870416022c9SBarry Smith   a->cend         = oldmat->cend;
187117699dbbSLois Curfman McInnes   a->size         = oldmat->size;
187217699dbbSLois Curfman McInnes   a->rank         = oldmat->rank;
1873e7641de0SSatish Balay   a->donotstash   = oldmat->donotstash;
1874e7641de0SSatish Balay   a->roworiented  = oldmat->roworiented;
1875e7641de0SSatish Balay   a->rowindices   = 0;
1876bcd2baecSBarry Smith   a->rowvalues    = 0;
1877bcd2baecSBarry Smith   a->getrowactive = PETSC_FALSE;
1878d6dfbf8fSBarry Smith 
1879549d3d68SSatish Balay   ierr       = PetscMemcpy(a->rowners,oldmat->rowners,2*(a->size+2)*sizeof(int));CHKERRQ(ierr);
18808798bf22SSatish Balay   ierr       = MatStashCreate_Private(matin->comm,1,&mat->stash);CHKERRQ(ierr);
18812ee70a88SLois Curfman McInnes   if (oldmat->colmap) {
1882aa482453SBarry Smith #if defined (PETSC_USE_CTABLE)
18830f5bd95cSBarry Smith     ierr = PetscTableCreateCopy(oldmat->colmap,&a->colmap);CHKERRQ(ierr);
1884b1fc9764SSatish Balay #else
1885b0a32e0cSBarry Smith     ierr = PetscMalloc((mat->N)*sizeof(int),&a->colmap);CHKERRQ(ierr);
1886b0a32e0cSBarry Smith     PetscLogObjectMemory(mat,(mat->N)*sizeof(int));
1887273d9f13SBarry Smith     ierr      = PetscMemcpy(a->colmap,oldmat->colmap,(mat->N)*sizeof(int));CHKERRQ(ierr);
1888b1fc9764SSatish Balay #endif
1889416022c9SBarry Smith   } else a->colmap = 0;
18903f41c07dSBarry Smith   if (oldmat->garray) {
189116d6aa21SSatish Balay     int len;
1892273d9f13SBarry Smith     len  = oldmat->B->n;
1893b0a32e0cSBarry Smith     ierr = PetscMalloc((len+1)*sizeof(int),&a->garray);CHKERRQ(ierr);
1894b0a32e0cSBarry Smith     PetscLogObjectMemory(mat,len*sizeof(int));
1895549d3d68SSatish Balay     if (len) { ierr = PetscMemcpy(a->garray,oldmat->garray,len*sizeof(int));CHKERRQ(ierr); }
1896416022c9SBarry Smith   } else a->garray = 0;
1897d6dfbf8fSBarry Smith 
1898416022c9SBarry Smith   ierr =  VecDuplicate(oldmat->lvec,&a->lvec);CHKERRQ(ierr);
1899b0a32e0cSBarry Smith   PetscLogObjectParent(mat,a->lvec);
1900a56f8943SBarry Smith   ierr =  VecScatterCopy(oldmat->Mvctx,&a->Mvctx);CHKERRQ(ierr);
1901b0a32e0cSBarry Smith   PetscLogObjectParent(mat,a->Mvctx);
19022e8a6d31SBarry Smith   ierr =  MatDuplicate(oldmat->A,cpvalues,&a->A);CHKERRQ(ierr);
1903b0a32e0cSBarry Smith   PetscLogObjectParent(mat,a->A);
19042e8a6d31SBarry Smith   ierr =  MatDuplicate(oldmat->B,cpvalues,&a->B);CHKERRQ(ierr);
1905b0a32e0cSBarry Smith   PetscLogObjectParent(mat,a->B);
1906b0a32e0cSBarry Smith   ierr = PetscFListDuplicate(matin->qlist,&mat->qlist);CHKERRQ(ierr);
19078a729477SBarry Smith   *newmat = mat;
19083a40ed3dSBarry Smith   PetscFunctionReturn(0);
19098a729477SBarry Smith }
1910416022c9SBarry Smith 
1911e090d566SSatish Balay #include "petscsys.h"
1912416022c9SBarry Smith 
19134a2ae208SSatish Balay #undef __FUNCT__
19144a2ae208SSatish Balay #define __FUNCT__ "MatLoad_MPIAIJ"
1915b0a32e0cSBarry Smith int MatLoad_MPIAIJ(PetscViewer viewer,MatType type,Mat *newmat)
1916416022c9SBarry Smith {
1917d65a2f8fSBarry Smith   Mat          A;
191887828ca2SBarry Smith   PetscScalar  *vals,*svals;
191919bcc07fSBarry Smith   MPI_Comm     comm = ((PetscObject)viewer)->comm;
1920416022c9SBarry Smith   MPI_Status   status;
19213a40ed3dSBarry Smith   int          i,nz,ierr,j,rstart,rend,fd;
192217699dbbSLois Curfman McInnes   int          header[4],rank,size,*rowlengths = 0,M,N,m,*rowners,maxnz,*cols;
1923d65a2f8fSBarry Smith   int          *ourlens,*sndcounts = 0,*procsnz = 0,*offlens,jj,*mycols,*smycols;
1924b362ba68SBarry Smith   int          tag = ((PetscObject)viewer)->tag,cend,cstart,n;
1925416022c9SBarry Smith 
19263a40ed3dSBarry Smith   PetscFunctionBegin;
19271dab6e02SBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
19281dab6e02SBarry Smith   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
192917699dbbSLois Curfman McInnes   if (!rank) {
1930b0a32e0cSBarry Smith     ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr);
19310752156aSBarry Smith     ierr = PetscBinaryRead(fd,(char *)header,4,PETSC_INT);CHKERRQ(ierr);
1932552e946dSBarry Smith     if (header[0] != MAT_FILE_COOKIE) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"not matrix object");
1933d64ed03dSBarry Smith     if (header[3] < 0) {
193429bbc08cSBarry Smith       SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"Matrix in special format on disk, cannot load as MPIAIJ");
1935d64ed03dSBarry Smith     }
19366c5fab8fSBarry Smith   }
19376c5fab8fSBarry Smith 
1938ca161407SBarry Smith   ierr = MPI_Bcast(header+1,3,MPI_INT,0,comm);CHKERRQ(ierr);
1939416022c9SBarry Smith   M = header[1]; N = header[2];
1940416022c9SBarry Smith   /* determine ownership of all rows */
194117699dbbSLois Curfman McInnes   m = M/size + ((M % size) > rank);
1942b0a32e0cSBarry Smith   ierr = PetscMalloc((size+2)*sizeof(int),&rowners);CHKERRQ(ierr);
1943ca161407SBarry Smith   ierr = MPI_Allgather(&m,1,MPI_INT,rowners+1,1,MPI_INT,comm);CHKERRQ(ierr);
1944416022c9SBarry Smith   rowners[0] = 0;
194517699dbbSLois Curfman McInnes   for (i=2; i<=size; i++) {
1946416022c9SBarry Smith     rowners[i] += rowners[i-1];
1947416022c9SBarry Smith   }
194817699dbbSLois Curfman McInnes   rstart = rowners[rank];
194917699dbbSLois Curfman McInnes   rend   = rowners[rank+1];
1950416022c9SBarry Smith 
1951416022c9SBarry Smith   /* distribute row lengths to all processors */
1952b0a32e0cSBarry Smith   ierr    = PetscMalloc(2*(rend-rstart+1)*sizeof(int),&ourlens);CHKERRQ(ierr);
1953416022c9SBarry Smith   offlens = ourlens + (rend-rstart);
195417699dbbSLois Curfman McInnes   if (!rank) {
1955b0a32e0cSBarry Smith     ierr = PetscMalloc(M*sizeof(int),&rowlengths);CHKERRQ(ierr);
19560752156aSBarry Smith     ierr = PetscBinaryRead(fd,rowlengths,M,PETSC_INT);CHKERRQ(ierr);
1957b0a32e0cSBarry Smith     ierr = PetscMalloc(size*sizeof(int),&sndcounts);CHKERRQ(ierr);
195817699dbbSLois Curfman McInnes     for (i=0; i<size; i++) sndcounts[i] = rowners[i+1] - rowners[i];
1959ca161407SBarry Smith     ierr = MPI_Scatterv(rowlengths,sndcounts,rowners,MPI_INT,ourlens,rend-rstart,MPI_INT,0,comm);CHKERRQ(ierr);
1960606d414cSSatish Balay     ierr = PetscFree(sndcounts);CHKERRQ(ierr);
19613a40ed3dSBarry Smith   } else {
1962ca161407SBarry Smith     ierr = MPI_Scatterv(0,0,0,MPI_INT,ourlens,rend-rstart,MPI_INT,0,comm);CHKERRQ(ierr);
1963416022c9SBarry Smith   }
1964416022c9SBarry Smith 
196517699dbbSLois Curfman McInnes   if (!rank) {
1966416022c9SBarry Smith     /* calculate the number of nonzeros on each processor */
1967b0a32e0cSBarry Smith     ierr = PetscMalloc(size*sizeof(int),&procsnz);CHKERRQ(ierr);
1968549d3d68SSatish Balay     ierr = PetscMemzero(procsnz,size*sizeof(int));CHKERRQ(ierr);
196917699dbbSLois Curfman McInnes     for (i=0; i<size; i++) {
1970416022c9SBarry Smith       for (j=rowners[i]; j< rowners[i+1]; j++) {
1971416022c9SBarry Smith         procsnz[i] += rowlengths[j];
1972416022c9SBarry Smith       }
1973416022c9SBarry Smith     }
1974606d414cSSatish Balay     ierr = PetscFree(rowlengths);CHKERRQ(ierr);
1975416022c9SBarry Smith 
1976416022c9SBarry Smith     /* determine max buffer needed and allocate it */
1977416022c9SBarry Smith     maxnz = 0;
197817699dbbSLois Curfman McInnes     for (i=0; i<size; i++) {
19790452661fSBarry Smith       maxnz = PetscMax(maxnz,procsnz[i]);
1980416022c9SBarry Smith     }
1981b0a32e0cSBarry Smith     ierr = PetscMalloc(maxnz*sizeof(int),&cols);CHKERRQ(ierr);
1982416022c9SBarry Smith 
1983416022c9SBarry Smith     /* read in my part of the matrix column indices  */
1984416022c9SBarry Smith     nz   = procsnz[0];
1985b0a32e0cSBarry Smith     ierr = PetscMalloc(nz*sizeof(int),&mycols);CHKERRQ(ierr);
19860752156aSBarry Smith     ierr = PetscBinaryRead(fd,mycols,nz,PETSC_INT);CHKERRQ(ierr);
1987d65a2f8fSBarry Smith 
1988d65a2f8fSBarry Smith     /* read in every one elses and ship off */
198917699dbbSLois Curfman McInnes     for (i=1; i<size; i++) {
1990d65a2f8fSBarry Smith       nz   = procsnz[i];
19910752156aSBarry Smith       ierr = PetscBinaryRead(fd,cols,nz,PETSC_INT);CHKERRQ(ierr);
1992ca161407SBarry Smith       ierr = MPI_Send(cols,nz,MPI_INT,i,tag,comm);CHKERRQ(ierr);
1993d65a2f8fSBarry Smith     }
1994606d414cSSatish Balay     ierr = PetscFree(cols);CHKERRQ(ierr);
19953a40ed3dSBarry Smith   } else {
1996416022c9SBarry Smith     /* determine buffer space needed for message */
1997416022c9SBarry Smith     nz = 0;
1998416022c9SBarry Smith     for (i=0; i<m; i++) {
1999416022c9SBarry Smith       nz += ourlens[i];
2000416022c9SBarry Smith     }
2001b0a32e0cSBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(int),&mycols);CHKERRQ(ierr);
2002416022c9SBarry Smith 
2003416022c9SBarry Smith     /* receive message of column indices*/
2004ca161407SBarry Smith     ierr = MPI_Recv(mycols,nz,MPI_INT,0,tag,comm,&status);CHKERRQ(ierr);
2005ca161407SBarry Smith     ierr = MPI_Get_count(&status,MPI_INT,&maxnz);CHKERRQ(ierr);
200629bbc08cSBarry Smith     if (maxnz != nz) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"something is wrong with file");
2007416022c9SBarry Smith   }
2008416022c9SBarry Smith 
2009b362ba68SBarry Smith   /* determine column ownership if matrix is not square */
2010b362ba68SBarry Smith   if (N != M) {
2011b362ba68SBarry Smith     n      = N/size + ((N % size) > rank);
2012b362ba68SBarry Smith     ierr   = MPI_Scan(&n,&cend,1,MPI_INT,MPI_SUM,comm);CHKERRQ(ierr);
2013b362ba68SBarry Smith     cstart = cend - n;
2014b362ba68SBarry Smith   } else {
2015b362ba68SBarry Smith     cstart = rstart;
2016b362ba68SBarry Smith     cend   = rend;
2017fb2e594dSBarry Smith     n      = cend - cstart;
2018b362ba68SBarry Smith   }
2019b362ba68SBarry Smith 
2020416022c9SBarry Smith   /* loop over local rows, determining number of off diagonal entries */
2021549d3d68SSatish Balay   ierr = PetscMemzero(offlens,m*sizeof(int));CHKERRQ(ierr);
2022416022c9SBarry Smith   jj = 0;
2023416022c9SBarry Smith   for (i=0; i<m; i++) {
2024416022c9SBarry Smith     for (j=0; j<ourlens[i]; j++) {
2025b362ba68SBarry Smith       if (mycols[jj] < cstart || mycols[jj] >= cend) offlens[i]++;
2026416022c9SBarry Smith       jj++;
2027416022c9SBarry Smith     }
2028416022c9SBarry Smith   }
2029d65a2f8fSBarry Smith 
2030d65a2f8fSBarry Smith   /* create our matrix */
2031416022c9SBarry Smith   for (i=0; i<m; i++) {
2032416022c9SBarry Smith     ourlens[i] -= offlens[i];
2033416022c9SBarry Smith   }
2034d10c748bSKris Buschelman   ierr = MatCreate(comm,m,n,M,N,&A);CHKERRQ(ierr);
2035d10c748bSKris Buschelman   ierr = MatSetType(A,type);CHKERRQ(ierr);
2036d10c748bSKris Buschelman   ierr = MatMPIAIJSetPreallocation(A,0,ourlens,0,offlens);CHKERRQ(ierr);
2037d10c748bSKris Buschelman 
2038fb2e594dSBarry Smith   ierr = MatSetOption(A,MAT_COLUMNS_SORTED);CHKERRQ(ierr);
2039d65a2f8fSBarry Smith   for (i=0; i<m; i++) {
2040d65a2f8fSBarry Smith     ourlens[i] += offlens[i];
2041d65a2f8fSBarry Smith   }
2042416022c9SBarry Smith 
204317699dbbSLois Curfman McInnes   if (!rank) {
204487828ca2SBarry Smith     ierr = PetscMalloc(maxnz*sizeof(PetscScalar),&vals);CHKERRQ(ierr);
2045416022c9SBarry Smith 
2046416022c9SBarry Smith     /* read in my part of the matrix numerical values  */
2047416022c9SBarry Smith     nz   = procsnz[0];
20480752156aSBarry Smith     ierr = PetscBinaryRead(fd,vals,nz,PETSC_SCALAR);CHKERRQ(ierr);
2049d65a2f8fSBarry Smith 
2050d65a2f8fSBarry Smith     /* insert into matrix */
2051d65a2f8fSBarry Smith     jj      = rstart;
2052d65a2f8fSBarry Smith     smycols = mycols;
2053d65a2f8fSBarry Smith     svals   = vals;
2054d65a2f8fSBarry Smith     for (i=0; i<m; i++) {
2055d65a2f8fSBarry Smith       ierr = MatSetValues(A,1,&jj,ourlens[i],smycols,svals,INSERT_VALUES);CHKERRQ(ierr);
2056d65a2f8fSBarry Smith       smycols += ourlens[i];
2057d65a2f8fSBarry Smith       svals   += ourlens[i];
2058d65a2f8fSBarry Smith       jj++;
2059416022c9SBarry Smith     }
2060416022c9SBarry Smith 
2061d65a2f8fSBarry Smith     /* read in other processors and ship out */
206217699dbbSLois Curfman McInnes     for (i=1; i<size; i++) {
2063416022c9SBarry Smith       nz   = procsnz[i];
20640752156aSBarry Smith       ierr = PetscBinaryRead(fd,vals,nz,PETSC_SCALAR);CHKERRQ(ierr);
2065ca161407SBarry Smith       ierr = MPI_Send(vals,nz,MPIU_SCALAR,i,A->tag,comm);CHKERRQ(ierr);
2066416022c9SBarry Smith     }
2067606d414cSSatish Balay     ierr = PetscFree(procsnz);CHKERRQ(ierr);
20683a40ed3dSBarry Smith   } else {
2069d65a2f8fSBarry Smith     /* receive numeric values */
207087828ca2SBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(PetscScalar),&vals);CHKERRQ(ierr);
2071416022c9SBarry Smith 
2072d65a2f8fSBarry Smith     /* receive message of values*/
2073ca161407SBarry Smith     ierr = MPI_Recv(vals,nz,MPIU_SCALAR,0,A->tag,comm,&status);CHKERRQ(ierr);
2074ca161407SBarry Smith     ierr = MPI_Get_count(&status,MPIU_SCALAR,&maxnz);CHKERRQ(ierr);
207529bbc08cSBarry Smith     if (maxnz != nz) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"something is wrong with file");
2076d65a2f8fSBarry Smith 
2077d65a2f8fSBarry Smith     /* insert into matrix */
2078d65a2f8fSBarry Smith     jj      = rstart;
2079d65a2f8fSBarry Smith     smycols = mycols;
2080d65a2f8fSBarry Smith     svals   = vals;
2081d65a2f8fSBarry Smith     for (i=0; i<m; i++) {
2082d65a2f8fSBarry Smith       ierr     = MatSetValues(A,1,&jj,ourlens[i],smycols,svals,INSERT_VALUES);CHKERRQ(ierr);
2083d65a2f8fSBarry Smith       smycols += ourlens[i];
2084d65a2f8fSBarry Smith       svals   += ourlens[i];
2085d65a2f8fSBarry Smith       jj++;
2086d65a2f8fSBarry Smith     }
2087d65a2f8fSBarry Smith   }
2088606d414cSSatish Balay   ierr = PetscFree(ourlens);CHKERRQ(ierr);
2089606d414cSSatish Balay   ierr = PetscFree(vals);CHKERRQ(ierr);
2090606d414cSSatish Balay   ierr = PetscFree(mycols);CHKERRQ(ierr);
2091606d414cSSatish Balay   ierr = PetscFree(rowners);CHKERRQ(ierr);
2092d65a2f8fSBarry Smith 
20936d4a8577SBarry Smith   ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
20946d4a8577SBarry Smith   ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2095d10c748bSKris Buschelman   *newmat = A;
20963a40ed3dSBarry Smith   PetscFunctionReturn(0);
2097416022c9SBarry Smith }
2098a0ff6018SBarry Smith 
20994a2ae208SSatish Balay #undef __FUNCT__
21004a2ae208SSatish Balay #define __FUNCT__ "MatGetSubMatrix_MPIAIJ"
2101a0ff6018SBarry Smith /*
210229da9460SBarry Smith     Not great since it makes two copies of the submatrix, first an SeqAIJ
210329da9460SBarry Smith   in local and then by concatenating the local matrices the end result.
210429da9460SBarry Smith   Writing it directly would be much like MatGetSubMatrices_MPIAIJ()
2105a0ff6018SBarry Smith */
21067b2a1423SBarry Smith int MatGetSubMatrix_MPIAIJ(Mat mat,IS isrow,IS iscol,int csize,MatReuse call,Mat *newmat)
2107a0ff6018SBarry Smith {
210800e6dbe6SBarry Smith   int          ierr,i,m,n,rstart,row,rend,nz,*cwork,size,rank,j;
2109ab50ec6bSBarry Smith   int          *ii,*jj,nlocal,*dlens,*olens,dlen,olen,jend,mglobal;
2110fee21e36SBarry Smith   Mat          *local,M,Mreuse;
211187828ca2SBarry Smith   PetscScalar  *vwork,*aa;
211200e6dbe6SBarry Smith   MPI_Comm     comm = mat->comm;
211300e6dbe6SBarry Smith   Mat_SeqAIJ   *aij;
21147e2c5f70SBarry Smith 
2115a0ff6018SBarry Smith 
2116a0ff6018SBarry Smith   PetscFunctionBegin;
21171dab6e02SBarry Smith   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
21181dab6e02SBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
211900e6dbe6SBarry Smith 
2120fee21e36SBarry Smith   if (call ==  MAT_REUSE_MATRIX) {
2121fee21e36SBarry Smith     ierr = PetscObjectQuery((PetscObject)*newmat,"SubMatrix",(PetscObject *)&Mreuse);CHKERRQ(ierr);
212229bbc08cSBarry Smith     if (!Mreuse) SETERRQ(1,"Submatrix passed in was not used before, cannot reuse");
2123fee21e36SBarry Smith     local = &Mreuse;
2124fee21e36SBarry Smith     ierr  = MatGetSubMatrices(mat,1,&isrow,&iscol,MAT_REUSE_MATRIX,&local);CHKERRQ(ierr);
2125fee21e36SBarry Smith   } else {
2126a0ff6018SBarry Smith     ierr   = MatGetSubMatrices(mat,1,&isrow,&iscol,MAT_INITIAL_MATRIX,&local);CHKERRQ(ierr);
2127fee21e36SBarry Smith     Mreuse = *local;
2128606d414cSSatish Balay     ierr   = PetscFree(local);CHKERRQ(ierr);
2129fee21e36SBarry Smith   }
2130a0ff6018SBarry Smith 
2131a0ff6018SBarry Smith   /*
2132a0ff6018SBarry Smith       m - number of local rows
2133a0ff6018SBarry Smith       n - number of columns (same on all processors)
2134a0ff6018SBarry Smith       rstart - first row in new global matrix generated
2135a0ff6018SBarry Smith   */
2136fee21e36SBarry Smith   ierr = MatGetSize(Mreuse,&m,&n);CHKERRQ(ierr);
2137a0ff6018SBarry Smith   if (call == MAT_INITIAL_MATRIX) {
2138fee21e36SBarry Smith     aij = (Mat_SeqAIJ*)(Mreuse)->data;
213900e6dbe6SBarry Smith     ii  = aij->i;
214000e6dbe6SBarry Smith     jj  = aij->j;
214100e6dbe6SBarry Smith 
2142a0ff6018SBarry Smith     /*
214300e6dbe6SBarry Smith         Determine the number of non-zeros in the diagonal and off-diagonal
214400e6dbe6SBarry Smith         portions of the matrix in order to do correct preallocation
2145a0ff6018SBarry Smith     */
214600e6dbe6SBarry Smith 
214700e6dbe6SBarry Smith     /* first get start and end of "diagonal" columns */
21486a6a5d1dSBarry Smith     if (csize == PETSC_DECIDE) {
2149ab50ec6bSBarry Smith       ierr = ISGetSize(isrow,&mglobal);CHKERRQ(ierr);
2150ab50ec6bSBarry Smith       if (mglobal == n) { /* square matrix */
2151e2c4fddaSBarry Smith 	nlocal = m;
21526a6a5d1dSBarry Smith       } else {
2153ab50ec6bSBarry Smith         nlocal = n/size + ((n % size) > rank);
2154ab50ec6bSBarry Smith       }
2155ab50ec6bSBarry Smith     } else {
21566a6a5d1dSBarry Smith       nlocal = csize;
21576a6a5d1dSBarry Smith     }
2158ca161407SBarry Smith     ierr   = MPI_Scan(&nlocal,&rend,1,MPI_INT,MPI_SUM,comm);CHKERRQ(ierr);
215900e6dbe6SBarry Smith     rstart = rend - nlocal;
21606a6a5d1dSBarry Smith     if (rank == size - 1 && rend != n) {
216119e8cfbbSBarry Smith       SETERRQ2(1,"Local column sizes %d do not add up to total number of columns %d",rend,n);
21626a6a5d1dSBarry Smith     }
216300e6dbe6SBarry Smith 
216400e6dbe6SBarry Smith     /* next, compute all the lengths */
2165b0a32e0cSBarry Smith     ierr  = PetscMalloc((2*m+1)*sizeof(int),&dlens);CHKERRQ(ierr);
216600e6dbe6SBarry Smith     olens = dlens + m;
216700e6dbe6SBarry Smith     for (i=0; i<m; i++) {
216800e6dbe6SBarry Smith       jend = ii[i+1] - ii[i];
216900e6dbe6SBarry Smith       olen = 0;
217000e6dbe6SBarry Smith       dlen = 0;
217100e6dbe6SBarry Smith       for (j=0; j<jend; j++) {
217200e6dbe6SBarry Smith         if (*jj < rstart || *jj >= rend) olen++;
217300e6dbe6SBarry Smith         else dlen++;
217400e6dbe6SBarry Smith         jj++;
217500e6dbe6SBarry Smith       }
217600e6dbe6SBarry Smith       olens[i] = olen;
217700e6dbe6SBarry Smith       dlens[i] = dlen;
217800e6dbe6SBarry Smith     }
21792d207970SBarry Smith     ierr = MatCreateMPIAIJ(comm,m,nlocal,PETSC_DECIDE,n,0,dlens,0,olens,&M);CHKERRQ(ierr);
2180606d414cSSatish Balay     ierr = PetscFree(dlens);CHKERRQ(ierr);
2181a0ff6018SBarry Smith   } else {
2182a0ff6018SBarry Smith     int ml,nl;
2183a0ff6018SBarry Smith 
2184a0ff6018SBarry Smith     M = *newmat;
2185a0ff6018SBarry Smith     ierr = MatGetLocalSize(M,&ml,&nl);CHKERRQ(ierr);
218629bbc08cSBarry Smith     if (ml != m) SETERRQ(PETSC_ERR_ARG_SIZ,"Previous matrix must be same size/layout as request");
2187a0ff6018SBarry Smith     ierr = MatZeroEntries(M);CHKERRQ(ierr);
2188c48de900SBarry Smith     /*
2189c48de900SBarry Smith          The next two lines are needed so we may call MatSetValues_MPIAIJ() below directly,
2190c48de900SBarry Smith        rather than the slower MatSetValues().
2191c48de900SBarry Smith     */
2192c48de900SBarry Smith     M->was_assembled = PETSC_TRUE;
2193c48de900SBarry Smith     M->assembled     = PETSC_FALSE;
2194a0ff6018SBarry Smith   }
2195a0ff6018SBarry Smith   ierr = MatGetOwnershipRange(M,&rstart,&rend);CHKERRQ(ierr);
2196fee21e36SBarry Smith   aij = (Mat_SeqAIJ*)(Mreuse)->data;
219700e6dbe6SBarry Smith   ii  = aij->i;
219800e6dbe6SBarry Smith   jj  = aij->j;
219900e6dbe6SBarry Smith   aa  = aij->a;
2200a0ff6018SBarry Smith   for (i=0; i<m; i++) {
2201a0ff6018SBarry Smith     row   = rstart + i;
220200e6dbe6SBarry Smith     nz    = ii[i+1] - ii[i];
220300e6dbe6SBarry Smith     cwork = jj;     jj += nz;
220400e6dbe6SBarry Smith     vwork = aa;     aa += nz;
22058c638d02SBarry Smith     ierr = MatSetValues_MPIAIJ(M,1,&row,nz,cwork,vwork,INSERT_VALUES);CHKERRQ(ierr);
2206a0ff6018SBarry Smith   }
2207a0ff6018SBarry Smith 
2208a0ff6018SBarry Smith   ierr = MatAssemblyBegin(M,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2209a0ff6018SBarry Smith   ierr = MatAssemblyEnd(M,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2210a0ff6018SBarry Smith   *newmat = M;
2211fee21e36SBarry Smith 
2212fee21e36SBarry Smith   /* save submatrix used in processor for next request */
2213fee21e36SBarry Smith   if (call ==  MAT_INITIAL_MATRIX) {
2214fee21e36SBarry Smith     ierr = PetscObjectCompose((PetscObject)M,"SubMatrix",(PetscObject)Mreuse);CHKERRQ(ierr);
2215fee21e36SBarry Smith     ierr = PetscObjectDereference((PetscObject)Mreuse);CHKERRQ(ierr);
2216fee21e36SBarry Smith   }
2217fee21e36SBarry Smith 
2218a0ff6018SBarry Smith   PetscFunctionReturn(0);
2219a0ff6018SBarry Smith }
2220273d9f13SBarry Smith 
22214a2ae208SSatish Balay #undef __FUNCT__
22224a2ae208SSatish Balay #define __FUNCT__ "MatMPIAIJSetPreallocation"
2223273d9f13SBarry Smith /*@C
2224273d9f13SBarry Smith    MatMPIAIJSetPreallocation - Creates a sparse parallel matrix in AIJ format
2225273d9f13SBarry Smith    (the default parallel PETSc format).  For good matrix assembly performance
2226273d9f13SBarry Smith    the user should preallocate the matrix storage by setting the parameters
2227273d9f13SBarry Smith    d_nz (or d_nnz) and o_nz (or o_nnz).  By setting these parameters accurately,
2228273d9f13SBarry Smith    performance can be increased by more than a factor of 50.
2229273d9f13SBarry Smith 
2230273d9f13SBarry Smith    Collective on MPI_Comm
2231273d9f13SBarry Smith 
2232273d9f13SBarry Smith    Input Parameters:
2233273d9f13SBarry Smith +  A - the matrix
2234273d9f13SBarry Smith .  d_nz  - number of nonzeros per row in DIAGONAL portion of local submatrix
2235273d9f13SBarry Smith            (same value is used for all local rows)
2236273d9f13SBarry Smith .  d_nnz - array containing the number of nonzeros in the various rows of the
2237273d9f13SBarry Smith            DIAGONAL portion of the local submatrix (possibly different for each row)
2238273d9f13SBarry Smith            or PETSC_NULL, if d_nz is used to specify the nonzero structure.
2239273d9f13SBarry Smith            The size of this array is equal to the number of local rows, i.e 'm'.
2240273d9f13SBarry Smith            You must leave room for the diagonal entry even if it is zero.
2241273d9f13SBarry Smith .  o_nz  - number of nonzeros per row in the OFF-DIAGONAL portion of local
2242273d9f13SBarry Smith            submatrix (same value is used for all local rows).
2243273d9f13SBarry Smith -  o_nnz - array containing the number of nonzeros in the various rows of the
2244273d9f13SBarry Smith            OFF-DIAGONAL portion of the local submatrix (possibly different for
2245273d9f13SBarry Smith            each row) or PETSC_NULL, if o_nz is used to specify the nonzero
2246273d9f13SBarry Smith            structure. The size of this array is equal to the number
2247273d9f13SBarry Smith            of local rows, i.e 'm'.
2248273d9f13SBarry Smith 
2249273d9f13SBarry Smith    The AIJ format (also called the Yale sparse matrix format or
2250273d9f13SBarry Smith    compressed row storage), is fully compatible with standard Fortran 77
2251273d9f13SBarry Smith    storage.  That is, the stored row and column indices can begin at
2252273d9f13SBarry Smith    either one (as in Fortran) or zero.  See the users manual for details.
2253273d9f13SBarry Smith 
2254273d9f13SBarry Smith    The user MUST specify either the local or global matrix dimensions
2255273d9f13SBarry Smith    (possibly both).
2256273d9f13SBarry Smith 
2257273d9f13SBarry Smith    The parallel matrix is partitioned such that the first m0 rows belong to
2258273d9f13SBarry Smith    process 0, the next m1 rows belong to process 1, the next m2 rows belong
2259273d9f13SBarry Smith    to process 2 etc.. where m0,m1,m2... are the input parameter 'm'.
2260273d9f13SBarry Smith 
2261273d9f13SBarry Smith    The DIAGONAL portion of the local submatrix of a processor can be defined
2262273d9f13SBarry Smith    as the submatrix which is obtained by extraction the part corresponding
2263273d9f13SBarry Smith    to the rows r1-r2 and columns r1-r2 of the global matrix, where r1 is the
2264273d9f13SBarry Smith    first row that belongs to the processor, and r2 is the last row belonging
2265273d9f13SBarry Smith    to the this processor. This is a square mxm matrix. The remaining portion
2266273d9f13SBarry Smith    of the local submatrix (mxN) constitute the OFF-DIAGONAL portion.
2267273d9f13SBarry Smith 
2268273d9f13SBarry Smith    If o_nnz, d_nnz are specified, then o_nz, and d_nz are ignored.
2269273d9f13SBarry Smith 
2270273d9f13SBarry Smith    By default, this format uses inodes (identical nodes) when possible.
2271273d9f13SBarry Smith    We search for consecutive rows with the same nonzero structure, thereby
2272273d9f13SBarry Smith    reusing matrix information to achieve increased efficiency.
2273273d9f13SBarry Smith 
2274273d9f13SBarry Smith    Options Database Keys:
2275273d9f13SBarry Smith +  -mat_aij_no_inode  - Do not use inodes
2276273d9f13SBarry Smith .  -mat_aij_inode_limit <limit> - Sets inode limit (max limit=5)
2277273d9f13SBarry Smith -  -mat_aij_oneindex - Internally use indexing starting at 1
2278273d9f13SBarry Smith         rather than 0.  Note that when calling MatSetValues(),
2279273d9f13SBarry Smith         the user still MUST index entries starting at 0!
2280273d9f13SBarry Smith 
2281273d9f13SBarry Smith    Example usage:
2282273d9f13SBarry Smith 
2283273d9f13SBarry Smith    Consider the following 8x8 matrix with 34 non-zero values, that is
2284273d9f13SBarry Smith    assembled across 3 processors. Lets assume that proc0 owns 3 rows,
2285273d9f13SBarry Smith    proc1 owns 3 rows, proc2 owns 2 rows. This division can be shown
2286273d9f13SBarry Smith    as follows:
2287273d9f13SBarry Smith 
2288273d9f13SBarry Smith .vb
2289273d9f13SBarry Smith             1  2  0  |  0  3  0  |  0  4
2290273d9f13SBarry Smith     Proc0   0  5  6  |  7  0  0  |  8  0
2291273d9f13SBarry Smith             9  0 10  | 11  0  0  | 12  0
2292273d9f13SBarry Smith     -------------------------------------
2293273d9f13SBarry Smith            13  0 14  | 15 16 17  |  0  0
2294273d9f13SBarry Smith     Proc1   0 18  0  | 19 20 21  |  0  0
2295273d9f13SBarry Smith             0  0  0  | 22 23  0  | 24  0
2296273d9f13SBarry Smith     -------------------------------------
2297273d9f13SBarry Smith     Proc2  25 26 27  |  0  0 28  | 29  0
2298273d9f13SBarry Smith            30  0  0  | 31 32 33  |  0 34
2299273d9f13SBarry Smith .ve
2300273d9f13SBarry Smith 
2301273d9f13SBarry Smith    This can be represented as a collection of submatrices as:
2302273d9f13SBarry Smith 
2303273d9f13SBarry Smith .vb
2304273d9f13SBarry Smith       A B C
2305273d9f13SBarry Smith       D E F
2306273d9f13SBarry Smith       G H I
2307273d9f13SBarry Smith .ve
2308273d9f13SBarry Smith 
2309273d9f13SBarry Smith    Where the submatrices A,B,C are owned by proc0, D,E,F are
2310273d9f13SBarry Smith    owned by proc1, G,H,I are owned by proc2.
2311273d9f13SBarry Smith 
2312273d9f13SBarry Smith    The 'm' parameters for proc0,proc1,proc2 are 3,3,2 respectively.
2313273d9f13SBarry Smith    The 'n' parameters for proc0,proc1,proc2 are 3,3,2 respectively.
2314273d9f13SBarry Smith    The 'M','N' parameters are 8,8, and have the same values on all procs.
2315273d9f13SBarry Smith 
2316273d9f13SBarry Smith    The DIAGONAL submatrices corresponding to proc0,proc1,proc2 are
2317273d9f13SBarry Smith    submatrices [A], [E], [I] respectively. The OFF-DIAGONAL submatrices
2318273d9f13SBarry Smith    corresponding to proc0,proc1,proc2 are [BC], [DF], [GH] respectively.
2319273d9f13SBarry Smith    Internally, each processor stores the DIAGONAL part, and the OFF-DIAGONAL
2320273d9f13SBarry Smith    part as SeqAIJ matrices. for eg: proc1 will store [E] as a SeqAIJ
2321273d9f13SBarry Smith    matrix, ans [DF] as another SeqAIJ matrix.
2322273d9f13SBarry Smith 
2323273d9f13SBarry Smith    When d_nz, o_nz parameters are specified, d_nz storage elements are
2324273d9f13SBarry Smith    allocated for every row of the local diagonal submatrix, and o_nz
2325273d9f13SBarry Smith    storage locations are allocated for every row of the OFF-DIAGONAL submat.
2326273d9f13SBarry Smith    One way to choose d_nz and o_nz is to use the max nonzerors per local
2327273d9f13SBarry Smith    rows for each of the local DIAGONAL, and the OFF-DIAGONAL submatrices.
2328273d9f13SBarry Smith    In this case, the values of d_nz,o_nz are:
2329273d9f13SBarry Smith .vb
2330273d9f13SBarry Smith      proc0 : dnz = 2, o_nz = 2
2331273d9f13SBarry Smith      proc1 : dnz = 3, o_nz = 2
2332273d9f13SBarry Smith      proc2 : dnz = 1, o_nz = 4
2333273d9f13SBarry Smith .ve
2334273d9f13SBarry Smith    We are allocating m*(d_nz+o_nz) storage locations for every proc. This
2335273d9f13SBarry Smith    translates to 3*(2+2)=12 for proc0, 3*(3+2)=15 for proc1, 2*(1+4)=10
2336273d9f13SBarry Smith    for proc3. i.e we are using 12+15+10=37 storage locations to store
2337273d9f13SBarry Smith    34 values.
2338273d9f13SBarry Smith 
2339273d9f13SBarry Smith    When d_nnz, o_nnz parameters are specified, the storage is specified
2340273d9f13SBarry Smith    for every row, coresponding to both DIAGONAL and OFF-DIAGONAL submatrices.
2341273d9f13SBarry Smith    In the above case the values for d_nnz,o_nnz are:
2342273d9f13SBarry Smith .vb
2343273d9f13SBarry Smith      proc0: d_nnz = [2,2,2] and o_nnz = [2,2,2]
2344273d9f13SBarry Smith      proc1: d_nnz = [3,3,2] and o_nnz = [2,1,1]
2345273d9f13SBarry Smith      proc2: d_nnz = [1,1]   and o_nnz = [4,4]
2346273d9f13SBarry Smith .ve
2347273d9f13SBarry Smith    Here the space allocated is sum of all the above values i.e 34, and
2348273d9f13SBarry Smith    hence pre-allocation is perfect.
2349273d9f13SBarry Smith 
2350273d9f13SBarry Smith    Level: intermediate
2351273d9f13SBarry Smith 
2352273d9f13SBarry Smith .keywords: matrix, aij, compressed row, sparse, parallel
2353273d9f13SBarry Smith 
2354273d9f13SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues()
2355273d9f13SBarry Smith @*/
2356ca01db9bSBarry Smith int MatMPIAIJSetPreallocation(Mat B,int d_nz,const int d_nnz[],int o_nz,const int o_nnz[])
2357273d9f13SBarry Smith {
2358ca01db9bSBarry Smith   int ierr,(*f)(Mat,int,const int[],int,const int[]);
2359273d9f13SBarry Smith 
2360273d9f13SBarry Smith   PetscFunctionBegin;
2361a23d5eceSKris Buschelman   ierr = PetscObjectQueryFunction((PetscObject)B,"MatMPIAIJSetPreallocation_C",(void (**)(void))&f);CHKERRQ(ierr);
2362a23d5eceSKris Buschelman   if (f) {
2363a23d5eceSKris Buschelman     ierr = (*f)(B,d_nz,d_nnz,o_nz,o_nnz);CHKERRQ(ierr);
2364273d9f13SBarry Smith   }
2365273d9f13SBarry Smith   PetscFunctionReturn(0);
2366273d9f13SBarry Smith }
2367273d9f13SBarry Smith 
23684a2ae208SSatish Balay #undef __FUNCT__
23694a2ae208SSatish Balay #define __FUNCT__ "MatCreateMPIAIJ"
2370273d9f13SBarry Smith /*@C
2371273d9f13SBarry Smith    MatCreateMPIAIJ - Creates a sparse parallel matrix in AIJ format
2372273d9f13SBarry Smith    (the default parallel PETSc format).  For good matrix assembly performance
2373273d9f13SBarry Smith    the user should preallocate the matrix storage by setting the parameters
2374273d9f13SBarry Smith    d_nz (or d_nnz) and o_nz (or o_nnz).  By setting these parameters accurately,
2375273d9f13SBarry Smith    performance can be increased by more than a factor of 50.
2376273d9f13SBarry Smith 
2377273d9f13SBarry Smith    Collective on MPI_Comm
2378273d9f13SBarry Smith 
2379273d9f13SBarry Smith    Input Parameters:
2380273d9f13SBarry Smith +  comm - MPI communicator
2381273d9f13SBarry Smith .  m - number of local rows (or PETSC_DECIDE to have calculated if M is given)
2382273d9f13SBarry Smith            This value should be the same as the local size used in creating the
2383273d9f13SBarry Smith            y vector for the matrix-vector product y = Ax.
2384273d9f13SBarry Smith .  n - This value should be the same as the local size used in creating the
2385273d9f13SBarry Smith        x vector for the matrix-vector product y = Ax. (or PETSC_DECIDE to have
2386273d9f13SBarry Smith        calculated if N is given) For square matrices n is almost always m.
2387273d9f13SBarry Smith .  M - number of global rows (or PETSC_DETERMINE to have calculated if m is given)
2388273d9f13SBarry Smith .  N - number of global columns (or PETSC_DETERMINE to have calculated if n is given)
2389273d9f13SBarry Smith .  d_nz  - number of nonzeros per row in DIAGONAL portion of local submatrix
2390273d9f13SBarry Smith            (same value is used for all local rows)
2391273d9f13SBarry Smith .  d_nnz - array containing the number of nonzeros in the various rows of the
2392273d9f13SBarry Smith            DIAGONAL portion of the local submatrix (possibly different for each row)
2393273d9f13SBarry Smith            or PETSC_NULL, if d_nz is used to specify the nonzero structure.
2394273d9f13SBarry Smith            The size of this array is equal to the number of local rows, i.e 'm'.
2395273d9f13SBarry Smith            You must leave room for the diagonal entry even if it is zero.
2396273d9f13SBarry Smith .  o_nz  - number of nonzeros per row in the OFF-DIAGONAL portion of local
2397273d9f13SBarry Smith            submatrix (same value is used for all local rows).
2398273d9f13SBarry Smith -  o_nnz - array containing the number of nonzeros in the various rows of the
2399273d9f13SBarry Smith            OFF-DIAGONAL portion of the local submatrix (possibly different for
2400273d9f13SBarry Smith            each row) or PETSC_NULL, if o_nz is used to specify the nonzero
2401273d9f13SBarry Smith            structure. The size of this array is equal to the number
2402273d9f13SBarry Smith            of local rows, i.e 'm'.
2403273d9f13SBarry Smith 
2404273d9f13SBarry Smith    Output Parameter:
2405273d9f13SBarry Smith .  A - the matrix
2406273d9f13SBarry Smith 
2407273d9f13SBarry Smith    Notes:
2408273d9f13SBarry Smith    m,n,M,N parameters specify the size of the matrix, and its partitioning across
2409273d9f13SBarry Smith    processors, while d_nz,d_nnz,o_nz,o_nnz parameters specify the approximate
2410273d9f13SBarry Smith    storage requirements for this matrix.
2411273d9f13SBarry Smith 
2412273d9f13SBarry Smith    If PETSC_DECIDE or  PETSC_DETERMINE is used for a particular argument on one
2413273d9f13SBarry Smith    processor than it must be used on all processors that share the object for
2414273d9f13SBarry Smith    that argument.
2415273d9f13SBarry Smith 
2416273d9f13SBarry Smith    The AIJ format (also called the Yale sparse matrix format or
2417273d9f13SBarry Smith    compressed row storage), is fully compatible with standard Fortran 77
2418273d9f13SBarry Smith    storage.  That is, the stored row and column indices can begin at
2419273d9f13SBarry Smith    either one (as in Fortran) or zero.  See the users manual for details.
2420273d9f13SBarry Smith 
2421273d9f13SBarry Smith    The user MUST specify either the local or global matrix dimensions
2422273d9f13SBarry Smith    (possibly both).
2423273d9f13SBarry Smith 
2424273d9f13SBarry Smith    The parallel matrix is partitioned such that the first m0 rows belong to
2425273d9f13SBarry Smith    process 0, the next m1 rows belong to process 1, the next m2 rows belong
2426273d9f13SBarry Smith    to process 2 etc.. where m0,m1,m2... are the input parameter 'm'.
2427273d9f13SBarry Smith 
2428273d9f13SBarry Smith    The DIAGONAL portion of the local submatrix of a processor can be defined
2429273d9f13SBarry Smith    as the submatrix which is obtained by extraction the part corresponding
2430273d9f13SBarry Smith    to the rows r1-r2 and columns r1-r2 of the global matrix, where r1 is the
2431273d9f13SBarry Smith    first row that belongs to the processor, and r2 is the last row belonging
2432273d9f13SBarry Smith    to the this processor. This is a square mxm matrix. The remaining portion
2433273d9f13SBarry Smith    of the local submatrix (mxN) constitute the OFF-DIAGONAL portion.
2434273d9f13SBarry Smith 
2435273d9f13SBarry Smith    If o_nnz, d_nnz are specified, then o_nz, and d_nz are ignored.
2436273d9f13SBarry Smith 
243797d05335SKris Buschelman    When calling this routine with a single process communicator, a matrix of
243897d05335SKris Buschelman    type SEQAIJ is returned.  If a matrix of type MPIAIJ is desired for this
243997d05335SKris Buschelman    type of communicator, use the construction mechanism:
244097d05335SKris Buschelman      MatCreate(...,&A); MatSetType(A,MPIAIJ); MatMPIAIJSetPreallocation(A,...);
244197d05335SKris Buschelman 
2442273d9f13SBarry Smith    By default, this format uses inodes (identical nodes) when possible.
2443273d9f13SBarry Smith    We search for consecutive rows with the same nonzero structure, thereby
2444273d9f13SBarry Smith    reusing matrix information to achieve increased efficiency.
2445273d9f13SBarry Smith 
2446273d9f13SBarry Smith    Options Database Keys:
2447273d9f13SBarry Smith +  -mat_aij_no_inode  - Do not use inodes
2448273d9f13SBarry Smith .  -mat_aij_inode_limit <limit> - Sets inode limit (max limit=5)
2449273d9f13SBarry Smith -  -mat_aij_oneindex - Internally use indexing starting at 1
2450273d9f13SBarry Smith         rather than 0.  Note that when calling MatSetValues(),
2451273d9f13SBarry Smith         the user still MUST index entries starting at 0!
2452273d9f13SBarry Smith 
2453273d9f13SBarry Smith 
2454273d9f13SBarry Smith    Example usage:
2455273d9f13SBarry Smith 
2456273d9f13SBarry Smith    Consider the following 8x8 matrix with 34 non-zero values, that is
2457273d9f13SBarry Smith    assembled across 3 processors. Lets assume that proc0 owns 3 rows,
2458273d9f13SBarry Smith    proc1 owns 3 rows, proc2 owns 2 rows. This division can be shown
2459273d9f13SBarry Smith    as follows:
2460273d9f13SBarry Smith 
2461273d9f13SBarry Smith .vb
2462273d9f13SBarry Smith             1  2  0  |  0  3  0  |  0  4
2463273d9f13SBarry Smith     Proc0   0  5  6  |  7  0  0  |  8  0
2464273d9f13SBarry Smith             9  0 10  | 11  0  0  | 12  0
2465273d9f13SBarry Smith     -------------------------------------
2466273d9f13SBarry Smith            13  0 14  | 15 16 17  |  0  0
2467273d9f13SBarry Smith     Proc1   0 18  0  | 19 20 21  |  0  0
2468273d9f13SBarry Smith             0  0  0  | 22 23  0  | 24  0
2469273d9f13SBarry Smith     -------------------------------------
2470273d9f13SBarry Smith     Proc2  25 26 27  |  0  0 28  | 29  0
2471273d9f13SBarry Smith            30  0  0  | 31 32 33  |  0 34
2472273d9f13SBarry Smith .ve
2473273d9f13SBarry Smith 
2474273d9f13SBarry Smith    This can be represented as a collection of submatrices as:
2475273d9f13SBarry Smith 
2476273d9f13SBarry Smith .vb
2477273d9f13SBarry Smith       A B C
2478273d9f13SBarry Smith       D E F
2479273d9f13SBarry Smith       G H I
2480273d9f13SBarry Smith .ve
2481273d9f13SBarry Smith 
2482273d9f13SBarry Smith    Where the submatrices A,B,C are owned by proc0, D,E,F are
2483273d9f13SBarry Smith    owned by proc1, G,H,I are owned by proc2.
2484273d9f13SBarry Smith 
2485273d9f13SBarry Smith    The 'm' parameters for proc0,proc1,proc2 are 3,3,2 respectively.
2486273d9f13SBarry Smith    The 'n' parameters for proc0,proc1,proc2 are 3,3,2 respectively.
2487273d9f13SBarry Smith    The 'M','N' parameters are 8,8, and have the same values on all procs.
2488273d9f13SBarry Smith 
2489273d9f13SBarry Smith    The DIAGONAL submatrices corresponding to proc0,proc1,proc2 are
2490273d9f13SBarry Smith    submatrices [A], [E], [I] respectively. The OFF-DIAGONAL submatrices
2491273d9f13SBarry Smith    corresponding to proc0,proc1,proc2 are [BC], [DF], [GH] respectively.
2492273d9f13SBarry Smith    Internally, each processor stores the DIAGONAL part, and the OFF-DIAGONAL
2493273d9f13SBarry Smith    part as SeqAIJ matrices. for eg: proc1 will store [E] as a SeqAIJ
2494273d9f13SBarry Smith    matrix, ans [DF] as another SeqAIJ matrix.
2495273d9f13SBarry Smith 
2496273d9f13SBarry Smith    When d_nz, o_nz parameters are specified, d_nz storage elements are
2497273d9f13SBarry Smith    allocated for every row of the local diagonal submatrix, and o_nz
2498273d9f13SBarry Smith    storage locations are allocated for every row of the OFF-DIAGONAL submat.
2499273d9f13SBarry Smith    One way to choose d_nz and o_nz is to use the max nonzerors per local
2500273d9f13SBarry Smith    rows for each of the local DIAGONAL, and the OFF-DIAGONAL submatrices.
2501273d9f13SBarry Smith    In this case, the values of d_nz,o_nz are:
2502273d9f13SBarry Smith .vb
2503273d9f13SBarry Smith      proc0 : dnz = 2, o_nz = 2
2504273d9f13SBarry Smith      proc1 : dnz = 3, o_nz = 2
2505273d9f13SBarry Smith      proc2 : dnz = 1, o_nz = 4
2506273d9f13SBarry Smith .ve
2507273d9f13SBarry Smith    We are allocating m*(d_nz+o_nz) storage locations for every proc. This
2508273d9f13SBarry Smith    translates to 3*(2+2)=12 for proc0, 3*(3+2)=15 for proc1, 2*(1+4)=10
2509273d9f13SBarry Smith    for proc3. i.e we are using 12+15+10=37 storage locations to store
2510273d9f13SBarry Smith    34 values.
2511273d9f13SBarry Smith 
2512273d9f13SBarry Smith    When d_nnz, o_nnz parameters are specified, the storage is specified
2513273d9f13SBarry Smith    for every row, coresponding to both DIAGONAL and OFF-DIAGONAL submatrices.
2514273d9f13SBarry Smith    In the above case the values for d_nnz,o_nnz are:
2515273d9f13SBarry Smith .vb
2516273d9f13SBarry Smith      proc0: d_nnz = [2,2,2] and o_nnz = [2,2,2]
2517273d9f13SBarry Smith      proc1: d_nnz = [3,3,2] and o_nnz = [2,1,1]
2518273d9f13SBarry Smith      proc2: d_nnz = [1,1]   and o_nnz = [4,4]
2519273d9f13SBarry Smith .ve
2520273d9f13SBarry Smith    Here the space allocated is sum of all the above values i.e 34, and
2521273d9f13SBarry Smith    hence pre-allocation is perfect.
2522273d9f13SBarry Smith 
2523273d9f13SBarry Smith    Level: intermediate
2524273d9f13SBarry Smith 
2525273d9f13SBarry Smith .keywords: matrix, aij, compressed row, sparse, parallel
2526273d9f13SBarry Smith 
2527273d9f13SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues()
2528273d9f13SBarry Smith @*/
2529ca01db9bSBarry Smith int MatCreateMPIAIJ(MPI_Comm comm,int m,int n,int M,int N,int d_nz,const int d_nnz[],int o_nz,const int o_nnz[],Mat *A)
2530273d9f13SBarry Smith {
2531273d9f13SBarry Smith   int ierr,size;
2532273d9f13SBarry Smith 
2533273d9f13SBarry Smith   PetscFunctionBegin;
2534273d9f13SBarry Smith   ierr = MatCreate(comm,m,n,M,N,A);CHKERRQ(ierr);
2535273d9f13SBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
2536273d9f13SBarry Smith   if (size > 1) {
2537273d9f13SBarry Smith     ierr = MatSetType(*A,MATMPIAIJ);CHKERRQ(ierr);
2538273d9f13SBarry Smith     ierr = MatMPIAIJSetPreallocation(*A,d_nz,d_nnz,o_nz,o_nnz);CHKERRQ(ierr);
2539273d9f13SBarry Smith   } else {
2540273d9f13SBarry Smith     ierr = MatSetType(*A,MATSEQAIJ);CHKERRQ(ierr);
2541273d9f13SBarry Smith     ierr = MatSeqAIJSetPreallocation(*A,d_nz,d_nnz);CHKERRQ(ierr);
2542273d9f13SBarry Smith   }
2543273d9f13SBarry Smith   PetscFunctionReturn(0);
2544273d9f13SBarry Smith }
2545195d93cdSBarry Smith 
25464a2ae208SSatish Balay #undef __FUNCT__
25474a2ae208SSatish Balay #define __FUNCT__ "MatMPIAIJGetSeqAIJ"
2548268466fbSBarry Smith int MatMPIAIJGetSeqAIJ(Mat A,Mat *Ad,Mat *Ao,int *colmap[])
2549195d93cdSBarry Smith {
2550195d93cdSBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ *)A->data;
2551195d93cdSBarry Smith   PetscFunctionBegin;
2552195d93cdSBarry Smith   *Ad     = a->A;
2553195d93cdSBarry Smith   *Ao     = a->B;
2554195d93cdSBarry Smith   *colmap = a->garray;
2555195d93cdSBarry Smith   PetscFunctionReturn(0);
2556195d93cdSBarry Smith }
2557a2243be0SBarry Smith 
2558a2243be0SBarry Smith #undef __FUNCT__
2559a2243be0SBarry Smith #define __FUNCT__ "MatSetColoring_MPIAIJ"
2560a2243be0SBarry Smith int MatSetColoring_MPIAIJ(Mat A,ISColoring coloring)
2561a2243be0SBarry Smith {
256208b6dcc0SBarry Smith   int        ierr,i;
2563a2243be0SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
2564a2243be0SBarry Smith 
2565a2243be0SBarry Smith   PetscFunctionBegin;
2566a2243be0SBarry Smith   if (coloring->ctype == IS_COLORING_LOCAL) {
256708b6dcc0SBarry Smith     ISColoringValue *allcolors,*colors;
2568a2243be0SBarry Smith     ISColoring      ocoloring;
2569a2243be0SBarry Smith 
2570a2243be0SBarry Smith     /* set coloring for diagonal portion */
2571a2243be0SBarry Smith     ierr = MatSetColoring_SeqAIJ(a->A,coloring);CHKERRQ(ierr);
2572a2243be0SBarry Smith 
2573a2243be0SBarry Smith     /* set coloring for off-diagonal portion */
257408b6dcc0SBarry Smith     ierr = ISAllGatherColors(A->comm,coloring->n,coloring->colors,PETSC_NULL,&allcolors);CHKERRQ(ierr);
257508b6dcc0SBarry Smith     ierr = PetscMalloc((a->B->n+1)*sizeof(ISColoringValue),&colors);CHKERRQ(ierr);
2576a2243be0SBarry Smith     for (i=0; i<a->B->n; i++) {
2577a2243be0SBarry Smith       colors[i] = allcolors[a->garray[i]];
2578a2243be0SBarry Smith     }
2579a2243be0SBarry Smith     ierr = PetscFree(allcolors);CHKERRQ(ierr);
2580a2243be0SBarry Smith     ierr = ISColoringCreate(MPI_COMM_SELF,a->B->n,colors,&ocoloring);CHKERRQ(ierr);
2581a2243be0SBarry Smith     ierr = MatSetColoring_SeqAIJ(a->B,ocoloring);CHKERRQ(ierr);
2582a2243be0SBarry Smith     ierr = ISColoringDestroy(ocoloring);CHKERRQ(ierr);
2583a2243be0SBarry Smith   } else if (coloring->ctype == IS_COLORING_GHOSTED) {
258408b6dcc0SBarry Smith     ISColoringValue *colors;
258508b6dcc0SBarry Smith     int             *larray;
2586a2243be0SBarry Smith     ISColoring      ocoloring;
2587a2243be0SBarry Smith 
2588a2243be0SBarry Smith     /* set coloring for diagonal portion */
2589a2243be0SBarry Smith     ierr = PetscMalloc((a->A->n+1)*sizeof(int),&larray);CHKERRQ(ierr);
2590a2243be0SBarry Smith     for (i=0; i<a->A->n; i++) {
2591a2243be0SBarry Smith       larray[i] = i + a->cstart;
2592a2243be0SBarry Smith     }
2593a2243be0SBarry Smith     ierr = ISGlobalToLocalMappingApply(A->mapping,IS_GTOLM_MASK,a->A->n,larray,PETSC_NULL,larray);CHKERRQ(ierr);
259408b6dcc0SBarry Smith     ierr = PetscMalloc((a->A->n+1)*sizeof(ISColoringValue),&colors);CHKERRQ(ierr);
2595a2243be0SBarry Smith     for (i=0; i<a->A->n; i++) {
2596a2243be0SBarry Smith       colors[i] = coloring->colors[larray[i]];
2597a2243be0SBarry Smith     }
2598a2243be0SBarry Smith     ierr = PetscFree(larray);CHKERRQ(ierr);
259912c595b3SBarry Smith     ierr = ISColoringCreate(PETSC_COMM_SELF,a->A->n,colors,&ocoloring);CHKERRQ(ierr);
2600a2243be0SBarry Smith     ierr = MatSetColoring_SeqAIJ(a->A,ocoloring);CHKERRQ(ierr);
2601a2243be0SBarry Smith     ierr = ISColoringDestroy(ocoloring);CHKERRQ(ierr);
2602a2243be0SBarry Smith 
2603a2243be0SBarry Smith     /* set coloring for off-diagonal portion */
2604a2243be0SBarry Smith     ierr = PetscMalloc((a->B->n+1)*sizeof(int),&larray);CHKERRQ(ierr);
2605a2243be0SBarry Smith     ierr = ISGlobalToLocalMappingApply(A->mapping,IS_GTOLM_MASK,a->B->n,a->garray,PETSC_NULL,larray);CHKERRQ(ierr);
260608b6dcc0SBarry Smith     ierr = PetscMalloc((a->B->n+1)*sizeof(ISColoringValue),&colors);CHKERRQ(ierr);
2607a2243be0SBarry Smith     for (i=0; i<a->B->n; i++) {
2608a2243be0SBarry Smith       colors[i] = coloring->colors[larray[i]];
2609a2243be0SBarry Smith     }
2610a2243be0SBarry Smith     ierr = PetscFree(larray);CHKERRQ(ierr);
2611a2243be0SBarry Smith     ierr = ISColoringCreate(MPI_COMM_SELF,a->B->n,colors,&ocoloring);CHKERRQ(ierr);
2612a2243be0SBarry Smith     ierr = MatSetColoring_SeqAIJ(a->B,ocoloring);CHKERRQ(ierr);
2613a2243be0SBarry Smith     ierr = ISColoringDestroy(ocoloring);CHKERRQ(ierr);
2614a2243be0SBarry Smith   } else {
2615a2243be0SBarry Smith     SETERRQ1(1,"No support ISColoringType %d",coloring->ctype);
2616a2243be0SBarry Smith   }
2617a2243be0SBarry Smith 
2618a2243be0SBarry Smith   PetscFunctionReturn(0);
2619a2243be0SBarry Smith }
2620a2243be0SBarry Smith 
2621a2243be0SBarry Smith #undef __FUNCT__
2622779c1a83SBarry Smith #define __FUNCT__ "MatSetValuesAdic_MPIAIJ"
2623779c1a83SBarry Smith int MatSetValuesAdic_MPIAIJ(Mat A,void *advalues)
2624a2243be0SBarry Smith {
2625a2243be0SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
2626a2243be0SBarry Smith   int        ierr;
2627a2243be0SBarry Smith 
2628a2243be0SBarry Smith   PetscFunctionBegin;
2629779c1a83SBarry Smith   ierr = MatSetValuesAdic_SeqAIJ(a->A,advalues);CHKERRQ(ierr);
2630779c1a83SBarry Smith   ierr = MatSetValuesAdic_SeqAIJ(a->B,advalues);CHKERRQ(ierr);
2631779c1a83SBarry Smith   PetscFunctionReturn(0);
2632779c1a83SBarry Smith }
2633779c1a83SBarry Smith 
2634779c1a83SBarry Smith #undef __FUNCT__
2635779c1a83SBarry Smith #define __FUNCT__ "MatSetValuesAdifor_MPIAIJ"
2636779c1a83SBarry Smith int MatSetValuesAdifor_MPIAIJ(Mat A,int nl,void *advalues)
2637779c1a83SBarry Smith {
2638779c1a83SBarry Smith   Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data;
2639779c1a83SBarry Smith   int        ierr;
2640779c1a83SBarry Smith 
2641779c1a83SBarry Smith   PetscFunctionBegin;
2642779c1a83SBarry Smith   ierr = MatSetValuesAdifor_SeqAIJ(a->A,nl,advalues);CHKERRQ(ierr);
2643779c1a83SBarry Smith   ierr = MatSetValuesAdifor_SeqAIJ(a->B,nl,advalues);CHKERRQ(ierr);
2644a2243be0SBarry Smith   PetscFunctionReturn(0);
2645a2243be0SBarry Smith }
2646c5d6d63eSBarry Smith 
2647c5d6d63eSBarry Smith #undef __FUNCT__
264851dd7536SBarry Smith #define __FUNCT__ "MatMerge"
2649c5d6d63eSBarry Smith /*@C
265051dd7536SBarry Smith       MatMerge - Creates a single large PETSc matrix by concatinating sequential
265151dd7536SBarry Smith                  matrices from each processor
2652c5d6d63eSBarry Smith 
2653c5d6d63eSBarry Smith     Collective on MPI_Comm
2654c5d6d63eSBarry Smith 
2655c5d6d63eSBarry Smith    Input Parameters:
265651dd7536SBarry Smith +    comm - the communicators the parallel matrix will live on
265751dd7536SBarry Smith -    inmat - the input sequential matrices
265851dd7536SBarry Smith 
265951dd7536SBarry Smith    Output Parameter:
266051dd7536SBarry Smith .    outmat - the parallel matrix generated
2661c5d6d63eSBarry Smith 
26627e25d530SSatish Balay     Level: advanced
26637e25d530SSatish Balay 
2664c5d6d63eSBarry Smith    Notes: The number of columns of the matrix in EACH of the seperate files
2665c5d6d63eSBarry Smith       MUST be the same.
2666c5d6d63eSBarry Smith 
2667c5d6d63eSBarry Smith @*/
266851dd7536SBarry Smith int MatMerge(MPI_Comm comm,Mat inmat, Mat *outmat)
2669c5d6d63eSBarry Smith {
2670a15ac5e4SHong Zhang   int         ierr,m,n,i,rstart,*indx,nnz,I,*dnz,*onz;
2671c5d6d63eSBarry Smith   PetscScalar *values;
267251dd7536SBarry Smith   PetscMap    columnmap,rowmap;
2673c5d6d63eSBarry Smith 
2674c5d6d63eSBarry Smith   PetscFunctionBegin;
2675c5d6d63eSBarry Smith 
267651dd7536SBarry Smith   ierr = MatGetSize(inmat,&m,&n);CHKERRQ(ierr);
267751dd7536SBarry Smith 
267851dd7536SBarry Smith   /* count nonzeros in each row, for diagonal and off diagonal portion of matrix */
267951dd7536SBarry Smith   ierr = PetscMapCreate(comm,&columnmap);CHKERRQ(ierr);
268051dd7536SBarry Smith   ierr = PetscMapSetSize(columnmap,n);CHKERRQ(ierr);
268151dd7536SBarry Smith   ierr = PetscMapSetType(columnmap,MAP_MPI);CHKERRQ(ierr);
268251dd7536SBarry Smith   ierr = PetscMapGetLocalSize(columnmap,&n);CHKERRQ(ierr);
268351dd7536SBarry Smith   ierr = PetscMapDestroy(columnmap);CHKERRQ(ierr);
268451dd7536SBarry Smith 
268551dd7536SBarry Smith   ierr = PetscMapCreate(comm,&rowmap);CHKERRQ(ierr);
268651dd7536SBarry Smith   ierr = PetscMapSetLocalSize(rowmap,m);CHKERRQ(ierr);
268751dd7536SBarry Smith   ierr = PetscMapSetType(rowmap,MAP_MPI);CHKERRQ(ierr);
268851dd7536SBarry Smith   ierr = PetscMapGetLocalRange(rowmap,&rstart,0);CHKERRQ(ierr);
268951dd7536SBarry Smith   ierr = PetscMapDestroy(rowmap);CHKERRQ(ierr);
269051dd7536SBarry Smith 
269151dd7536SBarry Smith   ierr = MatPreallocateInitialize(comm,m,n,dnz,onz);CHKERRQ(ierr);
2692c5d6d63eSBarry Smith   for (i=0;i<m;i++) {
269351dd7536SBarry Smith     ierr = MatGetRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr);
269451dd7536SBarry Smith     ierr = MatPreallocateSet(i+rstart,nnz,indx,dnz,onz);CHKERRQ(ierr);
269551dd7536SBarry Smith     ierr = MatRestoreRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr);
2696c5d6d63eSBarry Smith   }
269751dd7536SBarry Smith   ierr = MatCreateMPIAIJ(comm,m,n,PETSC_DETERMINE,PETSC_DETERMINE,0,dnz,0,onz,outmat);CHKERRQ(ierr);
269851dd7536SBarry Smith   ierr = MatPreallocateFinalize(dnz,onz);CHKERRQ(ierr);
2699c5d6d63eSBarry Smith 
270051dd7536SBarry Smith   for (i=0;i<m;i++) {
270151dd7536SBarry Smith     ierr = MatGetRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr);
270251dd7536SBarry Smith     I    = i + rstart;
270351dd7536SBarry Smith     ierr = MatSetValues(*outmat,1,&I,nnz,indx,values,INSERT_VALUES);CHKERRQ(ierr);
270451dd7536SBarry Smith     ierr = MatRestoreRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr);
270551dd7536SBarry Smith   }
270651dd7536SBarry Smith   ierr = MatDestroy(inmat);CHKERRQ(ierr);
270751dd7536SBarry Smith   ierr = MatAssemblyBegin(*outmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
270851dd7536SBarry Smith   ierr = MatAssemblyEnd(*outmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
270951dd7536SBarry Smith 
2710c5d6d63eSBarry Smith   PetscFunctionReturn(0);
2711c5d6d63eSBarry Smith }
2712c5d6d63eSBarry Smith 
2713c5d6d63eSBarry Smith #undef __FUNCT__
2714c5d6d63eSBarry Smith #define __FUNCT__ "MatFileSplit"
2715c5d6d63eSBarry Smith int MatFileSplit(Mat A,char *outfile)
2716c5d6d63eSBarry Smith {
2717c5d6d63eSBarry Smith   int         ierr,rank,len,m,N,i,rstart,*indx,nnz;
2718c5d6d63eSBarry Smith   PetscViewer out;
2719c5d6d63eSBarry Smith   char        *name;
2720c5d6d63eSBarry Smith   Mat         B;
2721c5d6d63eSBarry Smith   PetscScalar *values;
2722c5d6d63eSBarry Smith 
2723c5d6d63eSBarry Smith   PetscFunctionBegin;
2724c5d6d63eSBarry Smith 
2725c5d6d63eSBarry Smith   ierr = MatGetLocalSize(A,&m,0);CHKERRQ(ierr);
2726c5d6d63eSBarry Smith   ierr = MatGetSize(A,0,&N);CHKERRQ(ierr);
2727c5d6d63eSBarry Smith   ierr = MatCreateSeqAIJ(PETSC_COMM_SELF,m,N,0,0,&B);CHKERRQ(ierr);
2728c5d6d63eSBarry Smith   ierr = MatGetOwnershipRange(A,&rstart,0);CHKERRQ(ierr);
2729c5d6d63eSBarry Smith   for (i=0;i<m;i++) {
2730c5d6d63eSBarry Smith     ierr = MatGetRow(A,i+rstart,&nnz,&indx,&values);CHKERRQ(ierr);
2731c5d6d63eSBarry Smith     ierr = MatSetValues(B,1,&i,nnz,indx,values,INSERT_VALUES);CHKERRQ(ierr);
2732c5d6d63eSBarry Smith     ierr = MatRestoreRow(A,i+rstart,&nnz,&indx,&values);CHKERRQ(ierr);
2733c5d6d63eSBarry Smith   }
2734c5d6d63eSBarry Smith   ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2735c5d6d63eSBarry Smith   ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2736c5d6d63eSBarry Smith 
2737c5d6d63eSBarry Smith   ierr = MPI_Comm_rank(A->comm,&rank);CHKERRQ(ierr);
2738c5d6d63eSBarry Smith   ierr = PetscStrlen(outfile,&len);CHKERRQ(ierr);
2739c5d6d63eSBarry Smith   ierr = PetscMalloc((len+5)*sizeof(char),&name);CHKERRQ(ierr);
2740c5d6d63eSBarry Smith   sprintf(name,"%s.%d",outfile,rank);
2741c5d6d63eSBarry Smith   ierr = PetscViewerBinaryOpen(PETSC_COMM_SELF,name,PETSC_BINARY_CREATE,&out);CHKERRQ(ierr);
2742c5d6d63eSBarry Smith   ierr = PetscFree(name);
2743c5d6d63eSBarry Smith   ierr = MatView(B,out);CHKERRQ(ierr);
2744c5d6d63eSBarry Smith   ierr = PetscViewerDestroy(out);CHKERRQ(ierr);
2745c5d6d63eSBarry Smith   ierr = MatDestroy(B);CHKERRQ(ierr);
2746c5d6d63eSBarry Smith   PetscFunctionReturn(0);
2747c5d6d63eSBarry Smith }
2748