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 7ca44d042SBarry Smith EXTERN int MatSetUpMultiply_MPIAIJ(Mat); 8ca44d042SBarry Smith EXTERN int DisAssemble_MPIAIJ(Mat); 987828ca2SBarry Smith EXTERN int MatSetValues_SeqAIJ(Mat,int,int*,int,int*,PetscScalar*,InsertMode); 1087828ca2SBarry Smith EXTERN int MatGetRow_SeqAIJ(Mat,int,int*,int**,PetscScalar**); 1187828ca2SBarry Smith EXTERN int MatRestoreRow_SeqAIJ(Mat,int,int*,int**,PetscScalar**); 12ca44d042SBarry Smith EXTERN int MatPrintHelp_SeqAIJ(Mat); 13bc5ccf88SSatish Balay 140f5bd95cSBarry Smith /* 150f5bd95cSBarry Smith Local utility routine that creates a mapping from the global column 169e25ed09SBarry Smith number to the local number in the off-diagonal part of the local 170f5bd95cSBarry Smith storage of the matrix. When PETSC_USE_CTABLE is used this is scalable at 180f5bd95cSBarry Smith a slightly higher hash table cost; without it it is not scalable (each processor 190f5bd95cSBarry Smith has an order N integer array but is fast to acess. 209e25ed09SBarry Smith */ 214a2ae208SSatish Balay #undef __FUNCT__ 224a2ae208SSatish Balay #define __FUNCT__ "CreateColmap_MPIAIJ_Private" 230a198c4cSBarry Smith int CreateColmap_MPIAIJ_Private(Mat mat) 249e25ed09SBarry Smith { 2544a69424SLois Curfman McInnes Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 26273d9f13SBarry Smith int n = aij->B->n,i,ierr; 27dbb450caSBarry Smith 283a40ed3dSBarry Smith PetscFunctionBegin; 29aa482453SBarry Smith #if defined (PETSC_USE_CTABLE) 30273d9f13SBarry Smith ierr = PetscTableCreate(n,&aij->colmap);CHKERRQ(ierr); 31b1fc9764SSatish Balay for (i=0; i<n; i++){ 320f5bd95cSBarry Smith ierr = PetscTableAdd(aij->colmap,aij->garray[i]+1,i+1);CHKERRQ(ierr); 33b1fc9764SSatish Balay } 34b1fc9764SSatish Balay #else 35b0a32e0cSBarry Smith ierr = PetscMalloc((mat->N+1)*sizeof(int),&aij->colmap);CHKERRQ(ierr); 36b0a32e0cSBarry Smith PetscLogObjectMemory(mat,mat->N*sizeof(int)); 37273d9f13SBarry Smith ierr = PetscMemzero(aij->colmap,mat->N*sizeof(int));CHKERRQ(ierr); 38905e6a2fSBarry Smith for (i=0; i<n; i++) aij->colmap[aij->garray[i]] = i+1; 39b1fc9764SSatish Balay #endif 403a40ed3dSBarry Smith PetscFunctionReturn(0); 419e25ed09SBarry Smith } 429e25ed09SBarry Smith 430520107fSSatish Balay #define CHUNKSIZE 15 4430770e4dSSatish Balay #define MatSetValues_SeqAIJ_A_Private(row,col,value,addv) \ 450520107fSSatish Balay { \ 460520107fSSatish Balay \ 470520107fSSatish Balay rp = aj + ai[row] + shift; ap = aa + ai[row] + shift; \ 4830770e4dSSatish Balay rmax = aimax[row]; nrow = ailen[row]; \ 49f5e9677aSSatish Balay col1 = col - shift; \ 50f5e9677aSSatish Balay \ 51ba4e3ef2SSatish Balay low = 0; high = nrow; \ 52ba4e3ef2SSatish Balay while (high-low > 5) { \ 53ba4e3ef2SSatish Balay t = (low+high)/2; \ 54ba4e3ef2SSatish Balay if (rp[t] > col) high = t; \ 55ba4e3ef2SSatish Balay else low = t; \ 56ba4e3ef2SSatish Balay } \ 572335bdd2SSatish Balay for (_i=low; _i<high; _i++) { \ 58f5e9677aSSatish Balay if (rp[_i] > col1) break; \ 59f5e9677aSSatish Balay if (rp[_i] == col1) { \ 600520107fSSatish Balay if (addv == ADD_VALUES) ap[_i] += value; \ 610520107fSSatish Balay else ap[_i] = value; \ 6230770e4dSSatish Balay goto a_noinsert; \ 630520107fSSatish Balay } \ 640520107fSSatish Balay } \ 6589280ab3SLois Curfman McInnes if (nonew == 1) goto a_noinsert; \ 6629bbc08cSBarry Smith else if (nonew == -1) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero into matrix"); \ 670520107fSSatish Balay if (nrow >= rmax) { \ 680520107fSSatish Balay /* there is no extra room in row, therefore enlarge */ \ 69273d9f13SBarry Smith int new_nz = ai[am] + CHUNKSIZE,len,*new_i,*new_j; \ 7087828ca2SBarry Smith PetscScalar *new_a; \ 710520107fSSatish Balay \ 7229bbc08cSBarry Smith if (nonew == -2) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero in the matrix"); \ 7389280ab3SLois Curfman McInnes \ 740520107fSSatish Balay /* malloc new storage space */ \ 7587828ca2SBarry Smith len = new_nz*(sizeof(int)+sizeof(PetscScalar))+(am+1)*sizeof(int); \ 76b0a32e0cSBarry Smith ierr = PetscMalloc(len,&new_a);CHKERRQ(ierr); \ 770520107fSSatish Balay new_j = (int*)(new_a + new_nz); \ 780520107fSSatish Balay new_i = new_j + new_nz; \ 790520107fSSatish Balay \ 800520107fSSatish Balay /* copy over old data into new slots */ \ 810520107fSSatish Balay for (ii=0; ii<row+1; ii++) {new_i[ii] = ai[ii];} \ 82273d9f13SBarry Smith for (ii=row+1; ii<am+1; ii++) {new_i[ii] = ai[ii]+CHUNKSIZE;} \ 83549d3d68SSatish Balay ierr = PetscMemcpy(new_j,aj,(ai[row]+nrow+shift)*sizeof(int));CHKERRQ(ierr); \ 840520107fSSatish Balay len = (new_nz - CHUNKSIZE - ai[row] - nrow - shift); \ 85549d3d68SSatish Balay ierr = PetscMemcpy(new_j+ai[row]+shift+nrow+CHUNKSIZE,aj+ai[row]+shift+nrow, \ 86549d3d68SSatish Balay len*sizeof(int));CHKERRQ(ierr); \ 8787828ca2SBarry Smith ierr = PetscMemcpy(new_a,aa,(ai[row]+nrow+shift)*sizeof(PetscScalar));CHKERRQ(ierr); \ 88549d3d68SSatish Balay ierr = PetscMemcpy(new_a+ai[row]+shift+nrow+CHUNKSIZE,aa+ai[row]+shift+nrow, \ 8987828ca2SBarry Smith len*sizeof(PetscScalar));CHKERRQ(ierr); \ 900520107fSSatish Balay /* free up old matrix storage */ \ 91f5e9677aSSatish Balay \ 92606d414cSSatish Balay ierr = PetscFree(a->a);CHKERRQ(ierr); \ 93606d414cSSatish Balay if (!a->singlemalloc) { \ 94606d414cSSatish Balay ierr = PetscFree(a->i);CHKERRQ(ierr); \ 95606d414cSSatish Balay ierr = PetscFree(a->j);CHKERRQ(ierr); \ 96606d414cSSatish Balay } \ 970520107fSSatish Balay aa = a->a = new_a; ai = a->i = new_i; aj = a->j = new_j; \ 987c922b88SBarry Smith a->singlemalloc = PETSC_TRUE; \ 990520107fSSatish Balay \ 1000520107fSSatish Balay rp = aj + ai[row] + shift; ap = aa + ai[row] + shift; \ 10130770e4dSSatish Balay rmax = aimax[row] = aimax[row] + CHUNKSIZE; \ 10287828ca2SBarry Smith PetscLogObjectMemory(A,CHUNKSIZE*(sizeof(int) + sizeof(PetscScalar))); \ 1030520107fSSatish Balay a->maxnz += CHUNKSIZE; \ 1040520107fSSatish Balay a->reallocs++; \ 1050520107fSSatish Balay } \ 1060520107fSSatish Balay N = nrow++ - 1; a->nz++; \ 1070520107fSSatish Balay /* shift up all the later entries in this row */ \ 1080520107fSSatish Balay for (ii=N; ii>=_i; ii--) { \ 1090520107fSSatish Balay rp[ii+1] = rp[ii]; \ 1100520107fSSatish Balay ap[ii+1] = ap[ii]; \ 1110520107fSSatish Balay } \ 112f5e9677aSSatish Balay rp[_i] = col1; \ 1130520107fSSatish Balay ap[_i] = value; \ 11430770e4dSSatish Balay a_noinsert: ; \ 1150520107fSSatish Balay ailen[row] = nrow; \ 1160520107fSSatish Balay } 1170a198c4cSBarry Smith 11830770e4dSSatish Balay #define MatSetValues_SeqAIJ_B_Private(row,col,value,addv) \ 11930770e4dSSatish Balay { \ 12030770e4dSSatish Balay \ 12130770e4dSSatish Balay rp = bj + bi[row] + shift; ap = ba + bi[row] + shift; \ 12230770e4dSSatish Balay rmax = bimax[row]; nrow = bilen[row]; \ 12330770e4dSSatish Balay col1 = col - shift; \ 12430770e4dSSatish Balay \ 125ba4e3ef2SSatish Balay low = 0; high = nrow; \ 126ba4e3ef2SSatish Balay while (high-low > 5) { \ 127ba4e3ef2SSatish Balay t = (low+high)/2; \ 128ba4e3ef2SSatish Balay if (rp[t] > col) high = t; \ 129ba4e3ef2SSatish Balay else low = t; \ 130ba4e3ef2SSatish Balay } \ 1312335bdd2SSatish Balay for (_i=low; _i<high; _i++) { \ 13230770e4dSSatish Balay if (rp[_i] > col1) break; \ 13330770e4dSSatish Balay if (rp[_i] == col1) { \ 13430770e4dSSatish Balay if (addv == ADD_VALUES) ap[_i] += value; \ 13530770e4dSSatish Balay else ap[_i] = value; \ 13630770e4dSSatish Balay goto b_noinsert; \ 13730770e4dSSatish Balay } \ 13830770e4dSSatish Balay } \ 13989280ab3SLois Curfman McInnes if (nonew == 1) goto b_noinsert; \ 14029bbc08cSBarry Smith else if (nonew == -1) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero into matrix"); \ 14130770e4dSSatish Balay if (nrow >= rmax) { \ 14230770e4dSSatish Balay /* there is no extra room in row, therefore enlarge */ \ 143273d9f13SBarry Smith int new_nz = bi[bm] + CHUNKSIZE,len,*new_i,*new_j; \ 14487828ca2SBarry Smith PetscScalar *new_a; \ 14530770e4dSSatish Balay \ 14629bbc08cSBarry Smith if (nonew == -2) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero in the matrix"); \ 14789280ab3SLois Curfman McInnes \ 14830770e4dSSatish Balay /* malloc new storage space */ \ 14987828ca2SBarry Smith len = new_nz*(sizeof(int)+sizeof(PetscScalar))+(bm+1)*sizeof(int); \ 150b0a32e0cSBarry Smith ierr = PetscMalloc(len,&new_a);CHKERRQ(ierr); \ 15130770e4dSSatish Balay new_j = (int*)(new_a + new_nz); \ 15230770e4dSSatish Balay new_i = new_j + new_nz; \ 15330770e4dSSatish Balay \ 15430770e4dSSatish Balay /* copy over old data into new slots */ \ 15530770e4dSSatish Balay for (ii=0; ii<row+1; ii++) {new_i[ii] = bi[ii];} \ 156273d9f13SBarry Smith for (ii=row+1; ii<bm+1; ii++) {new_i[ii] = bi[ii]+CHUNKSIZE;} \ 157549d3d68SSatish Balay ierr = PetscMemcpy(new_j,bj,(bi[row]+nrow+shift)*sizeof(int));CHKERRQ(ierr); \ 15830770e4dSSatish Balay len = (new_nz - CHUNKSIZE - bi[row] - nrow - shift); \ 159549d3d68SSatish Balay ierr = PetscMemcpy(new_j+bi[row]+shift+nrow+CHUNKSIZE,bj+bi[row]+shift+nrow, \ 160549d3d68SSatish Balay len*sizeof(int));CHKERRQ(ierr); \ 16187828ca2SBarry Smith ierr = PetscMemcpy(new_a,ba,(bi[row]+nrow+shift)*sizeof(PetscScalar));CHKERRQ(ierr); \ 162549d3d68SSatish Balay ierr = PetscMemcpy(new_a+bi[row]+shift+nrow+CHUNKSIZE,ba+bi[row]+shift+nrow, \ 16387828ca2SBarry Smith len*sizeof(PetscScalar));CHKERRQ(ierr); \ 16430770e4dSSatish Balay /* free up old matrix storage */ \ 16530770e4dSSatish Balay \ 166606d414cSSatish Balay ierr = PetscFree(b->a);CHKERRQ(ierr); \ 167606d414cSSatish Balay if (!b->singlemalloc) { \ 168606d414cSSatish Balay ierr = PetscFree(b->i);CHKERRQ(ierr); \ 169606d414cSSatish Balay ierr = PetscFree(b->j);CHKERRQ(ierr); \ 170606d414cSSatish Balay } \ 17174c639caSSatish Balay ba = b->a = new_a; bi = b->i = new_i; bj = b->j = new_j; \ 1727c922b88SBarry Smith b->singlemalloc = PETSC_TRUE; \ 17330770e4dSSatish Balay \ 17430770e4dSSatish Balay rp = bj + bi[row] + shift; ap = ba + bi[row] + shift; \ 17530770e4dSSatish Balay rmax = bimax[row] = bimax[row] + CHUNKSIZE; \ 17687828ca2SBarry Smith PetscLogObjectMemory(B,CHUNKSIZE*(sizeof(int) + sizeof(PetscScalar))); \ 17774c639caSSatish Balay b->maxnz += CHUNKSIZE; \ 17874c639caSSatish Balay b->reallocs++; \ 17930770e4dSSatish Balay } \ 18074c639caSSatish Balay N = nrow++ - 1; b->nz++; \ 18130770e4dSSatish Balay /* shift up all the later entries in this row */ \ 18230770e4dSSatish Balay for (ii=N; ii>=_i; ii--) { \ 18330770e4dSSatish Balay rp[ii+1] = rp[ii]; \ 18430770e4dSSatish Balay ap[ii+1] = ap[ii]; \ 18530770e4dSSatish Balay } \ 18630770e4dSSatish Balay rp[_i] = col1; \ 18730770e4dSSatish Balay ap[_i] = value; \ 18830770e4dSSatish Balay b_noinsert: ; \ 18930770e4dSSatish Balay bilen[row] = nrow; \ 19030770e4dSSatish Balay } 19130770e4dSSatish Balay 1924a2ae208SSatish Balay #undef __FUNCT__ 1934a2ae208SSatish Balay #define __FUNCT__ "MatSetValues_MPIAIJ" 19487828ca2SBarry Smith int MatSetValues_MPIAIJ(Mat mat,int m,int *im,int n,int *in,PetscScalar *v,InsertMode addv) 1958a729477SBarry Smith { 19644a69424SLois Curfman McInnes Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 19787828ca2SBarry Smith PetscScalar value; 1981eb62cbbSBarry Smith int ierr,i,j,rstart = aij->rstart,rend = aij->rend; 1991eb62cbbSBarry Smith int cstart = aij->cstart,cend = aij->cend,row,col; 200273d9f13SBarry Smith PetscTruth roworiented = aij->roworiented; 2018a729477SBarry Smith 2020520107fSSatish Balay /* Some Variables required in the macro */ 2034ee7247eSSatish Balay Mat A = aij->A; 2044ee7247eSSatish Balay Mat_SeqAIJ *a = (Mat_SeqAIJ*)A->data; 20530770e4dSSatish Balay int *aimax = a->imax,*ai = a->i,*ailen = a->ilen,*aj = a->j; 20687828ca2SBarry Smith PetscScalar *aa = a->a; 207329f5518SBarry Smith PetscTruth ignorezeroentries = (((a->ignorezeroentries)&&(addv==ADD_VALUES))?PETSC_TRUE:PETSC_FALSE); 20830770e4dSSatish Balay Mat B = aij->B; 20930770e4dSSatish Balay Mat_SeqAIJ *b = (Mat_SeqAIJ*)B->data; 210273d9f13SBarry Smith int *bimax = b->imax,*bi = b->i,*bilen = b->ilen,*bj = b->j,bm = aij->B->m,am = aij->A->m; 21187828ca2SBarry Smith PetscScalar *ba = b->a; 21230770e4dSSatish Balay 213ba4e3ef2SSatish Balay int *rp,ii,nrow,_i,rmax,N,col1,low,high,t; 21430770e4dSSatish Balay int nonew = a->nonew,shift = a->indexshift; 21587828ca2SBarry Smith PetscScalar *ap; 2164ee7247eSSatish Balay 2173a40ed3dSBarry Smith PetscFunctionBegin; 2188a729477SBarry Smith for (i=0; i<m; i++) { 2195ef9f2a5SBarry Smith if (im[i] < 0) continue; 220aa482453SBarry Smith #if defined(PETSC_USE_BOPT_g) 221273d9f13SBarry Smith if (im[i] >= mat->M) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Row too large"); 2220a198c4cSBarry Smith #endif 2234b0e389bSBarry Smith if (im[i] >= rstart && im[i] < rend) { 2244b0e389bSBarry Smith row = im[i] - rstart; 2251eb62cbbSBarry Smith for (j=0; j<n; j++) { 2264b0e389bSBarry Smith if (in[j] >= cstart && in[j] < cend){ 2274b0e389bSBarry Smith col = in[j] - cstart; 2284b0e389bSBarry Smith if (roworiented) value = v[i*n+j]; else value = v[i+j*m]; 229329f5518SBarry Smith if (ignorezeroentries && value == 0.0) continue; 23030770e4dSSatish Balay MatSetValues_SeqAIJ_A_Private(row,col,value,addv); 2310520107fSSatish Balay /* ierr = MatSetValues_SeqAIJ(aij->A,1,&row,1,&col,&value,addv);CHKERRQ(ierr); */ 232273d9f13SBarry Smith } else if (in[j] < 0) continue; 233aa482453SBarry Smith #if defined(PETSC_USE_BOPT_g) 234273d9f13SBarry Smith else if (in[j] >= mat->N) {SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Column too large");} 2350a198c4cSBarry Smith #endif 2361eb62cbbSBarry Smith else { 237227d817aSBarry Smith if (mat->was_assembled) { 238905e6a2fSBarry Smith if (!aij->colmap) { 239905e6a2fSBarry Smith ierr = CreateColmap_MPIAIJ_Private(mat);CHKERRQ(ierr); 240905e6a2fSBarry Smith } 241aa482453SBarry Smith #if defined (PETSC_USE_CTABLE) 2420f5bd95cSBarry Smith ierr = PetscTableFind(aij->colmap,in[j]+1,&col);CHKERRQ(ierr); 243fa46199cSSatish Balay col--; 244b1fc9764SSatish Balay #else 245905e6a2fSBarry Smith col = aij->colmap[in[j]] - 1; 246b1fc9764SSatish Balay #endif 247ec8511deSBarry Smith if (col < 0 && !((Mat_SeqAIJ*)(aij->A->data))->nonew) { 2482493cbb0SBarry Smith ierr = DisAssemble_MPIAIJ(mat);CHKERRQ(ierr); 2494b0e389bSBarry Smith col = in[j]; 2509bf004c3SSatish Balay /* Reinitialize the variables required by MatSetValues_SeqAIJ_B_Private() */ 251f9508a3cSSatish Balay B = aij->B; 252f9508a3cSSatish Balay b = (Mat_SeqAIJ*)B->data; 253f9508a3cSSatish Balay bimax = b->imax; bi = b->i; bilen = b->ilen; bj = b->j; 254f9508a3cSSatish Balay ba = b->a; 255d6dfbf8fSBarry Smith } 256c48de900SBarry Smith } else col = in[j]; 2574b0e389bSBarry Smith if (roworiented) value = v[i*n+j]; else value = v[i+j*m]; 258329f5518SBarry Smith if (ignorezeroentries && value == 0.0) continue; 25930770e4dSSatish Balay MatSetValues_SeqAIJ_B_Private(row,col,value,addv); 26030770e4dSSatish Balay /* ierr = MatSetValues_SeqAIJ(aij->B,1,&row,1,&col,&value,addv);CHKERRQ(ierr); */ 2611eb62cbbSBarry Smith } 2621eb62cbbSBarry Smith } 2635ef9f2a5SBarry Smith } else { 26490f02eecSBarry Smith if (!aij->donotstash) { 265d36fbae8SSatish Balay if (roworiented) { 266329f5518SBarry Smith if (ignorezeroentries && v[i*n] == 0.0) continue; 2678798bf22SSatish Balay ierr = MatStashValuesRow_Private(&mat->stash,im[i],n,in,v+i*n);CHKERRQ(ierr); 268d36fbae8SSatish Balay } else { 269329f5518SBarry Smith if (ignorezeroentries && v[i] == 0.0) continue; 2708798bf22SSatish Balay ierr = MatStashValuesCol_Private(&mat->stash,im[i],n,in,v+i,m);CHKERRQ(ierr); 2714b0e389bSBarry Smith } 2721eb62cbbSBarry Smith } 2738a729477SBarry Smith } 27490f02eecSBarry Smith } 2753a40ed3dSBarry Smith PetscFunctionReturn(0); 2768a729477SBarry Smith } 2778a729477SBarry Smith 2784a2ae208SSatish Balay #undef __FUNCT__ 2794a2ae208SSatish Balay #define __FUNCT__ "MatGetValues_MPIAIJ" 28087828ca2SBarry Smith int MatGetValues_MPIAIJ(Mat mat,int m,int *idxm,int n,int *idxn,PetscScalar *v) 281b49de8d1SLois Curfman McInnes { 282b49de8d1SLois Curfman McInnes Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 283b49de8d1SLois Curfman McInnes int ierr,i,j,rstart = aij->rstart,rend = aij->rend; 284b49de8d1SLois Curfman McInnes int cstart = aij->cstart,cend = aij->cend,row,col; 285b49de8d1SLois Curfman McInnes 2863a40ed3dSBarry Smith PetscFunctionBegin; 287b49de8d1SLois Curfman McInnes for (i=0; i<m; i++) { 28829bbc08cSBarry Smith if (idxm[i] < 0) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Negative row"); 289273d9f13SBarry Smith if (idxm[i] >= mat->M) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Row too large"); 290b49de8d1SLois Curfman McInnes if (idxm[i] >= rstart && idxm[i] < rend) { 291b49de8d1SLois Curfman McInnes row = idxm[i] - rstart; 292b49de8d1SLois Curfman McInnes for (j=0; j<n; j++) { 29329bbc08cSBarry Smith if (idxn[j] < 0) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Negative column"); 294273d9f13SBarry Smith if (idxn[j] >= mat->N) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Column too large"); 295b49de8d1SLois Curfman McInnes if (idxn[j] >= cstart && idxn[j] < cend){ 296b49de8d1SLois Curfman McInnes col = idxn[j] - cstart; 297b49de8d1SLois Curfman McInnes ierr = MatGetValues(aij->A,1,&row,1,&col,v+i*n+j);CHKERRQ(ierr); 298fa852ad4SSatish Balay } else { 299905e6a2fSBarry Smith if (!aij->colmap) { 300905e6a2fSBarry Smith ierr = CreateColmap_MPIAIJ_Private(mat);CHKERRQ(ierr); 301905e6a2fSBarry Smith } 302aa482453SBarry Smith #if defined (PETSC_USE_CTABLE) 3030f5bd95cSBarry Smith ierr = PetscTableFind(aij->colmap,idxn[j]+1,&col);CHKERRQ(ierr); 304fa46199cSSatish Balay col --; 305b1fc9764SSatish Balay #else 306905e6a2fSBarry Smith col = aij->colmap[idxn[j]] - 1; 307b1fc9764SSatish Balay #endif 308e60e1c95SSatish Balay if ((col < 0) || (aij->garray[col] != idxn[j])) *(v+i*n+j) = 0.0; 309d9d09a02SSatish Balay else { 310b49de8d1SLois Curfman McInnes ierr = MatGetValues(aij->B,1,&row,1,&col,v+i*n+j);CHKERRQ(ierr); 311b49de8d1SLois Curfman McInnes } 312b49de8d1SLois Curfman McInnes } 313b49de8d1SLois Curfman McInnes } 314a8c6a408SBarry Smith } else { 31529bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"Only local values currently supported"); 316b49de8d1SLois Curfman McInnes } 317b49de8d1SLois Curfman McInnes } 3183a40ed3dSBarry Smith PetscFunctionReturn(0); 319b49de8d1SLois Curfman McInnes } 320bc5ccf88SSatish Balay 3214a2ae208SSatish Balay #undef __FUNCT__ 3224a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyBegin_MPIAIJ" 323bc5ccf88SSatish Balay int MatAssemblyBegin_MPIAIJ(Mat mat,MatAssemblyType mode) 324bc5ccf88SSatish Balay { 325bc5ccf88SSatish Balay Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 326d36fbae8SSatish Balay int ierr,nstash,reallocs; 327bc5ccf88SSatish Balay InsertMode addv; 328bc5ccf88SSatish Balay 329bc5ccf88SSatish Balay PetscFunctionBegin; 330bc5ccf88SSatish Balay if (aij->donotstash) { 331bc5ccf88SSatish Balay PetscFunctionReturn(0); 332bc5ccf88SSatish Balay } 333bc5ccf88SSatish Balay 334bc5ccf88SSatish Balay /* make sure all processors are either in INSERTMODE or ADDMODE */ 335bc5ccf88SSatish Balay ierr = MPI_Allreduce(&mat->insertmode,&addv,1,MPI_INT,MPI_BOR,mat->comm);CHKERRQ(ierr); 336bc5ccf88SSatish Balay if (addv == (ADD_VALUES|INSERT_VALUES)) { 33729bbc08cSBarry Smith SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Some processors inserted others added"); 338bc5ccf88SSatish Balay } 339bc5ccf88SSatish Balay mat->insertmode = addv; /* in case this processor had no cache */ 340bc5ccf88SSatish Balay 3418798bf22SSatish Balay ierr = MatStashScatterBegin_Private(&mat->stash,aij->rowners);CHKERRQ(ierr); 3428798bf22SSatish Balay ierr = MatStashGetInfo_Private(&mat->stash,&nstash,&reallocs);CHKERRQ(ierr); 343b0a32e0cSBarry Smith PetscLogInfo(aij->A,"MatAssemblyBegin_MPIAIJ:Stash has %d entries, uses %d mallocs.\n",nstash,reallocs); 344bc5ccf88SSatish Balay PetscFunctionReturn(0); 345bc5ccf88SSatish Balay } 346bc5ccf88SSatish Balay 347bc5ccf88SSatish Balay 3484a2ae208SSatish Balay #undef __FUNCT__ 3494a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyEnd_MPIAIJ" 350bc5ccf88SSatish Balay int MatAssemblyEnd_MPIAIJ(Mat mat,MatAssemblyType mode) 351bc5ccf88SSatish Balay { 352bc5ccf88SSatish Balay Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 353*24f910e3SHong Zhang Mat_SeqAIJ *a=(Mat_SeqAIJ *)aij->A->data,*b= (Mat_SeqAIJ *)aij->B->data; 354a2d1c673SSatish Balay int i,j,rstart,ncols,n,ierr,flg; 355bc5ccf88SSatish Balay int *row,*col,other_disassembled; 35687828ca2SBarry Smith PetscScalar *val; 357bc5ccf88SSatish Balay InsertMode addv = mat->insertmode; 3584032b0d1SHong Zhang #if defined(PETSC_HAVE_SUPERLUDIST) || defined(PETSC_HAVE_SPOOLES) 3599b9367d5SHong Zhang PetscTruth flag; 3609e070d67SMatthew Knepley #endif 361bc5ccf88SSatish Balay 362bc5ccf88SSatish Balay PetscFunctionBegin; 363bc5ccf88SSatish Balay if (!aij->donotstash) { 364a2d1c673SSatish Balay while (1) { 3658798bf22SSatish Balay ierr = MatStashScatterGetMesg_Private(&mat->stash,&n,&row,&col,&val,&flg);CHKERRQ(ierr); 366a2d1c673SSatish Balay if (!flg) break; 367a2d1c673SSatish Balay 368bc5ccf88SSatish Balay for (i=0; i<n;) { 369bc5ccf88SSatish Balay /* Now identify the consecutive vals belonging to the same row */ 370bc5ccf88SSatish Balay for (j=i,rstart=row[j]; j<n; j++) { if (row[j] != rstart) break; } 371bc5ccf88SSatish Balay if (j < n) ncols = j-i; 372bc5ccf88SSatish Balay else ncols = n-i; 373bc5ccf88SSatish Balay /* Now assemble all these values with a single function call */ 374bc5ccf88SSatish Balay ierr = MatSetValues_MPIAIJ(mat,1,row+i,ncols,col+i,val+i,addv);CHKERRQ(ierr); 375bc5ccf88SSatish Balay i = j; 376bc5ccf88SSatish Balay } 377bc5ccf88SSatish Balay } 3788798bf22SSatish Balay ierr = MatStashScatterEnd_Private(&mat->stash);CHKERRQ(ierr); 379bc5ccf88SSatish Balay } 380bc5ccf88SSatish Balay 381bc5ccf88SSatish Balay ierr = MatAssemblyBegin(aij->A,mode);CHKERRQ(ierr); 382bc5ccf88SSatish Balay ierr = MatAssemblyEnd(aij->A,mode);CHKERRQ(ierr); 383bc5ccf88SSatish Balay 384bc5ccf88SSatish Balay /* determine if any processor has disassembled, if so we must 385bc5ccf88SSatish Balay also disassemble ourselfs, in order that we may reassemble. */ 386bc5ccf88SSatish Balay /* 387bc5ccf88SSatish Balay if nonzero structure of submatrix B cannot change then we know that 388bc5ccf88SSatish Balay no processor disassembled thus we can skip this stuff 389bc5ccf88SSatish Balay */ 390bc5ccf88SSatish Balay if (!((Mat_SeqAIJ*)aij->B->data)->nonew) { 391bc5ccf88SSatish Balay ierr = MPI_Allreduce(&mat->was_assembled,&other_disassembled,1,MPI_INT,MPI_PROD,mat->comm);CHKERRQ(ierr); 392bc5ccf88SSatish Balay if (mat->was_assembled && !other_disassembled) { 393bc5ccf88SSatish Balay ierr = DisAssemble_MPIAIJ(mat);CHKERRQ(ierr); 394bc5ccf88SSatish Balay } 395bc5ccf88SSatish Balay } 396bc5ccf88SSatish Balay 397bc5ccf88SSatish Balay if (!mat->was_assembled && mode == MAT_FINAL_ASSEMBLY) { 398bc5ccf88SSatish Balay ierr = MatSetUpMultiply_MPIAIJ(mat);CHKERRQ(ierr); 399bc5ccf88SSatish Balay } 400bc5ccf88SSatish Balay ierr = MatAssemblyBegin(aij->B,mode);CHKERRQ(ierr); 401bc5ccf88SSatish Balay ierr = MatAssemblyEnd(aij->B,mode);CHKERRQ(ierr); 402bc5ccf88SSatish Balay 403606d414cSSatish Balay if (aij->rowvalues) { 404606d414cSSatish Balay ierr = PetscFree(aij->rowvalues);CHKERRQ(ierr); 405606d414cSSatish Balay aij->rowvalues = 0; 406606d414cSSatish Balay } 407a30b2313SHong Zhang 408a30b2313SHong Zhang /* used by MatAXPY() */ 409a30b2313SHong Zhang a->xtoy = 0; b->xtoy = 0; 410a30b2313SHong Zhang a->XtoY = 0; b->XtoY = 0; 411a30b2313SHong Zhang 4129b9367d5SHong Zhang #if defined(PETSC_HAVE_SUPERLUDIST) 413e82a3eeeSBarry Smith ierr = PetscOptionsHasName(mat->prefix,"-mat_aij_superlu_dist",&flag);CHKERRQ(ierr); 4149b9367d5SHong Zhang if (flag) { ierr = MatUseSuperLU_DIST_MPIAIJ(mat);CHKERRQ(ierr); } 4159b9367d5SHong Zhang #endif 4164032b0d1SHong Zhang 4174032b0d1SHong Zhang #if defined(PETSC_HAVE_SPOOLES) 418e82a3eeeSBarry Smith ierr = PetscOptionsHasName(mat->prefix,"-mat_aij_spooles",&flag);CHKERRQ(ierr); 4194032b0d1SHong Zhang if (flag) { ierr = MatUseSpooles_MPIAIJ(mat);CHKERRQ(ierr); } 4204032b0d1SHong Zhang #endif 421bc5ccf88SSatish Balay PetscFunctionReturn(0); 422bc5ccf88SSatish Balay } 423bc5ccf88SSatish Balay 4244a2ae208SSatish Balay #undef __FUNCT__ 4254a2ae208SSatish Balay #define __FUNCT__ "MatZeroEntries_MPIAIJ" 4268f6be9afSLois Curfman McInnes int MatZeroEntries_MPIAIJ(Mat A) 4271eb62cbbSBarry Smith { 42844a69424SLois Curfman McInnes Mat_MPIAIJ *l = (Mat_MPIAIJ*)A->data; 429dbd7a890SLois Curfman McInnes int ierr; 4303a40ed3dSBarry Smith 4313a40ed3dSBarry Smith PetscFunctionBegin; 43278b31e54SBarry Smith ierr = MatZeroEntries(l->A);CHKERRQ(ierr); 43378b31e54SBarry Smith ierr = MatZeroEntries(l->B);CHKERRQ(ierr); 4343a40ed3dSBarry Smith PetscFunctionReturn(0); 4351eb62cbbSBarry Smith } 4361eb62cbbSBarry Smith 4374a2ae208SSatish Balay #undef __FUNCT__ 4384a2ae208SSatish Balay #define __FUNCT__ "MatZeroRows_MPIAIJ" 43987828ca2SBarry Smith int MatZeroRows_MPIAIJ(Mat A,IS is,PetscScalar *diag) 4401eb62cbbSBarry Smith { 44144a69424SLois Curfman McInnes Mat_MPIAIJ *l = (Mat_MPIAIJ*)A->data; 44217699dbbSLois Curfman McInnes int i,ierr,N,*rows,*owners = l->rowners,size = l->size; 443c1dc657dSBarry Smith int *nprocs,j,idx,nsends,row; 44417699dbbSLois Curfman McInnes int nmax,*svalues,*starts,*owner,nrecvs,rank = l->rank; 4455392566eSBarry Smith int *rvalues,tag = A->tag,count,base,slen,n,*source; 4466a5c57faSSatish Balay int *lens,imdex,*lrows,*values,rstart=l->rstart; 447d6dfbf8fSBarry Smith MPI_Comm comm = A->comm; 4481eb62cbbSBarry Smith MPI_Request *send_waits,*recv_waits; 4491eb62cbbSBarry Smith MPI_Status recv_status,*send_status; 4501eb62cbbSBarry Smith IS istmp; 45135d8aa7fSBarry Smith PetscTruth found; 4521eb62cbbSBarry Smith 4533a40ed3dSBarry Smith PetscFunctionBegin; 454e03a110bSBarry Smith ierr = ISGetLocalSize(is,&N);CHKERRQ(ierr); 45578b31e54SBarry Smith ierr = ISGetIndices(is,&rows);CHKERRQ(ierr); 4561eb62cbbSBarry Smith 4571eb62cbbSBarry Smith /* first count number of contributors to each processor */ 458b0a32e0cSBarry Smith ierr = PetscMalloc(2*size*sizeof(int),&nprocs);CHKERRQ(ierr); 459549d3d68SSatish Balay ierr = PetscMemzero(nprocs,2*size*sizeof(int));CHKERRQ(ierr); 460b0a32e0cSBarry Smith ierr = PetscMalloc((N+1)*sizeof(int),&owner);CHKERRQ(ierr); /* see note*/ 4611eb62cbbSBarry Smith for (i=0; i<N; i++) { 4621eb62cbbSBarry Smith idx = rows[i]; 46335d8aa7fSBarry Smith found = PETSC_FALSE; 46417699dbbSLois Curfman McInnes for (j=0; j<size; j++) { 4651eb62cbbSBarry Smith if (idx >= owners[j] && idx < owners[j+1]) { 466c1dc657dSBarry Smith nprocs[2*j]++; nprocs[2*j+1] = 1; owner[i] = j; found = PETSC_TRUE; break; 4671eb62cbbSBarry Smith } 4681eb62cbbSBarry Smith } 46929bbc08cSBarry Smith if (!found) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Index out of range"); 4701eb62cbbSBarry Smith } 471c1dc657dSBarry Smith nsends = 0; for (i=0; i<size; i++) { nsends += nprocs[2*i+1];} 4721eb62cbbSBarry Smith 4731eb62cbbSBarry Smith /* inform other processors of number of messages and max length*/ 474c1dc657dSBarry Smith ierr = PetscMaxSum(comm,nprocs,&nmax,&nrecvs);CHKERRQ(ierr); 4751eb62cbbSBarry Smith 4761eb62cbbSBarry Smith /* post receives: */ 477b0a32e0cSBarry Smith ierr = PetscMalloc((nrecvs+1)*(nmax+1)*sizeof(int),&rvalues);CHKERRQ(ierr); 478b0a32e0cSBarry Smith ierr = PetscMalloc((nrecvs+1)*sizeof(MPI_Request),&recv_waits);CHKERRQ(ierr); 4791eb62cbbSBarry Smith for (i=0; i<nrecvs; i++) { 480ca161407SBarry Smith ierr = MPI_Irecv(rvalues+nmax*i,nmax,MPI_INT,MPI_ANY_SOURCE,tag,comm,recv_waits+i);CHKERRQ(ierr); 4811eb62cbbSBarry Smith } 4821eb62cbbSBarry Smith 4831eb62cbbSBarry Smith /* do sends: 4841eb62cbbSBarry Smith 1) starts[i] gives the starting index in svalues for stuff going to 4851eb62cbbSBarry Smith the ith processor 4861eb62cbbSBarry Smith */ 487b0a32e0cSBarry Smith ierr = PetscMalloc((N+1)*sizeof(int),&svalues);CHKERRQ(ierr); 488b0a32e0cSBarry Smith ierr = PetscMalloc((nsends+1)*sizeof(MPI_Request),&send_waits);CHKERRQ(ierr); 489b0a32e0cSBarry Smith ierr = PetscMalloc((size+1)*sizeof(int),&starts);CHKERRQ(ierr); 4901eb62cbbSBarry Smith starts[0] = 0; 491c1dc657dSBarry Smith for (i=1; i<size; i++) { starts[i] = starts[i-1] + nprocs[2*i-2];} 4921eb62cbbSBarry Smith for (i=0; i<N; i++) { 4931eb62cbbSBarry Smith svalues[starts[owner[i]]++] = rows[i]; 4941eb62cbbSBarry Smith } 4956831982aSBarry Smith ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr); 4961eb62cbbSBarry Smith 4971eb62cbbSBarry Smith starts[0] = 0; 498c1dc657dSBarry Smith for (i=1; i<size+1; i++) { starts[i] = starts[i-1] + nprocs[2*i-2];} 4991eb62cbbSBarry Smith count = 0; 50017699dbbSLois Curfman McInnes for (i=0; i<size; i++) { 501c1dc657dSBarry Smith if (nprocs[2*i+1]) { 502c1dc657dSBarry Smith ierr = MPI_Isend(svalues+starts[i],nprocs[2*i],MPI_INT,i,tag,comm,send_waits+count++);CHKERRQ(ierr); 5031eb62cbbSBarry Smith } 5041eb62cbbSBarry Smith } 505606d414cSSatish Balay ierr = PetscFree(starts);CHKERRQ(ierr); 5061eb62cbbSBarry Smith 50717699dbbSLois Curfman McInnes base = owners[rank]; 5081eb62cbbSBarry Smith 5091eb62cbbSBarry Smith /* wait on receives */ 510b0a32e0cSBarry Smith ierr = PetscMalloc(2*(nrecvs+1)*sizeof(int),&lens);CHKERRQ(ierr); 5111eb62cbbSBarry Smith source = lens + nrecvs; 5121eb62cbbSBarry Smith count = nrecvs; slen = 0; 5131eb62cbbSBarry Smith while (count) { 514ca161407SBarry Smith ierr = MPI_Waitany(nrecvs,recv_waits,&imdex,&recv_status);CHKERRQ(ierr); 5151eb62cbbSBarry Smith /* unpack receives into our local space */ 516ca161407SBarry Smith ierr = MPI_Get_count(&recv_status,MPI_INT,&n);CHKERRQ(ierr); 517d6dfbf8fSBarry Smith source[imdex] = recv_status.MPI_SOURCE; 518d6dfbf8fSBarry Smith lens[imdex] = n; 5191eb62cbbSBarry Smith slen += n; 5201eb62cbbSBarry Smith count--; 5211eb62cbbSBarry Smith } 522606d414cSSatish Balay ierr = PetscFree(recv_waits);CHKERRQ(ierr); 5231eb62cbbSBarry Smith 5241eb62cbbSBarry Smith /* move the data into the send scatter */ 525b0a32e0cSBarry Smith ierr = PetscMalloc((slen+1)*sizeof(int),&lrows);CHKERRQ(ierr); 5261eb62cbbSBarry Smith count = 0; 5271eb62cbbSBarry Smith for (i=0; i<nrecvs; i++) { 5281eb62cbbSBarry Smith values = rvalues + i*nmax; 5291eb62cbbSBarry Smith for (j=0; j<lens[i]; j++) { 5301eb62cbbSBarry Smith lrows[count++] = values[j] - base; 5311eb62cbbSBarry Smith } 5321eb62cbbSBarry Smith } 533606d414cSSatish Balay ierr = PetscFree(rvalues);CHKERRQ(ierr); 534606d414cSSatish Balay ierr = PetscFree(lens);CHKERRQ(ierr); 535606d414cSSatish Balay ierr = PetscFree(owner);CHKERRQ(ierr); 536606d414cSSatish Balay ierr = PetscFree(nprocs);CHKERRQ(ierr); 5371eb62cbbSBarry Smith 5381eb62cbbSBarry Smith /* actually zap the local rows */ 539029af93fSBarry Smith ierr = ISCreateGeneral(PETSC_COMM_SELF,slen,lrows,&istmp);CHKERRQ(ierr); 540b0a32e0cSBarry Smith PetscLogObjectParent(A,istmp); 5416a5c57faSSatish Balay 5426eb55b6aSBarry Smith /* 5436eb55b6aSBarry Smith Zero the required rows. If the "diagonal block" of the matrix 5446eb55b6aSBarry Smith is square and the user wishes to set the diagonal we use seperate 5456eb55b6aSBarry Smith code so that MatSetValues() is not called for each diagonal allocating 5466eb55b6aSBarry Smith new memory, thus calling lots of mallocs and slowing things down. 5476eb55b6aSBarry Smith 5486eb55b6aSBarry Smith Contributed by: Mathew Knepley 5496eb55b6aSBarry Smith */ 550e2d53e46SBarry Smith /* must zero l->B before l->A because the (diag) case below may put values into l->B*/ 551e2d53e46SBarry Smith ierr = MatZeroRows(l->B,istmp,0);CHKERRQ(ierr); 5526eb55b6aSBarry Smith if (diag && (l->A->M == l->A->N)) { 5536eb55b6aSBarry Smith ierr = MatZeroRows(l->A,istmp,diag);CHKERRQ(ierr); 554e2d53e46SBarry Smith } else if (diag) { 555e2d53e46SBarry Smith ierr = MatZeroRows(l->A,istmp,0);CHKERRQ(ierr); 556fa46199cSSatish Balay if (((Mat_SeqAIJ*)l->A->data)->nonew) { 55729bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"MatZeroRows() on rectangular matrices cannot be used with the Mat options\n\ 558fa46199cSSatish Balay MAT_NO_NEW_NONZERO_LOCATIONS,MAT_NEW_NONZERO_LOCATION_ERR,MAT_NEW_NONZERO_ALLOCATION_ERR"); 5596525c446SSatish Balay } 560e2d53e46SBarry Smith for (i = 0; i < slen; i++) { 561e2d53e46SBarry Smith row = lrows[i] + rstart; 562e2d53e46SBarry Smith ierr = MatSetValues(A,1,&row,1,&row,diag,INSERT_VALUES);CHKERRQ(ierr); 563e2d53e46SBarry Smith } 564e2d53e46SBarry Smith ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 565e2d53e46SBarry Smith ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 5666eb55b6aSBarry Smith } else { 5676a5c57faSSatish Balay ierr = MatZeroRows(l->A,istmp,0);CHKERRQ(ierr); 5686eb55b6aSBarry Smith } 56978b31e54SBarry Smith ierr = ISDestroy(istmp);CHKERRQ(ierr); 570606d414cSSatish Balay ierr = PetscFree(lrows);CHKERRQ(ierr); 57172dacd9aSBarry Smith 5721eb62cbbSBarry Smith /* wait on sends */ 5731eb62cbbSBarry Smith if (nsends) { 574b0a32e0cSBarry Smith ierr = PetscMalloc(nsends*sizeof(MPI_Status),&send_status);CHKERRQ(ierr); 575ca161407SBarry Smith ierr = MPI_Waitall(nsends,send_waits,send_status);CHKERRQ(ierr); 576606d414cSSatish Balay ierr = PetscFree(send_status);CHKERRQ(ierr); 5771eb62cbbSBarry Smith } 578606d414cSSatish Balay ierr = PetscFree(send_waits);CHKERRQ(ierr); 579606d414cSSatish Balay ierr = PetscFree(svalues);CHKERRQ(ierr); 5801eb62cbbSBarry Smith 5813a40ed3dSBarry Smith PetscFunctionReturn(0); 5821eb62cbbSBarry Smith } 5831eb62cbbSBarry Smith 5844a2ae208SSatish Balay #undef __FUNCT__ 5854a2ae208SSatish Balay #define __FUNCT__ "MatMult_MPIAIJ" 5868f6be9afSLois Curfman McInnes int MatMult_MPIAIJ(Mat A,Vec xx,Vec yy) 5871eb62cbbSBarry Smith { 588416022c9SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 589fbd6ef76SBarry Smith int ierr,nt; 590416022c9SBarry Smith 5913a40ed3dSBarry Smith PetscFunctionBegin; 592a2ce50c7SBarry Smith ierr = VecGetLocalSize(xx,&nt);CHKERRQ(ierr); 593273d9f13SBarry Smith if (nt != A->n) { 594273d9f13SBarry Smith SETERRQ2(PETSC_ERR_ARG_SIZ,"Incompatible partition of A (%d) and xx (%d)",A->n,nt); 595fbd6ef76SBarry Smith } 59643a90d84SBarry Smith ierr = VecScatterBegin(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr); 597f830108cSBarry Smith ierr = (*a->A->ops->mult)(a->A,xx,yy);CHKERRQ(ierr); 59843a90d84SBarry Smith ierr = VecScatterEnd(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr); 599f830108cSBarry Smith ierr = (*a->B->ops->multadd)(a->B,a->lvec,yy,yy);CHKERRQ(ierr); 6003a40ed3dSBarry Smith PetscFunctionReturn(0); 6011eb62cbbSBarry Smith } 6021eb62cbbSBarry Smith 6034a2ae208SSatish Balay #undef __FUNCT__ 6044a2ae208SSatish Balay #define __FUNCT__ "MatMultAdd_MPIAIJ" 6058f6be9afSLois Curfman McInnes int MatMultAdd_MPIAIJ(Mat A,Vec xx,Vec yy,Vec zz) 606da3a660dSBarry Smith { 607416022c9SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 608da3a660dSBarry Smith int ierr; 6093a40ed3dSBarry Smith 6103a40ed3dSBarry Smith PetscFunctionBegin; 61143a90d84SBarry Smith ierr = VecScatterBegin(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr); 612f830108cSBarry Smith ierr = (*a->A->ops->multadd)(a->A,xx,yy,zz);CHKERRQ(ierr); 61343a90d84SBarry Smith ierr = VecScatterEnd(xx,a->lvec,INSERT_VALUES,SCATTER_FORWARD,a->Mvctx);CHKERRQ(ierr); 614f830108cSBarry Smith ierr = (*a->B->ops->multadd)(a->B,a->lvec,zz,zz);CHKERRQ(ierr); 6153a40ed3dSBarry Smith PetscFunctionReturn(0); 616da3a660dSBarry Smith } 617da3a660dSBarry Smith 6184a2ae208SSatish Balay #undef __FUNCT__ 6194a2ae208SSatish Balay #define __FUNCT__ "MatMultTranspose_MPIAIJ" 6207c922b88SBarry Smith int MatMultTranspose_MPIAIJ(Mat A,Vec xx,Vec yy) 621da3a660dSBarry Smith { 622416022c9SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 623da3a660dSBarry Smith int ierr; 624da3a660dSBarry Smith 6253a40ed3dSBarry Smith PetscFunctionBegin; 626da3a660dSBarry Smith /* do nondiagonal part */ 6277c922b88SBarry Smith ierr = (*a->B->ops->multtranspose)(a->B,xx,a->lvec);CHKERRQ(ierr); 628da3a660dSBarry Smith /* send it on its way */ 629537820f0SBarry Smith ierr = VecScatterBegin(a->lvec,yy,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr); 630da3a660dSBarry Smith /* do local part */ 6317c922b88SBarry Smith ierr = (*a->A->ops->multtranspose)(a->A,xx,yy);CHKERRQ(ierr); 632da3a660dSBarry Smith /* receive remote parts: note this assumes the values are not actually */ 633da3a660dSBarry Smith /* inserted in yy until the next line, which is true for my implementation*/ 634da3a660dSBarry Smith /* but is not perhaps always true. */ 635537820f0SBarry Smith ierr = VecScatterEnd(a->lvec,yy,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr); 6363a40ed3dSBarry Smith PetscFunctionReturn(0); 637da3a660dSBarry Smith } 638da3a660dSBarry Smith 6394a2ae208SSatish Balay #undef __FUNCT__ 6404a2ae208SSatish Balay #define __FUNCT__ "MatMultTransposeAdd_MPIAIJ" 6417c922b88SBarry Smith int MatMultTransposeAdd_MPIAIJ(Mat A,Vec xx,Vec yy,Vec zz) 642da3a660dSBarry Smith { 643416022c9SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 644da3a660dSBarry Smith int ierr; 645da3a660dSBarry Smith 6463a40ed3dSBarry Smith PetscFunctionBegin; 647da3a660dSBarry Smith /* do nondiagonal part */ 6487c922b88SBarry Smith ierr = (*a->B->ops->multtranspose)(a->B,xx,a->lvec);CHKERRQ(ierr); 649da3a660dSBarry Smith /* send it on its way */ 650537820f0SBarry Smith ierr = VecScatterBegin(a->lvec,zz,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr); 651da3a660dSBarry Smith /* do local part */ 6527c922b88SBarry Smith ierr = (*a->A->ops->multtransposeadd)(a->A,xx,yy,zz);CHKERRQ(ierr); 653da3a660dSBarry Smith /* receive remote parts: note this assumes the values are not actually */ 654da3a660dSBarry Smith /* inserted in yy until the next line, which is true for my implementation*/ 655da3a660dSBarry Smith /* but is not perhaps always true. */ 6560a198c4cSBarry Smith ierr = VecScatterEnd(a->lvec,zz,ADD_VALUES,SCATTER_REVERSE,a->Mvctx);CHKERRQ(ierr); 6573a40ed3dSBarry Smith PetscFunctionReturn(0); 658da3a660dSBarry Smith } 659da3a660dSBarry Smith 6601eb62cbbSBarry Smith /* 6611eb62cbbSBarry Smith This only works correctly for square matrices where the subblock A->A is the 6621eb62cbbSBarry Smith diagonal block 6631eb62cbbSBarry Smith */ 6644a2ae208SSatish Balay #undef __FUNCT__ 6654a2ae208SSatish Balay #define __FUNCT__ "MatGetDiagonal_MPIAIJ" 6668f6be9afSLois Curfman McInnes int MatGetDiagonal_MPIAIJ(Mat A,Vec v) 6671eb62cbbSBarry Smith { 6683a40ed3dSBarry Smith int ierr; 669416022c9SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 6703a40ed3dSBarry Smith 6713a40ed3dSBarry Smith PetscFunctionBegin; 672273d9f13SBarry Smith if (A->M != A->N) SETERRQ(PETSC_ERR_SUP,"Supports only square matrix where A->A is diag block"); 6735baf8537SBarry Smith if (a->rstart != a->cstart || a->rend != a->cend) { 67429bbc08cSBarry Smith SETERRQ(PETSC_ERR_ARG_SIZ,"row partition must equal col partition"); 6753a40ed3dSBarry Smith } 6763a40ed3dSBarry Smith ierr = MatGetDiagonal(a->A,v);CHKERRQ(ierr); 6773a40ed3dSBarry Smith PetscFunctionReturn(0); 6781eb62cbbSBarry Smith } 6791eb62cbbSBarry Smith 6804a2ae208SSatish Balay #undef __FUNCT__ 6814a2ae208SSatish Balay #define __FUNCT__ "MatScale_MPIAIJ" 68287828ca2SBarry Smith int MatScale_MPIAIJ(PetscScalar *aa,Mat A) 683052efed2SBarry Smith { 684052efed2SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 685052efed2SBarry Smith int ierr; 6863a40ed3dSBarry Smith 6873a40ed3dSBarry Smith PetscFunctionBegin; 688052efed2SBarry Smith ierr = MatScale(aa,a->A);CHKERRQ(ierr); 689052efed2SBarry Smith ierr = MatScale(aa,a->B);CHKERRQ(ierr); 6903a40ed3dSBarry Smith PetscFunctionReturn(0); 691052efed2SBarry Smith } 692052efed2SBarry Smith 6934a2ae208SSatish Balay #undef __FUNCT__ 6944a2ae208SSatish Balay #define __FUNCT__ "MatDestroy_MPIAIJ" 695e1311b90SBarry Smith int MatDestroy_MPIAIJ(Mat mat) 6961eb62cbbSBarry Smith { 69744a69424SLois Curfman McInnes Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 6981eb62cbbSBarry Smith int ierr; 69983e2fdc7SBarry Smith 7003a40ed3dSBarry Smith PetscFunctionBegin; 701aa482453SBarry Smith #if defined(PETSC_USE_LOG) 702b0a32e0cSBarry Smith PetscLogObjectState((PetscObject)mat,"Rows=%d, Cols=%d",mat->M,mat->N); 703a5a9c739SBarry Smith #endif 7048798bf22SSatish Balay ierr = MatStashDestroy_Private(&mat->stash);CHKERRQ(ierr); 705606d414cSSatish Balay ierr = PetscFree(aij->rowners);CHKERRQ(ierr); 70678b31e54SBarry Smith ierr = MatDestroy(aij->A);CHKERRQ(ierr); 70778b31e54SBarry Smith ierr = MatDestroy(aij->B);CHKERRQ(ierr); 708aa482453SBarry Smith #if defined (PETSC_USE_CTABLE) 7090f5bd95cSBarry Smith if (aij->colmap) {ierr = PetscTableDelete(aij->colmap);CHKERRQ(ierr);} 710b1fc9764SSatish Balay #else 711606d414cSSatish Balay if (aij->colmap) {ierr = PetscFree(aij->colmap);CHKERRQ(ierr);} 712b1fc9764SSatish Balay #endif 713606d414cSSatish Balay if (aij->garray) {ierr = PetscFree(aij->garray);CHKERRQ(ierr);} 7147c922b88SBarry Smith if (aij->lvec) {ierr = VecDestroy(aij->lvec);CHKERRQ(ierr);} 7157c922b88SBarry Smith if (aij->Mvctx) {ierr = VecScatterDestroy(aij->Mvctx);CHKERRQ(ierr);} 716606d414cSSatish Balay if (aij->rowvalues) {ierr = PetscFree(aij->rowvalues);CHKERRQ(ierr);} 717606d414cSSatish Balay ierr = PetscFree(aij);CHKERRQ(ierr); 7183a40ed3dSBarry Smith PetscFunctionReturn(0); 7191eb62cbbSBarry Smith } 720ee50ffe9SBarry Smith 7214aedb280SBarry Smith extern int MatMPIAIJFactorInfo_SuperLu(Mat,PetscViewer); 722a072f7f7SHong Zhang extern int MatFactorInfo_Spooles(Mat,PetscViewer); 7234aedb280SBarry Smith 7244a2ae208SSatish Balay #undef __FUNCT__ 7258e2fed03SBarry Smith #define __FUNCT__ "MatView_MPIAIJ_Binary" 7268e2fed03SBarry Smith int MatView_MPIAIJ_Binary(Mat mat,PetscViewer viewer) 7278e2fed03SBarry Smith { 7288e2fed03SBarry Smith Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 7298e2fed03SBarry Smith Mat_SeqAIJ* A = (Mat_SeqAIJ*)aij->A->data; 7308e2fed03SBarry Smith Mat_SeqAIJ* B = (Mat_SeqAIJ*)aij->B->data; 7318e2fed03SBarry Smith int nz,fd,ierr,header[4],rank,size,*row_lengths,*range,rlen,i,tag = ((PetscObject)viewer)->tag; 732b021249fSBarry Smith int nzmax,*column_indices,j,k,col,*garray = aij->garray,cnt,cstart = aij->cstart,rnz; 7338e2fed03SBarry Smith PetscScalar *column_values; 7348e2fed03SBarry Smith 7358e2fed03SBarry Smith PetscFunctionBegin; 7368e2fed03SBarry Smith ierr = MPI_Comm_rank(mat->comm,&rank);CHKERRQ(ierr); 7378e2fed03SBarry Smith ierr = MPI_Comm_size(mat->comm,&size);CHKERRQ(ierr); 7388e2fed03SBarry Smith nz = A->nz + B->nz; 7398e2fed03SBarry Smith if (rank == 0) { 7408e2fed03SBarry Smith header[0] = MAT_FILE_COOKIE; 7418e2fed03SBarry Smith header[1] = mat->M; 7428e2fed03SBarry Smith header[2] = mat->N; 7438e2fed03SBarry Smith ierr = MPI_Reduce(&nz,&header[3],1,MPI_INT,MPI_SUM,0,mat->comm);CHKERRQ(ierr); 7448e2fed03SBarry Smith ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr); 7458e2fed03SBarry Smith ierr = PetscBinaryWrite(fd,header,4,PETSC_INT,1);CHKERRQ(ierr); 7468e2fed03SBarry Smith /* get largest number of rows any processor has */ 7478e2fed03SBarry Smith rlen = mat->m; 7488e2fed03SBarry Smith ierr = PetscMapGetGlobalRange(mat->rmap,&range);CHKERRQ(ierr); 7498e2fed03SBarry Smith for (i=1; i<size; i++) { 7508e2fed03SBarry Smith rlen = PetscMax(rlen,range[i+1] - range[i]); 7518e2fed03SBarry Smith } 7528e2fed03SBarry Smith } else { 7538e2fed03SBarry Smith ierr = MPI_Reduce(&nz,0,1,MPI_INT,MPI_SUM,0,mat->comm);CHKERRQ(ierr); 7548e2fed03SBarry Smith rlen = mat->m; 7558e2fed03SBarry Smith } 7568e2fed03SBarry Smith 7578e2fed03SBarry Smith /* load up the local row counts */ 7588e2fed03SBarry Smith ierr = PetscMalloc((rlen+1)*sizeof(int),&row_lengths);CHKERRQ(ierr); 7598e2fed03SBarry Smith for (i=0; i<mat->m; i++) { 7608e2fed03SBarry Smith row_lengths[i] = A->i[i+1] - A->i[i] + B->i[i+1] - B->i[i]; 7618e2fed03SBarry Smith } 7628e2fed03SBarry Smith 7638e2fed03SBarry Smith /* store the row lengths to the file */ 7648e2fed03SBarry Smith if (rank == 0) { 7658e2fed03SBarry Smith MPI_Status status; 7668e2fed03SBarry Smith ierr = PetscBinaryWrite(fd,row_lengths,mat->m,PETSC_INT,1);CHKERRQ(ierr); 7678e2fed03SBarry Smith for (i=1; i<size; i++) { 7688e2fed03SBarry Smith rlen = range[i+1] - range[i]; 7698e2fed03SBarry Smith ierr = MPI_Recv(row_lengths,rlen,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr); 7708e2fed03SBarry Smith ierr = PetscBinaryWrite(fd,row_lengths,rlen,PETSC_INT,1);CHKERRQ(ierr); 7718e2fed03SBarry Smith } 7728e2fed03SBarry Smith } else { 7738e2fed03SBarry Smith ierr = MPI_Send(row_lengths,mat->m,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr); 7748e2fed03SBarry Smith } 7758e2fed03SBarry Smith ierr = PetscFree(row_lengths);CHKERRQ(ierr); 7768e2fed03SBarry Smith 7778e2fed03SBarry Smith /* load up the local column indices */ 7788e2fed03SBarry Smith nzmax = nz; /* )th processor needs space a largest processor needs */ 7798e2fed03SBarry Smith ierr = MPI_Reduce(&nz,&nzmax,1,MPI_INT,MPI_MAX,0,mat->comm);CHKERRQ(ierr); 7808e2fed03SBarry Smith ierr = PetscMalloc((nzmax+1)*sizeof(int),&column_indices);CHKERRQ(ierr); 7818e2fed03SBarry Smith cnt = 0; 7828e2fed03SBarry Smith for (i=0; i<mat->m; i++) { 7838e2fed03SBarry Smith for (j=B->i[i]; j<B->i[i+1]; j++) { 7848e2fed03SBarry Smith if ( (col = garray[B->j[j]]) > cstart) break; 7858e2fed03SBarry Smith column_indices[cnt++] = col; 7868e2fed03SBarry Smith } 7878e2fed03SBarry Smith for (k=A->i[i]; k<A->i[i+1]; k++) { 7888e2fed03SBarry Smith column_indices[cnt++] = A->j[k] + cstart; 7898e2fed03SBarry Smith } 7908e2fed03SBarry Smith for (; j<B->i[i+1]; j++) { 7918e2fed03SBarry Smith column_indices[cnt++] = garray[B->j[j]]; 7928e2fed03SBarry Smith } 7938e2fed03SBarry Smith } 7948e2fed03SBarry Smith if (cnt != A->nz + B->nz) SETERRQ2(PETSC_ERR_LIB,"Internal PETSc error: cnt = %d nz = %d",cnt,A->nz+B->nz); 7958e2fed03SBarry Smith 7968e2fed03SBarry Smith /* store the column indices to the file */ 7978e2fed03SBarry Smith if (rank == 0) { 7988e2fed03SBarry Smith MPI_Status status; 7998e2fed03SBarry Smith ierr = PetscBinaryWrite(fd,column_indices,nz,PETSC_INT,1);CHKERRQ(ierr); 8008e2fed03SBarry Smith for (i=1; i<size; i++) { 801b021249fSBarry Smith ierr = MPI_Recv(&rnz,1,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr); 802b021249fSBarry Smith if (rnz > nzmax) SETERRQ2(PETSC_ERR_LIB,"Internal PETSc error: nz = %d nzmax = %d",nz,nzmax); 803b021249fSBarry Smith ierr = MPI_Recv(column_indices,rnz,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr); 804b021249fSBarry Smith ierr = PetscBinaryWrite(fd,column_indices,rnz,PETSC_INT,1);CHKERRQ(ierr); 8058e2fed03SBarry Smith } 8068e2fed03SBarry Smith } else { 8078e2fed03SBarry Smith ierr = MPI_Send(&nz,1,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr); 8088e2fed03SBarry Smith ierr = MPI_Send(column_indices,nz,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr); 8098e2fed03SBarry Smith } 8108e2fed03SBarry Smith ierr = PetscFree(column_indices);CHKERRQ(ierr); 8118e2fed03SBarry Smith 8128e2fed03SBarry Smith /* load up the local column values */ 8138e2fed03SBarry Smith ierr = PetscMalloc((nzmax+1)*sizeof(PetscScalar),&column_values);CHKERRQ(ierr); 8148e2fed03SBarry Smith cnt = 0; 8158e2fed03SBarry Smith for (i=0; i<mat->m; i++) { 8168e2fed03SBarry Smith for (j=B->i[i]; j<B->i[i+1]; j++) { 8178e2fed03SBarry Smith if ( garray[B->j[j]] > cstart) break; 8188e2fed03SBarry Smith column_values[cnt++] = B->a[j]; 8198e2fed03SBarry Smith } 8208e2fed03SBarry Smith for (k=A->i[i]; k<A->i[i+1]; k++) { 8218e2fed03SBarry Smith column_values[cnt++] = A->a[k]; 8228e2fed03SBarry Smith } 8238e2fed03SBarry Smith for (; j<B->i[i+1]; j++) { 8248e2fed03SBarry Smith column_values[cnt++] = B->a[j]; 8258e2fed03SBarry Smith } 8268e2fed03SBarry Smith } 8278e2fed03SBarry Smith if (cnt != A->nz + B->nz) SETERRQ2(1,"Internal PETSc error: cnt = %d nz = %d",cnt,A->nz+B->nz); 8288e2fed03SBarry Smith 8298e2fed03SBarry Smith /* store the column values to the file */ 8308e2fed03SBarry Smith if (rank == 0) { 8318e2fed03SBarry Smith MPI_Status status; 8328e2fed03SBarry Smith ierr = PetscBinaryWrite(fd,column_values,nz,PETSC_SCALAR,1);CHKERRQ(ierr); 8338e2fed03SBarry Smith for (i=1; i<size; i++) { 834b021249fSBarry Smith ierr = MPI_Recv(&rnz,1,MPI_INT,i,tag,mat->comm,&status);CHKERRQ(ierr); 835b021249fSBarry Smith if (rnz > nzmax) SETERRQ2(PETSC_ERR_LIB,"Internal PETSc error: nz = %d nzmax = %d",nz,nzmax); 836b021249fSBarry Smith ierr = MPI_Recv(column_values,rnz,MPIU_SCALAR,i,tag,mat->comm,&status);CHKERRQ(ierr); 837b021249fSBarry Smith ierr = PetscBinaryWrite(fd,column_values,rnz,PETSC_SCALAR,1);CHKERRQ(ierr); 8388e2fed03SBarry Smith } 8398e2fed03SBarry Smith } else { 8408e2fed03SBarry Smith ierr = MPI_Send(&nz,1,MPI_INT,0,tag,mat->comm);CHKERRQ(ierr); 8418e2fed03SBarry Smith ierr = MPI_Send(column_values,nz,MPIU_SCALAR,0,tag,mat->comm);CHKERRQ(ierr); 8428e2fed03SBarry Smith } 8438e2fed03SBarry Smith ierr = PetscFree(column_values);CHKERRQ(ierr); 8448e2fed03SBarry Smith PetscFunctionReturn(0); 8458e2fed03SBarry Smith } 8468e2fed03SBarry Smith 8478e2fed03SBarry Smith #undef __FUNCT__ 8484a2ae208SSatish Balay #define __FUNCT__ "MatView_MPIAIJ_ASCIIorDraworSocket" 849b0a32e0cSBarry Smith int MatView_MPIAIJ_ASCIIorDraworSocket(Mat mat,PetscViewer viewer) 850416022c9SBarry Smith { 85144a69424SLois Curfman McInnes Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 852dbb450caSBarry Smith Mat_SeqAIJ* C = (Mat_SeqAIJ*)aij->A->data; 853fb9695e5SSatish Balay int ierr,shift = C->indexshift,rank = aij->rank,size = aij->size; 8548e2fed03SBarry Smith PetscTruth isdraw,isascii,flg,isbinary; 855b0a32e0cSBarry Smith PetscViewer sviewer; 856f3ef73ceSBarry Smith PetscViewerFormat format; 857416022c9SBarry Smith 8583a40ed3dSBarry Smith PetscFunctionBegin; 859fb9695e5SSatish Balay ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_DRAW,&isdraw);CHKERRQ(ierr); 860b0a32e0cSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr); 8618e2fed03SBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_BINARY,&isbinary);CHKERRQ(ierr); 8620f5bd95cSBarry Smith if (isascii) { 863b0a32e0cSBarry Smith ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr); 864456192e2SBarry Smith if (format == PETSC_VIEWER_ASCII_INFO_DETAIL) { 8654e220ebcSLois Curfman McInnes MatInfo info; 8661dab6e02SBarry Smith ierr = MPI_Comm_rank(mat->comm,&rank);CHKERRQ(ierr); 867888f2ed8SSatish Balay ierr = MatGetInfo(mat,MAT_LOCAL,&info);CHKERRQ(ierr); 868b0a32e0cSBarry Smith ierr = PetscOptionsHasName(PETSC_NULL,"-mat_aij_no_inode",&flg);CHKERRQ(ierr); 8696831982aSBarry Smith if (flg) { 870b0a32e0cSBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] Local rows %d nz %d nz alloced %d mem %d, not using I-node routines\n", 871273d9f13SBarry Smith rank,mat->m,(int)info.nz_used,(int)info.nz_allocated,(int)info.memory);CHKERRQ(ierr); 8726831982aSBarry Smith } else { 873b0a32e0cSBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] Local rows %d nz %d nz alloced %d mem %d, using I-node routines\n", 874273d9f13SBarry Smith rank,mat->m,(int)info.nz_used,(int)info.nz_allocated,(int)info.memory);CHKERRQ(ierr); 8756831982aSBarry Smith } 876888f2ed8SSatish Balay ierr = MatGetInfo(aij->A,MAT_LOCAL,&info);CHKERRQ(ierr); 877b0a32e0cSBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] on-diagonal part: nz %d \n",rank,(int)info.nz_used);CHKERRQ(ierr); 878888f2ed8SSatish Balay ierr = MatGetInfo(aij->B,MAT_LOCAL,&info);CHKERRQ(ierr); 879b0a32e0cSBarry Smith ierr = PetscViewerASCIISynchronizedPrintf(viewer,"[%d] off-diagonal part: nz %d \n",rank,(int)info.nz_used);CHKERRQ(ierr); 880b0a32e0cSBarry Smith ierr = PetscViewerFlush(viewer);CHKERRQ(ierr); 881a40aa06bSLois Curfman McInnes ierr = VecScatterView(aij->Mvctx,viewer);CHKERRQ(ierr); 8823a40ed3dSBarry Smith PetscFunctionReturn(0); 883fb9695e5SSatish Balay } else if (format == PETSC_VIEWER_ASCII_INFO) { 8843a40ed3dSBarry Smith PetscFunctionReturn(0); 8854aedb280SBarry Smith } else if (format == PETSC_VIEWER_ASCII_FACTOR_INFO) { 8863cea93caSBarry Smith #if defined(PETSC_HAVE_SUPERLUDIST) && !defined(PETSC_USE_SINGLE) 8874aedb280SBarry Smith ierr = MatMPIAIJFactorInfo_SuperLu(mat,viewer);CHKERRQ(ierr); 8884aedb280SBarry Smith #endif 8896ea74821SHong Zhang #if defined(PETSC_HAVE_SPOOLES) && !defined(PETSC_USE_SINGLE) 890a072f7f7SHong Zhang ierr = MatFactorInfo_Spooles(mat,viewer);CHKERRQ(ierr); 8910473ca23SHong Zhang #endif 892471340fbSHong Zhang 8934aedb280SBarry Smith PetscFunctionReturn(0); 89408480c60SBarry Smith } 8958e2fed03SBarry Smith } else if (isbinary) { 8968e2fed03SBarry Smith if (size == 1) { 8978e2fed03SBarry Smith ierr = PetscObjectSetName((PetscObject)aij->A,mat->name);CHKERRQ(ierr); 8988e2fed03SBarry Smith ierr = MatView(aij->A,viewer);CHKERRQ(ierr); 8998e2fed03SBarry Smith } else { 9008e2fed03SBarry Smith ierr = MatView_MPIAIJ_Binary(mat,viewer);CHKERRQ(ierr); 9018e2fed03SBarry Smith } 9028e2fed03SBarry Smith PetscFunctionReturn(0); 9030f5bd95cSBarry Smith } else if (isdraw) { 904b0a32e0cSBarry Smith PetscDraw draw; 90519bcc07fSBarry Smith PetscTruth isnull; 906b0a32e0cSBarry Smith ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr); 907b0a32e0cSBarry Smith ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr); if (isnull) PetscFunctionReturn(0); 90819bcc07fSBarry Smith } 90919bcc07fSBarry Smith 91017699dbbSLois Curfman McInnes if (size == 1) { 911e36acaf3SBarry Smith ierr = PetscObjectSetName((PetscObject)aij->A,mat->name);CHKERRQ(ierr); 91278b31e54SBarry Smith ierr = MatView(aij->A,viewer);CHKERRQ(ierr); 9133a40ed3dSBarry Smith } else { 91495373324SBarry Smith /* assemble the entire matrix onto first processor. */ 91595373324SBarry Smith Mat A; 916ec8511deSBarry Smith Mat_SeqAIJ *Aloc; 917273d9f13SBarry Smith int M = mat->M,N = mat->N,m,*ai,*aj,row,*cols,i,*ct; 91887828ca2SBarry Smith PetscScalar *a; 9192ee70a88SLois Curfman McInnes 92017699dbbSLois Curfman McInnes if (!rank) { 92155843e3eSBarry Smith ierr = MatCreateMPIAIJ(mat->comm,M,N,M,N,0,PETSC_NULL,0,PETSC_NULL,&A);CHKERRQ(ierr); 9223a40ed3dSBarry Smith } else { 92355843e3eSBarry Smith ierr = MatCreateMPIAIJ(mat->comm,0,0,M,N,0,PETSC_NULL,0,PETSC_NULL,&A);CHKERRQ(ierr); 92495373324SBarry Smith } 925b0a32e0cSBarry Smith PetscLogObjectParent(mat,A); 926416022c9SBarry Smith 92795373324SBarry Smith /* copy over the A part */ 928ec8511deSBarry Smith Aloc = (Mat_SeqAIJ*)aij->A->data; 929273d9f13SBarry Smith m = aij->A->m; ai = Aloc->i; aj = Aloc->j; a = Aloc->a; 93095373324SBarry Smith row = aij->rstart; 931dbb450caSBarry Smith for (i=0; i<ai[m]+shift; i++) {aj[i] += aij->cstart + shift;} 93295373324SBarry Smith for (i=0; i<m; i++) { 933416022c9SBarry Smith ierr = MatSetValues(A,1,&row,ai[i+1]-ai[i],aj,a,INSERT_VALUES);CHKERRQ(ierr); 93495373324SBarry Smith row++; a += ai[i+1]-ai[i]; aj += ai[i+1]-ai[i]; 93595373324SBarry Smith } 9362ee70a88SLois Curfman McInnes aj = Aloc->j; 937dbb450caSBarry Smith for (i=0; i<ai[m]+shift; i++) {aj[i] -= aij->cstart + shift;} 93895373324SBarry Smith 93995373324SBarry Smith /* copy over the B part */ 940ec8511deSBarry Smith Aloc = (Mat_SeqAIJ*)aij->B->data; 941273d9f13SBarry Smith m = aij->B->m; ai = Aloc->i; aj = Aloc->j; a = Aloc->a; 94295373324SBarry Smith row = aij->rstart; 943b0a32e0cSBarry Smith ierr = PetscMalloc((ai[m]+1)*sizeof(int),&cols);CHKERRQ(ierr); 944b0a32e0cSBarry Smith ct = cols; 945dbb450caSBarry Smith for (i=0; i<ai[m]+shift; i++) {cols[i] = aij->garray[aj[i]+shift];} 94695373324SBarry Smith for (i=0; i<m; i++) { 947416022c9SBarry Smith ierr = MatSetValues(A,1,&row,ai[i+1]-ai[i],cols,a,INSERT_VALUES);CHKERRQ(ierr); 94895373324SBarry Smith row++; a += ai[i+1]-ai[i]; cols += ai[i+1]-ai[i]; 94995373324SBarry Smith } 950606d414cSSatish Balay ierr = PetscFree(ct);CHKERRQ(ierr); 9516d4a8577SBarry Smith ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 9526d4a8577SBarry Smith ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 95355843e3eSBarry Smith /* 95455843e3eSBarry Smith Everyone has to call to draw the matrix since the graphics waits are 955b0a32e0cSBarry Smith synchronized across all processors that share the PetscDraw object 95655843e3eSBarry Smith */ 957b0a32e0cSBarry Smith ierr = PetscViewerGetSingleton(viewer,&sviewer);CHKERRQ(ierr); 958e03a110bSBarry Smith if (!rank) { 959e36acaf3SBarry Smith ierr = PetscObjectSetName((PetscObject)((Mat_MPIAIJ*)(A->data))->A,mat->name);CHKERRQ(ierr); 9606831982aSBarry Smith ierr = MatView(((Mat_MPIAIJ*)(A->data))->A,sviewer);CHKERRQ(ierr); 96195373324SBarry Smith } 962b0a32e0cSBarry Smith ierr = PetscViewerRestoreSingleton(viewer,&sviewer);CHKERRQ(ierr); 96378b31e54SBarry Smith ierr = MatDestroy(A);CHKERRQ(ierr); 96495373324SBarry Smith } 9653a40ed3dSBarry Smith PetscFunctionReturn(0); 9661eb62cbbSBarry Smith } 9671eb62cbbSBarry Smith 9684a2ae208SSatish Balay #undef __FUNCT__ 9694a2ae208SSatish Balay #define __FUNCT__ "MatView_MPIAIJ" 970b0a32e0cSBarry Smith int MatView_MPIAIJ(Mat mat,PetscViewer viewer) 971416022c9SBarry Smith { 972416022c9SBarry Smith int ierr; 9736831982aSBarry Smith PetscTruth isascii,isdraw,issocket,isbinary; 974416022c9SBarry Smith 9753a40ed3dSBarry Smith PetscFunctionBegin; 976b0a32e0cSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr); 977fb9695e5SSatish Balay ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_DRAW,&isdraw);CHKERRQ(ierr); 978fb9695e5SSatish Balay ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_BINARY,&isbinary);CHKERRQ(ierr); 979b0a32e0cSBarry Smith ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_SOCKET,&issocket);CHKERRQ(ierr); 9800f5bd95cSBarry Smith if (isascii || isdraw || isbinary || issocket) { 9817b2a1423SBarry Smith ierr = MatView_MPIAIJ_ASCIIorDraworSocket(mat,viewer);CHKERRQ(ierr); 9825cd90555SBarry Smith } else { 98329bbc08cSBarry Smith SETERRQ1(1,"Viewer type %s not supported by MPIAIJ matrices",((PetscObject)viewer)->type_name); 984416022c9SBarry Smith } 9853a40ed3dSBarry Smith PetscFunctionReturn(0); 986416022c9SBarry Smith } 987416022c9SBarry Smith 9881eb62cbbSBarry Smith 989c14dc6b6SHong Zhang 9904a2ae208SSatish Balay #undef __FUNCT__ 9914a2ae208SSatish Balay #define __FUNCT__ "MatRelax_MPIAIJ" 992c14dc6b6SHong Zhang int MatRelax_MPIAIJ(Mat matin,Vec bb,PetscReal omega,MatSORType flag,PetscReal fshift,int its,int lits,Vec xx) 9938a729477SBarry Smith { 99444a69424SLois Curfman McInnes Mat_MPIAIJ *mat = (Mat_MPIAIJ*)matin->data; 995c14dc6b6SHong Zhang int ierr; 996c14dc6b6SHong Zhang Vec bb1; 997a6c309e7SHong Zhang PetscScalar mone=-1.0; 9988a729477SBarry Smith 9993a40ed3dSBarry Smith PetscFunctionBegin; 100091723122SBarry Smith if (its <= 0 || lits <= 0) SETERRQ2(PETSC_ERR_ARG_WRONG,"Relaxation requires global its %d and local its %d both positive",its,lits); 1001c14dc6b6SHong Zhang 1002c14dc6b6SHong Zhang ierr = VecDuplicate(bb,&bb1);CHKERRQ(ierr); 10032798e883SHong Zhang 1004c16cb8f2SBarry Smith if ((flag & SOR_LOCAL_SYMMETRIC_SWEEP) == SOR_LOCAL_SYMMETRIC_SWEEP){ 1005da3a660dSBarry Smith if (flag & SOR_ZERO_INITIAL_GUESS) { 1006bd3bf7d3SHong Zhang ierr = (*mat->A->ops->relax)(mat->A,bb,omega,flag,fshift,lits,lits,xx);CHKERRQ(ierr); 10072798e883SHong Zhang its--; 1008da3a660dSBarry Smith } 10092798e883SHong Zhang 10102798e883SHong Zhang while (its--) { 10113a40ed3dSBarry Smith ierr = VecScatterBegin(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr); 10123a40ed3dSBarry Smith ierr = VecScatterEnd(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr); 10132798e883SHong Zhang 1014c14dc6b6SHong Zhang /* update rhs: bb1 = bb - B*x */ 1015c14dc6b6SHong Zhang ierr = VecScale(&mone,mat->lvec);CHKERRQ(ierr); 1016c14dc6b6SHong Zhang ierr = (*mat->B->ops->multadd)(mat->B,mat->lvec,bb,bb1);CHKERRQ(ierr); 10172798e883SHong Zhang 1018c14dc6b6SHong Zhang /* local sweep */ 1019bd3bf7d3SHong Zhang ierr = (*mat->A->ops->relax)(mat->A,bb1,omega,SOR_SYMMETRIC_SWEEP,fshift,lits,lits,xx); 1020c14dc6b6SHong Zhang CHKERRQ(ierr); 10212798e883SHong Zhang } 10223a40ed3dSBarry Smith } else if (flag & SOR_LOCAL_FORWARD_SWEEP){ 1023da3a660dSBarry Smith if (flag & SOR_ZERO_INITIAL_GUESS) { 1024c14dc6b6SHong Zhang ierr = (*mat->A->ops->relax)(mat->A,bb,omega,flag,fshift,lits,PETSC_NULL,xx);CHKERRQ(ierr); 10252798e883SHong Zhang its--; 1026da3a660dSBarry Smith } 10272798e883SHong Zhang while (its--) { 10283a40ed3dSBarry Smith ierr = VecScatterBegin(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr); 10293a40ed3dSBarry Smith ierr = VecScatterEnd(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr); 10302798e883SHong Zhang 1031c14dc6b6SHong Zhang /* update rhs: bb1 = bb - B*x */ 1032c14dc6b6SHong Zhang ierr = VecScale(&mone,mat->lvec);CHKERRQ(ierr); 1033c14dc6b6SHong Zhang ierr = (*mat->B->ops->multadd)(mat->B,mat->lvec,bb,bb1);CHKERRQ(ierr); 1034c14dc6b6SHong Zhang 1035c14dc6b6SHong Zhang /* local sweep */ 1036a6c309e7SHong Zhang ierr = (*mat->A->ops->relax)(mat->A,bb1,omega,SOR_FORWARD_SWEEP,fshift,lits,PETSC_NULL,xx); 1037c14dc6b6SHong Zhang CHKERRQ(ierr); 10382798e883SHong Zhang } 10393a40ed3dSBarry Smith } else if (flag & SOR_LOCAL_BACKWARD_SWEEP){ 1040da3a660dSBarry Smith if (flag & SOR_ZERO_INITIAL_GUESS) { 1041c14dc6b6SHong Zhang ierr = (*mat->A->ops->relax)(mat->A,bb,omega,flag,fshift,lits,PETSC_NULL,xx);CHKERRQ(ierr); 10422798e883SHong Zhang its--; 1043da3a660dSBarry Smith } 10442798e883SHong Zhang while (its--) { 10452e8a6d31SBarry Smith ierr = VecScatterBegin(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr); 10462e8a6d31SBarry Smith ierr = VecScatterEnd(xx,mat->lvec,INSERT_VALUES,SCATTER_FORWARD,mat->Mvctx);CHKERRQ(ierr); 10472798e883SHong Zhang 1048c14dc6b6SHong Zhang /* update rhs: bb1 = bb - B*x */ 1049c14dc6b6SHong Zhang ierr = VecScale(&mone,mat->lvec);CHKERRQ(ierr); 1050c14dc6b6SHong Zhang ierr = (*mat->B->ops->multadd)(mat->B,mat->lvec,bb,bb1);CHKERRQ(ierr); 10512798e883SHong Zhang 1052c14dc6b6SHong Zhang /* local sweep */ 1053a6c309e7SHong Zhang ierr = (*mat->A->ops->relax)(mat->A,bb1,omega,SOR_BACKWARD_SWEEP,fshift,lits,PETSC_NULL,xx); 1054c14dc6b6SHong Zhang CHKERRQ(ierr); 10552798e883SHong Zhang } 10563a40ed3dSBarry Smith } else { 105729bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"Parallel SOR not supported"); 1058c16cb8f2SBarry Smith } 1059c14dc6b6SHong Zhang 1060c14dc6b6SHong Zhang ierr = VecDestroy(bb1);CHKERRQ(ierr); 10613a40ed3dSBarry Smith PetscFunctionReturn(0); 10628a729477SBarry Smith } 1063a66be287SLois Curfman McInnes 10644a2ae208SSatish Balay #undef __FUNCT__ 10654a2ae208SSatish Balay #define __FUNCT__ "MatGetInfo_MPIAIJ" 10668f6be9afSLois Curfman McInnes int MatGetInfo_MPIAIJ(Mat matin,MatInfoType flag,MatInfo *info) 1067a66be287SLois Curfman McInnes { 1068a66be287SLois Curfman McInnes Mat_MPIAIJ *mat = (Mat_MPIAIJ*)matin->data; 1069a66be287SLois Curfman McInnes Mat A = mat->A,B = mat->B; 10704e220ebcSLois Curfman McInnes int ierr; 1071329f5518SBarry Smith PetscReal isend[5],irecv[5]; 1072a66be287SLois Curfman McInnes 10733a40ed3dSBarry Smith PetscFunctionBegin; 10744e220ebcSLois Curfman McInnes info->block_size = 1.0; 10754e220ebcSLois Curfman McInnes ierr = MatGetInfo(A,MAT_LOCAL,info);CHKERRQ(ierr); 10764e220ebcSLois Curfman McInnes isend[0] = info->nz_used; isend[1] = info->nz_allocated; isend[2] = info->nz_unneeded; 10774e220ebcSLois Curfman McInnes isend[3] = info->memory; isend[4] = info->mallocs; 10784e220ebcSLois Curfman McInnes ierr = MatGetInfo(B,MAT_LOCAL,info);CHKERRQ(ierr); 10794e220ebcSLois Curfman McInnes isend[0] += info->nz_used; isend[1] += info->nz_allocated; isend[2] += info->nz_unneeded; 10804e220ebcSLois Curfman McInnes isend[3] += info->memory; isend[4] += info->mallocs; 1081a66be287SLois Curfman McInnes if (flag == MAT_LOCAL) { 10824e220ebcSLois Curfman McInnes info->nz_used = isend[0]; 10834e220ebcSLois Curfman McInnes info->nz_allocated = isend[1]; 10844e220ebcSLois Curfman McInnes info->nz_unneeded = isend[2]; 10854e220ebcSLois Curfman McInnes info->memory = isend[3]; 10864e220ebcSLois Curfman McInnes info->mallocs = isend[4]; 1087a66be287SLois Curfman McInnes } else if (flag == MAT_GLOBAL_MAX) { 1088d7d1e502SBarry Smith ierr = MPI_Allreduce(isend,irecv,5,MPIU_REAL,MPI_MAX,matin->comm);CHKERRQ(ierr); 10894e220ebcSLois Curfman McInnes info->nz_used = irecv[0]; 10904e220ebcSLois Curfman McInnes info->nz_allocated = irecv[1]; 10914e220ebcSLois Curfman McInnes info->nz_unneeded = irecv[2]; 10924e220ebcSLois Curfman McInnes info->memory = irecv[3]; 10934e220ebcSLois Curfman McInnes info->mallocs = irecv[4]; 1094a66be287SLois Curfman McInnes } else if (flag == MAT_GLOBAL_SUM) { 1095d7d1e502SBarry Smith ierr = MPI_Allreduce(isend,irecv,5,MPIU_REAL,MPI_SUM,matin->comm);CHKERRQ(ierr); 10964e220ebcSLois Curfman McInnes info->nz_used = irecv[0]; 10974e220ebcSLois Curfman McInnes info->nz_allocated = irecv[1]; 10984e220ebcSLois Curfman McInnes info->nz_unneeded = irecv[2]; 10994e220ebcSLois Curfman McInnes info->memory = irecv[3]; 11004e220ebcSLois Curfman McInnes info->mallocs = irecv[4]; 1101a66be287SLois Curfman McInnes } 11024e220ebcSLois Curfman McInnes info->fill_ratio_given = 0; /* no parallel LU/ILU/Cholesky */ 11034e220ebcSLois Curfman McInnes info->fill_ratio_needed = 0; 11044e220ebcSLois Curfman McInnes info->factor_mallocs = 0; 1105273d9f13SBarry Smith info->rows_global = (double)matin->M; 1106273d9f13SBarry Smith info->columns_global = (double)matin->N; 1107273d9f13SBarry Smith info->rows_local = (double)matin->m; 1108273d9f13SBarry Smith info->columns_local = (double)matin->N; 11094e220ebcSLois Curfman McInnes 11103a40ed3dSBarry Smith PetscFunctionReturn(0); 1111a66be287SLois Curfman McInnes } 1112a66be287SLois Curfman McInnes 11134a2ae208SSatish Balay #undef __FUNCT__ 11144a2ae208SSatish Balay #define __FUNCT__ "MatSetOption_MPIAIJ" 11158f6be9afSLois Curfman McInnes int MatSetOption_MPIAIJ(Mat A,MatOption op) 1116c74985f6SBarry Smith { 1117c0bbcb79SLois Curfman McInnes Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 11181dee9f54SBarry Smith int ierr; 1119c74985f6SBarry Smith 11203a40ed3dSBarry Smith PetscFunctionBegin; 112112c028f9SKris Buschelman switch (op) { 112212c028f9SKris Buschelman case MAT_NO_NEW_NONZERO_LOCATIONS: 112312c028f9SKris Buschelman case MAT_YES_NEW_NONZERO_LOCATIONS: 112412c028f9SKris Buschelman case MAT_COLUMNS_UNSORTED: 112512c028f9SKris Buschelman case MAT_COLUMNS_SORTED: 112612c028f9SKris Buschelman case MAT_NEW_NONZERO_ALLOCATION_ERR: 112712c028f9SKris Buschelman case MAT_KEEP_ZEROED_ROWS: 112812c028f9SKris Buschelman case MAT_NEW_NONZERO_LOCATION_ERR: 112912c028f9SKris Buschelman case MAT_USE_INODES: 113012c028f9SKris Buschelman case MAT_DO_NOT_USE_INODES: 113112c028f9SKris Buschelman case MAT_IGNORE_ZERO_ENTRIES: 11321dee9f54SBarry Smith ierr = MatSetOption(a->A,op);CHKERRQ(ierr); 11331dee9f54SBarry Smith ierr = MatSetOption(a->B,op);CHKERRQ(ierr); 113412c028f9SKris Buschelman break; 113512c028f9SKris Buschelman case MAT_ROW_ORIENTED: 11367c922b88SBarry Smith a->roworiented = PETSC_TRUE; 11371dee9f54SBarry Smith ierr = MatSetOption(a->A,op);CHKERRQ(ierr); 11381dee9f54SBarry Smith ierr = MatSetOption(a->B,op);CHKERRQ(ierr); 113912c028f9SKris Buschelman break; 114012c028f9SKris Buschelman case MAT_ROWS_SORTED: 114112c028f9SKris Buschelman case MAT_ROWS_UNSORTED: 114212c028f9SKris Buschelman case MAT_YES_NEW_DIAGONALS: 1143b0a32e0cSBarry Smith PetscLogInfo(A,"MatSetOption_MPIAIJ:Option ignored\n"); 114412c028f9SKris Buschelman break; 114512c028f9SKris Buschelman case MAT_COLUMN_ORIENTED: 11467c922b88SBarry Smith a->roworiented = PETSC_FALSE; 11471dee9f54SBarry Smith ierr = MatSetOption(a->A,op);CHKERRQ(ierr); 11481dee9f54SBarry Smith ierr = MatSetOption(a->B,op);CHKERRQ(ierr); 114912c028f9SKris Buschelman break; 115012c028f9SKris Buschelman case MAT_IGNORE_OFF_PROC_ENTRIES: 11517c922b88SBarry Smith a->donotstash = PETSC_TRUE; 115212c028f9SKris Buschelman break; 115312c028f9SKris Buschelman case MAT_NO_NEW_DIAGONALS: 115429bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"MAT_NO_NEW_DIAGONALS"); 115512c028f9SKris Buschelman default: 115629bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"unknown option"); 11573a40ed3dSBarry Smith } 11583a40ed3dSBarry Smith PetscFunctionReturn(0); 1159c74985f6SBarry Smith } 1160c74985f6SBarry Smith 11614a2ae208SSatish Balay #undef __FUNCT__ 11624a2ae208SSatish Balay #define __FUNCT__ "MatGetRow_MPIAIJ" 116387828ca2SBarry Smith int MatGetRow_MPIAIJ(Mat matin,int row,int *nz,int **idx,PetscScalar **v) 116439e00950SLois Curfman McInnes { 1165154123eaSLois Curfman McInnes Mat_MPIAIJ *mat = (Mat_MPIAIJ*)matin->data; 116687828ca2SBarry Smith PetscScalar *vworkA,*vworkB,**pvA,**pvB,*v_p; 1167154123eaSLois Curfman McInnes int i,ierr,*cworkA,*cworkB,**pcA,**pcB,cstart = mat->cstart; 1168154123eaSLois Curfman McInnes int nztot,nzA,nzB,lrow,rstart = mat->rstart,rend = mat->rend; 116970f0671dSBarry Smith int *cmap,*idx_p; 117039e00950SLois Curfman McInnes 11713a40ed3dSBarry Smith PetscFunctionBegin; 117229bbc08cSBarry Smith if (mat->getrowactive == PETSC_TRUE) SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"Already active"); 11737a0afa10SBarry Smith mat->getrowactive = PETSC_TRUE; 11747a0afa10SBarry Smith 117570f0671dSBarry Smith if (!mat->rowvalues && (idx || v)) { 11767a0afa10SBarry Smith /* 11777a0afa10SBarry Smith allocate enough space to hold information from the longest row. 11787a0afa10SBarry Smith */ 11797a0afa10SBarry Smith Mat_SeqAIJ *Aa = (Mat_SeqAIJ*)mat->A->data,*Ba = (Mat_SeqAIJ*)mat->B->data; 1180273d9f13SBarry Smith int max = 1,tmp; 1181273d9f13SBarry Smith for (i=0; i<matin->m; i++) { 11827a0afa10SBarry Smith tmp = Aa->i[i+1] - Aa->i[i] + Ba->i[i+1] - Ba->i[i]; 11837a0afa10SBarry Smith if (max < tmp) { max = tmp; } 11847a0afa10SBarry Smith } 118587828ca2SBarry Smith ierr = PetscMalloc(max*(sizeof(int)+sizeof(PetscScalar)),&mat->rowvalues);CHKERRQ(ierr); 11867a0afa10SBarry Smith mat->rowindices = (int*)(mat->rowvalues + max); 11877a0afa10SBarry Smith } 11887a0afa10SBarry Smith 118929bbc08cSBarry Smith if (row < rstart || row >= rend) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Only local rows") 1190abc0e9e4SLois Curfman McInnes lrow = row - rstart; 119139e00950SLois Curfman McInnes 1192154123eaSLois Curfman McInnes pvA = &vworkA; pcA = &cworkA; pvB = &vworkB; pcB = &cworkB; 1193154123eaSLois Curfman McInnes if (!v) {pvA = 0; pvB = 0;} 1194154123eaSLois Curfman McInnes if (!idx) {pcA = 0; if (!v) pcB = 0;} 1195f830108cSBarry Smith ierr = (*mat->A->ops->getrow)(mat->A,lrow,&nzA,pcA,pvA);CHKERRQ(ierr); 1196f830108cSBarry Smith ierr = (*mat->B->ops->getrow)(mat->B,lrow,&nzB,pcB,pvB);CHKERRQ(ierr); 1197154123eaSLois Curfman McInnes nztot = nzA + nzB; 1198154123eaSLois Curfman McInnes 119970f0671dSBarry Smith cmap = mat->garray; 1200154123eaSLois Curfman McInnes if (v || idx) { 1201154123eaSLois Curfman McInnes if (nztot) { 1202154123eaSLois Curfman McInnes /* Sort by increasing column numbers, assuming A and B already sorted */ 120370f0671dSBarry Smith int imark = -1; 1204154123eaSLois Curfman McInnes if (v) { 120570f0671dSBarry Smith *v = v_p = mat->rowvalues; 120639e00950SLois Curfman McInnes for (i=0; i<nzB; i++) { 120770f0671dSBarry Smith if (cmap[cworkB[i]] < cstart) v_p[i] = vworkB[i]; 1208154123eaSLois Curfman McInnes else break; 1209154123eaSLois Curfman McInnes } 1210154123eaSLois Curfman McInnes imark = i; 121170f0671dSBarry Smith for (i=0; i<nzA; i++) v_p[imark+i] = vworkA[i]; 121270f0671dSBarry Smith for (i=imark; i<nzB; i++) v_p[nzA+i] = vworkB[i]; 1213154123eaSLois Curfman McInnes } 1214154123eaSLois Curfman McInnes if (idx) { 121570f0671dSBarry Smith *idx = idx_p = mat->rowindices; 121670f0671dSBarry Smith if (imark > -1) { 121770f0671dSBarry Smith for (i=0; i<imark; i++) { 121870f0671dSBarry Smith idx_p[i] = cmap[cworkB[i]]; 121970f0671dSBarry Smith } 122070f0671dSBarry Smith } else { 1221154123eaSLois Curfman McInnes for (i=0; i<nzB; i++) { 122270f0671dSBarry Smith if (cmap[cworkB[i]] < cstart) idx_p[i] = cmap[cworkB[i]]; 1223154123eaSLois Curfman McInnes else break; 1224154123eaSLois Curfman McInnes } 1225154123eaSLois Curfman McInnes imark = i; 122670f0671dSBarry Smith } 122770f0671dSBarry Smith for (i=0; i<nzA; i++) idx_p[imark+i] = cstart + cworkA[i]; 122870f0671dSBarry Smith for (i=imark; i<nzB; i++) idx_p[nzA+i] = cmap[cworkB[i]]; 122939e00950SLois Curfman McInnes } 12303f97c4b0SBarry Smith } else { 12311ca473b0SSatish Balay if (idx) *idx = 0; 12321ca473b0SSatish Balay if (v) *v = 0; 12331ca473b0SSatish Balay } 1234154123eaSLois Curfman McInnes } 123539e00950SLois Curfman McInnes *nz = nztot; 1236f830108cSBarry Smith ierr = (*mat->A->ops->restorerow)(mat->A,lrow,&nzA,pcA,pvA);CHKERRQ(ierr); 1237f830108cSBarry Smith ierr = (*mat->B->ops->restorerow)(mat->B,lrow,&nzB,pcB,pvB);CHKERRQ(ierr); 12383a40ed3dSBarry Smith PetscFunctionReturn(0); 123939e00950SLois Curfman McInnes } 124039e00950SLois Curfman McInnes 12414a2ae208SSatish Balay #undef __FUNCT__ 12424a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRow_MPIAIJ" 124387828ca2SBarry Smith int MatRestoreRow_MPIAIJ(Mat mat,int row,int *nz,int **idx,PetscScalar **v) 124439e00950SLois Curfman McInnes { 12457a0afa10SBarry Smith Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 12463a40ed3dSBarry Smith 12473a40ed3dSBarry Smith PetscFunctionBegin; 12487a0afa10SBarry Smith if (aij->getrowactive == PETSC_FALSE) { 124929bbc08cSBarry Smith SETERRQ(PETSC_ERR_ARG_WRONGSTATE,"MatGetRow not called"); 12507a0afa10SBarry Smith } 12517a0afa10SBarry Smith aij->getrowactive = PETSC_FALSE; 12523a40ed3dSBarry Smith PetscFunctionReturn(0); 125339e00950SLois Curfman McInnes } 125439e00950SLois Curfman McInnes 12554a2ae208SSatish Balay #undef __FUNCT__ 12564a2ae208SSatish Balay #define __FUNCT__ "MatNorm_MPIAIJ" 1257329f5518SBarry Smith int MatNorm_MPIAIJ(Mat mat,NormType type,PetscReal *norm) 1258855ac2c5SLois Curfman McInnes { 1259855ac2c5SLois Curfman McInnes Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 1260ec8511deSBarry Smith Mat_SeqAIJ *amat = (Mat_SeqAIJ*)aij->A->data,*bmat = (Mat_SeqAIJ*)aij->B->data; 1261416022c9SBarry Smith int ierr,i,j,cstart = aij->cstart,shift = amat->indexshift; 1262329f5518SBarry Smith PetscReal sum = 0.0; 126387828ca2SBarry Smith PetscScalar *v; 126404ca555eSLois Curfman McInnes 12653a40ed3dSBarry Smith PetscFunctionBegin; 126617699dbbSLois Curfman McInnes if (aij->size == 1) { 126714183eadSLois Curfman McInnes ierr = MatNorm(aij->A,type,norm);CHKERRQ(ierr); 126837fa93a5SLois Curfman McInnes } else { 126904ca555eSLois Curfman McInnes if (type == NORM_FROBENIUS) { 127004ca555eSLois Curfman McInnes v = amat->a; 127104ca555eSLois Curfman McInnes for (i=0; i<amat->nz; i++) { 1272aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX) 1273329f5518SBarry Smith sum += PetscRealPart(PetscConj(*v)*(*v)); v++; 127404ca555eSLois Curfman McInnes #else 127504ca555eSLois Curfman McInnes sum += (*v)*(*v); v++; 127604ca555eSLois Curfman McInnes #endif 127704ca555eSLois Curfman McInnes } 127804ca555eSLois Curfman McInnes v = bmat->a; 127904ca555eSLois Curfman McInnes for (i=0; i<bmat->nz; i++) { 1280aa482453SBarry Smith #if defined(PETSC_USE_COMPLEX) 1281329f5518SBarry Smith sum += PetscRealPart(PetscConj(*v)*(*v)); v++; 128204ca555eSLois Curfman McInnes #else 128304ca555eSLois Curfman McInnes sum += (*v)*(*v); v++; 128404ca555eSLois Curfman McInnes #endif 128504ca555eSLois Curfman McInnes } 1286d7d1e502SBarry Smith ierr = MPI_Allreduce(&sum,norm,1,MPIU_REAL,MPI_SUM,mat->comm);CHKERRQ(ierr); 128704ca555eSLois Curfman McInnes *norm = sqrt(*norm); 12883a40ed3dSBarry Smith } else if (type == NORM_1) { /* max column norm */ 1289329f5518SBarry Smith PetscReal *tmp,*tmp2; 129004ca555eSLois Curfman McInnes int *jj,*garray = aij->garray; 1291b0a32e0cSBarry Smith ierr = PetscMalloc((mat->N+1)*sizeof(PetscReal),&tmp);CHKERRQ(ierr); 1292b0a32e0cSBarry Smith ierr = PetscMalloc((mat->N+1)*sizeof(PetscReal),&tmp2);CHKERRQ(ierr); 1293273d9f13SBarry Smith ierr = PetscMemzero(tmp,mat->N*sizeof(PetscReal));CHKERRQ(ierr); 129404ca555eSLois Curfman McInnes *norm = 0.0; 129504ca555eSLois Curfman McInnes v = amat->a; jj = amat->j; 129604ca555eSLois Curfman McInnes for (j=0; j<amat->nz; j++) { 1297579c6b6fSBarry Smith tmp[cstart + *jj++ + shift] += PetscAbsScalar(*v); v++; 129804ca555eSLois Curfman McInnes } 129904ca555eSLois Curfman McInnes v = bmat->a; jj = bmat->j; 130004ca555eSLois Curfman McInnes for (j=0; j<bmat->nz; j++) { 1301579c6b6fSBarry Smith tmp[garray[*jj++ + shift]] += PetscAbsScalar(*v); v++; 130204ca555eSLois Curfman McInnes } 1303d7d1e502SBarry Smith ierr = MPI_Allreduce(tmp,tmp2,mat->N,MPIU_REAL,MPI_SUM,mat->comm);CHKERRQ(ierr); 1304273d9f13SBarry Smith for (j=0; j<mat->N; j++) { 130504ca555eSLois Curfman McInnes if (tmp2[j] > *norm) *norm = tmp2[j]; 130604ca555eSLois Curfman McInnes } 1307606d414cSSatish Balay ierr = PetscFree(tmp);CHKERRQ(ierr); 1308606d414cSSatish Balay ierr = PetscFree(tmp2);CHKERRQ(ierr); 13093a40ed3dSBarry Smith } else if (type == NORM_INFINITY) { /* max row norm */ 1310329f5518SBarry Smith PetscReal ntemp = 0.0; 1311273d9f13SBarry Smith for (j=0; j<aij->A->m; j++) { 1312dbb450caSBarry Smith v = amat->a + amat->i[j] + shift; 131304ca555eSLois Curfman McInnes sum = 0.0; 131404ca555eSLois Curfman McInnes for (i=0; i<amat->i[j+1]-amat->i[j]; i++) { 1315cddf8d76SBarry Smith sum += PetscAbsScalar(*v); v++; 131604ca555eSLois Curfman McInnes } 1317dbb450caSBarry Smith v = bmat->a + bmat->i[j] + shift; 131804ca555eSLois Curfman McInnes for (i=0; i<bmat->i[j+1]-bmat->i[j]; i++) { 1319cddf8d76SBarry Smith sum += PetscAbsScalar(*v); v++; 132004ca555eSLois Curfman McInnes } 1321515d9167SLois Curfman McInnes if (sum > ntemp) ntemp = sum; 132204ca555eSLois Curfman McInnes } 1323d7d1e502SBarry Smith ierr = MPI_Allreduce(&ntemp,norm,1,MPIU_REAL,MPI_MAX,mat->comm);CHKERRQ(ierr); 1324ca161407SBarry Smith } else { 132529bbc08cSBarry Smith SETERRQ(PETSC_ERR_SUP,"No support for two norm"); 132604ca555eSLois Curfman McInnes } 132737fa93a5SLois Curfman McInnes } 13283a40ed3dSBarry Smith PetscFunctionReturn(0); 1329855ac2c5SLois Curfman McInnes } 1330855ac2c5SLois Curfman McInnes 13314a2ae208SSatish Balay #undef __FUNCT__ 13324a2ae208SSatish Balay #define __FUNCT__ "MatTranspose_MPIAIJ" 13338f6be9afSLois Curfman McInnes int MatTranspose_MPIAIJ(Mat A,Mat *matout) 1334b7c46309SBarry Smith { 1335b7c46309SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 1336dbb450caSBarry Smith Mat_SeqAIJ *Aloc = (Mat_SeqAIJ*)a->A->data; 1337416022c9SBarry Smith int ierr,shift = Aloc->indexshift; 1338273d9f13SBarry Smith int M = A->M,N = A->N,m,*ai,*aj,row,*cols,i,*ct; 13393a40ed3dSBarry Smith Mat B; 134087828ca2SBarry Smith PetscScalar *array; 1341b7c46309SBarry Smith 13423a40ed3dSBarry Smith PetscFunctionBegin; 13437c922b88SBarry Smith if (!matout && M != N) { 134429bbc08cSBarry Smith SETERRQ(PETSC_ERR_ARG_SIZ,"Square matrix only for in-place"); 1345d4bb536fSBarry Smith } 1346d4bb536fSBarry Smith 1347273d9f13SBarry Smith ierr = MatCreateMPIAIJ(A->comm,A->n,A->m,N,M,0,PETSC_NULL,0,PETSC_NULL,&B);CHKERRQ(ierr); 1348b7c46309SBarry Smith 1349b7c46309SBarry Smith /* copy over the A part */ 1350ec8511deSBarry Smith Aloc = (Mat_SeqAIJ*)a->A->data; 1351273d9f13SBarry Smith m = a->A->m; ai = Aloc->i; aj = Aloc->j; array = Aloc->a; 1352b7c46309SBarry Smith row = a->rstart; 1353dbb450caSBarry Smith for (i=0; i<ai[m]+shift; i++) {aj[i] += a->cstart + shift;} 1354b7c46309SBarry Smith for (i=0; i<m; i++) { 1355416022c9SBarry Smith ierr = MatSetValues(B,ai[i+1]-ai[i],aj,1,&row,array,INSERT_VALUES);CHKERRQ(ierr); 1356b7c46309SBarry Smith row++; array += ai[i+1]-ai[i]; aj += ai[i+1]-ai[i]; 1357b7c46309SBarry Smith } 1358b7c46309SBarry Smith aj = Aloc->j; 13594af08d9eSBarry Smith for (i=0; i<ai[m]+shift; i++) {aj[i] -= a->cstart + shift;} 1360b7c46309SBarry Smith 1361b7c46309SBarry Smith /* copy over the B part */ 1362ec8511deSBarry Smith Aloc = (Mat_SeqAIJ*)a->B->data; 1363273d9f13SBarry Smith m = a->B->m; ai = Aloc->i; aj = Aloc->j; array = Aloc->a; 1364b7c46309SBarry Smith row = a->rstart; 1365b0a32e0cSBarry Smith ierr = PetscMalloc((1+ai[m]-shift)*sizeof(int),&cols);CHKERRQ(ierr); 1366b0a32e0cSBarry Smith ct = cols; 1367dbb450caSBarry Smith for (i=0; i<ai[m]+shift; i++) {cols[i] = a->garray[aj[i]+shift];} 1368b7c46309SBarry Smith for (i=0; i<m; i++) { 1369416022c9SBarry Smith ierr = MatSetValues(B,ai[i+1]-ai[i],cols,1,&row,array,INSERT_VALUES);CHKERRQ(ierr); 1370b7c46309SBarry Smith row++; array += ai[i+1]-ai[i]; cols += ai[i+1]-ai[i]; 1371b7c46309SBarry Smith } 1372606d414cSSatish Balay ierr = PetscFree(ct);CHKERRQ(ierr); 13736d4a8577SBarry Smith ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 13746d4a8577SBarry Smith ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 13757c922b88SBarry Smith if (matout) { 13760de55854SLois Curfman McInnes *matout = B; 13770de55854SLois Curfman McInnes } else { 1378273d9f13SBarry Smith ierr = MatHeaderCopy(A,B);CHKERRQ(ierr); 13790de55854SLois Curfman McInnes } 13803a40ed3dSBarry Smith PetscFunctionReturn(0); 1381b7c46309SBarry Smith } 1382b7c46309SBarry Smith 13834a2ae208SSatish Balay #undef __FUNCT__ 13844a2ae208SSatish Balay #define __FUNCT__ "MatDiagonalScale_MPIAIJ" 13854b967eb1SSatish Balay int MatDiagonalScale_MPIAIJ(Mat mat,Vec ll,Vec rr) 1386a008b906SSatish Balay { 13874b967eb1SSatish Balay Mat_MPIAIJ *aij = (Mat_MPIAIJ*)mat->data; 13884b967eb1SSatish Balay Mat a = aij->A,b = aij->B; 1389a008b906SSatish Balay int ierr,s1,s2,s3; 1390a008b906SSatish Balay 13913a40ed3dSBarry Smith PetscFunctionBegin; 13924b967eb1SSatish Balay ierr = MatGetLocalSize(mat,&s2,&s3);CHKERRQ(ierr); 13934b967eb1SSatish Balay if (rr) { 1394e1311b90SBarry Smith ierr = VecGetLocalSize(rr,&s1);CHKERRQ(ierr); 139529bbc08cSBarry Smith if (s1!=s3) SETERRQ(PETSC_ERR_ARG_SIZ,"right vector non-conforming local size"); 13964b967eb1SSatish Balay /* Overlap communication with computation. */ 139743a90d84SBarry Smith ierr = VecScatterBegin(rr,aij->lvec,INSERT_VALUES,SCATTER_FORWARD,aij->Mvctx);CHKERRQ(ierr); 1398a008b906SSatish Balay } 13994b967eb1SSatish Balay if (ll) { 1400e1311b90SBarry Smith ierr = VecGetLocalSize(ll,&s1);CHKERRQ(ierr); 140129bbc08cSBarry Smith if (s1!=s2) SETERRQ(PETSC_ERR_ARG_SIZ,"left vector non-conforming local size"); 1402f830108cSBarry Smith ierr = (*b->ops->diagonalscale)(b,ll,0);CHKERRQ(ierr); 14034b967eb1SSatish Balay } 14044b967eb1SSatish Balay /* scale the diagonal block */ 1405f830108cSBarry Smith ierr = (*a->ops->diagonalscale)(a,ll,rr);CHKERRQ(ierr); 14064b967eb1SSatish Balay 14074b967eb1SSatish Balay if (rr) { 14084b967eb1SSatish Balay /* Do a scatter end and then right scale the off-diagonal block */ 140943a90d84SBarry Smith ierr = VecScatterEnd(rr,aij->lvec,INSERT_VALUES,SCATTER_FORWARD,aij->Mvctx);CHKERRQ(ierr); 1410f830108cSBarry Smith ierr = (*b->ops->diagonalscale)(b,0,aij->lvec);CHKERRQ(ierr); 14114b967eb1SSatish Balay } 14124b967eb1SSatish Balay 14133a40ed3dSBarry Smith PetscFunctionReturn(0); 1414a008b906SSatish Balay } 1415a008b906SSatish Balay 1416a008b906SSatish Balay 14174a2ae208SSatish Balay #undef __FUNCT__ 14184a2ae208SSatish Balay #define __FUNCT__ "MatPrintHelp_MPIAIJ" 14198f6be9afSLois Curfman McInnes int MatPrintHelp_MPIAIJ(Mat A) 1420682d7d0cSBarry Smith { 1421682d7d0cSBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 14223a40ed3dSBarry Smith int ierr; 1423682d7d0cSBarry Smith 14243a40ed3dSBarry Smith PetscFunctionBegin; 14253a40ed3dSBarry Smith if (!a->rank) { 14263a40ed3dSBarry Smith ierr = MatPrintHelp_SeqAIJ(a->A);CHKERRQ(ierr); 14273a40ed3dSBarry Smith } 14283a40ed3dSBarry Smith PetscFunctionReturn(0); 1429682d7d0cSBarry Smith } 1430682d7d0cSBarry Smith 14314a2ae208SSatish Balay #undef __FUNCT__ 14324a2ae208SSatish Balay #define __FUNCT__ "MatGetBlockSize_MPIAIJ" 14338f6be9afSLois Curfman McInnes int MatGetBlockSize_MPIAIJ(Mat A,int *bs) 14345a838052SSatish Balay { 14353a40ed3dSBarry Smith PetscFunctionBegin; 14365a838052SSatish Balay *bs = 1; 14373a40ed3dSBarry Smith PetscFunctionReturn(0); 14385a838052SSatish Balay } 14394a2ae208SSatish Balay #undef __FUNCT__ 14404a2ae208SSatish Balay #define __FUNCT__ "MatSetUnfactored_MPIAIJ" 14418f6be9afSLois Curfman McInnes int MatSetUnfactored_MPIAIJ(Mat A) 1442bb5a7306SBarry Smith { 1443bb5a7306SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 1444bb5a7306SBarry Smith int ierr; 14453a40ed3dSBarry Smith 14463a40ed3dSBarry Smith PetscFunctionBegin; 1447bb5a7306SBarry Smith ierr = MatSetUnfactored(a->A);CHKERRQ(ierr); 14483a40ed3dSBarry Smith PetscFunctionReturn(0); 1449bb5a7306SBarry Smith } 1450bb5a7306SBarry Smith 14514a2ae208SSatish Balay #undef __FUNCT__ 14524a2ae208SSatish Balay #define __FUNCT__ "MatEqual_MPIAIJ" 1453d4bb536fSBarry Smith int MatEqual_MPIAIJ(Mat A,Mat B,PetscTruth *flag) 1454d4bb536fSBarry Smith { 1455d4bb536fSBarry Smith Mat_MPIAIJ *matB = (Mat_MPIAIJ*)B->data,*matA = (Mat_MPIAIJ*)A->data; 1456d4bb536fSBarry Smith Mat a,b,c,d; 1457d4bb536fSBarry Smith PetscTruth flg; 1458d4bb536fSBarry Smith int ierr; 1459d4bb536fSBarry Smith 14603a40ed3dSBarry Smith PetscFunctionBegin; 1461273d9f13SBarry Smith ierr = PetscTypeCompare((PetscObject)B,MATMPIAIJ,&flg);CHKERRQ(ierr); 1462273d9f13SBarry Smith if (!flg) SETERRQ(PETSC_ERR_ARG_INCOMP,"Matrices must be same type"); 1463d4bb536fSBarry Smith a = matA->A; b = matA->B; 1464d4bb536fSBarry Smith c = matB->A; d = matB->B; 1465d4bb536fSBarry Smith 1466d4bb536fSBarry Smith ierr = MatEqual(a,c,&flg);CHKERRQ(ierr); 1467d4bb536fSBarry Smith if (flg == PETSC_TRUE) { 1468d4bb536fSBarry Smith ierr = MatEqual(b,d,&flg);CHKERRQ(ierr); 1469d4bb536fSBarry Smith } 1470ca161407SBarry Smith ierr = MPI_Allreduce(&flg,flag,1,MPI_INT,MPI_LAND,A->comm);CHKERRQ(ierr); 14713a40ed3dSBarry Smith PetscFunctionReturn(0); 1472d4bb536fSBarry Smith } 1473d4bb536fSBarry Smith 14744a2ae208SSatish Balay #undef __FUNCT__ 14754a2ae208SSatish Balay #define __FUNCT__ "MatCopy_MPIAIJ" 1476cb5b572fSBarry Smith int MatCopy_MPIAIJ(Mat A,Mat B,MatStructure str) 1477cb5b572fSBarry Smith { 1478cb5b572fSBarry Smith int ierr; 1479cb5b572fSBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ *)A->data; 1480cb5b572fSBarry Smith Mat_MPIAIJ *b = (Mat_MPIAIJ *)B->data; 1481273d9f13SBarry Smith PetscTruth flg; 1482cb5b572fSBarry Smith 1483cb5b572fSBarry Smith PetscFunctionBegin; 1484273d9f13SBarry Smith ierr = PetscTypeCompare((PetscObject)B,MATMPIAIJ,&flg);CHKERRQ(ierr); 1485273d9f13SBarry Smith if (str != SAME_NONZERO_PATTERN || !flg) { 1486cb5b572fSBarry Smith /* because of the column compression in the off-processor part of the matrix a->B, 1487cb5b572fSBarry Smith the number of columns in a->B and b->B may be different, hence we cannot call 1488cb5b572fSBarry Smith the MatCopy() directly on the two parts. If need be, we can provide a more 1489cb5b572fSBarry Smith efficient copy than the MatCopy_Basic() by first uncompressing the a->B matrices 1490cb5b572fSBarry Smith then copying the submatrices */ 1491cb5b572fSBarry Smith ierr = MatCopy_Basic(A,B,str);CHKERRQ(ierr); 1492cb5b572fSBarry Smith } else { 1493cb5b572fSBarry Smith ierr = MatCopy(a->A,b->A,str);CHKERRQ(ierr); 1494cb5b572fSBarry Smith ierr = MatCopy(a->B,b->B,str);CHKERRQ(ierr); 1495cb5b572fSBarry Smith } 1496cb5b572fSBarry Smith PetscFunctionReturn(0); 1497cb5b572fSBarry Smith } 1498cb5b572fSBarry Smith 14994a2ae208SSatish Balay #undef __FUNCT__ 15004a2ae208SSatish Balay #define __FUNCT__ "MatSetUpPreallocation_MPIAIJ" 1501273d9f13SBarry Smith int MatSetUpPreallocation_MPIAIJ(Mat A) 1502273d9f13SBarry Smith { 1503273d9f13SBarry Smith int ierr; 1504273d9f13SBarry Smith 1505273d9f13SBarry Smith PetscFunctionBegin; 1506273d9f13SBarry Smith ierr = MatMPIAIJSetPreallocation(A,PETSC_DEFAULT,0,PETSC_DEFAULT,0);CHKERRQ(ierr); 1507273d9f13SBarry Smith PetscFunctionReturn(0); 1508273d9f13SBarry Smith } 1509273d9f13SBarry Smith 1510ca44d042SBarry Smith EXTERN int MatDuplicate_MPIAIJ(Mat,MatDuplicateOption,Mat *); 1511ca44d042SBarry Smith EXTERN int MatIncreaseOverlap_MPIAIJ(Mat,int,IS *,int); 1512ca44d042SBarry Smith EXTERN int MatFDColoringCreate_MPIAIJ(Mat,ISColoring,MatFDColoring); 1513ca44d042SBarry Smith EXTERN int MatGetSubMatrices_MPIAIJ (Mat,int,IS *,IS *,MatReuse,Mat **); 1514ca44d042SBarry Smith EXTERN int MatGetSubMatrix_MPIAIJ (Mat,IS,IS,int,MatReuse,Mat *); 151587828ca2SBarry Smith #if !defined(PETSC_USE_COMPLEX) && !defined(PETSC_USE_SINGLE) 1516b380c88cSHong Zhang EXTERN int MatLUFactorSymbolic_MPIAIJ_TFS(Mat,IS,IS,MatFactorInfo*,Mat*); 1517b9617806SBarry Smith #endif 151800e6dbe6SBarry Smith 1519ac90fabeSBarry Smith #include "petscblaslapack.h" 1520c537a176SHong Zhang extern int MatAXPY_SeqAIJ(PetscScalar *,Mat,Mat,MatStructure); 1521ac90fabeSBarry Smith #undef __FUNCT__ 1522ac90fabeSBarry Smith #define __FUNCT__ "MatAXPY_MPIAIJ" 1523ac90fabeSBarry Smith int MatAXPY_MPIAIJ(PetscScalar *a,Mat X,Mat Y,MatStructure str) 1524ac90fabeSBarry Smith { 1525*24f910e3SHong 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; 1533ac90fabeSBarry Smith BLaxpy_(&x->nz,a,x->a,&one,y->a,&one); 1534ac90fabeSBarry Smith x = (Mat_SeqAIJ *)xx->B->data; 1535ac90fabeSBarry Smith y = (Mat_SeqAIJ *)yy->B->data; 1536ac90fabeSBarry Smith BLaxpy_(&x->nz,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 */ 1547*24f910e3SHong 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, 1562cda55fadSBarry Smith MatMultAdd_MPIAIJ, 15637c922b88SBarry Smith MatMultTranspose_MPIAIJ, 15647c922b88SBarry Smith MatMultTransposeAdd_MPIAIJ, 1565cda55fadSBarry Smith 0, 1566cda55fadSBarry Smith 0, 1567cda55fadSBarry Smith 0, 1568cda55fadSBarry Smith 0, 1569cda55fadSBarry Smith 0, 1570cda55fadSBarry Smith 0, 157144a69424SLois Curfman McInnes MatRelax_MPIAIJ, 1572b7c46309SBarry Smith MatTranspose_MPIAIJ, 1573cda55fadSBarry Smith MatGetInfo_MPIAIJ, 1574cda55fadSBarry Smith MatEqual_MPIAIJ, 1575cda55fadSBarry Smith MatGetDiagonal_MPIAIJ, 1576cda55fadSBarry Smith MatDiagonalScale_MPIAIJ, 1577cda55fadSBarry Smith MatNorm_MPIAIJ, 1578cda55fadSBarry Smith MatAssemblyBegin_MPIAIJ, 1579cda55fadSBarry Smith MatAssemblyEnd_MPIAIJ, 15801eb62cbbSBarry Smith 0, 1581cda55fadSBarry Smith MatSetOption_MPIAIJ, 1582cda55fadSBarry Smith MatZeroEntries_MPIAIJ, 1583cda55fadSBarry Smith 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, 1592273d9f13SBarry Smith MatSetUpPreallocation_MPIAIJ, 1593cda55fadSBarry Smith 0, 1594cda55fadSBarry Smith 0, 1595cda55fadSBarry Smith 0, 1596cda55fadSBarry Smith 0, 15972e8a6d31SBarry Smith MatDuplicate_MPIAIJ, 1598cda55fadSBarry Smith 0, 1599cda55fadSBarry Smith 0, 1600cda55fadSBarry Smith 0, 1601cda55fadSBarry Smith 0, 1602ac90fabeSBarry Smith MatAXPY_MPIAIJ, 1603cda55fadSBarry Smith MatGetSubMatrices_MPIAIJ, 1604cda55fadSBarry Smith MatIncreaseOverlap_MPIAIJ, 1605cda55fadSBarry Smith MatGetValues_MPIAIJ, 1606cb5b572fSBarry Smith MatCopy_MPIAIJ, 1607052efed2SBarry Smith MatPrintHelp_MPIAIJ, 1608cda55fadSBarry Smith MatScale_MPIAIJ, 1609cda55fadSBarry Smith 0, 1610cda55fadSBarry Smith 0, 1611cda55fadSBarry Smith 0, 1612cda55fadSBarry Smith MatGetBlockSize_MPIAIJ, 1613cda55fadSBarry Smith 0, 1614cda55fadSBarry Smith 0, 1615cda55fadSBarry Smith 0, 1616cda55fadSBarry Smith 0, 1617cda55fadSBarry Smith MatFDColoringCreate_MPIAIJ, 1618cda55fadSBarry Smith 0, 1619cda55fadSBarry Smith MatSetUnfactored_MPIAIJ, 1620cda55fadSBarry Smith 0, 1621cda55fadSBarry Smith 0, 1622cda55fadSBarry Smith MatGetSubMatrix_MPIAIJ, 1623e03a110bSBarry Smith MatDestroy_MPIAIJ, 1624e03a110bSBarry Smith MatView_MPIAIJ, 16258a124369SBarry Smith MatGetPetscMaps_Petsc, 1626a2243be0SBarry Smith 0, 1627a2243be0SBarry Smith 0, 1628a2243be0SBarry Smith 0, 1629a2243be0SBarry Smith 0, 1630a2243be0SBarry Smith 0, 1631a2243be0SBarry Smith 0, 1632a2243be0SBarry Smith 0, 1633a2243be0SBarry Smith 0, 1634a2243be0SBarry Smith MatSetColoring_MPIAIJ, 1635779c1a83SBarry Smith MatSetValuesAdic_MPIAIJ, 1636779c1a83SBarry Smith MatSetValuesAdifor_MPIAIJ 1637a2243be0SBarry Smith }; 163836ce4990SBarry Smith 16392e8a6d31SBarry Smith /* ----------------------------------------------------------------------------------------*/ 16402e8a6d31SBarry Smith 1641fb2e594dSBarry Smith EXTERN_C_BEGIN 16424a2ae208SSatish Balay #undef __FUNCT__ 16434a2ae208SSatish Balay #define __FUNCT__ "MatStoreValues_MPIAIJ" 16442e8a6d31SBarry Smith int MatStoreValues_MPIAIJ(Mat mat) 16452e8a6d31SBarry Smith { 16462e8a6d31SBarry Smith Mat_MPIAIJ *aij = (Mat_MPIAIJ *)mat->data; 16472e8a6d31SBarry Smith int ierr; 16482e8a6d31SBarry Smith 16492e8a6d31SBarry Smith PetscFunctionBegin; 16502e8a6d31SBarry Smith ierr = MatStoreValues(aij->A);CHKERRQ(ierr); 16512e8a6d31SBarry Smith ierr = MatStoreValues(aij->B);CHKERRQ(ierr); 16522e8a6d31SBarry Smith PetscFunctionReturn(0); 16532e8a6d31SBarry Smith } 1654fb2e594dSBarry Smith EXTERN_C_END 16552e8a6d31SBarry Smith 1656fb2e594dSBarry Smith EXTERN_C_BEGIN 16574a2ae208SSatish Balay #undef __FUNCT__ 16584a2ae208SSatish Balay #define __FUNCT__ "MatRetrieveValues_MPIAIJ" 16592e8a6d31SBarry Smith int MatRetrieveValues_MPIAIJ(Mat mat) 16602e8a6d31SBarry Smith { 16612e8a6d31SBarry Smith Mat_MPIAIJ *aij = (Mat_MPIAIJ *)mat->data; 16622e8a6d31SBarry Smith int ierr; 16632e8a6d31SBarry Smith 16642e8a6d31SBarry Smith PetscFunctionBegin; 16652e8a6d31SBarry Smith ierr = MatRetrieveValues(aij->A);CHKERRQ(ierr); 16662e8a6d31SBarry Smith ierr = MatRetrieveValues(aij->B);CHKERRQ(ierr); 16672e8a6d31SBarry Smith PetscFunctionReturn(0); 16682e8a6d31SBarry Smith } 1669fb2e594dSBarry Smith EXTERN_C_END 16708a729477SBarry Smith 1671e090d566SSatish Balay #include "petscpc.h" 167227508adbSBarry Smith EXTERN_C_BEGIN 1673ca44d042SBarry Smith EXTERN int MatGetDiagonalBlock_MPIAIJ(Mat,PetscTruth *,MatReuse,Mat *); 167427508adbSBarry Smith EXTERN_C_END 167527508adbSBarry Smith 1676273d9f13SBarry Smith EXTERN_C_BEGIN 16774a2ae208SSatish Balay #undef __FUNCT__ 16784a2ae208SSatish Balay #define __FUNCT__ "MatCreate_MPIAIJ" 1679273d9f13SBarry Smith int MatCreate_MPIAIJ(Mat B) 16808a729477SBarry Smith { 168144cd7ae7SLois Curfman McInnes Mat_MPIAIJ *b; 1682f1af5d2fSBarry Smith int ierr,i,size; 1683416022c9SBarry Smith 16843a40ed3dSBarry Smith PetscFunctionBegin; 1685273d9f13SBarry Smith ierr = MPI_Comm_size(B->comm,&size);CHKERRQ(ierr); 16861d55c564SBarry Smith 1687b0a32e0cSBarry Smith ierr = PetscNew(Mat_MPIAIJ,&b);CHKERRQ(ierr); 1688b0a32e0cSBarry Smith B->data = (void*)b; 1689549d3d68SSatish Balay ierr = PetscMemzero(b,sizeof(Mat_MPIAIJ));CHKERRQ(ierr); 1690549d3d68SSatish Balay ierr = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr); 169144cd7ae7SLois Curfman McInnes B->factor = 0; 169244cd7ae7SLois Curfman McInnes B->assembled = PETSC_FALSE; 169390f02eecSBarry Smith B->mapping = 0; 1694d6dfbf8fSBarry Smith 169547794344SBarry Smith B->insertmode = NOT_SET_VALUES; 16969eb4d147SSatish Balay b->size = size; 1697273d9f13SBarry Smith ierr = MPI_Comm_rank(B->comm,&b->rank);CHKERRQ(ierr); 16981eb62cbbSBarry Smith 1699273d9f13SBarry Smith ierr = PetscSplitOwnership(B->comm,&B->m,&B->M);CHKERRQ(ierr); 1700273d9f13SBarry Smith ierr = PetscSplitOwnership(B->comm,&B->n,&B->N);CHKERRQ(ierr); 17011eb62cbbSBarry Smith 1702c7fcc2eaSBarry Smith /* the information in the maps duplicates the information computed below, eventually 1703c7fcc2eaSBarry Smith we should remove the duplicate information that is not contained in the maps */ 17048a124369SBarry Smith ierr = PetscMapCreateMPI(B->comm,B->m,B->M,&B->rmap);CHKERRQ(ierr); 17058a124369SBarry Smith ierr = PetscMapCreateMPI(B->comm,B->n,B->N,&B->cmap);CHKERRQ(ierr); 1706c7fcc2eaSBarry Smith 17071eb62cbbSBarry Smith /* build local table of row and column ownerships */ 1708b0a32e0cSBarry Smith ierr = PetscMalloc(2*(b->size+2)*sizeof(int),&b->rowners);CHKERRQ(ierr); 1709b0a32e0cSBarry Smith PetscLogObjectMemory(B,2*(b->size+2)*sizeof(int)+sizeof(struct _p_Mat)+sizeof(Mat_MPIAIJ)); 1710603f58a4SSatish Balay b->cowners = b->rowners + b->size + 2; 1711273d9f13SBarry Smith ierr = MPI_Allgather(&B->m,1,MPI_INT,b->rowners+1,1,MPI_INT,B->comm);CHKERRQ(ierr); 171244cd7ae7SLois Curfman McInnes b->rowners[0] = 0; 171344cd7ae7SLois Curfman McInnes for (i=2; i<=b->size; i++) { 171444cd7ae7SLois Curfman McInnes b->rowners[i] += b->rowners[i-1]; 17158a729477SBarry Smith } 171644cd7ae7SLois Curfman McInnes b->rstart = b->rowners[b->rank]; 171744cd7ae7SLois Curfman McInnes b->rend = b->rowners[b->rank+1]; 1718273d9f13SBarry Smith ierr = MPI_Allgather(&B->n,1,MPI_INT,b->cowners+1,1,MPI_INT,B->comm);CHKERRQ(ierr); 171944cd7ae7SLois Curfman McInnes b->cowners[0] = 0; 172044cd7ae7SLois Curfman McInnes for (i=2; i<=b->size; i++) { 172144cd7ae7SLois Curfman McInnes b->cowners[i] += b->cowners[i-1]; 17228a729477SBarry Smith } 172344cd7ae7SLois Curfman McInnes b->cstart = b->cowners[b->rank]; 172444cd7ae7SLois Curfman McInnes b->cend = b->cowners[b->rank+1]; 17258a729477SBarry Smith 17261eb62cbbSBarry Smith /* build cache for off array entries formed */ 17277e2c5f70SBarry Smith ierr = MatStashCreate_Private(B->comm,1,&B->stash);CHKERRQ(ierr); 17287c922b88SBarry Smith b->donotstash = PETSC_FALSE; 172944cd7ae7SLois Curfman McInnes b->colmap = 0; 173044cd7ae7SLois Curfman McInnes b->garray = 0; 17317c922b88SBarry Smith b->roworiented = PETSC_TRUE; 17328a729477SBarry Smith 17331eb62cbbSBarry Smith /* stuff used for matrix vector multiply */ 17347c922b88SBarry Smith b->lvec = PETSC_NULL; 17357c922b88SBarry Smith b->Mvctx = PETSC_NULL; 17368a729477SBarry Smith 17377a0afa10SBarry Smith /* stuff for MatGetRow() */ 173844cd7ae7SLois Curfman McInnes b->rowindices = 0; 173944cd7ae7SLois Curfman McInnes b->rowvalues = 0; 174044cd7ae7SLois Curfman McInnes b->getrowactive = PETSC_FALSE; 17411a8d6bc9SBarry Smith 1742f1af5d2fSBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatStoreValues_C", 17432e8a6d31SBarry Smith "MatStoreValues_MPIAIJ", 17440c97f09dSSatish Balay MatStoreValues_MPIAIJ);CHKERRQ(ierr); 1745f1af5d2fSBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatRetrieveValues_C", 17462e8a6d31SBarry Smith "MatRetrieveValues_MPIAIJ", 17470c97f09dSSatish Balay MatRetrieveValues_MPIAIJ);CHKERRQ(ierr); 1748f1af5d2fSBarry Smith ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetDiagonalBlock_C", 17495ef9f2a5SBarry Smith "MatGetDiagonalBlock_MPIAIJ", 17500c97f09dSSatish Balay MatGetDiagonalBlock_MPIAIJ);CHKERRQ(ierr); 17519b9367d5SHong Zhang 17523a40ed3dSBarry Smith PetscFunctionReturn(0); 1753d6dfbf8fSBarry Smith } 1754273d9f13SBarry Smith EXTERN_C_END 1755c74985f6SBarry Smith 17564a2ae208SSatish Balay #undef __FUNCT__ 17574a2ae208SSatish Balay #define __FUNCT__ "MatDuplicate_MPIAIJ" 17582e8a6d31SBarry Smith int MatDuplicate_MPIAIJ(Mat matin,MatDuplicateOption cpvalues,Mat *newmat) 1759d6dfbf8fSBarry Smith { 1760d6dfbf8fSBarry Smith Mat mat; 1761416022c9SBarry Smith Mat_MPIAIJ *a,*oldmat = (Mat_MPIAIJ*)matin->data; 176216d6aa21SSatish Balay int ierr; 1763d6dfbf8fSBarry Smith 17643a40ed3dSBarry Smith PetscFunctionBegin; 1765416022c9SBarry Smith *newmat = 0; 1766273d9f13SBarry Smith ierr = MatCreate(matin->comm,matin->m,matin->n,matin->M,matin->N,&mat);CHKERRQ(ierr); 1767273d9f13SBarry Smith ierr = MatSetType(mat,MATMPIAIJ);CHKERRQ(ierr); 1768273d9f13SBarry Smith a = (Mat_MPIAIJ*)mat->data; 1769549d3d68SSatish Balay ierr = PetscMemcpy(mat->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr); 1770d6dfbf8fSBarry Smith mat->factor = matin->factor; 1771c456f294SBarry Smith mat->assembled = PETSC_TRUE; 1772e7641de0SSatish Balay mat->insertmode = NOT_SET_VALUES; 1773273d9f13SBarry Smith mat->preallocated = PETSC_TRUE; 1774d6dfbf8fSBarry Smith 1775416022c9SBarry Smith a->rstart = oldmat->rstart; 1776416022c9SBarry Smith a->rend = oldmat->rend; 1777416022c9SBarry Smith a->cstart = oldmat->cstart; 1778416022c9SBarry Smith a->cend = oldmat->cend; 177917699dbbSLois Curfman McInnes a->size = oldmat->size; 178017699dbbSLois Curfman McInnes a->rank = oldmat->rank; 1781e7641de0SSatish Balay a->donotstash = oldmat->donotstash; 1782e7641de0SSatish Balay a->roworiented = oldmat->roworiented; 1783e7641de0SSatish Balay a->rowindices = 0; 1784bcd2baecSBarry Smith a->rowvalues = 0; 1785bcd2baecSBarry Smith a->getrowactive = PETSC_FALSE; 1786d6dfbf8fSBarry Smith 1787549d3d68SSatish Balay ierr = PetscMemcpy(a->rowners,oldmat->rowners,2*(a->size+2)*sizeof(int));CHKERRQ(ierr); 17888798bf22SSatish Balay ierr = MatStashCreate_Private(matin->comm,1,&mat->stash);CHKERRQ(ierr); 17892ee70a88SLois Curfman McInnes if (oldmat->colmap) { 1790aa482453SBarry Smith #if defined (PETSC_USE_CTABLE) 17910f5bd95cSBarry Smith ierr = PetscTableCreateCopy(oldmat->colmap,&a->colmap);CHKERRQ(ierr); 1792b1fc9764SSatish Balay #else 1793b0a32e0cSBarry Smith ierr = PetscMalloc((mat->N)*sizeof(int),&a->colmap);CHKERRQ(ierr); 1794b0a32e0cSBarry Smith PetscLogObjectMemory(mat,(mat->N)*sizeof(int)); 1795273d9f13SBarry Smith ierr = PetscMemcpy(a->colmap,oldmat->colmap,(mat->N)*sizeof(int));CHKERRQ(ierr); 1796b1fc9764SSatish Balay #endif 1797416022c9SBarry Smith } else a->colmap = 0; 17983f41c07dSBarry Smith if (oldmat->garray) { 179916d6aa21SSatish Balay int len; 1800273d9f13SBarry Smith len = oldmat->B->n; 1801b0a32e0cSBarry Smith ierr = PetscMalloc((len+1)*sizeof(int),&a->garray);CHKERRQ(ierr); 1802b0a32e0cSBarry Smith PetscLogObjectMemory(mat,len*sizeof(int)); 1803549d3d68SSatish Balay if (len) { ierr = PetscMemcpy(a->garray,oldmat->garray,len*sizeof(int));CHKERRQ(ierr); } 1804416022c9SBarry Smith } else a->garray = 0; 1805d6dfbf8fSBarry Smith 1806416022c9SBarry Smith ierr = VecDuplicate(oldmat->lvec,&a->lvec);CHKERRQ(ierr); 1807b0a32e0cSBarry Smith PetscLogObjectParent(mat,a->lvec); 1808a56f8943SBarry Smith ierr = VecScatterCopy(oldmat->Mvctx,&a->Mvctx);CHKERRQ(ierr); 1809b0a32e0cSBarry Smith PetscLogObjectParent(mat,a->Mvctx); 18102e8a6d31SBarry Smith ierr = MatDuplicate(oldmat->A,cpvalues,&a->A);CHKERRQ(ierr); 1811b0a32e0cSBarry Smith PetscLogObjectParent(mat,a->A); 18122e8a6d31SBarry Smith ierr = MatDuplicate(oldmat->B,cpvalues,&a->B);CHKERRQ(ierr); 1813b0a32e0cSBarry Smith PetscLogObjectParent(mat,a->B); 1814b0a32e0cSBarry Smith ierr = PetscFListDuplicate(matin->qlist,&mat->qlist);CHKERRQ(ierr); 18158a729477SBarry Smith *newmat = mat; 18163a40ed3dSBarry Smith PetscFunctionReturn(0); 18178a729477SBarry Smith } 1818416022c9SBarry Smith 1819e090d566SSatish Balay #include "petscsys.h" 1820416022c9SBarry Smith 1821273d9f13SBarry Smith EXTERN_C_BEGIN 18224a2ae208SSatish Balay #undef __FUNCT__ 18234a2ae208SSatish Balay #define __FUNCT__ "MatLoad_MPIAIJ" 1824b0a32e0cSBarry Smith int MatLoad_MPIAIJ(PetscViewer viewer,MatType type,Mat *newmat) 1825416022c9SBarry Smith { 1826d65a2f8fSBarry Smith Mat A; 182787828ca2SBarry Smith PetscScalar *vals,*svals; 182819bcc07fSBarry Smith MPI_Comm comm = ((PetscObject)viewer)->comm; 1829416022c9SBarry Smith MPI_Status status; 18303a40ed3dSBarry Smith int i,nz,ierr,j,rstart,rend,fd; 183117699dbbSLois Curfman McInnes int header[4],rank,size,*rowlengths = 0,M,N,m,*rowners,maxnz,*cols; 1832d65a2f8fSBarry Smith int *ourlens,*sndcounts = 0,*procsnz = 0,*offlens,jj,*mycols,*smycols; 1833b362ba68SBarry Smith int tag = ((PetscObject)viewer)->tag,cend,cstart,n; 183427fa2452SHong Zhang #if defined(PETSC_HAVE_SPOOLES) || defined(PETSC_HAVE_SUPERLUDIST) 183527fa2452SHong Zhang PetscTruth flag; 183627fa2452SHong Zhang #endif 1837416022c9SBarry Smith 18383a40ed3dSBarry Smith PetscFunctionBegin; 18391dab6e02SBarry Smith ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); 18401dab6e02SBarry Smith ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr); 184117699dbbSLois Curfman McInnes if (!rank) { 1842b0a32e0cSBarry Smith ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr); 18430752156aSBarry Smith ierr = PetscBinaryRead(fd,(char *)header,4,PETSC_INT);CHKERRQ(ierr); 1844552e946dSBarry Smith if (header[0] != MAT_FILE_COOKIE) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"not matrix object"); 1845d64ed03dSBarry Smith if (header[3] < 0) { 184629bbc08cSBarry Smith SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"Matrix in special format on disk, cannot load as MPIAIJ"); 1847d64ed03dSBarry Smith } 18486c5fab8fSBarry Smith } 18496c5fab8fSBarry Smith 1850ca161407SBarry Smith ierr = MPI_Bcast(header+1,3,MPI_INT,0,comm);CHKERRQ(ierr); 1851416022c9SBarry Smith M = header[1]; N = header[2]; 1852416022c9SBarry Smith /* determine ownership of all rows */ 185317699dbbSLois Curfman McInnes m = M/size + ((M % size) > rank); 1854b0a32e0cSBarry Smith ierr = PetscMalloc((size+2)*sizeof(int),&rowners);CHKERRQ(ierr); 1855ca161407SBarry Smith ierr = MPI_Allgather(&m,1,MPI_INT,rowners+1,1,MPI_INT,comm);CHKERRQ(ierr); 1856416022c9SBarry Smith rowners[0] = 0; 185717699dbbSLois Curfman McInnes for (i=2; i<=size; i++) { 1858416022c9SBarry Smith rowners[i] += rowners[i-1]; 1859416022c9SBarry Smith } 186017699dbbSLois Curfman McInnes rstart = rowners[rank]; 186117699dbbSLois Curfman McInnes rend = rowners[rank+1]; 1862416022c9SBarry Smith 1863416022c9SBarry Smith /* distribute row lengths to all processors */ 1864b0a32e0cSBarry Smith ierr = PetscMalloc(2*(rend-rstart+1)*sizeof(int),&ourlens);CHKERRQ(ierr); 1865416022c9SBarry Smith offlens = ourlens + (rend-rstart); 186617699dbbSLois Curfman McInnes if (!rank) { 1867b0a32e0cSBarry Smith ierr = PetscMalloc(M*sizeof(int),&rowlengths);CHKERRQ(ierr); 18680752156aSBarry Smith ierr = PetscBinaryRead(fd,rowlengths,M,PETSC_INT);CHKERRQ(ierr); 1869b0a32e0cSBarry Smith ierr = PetscMalloc(size*sizeof(int),&sndcounts);CHKERRQ(ierr); 187017699dbbSLois Curfman McInnes for (i=0; i<size; i++) sndcounts[i] = rowners[i+1] - rowners[i]; 1871ca161407SBarry Smith ierr = MPI_Scatterv(rowlengths,sndcounts,rowners,MPI_INT,ourlens,rend-rstart,MPI_INT,0,comm);CHKERRQ(ierr); 1872606d414cSSatish Balay ierr = PetscFree(sndcounts);CHKERRQ(ierr); 18733a40ed3dSBarry Smith } else { 1874ca161407SBarry Smith ierr = MPI_Scatterv(0,0,0,MPI_INT,ourlens,rend-rstart,MPI_INT,0,comm);CHKERRQ(ierr); 1875416022c9SBarry Smith } 1876416022c9SBarry Smith 187717699dbbSLois Curfman McInnes if (!rank) { 1878416022c9SBarry Smith /* calculate the number of nonzeros on each processor */ 1879b0a32e0cSBarry Smith ierr = PetscMalloc(size*sizeof(int),&procsnz);CHKERRQ(ierr); 1880549d3d68SSatish Balay ierr = PetscMemzero(procsnz,size*sizeof(int));CHKERRQ(ierr); 188117699dbbSLois Curfman McInnes for (i=0; i<size; i++) { 1882416022c9SBarry Smith for (j=rowners[i]; j< rowners[i+1]; j++) { 1883416022c9SBarry Smith procsnz[i] += rowlengths[j]; 1884416022c9SBarry Smith } 1885416022c9SBarry Smith } 1886606d414cSSatish Balay ierr = PetscFree(rowlengths);CHKERRQ(ierr); 1887416022c9SBarry Smith 1888416022c9SBarry Smith /* determine max buffer needed and allocate it */ 1889416022c9SBarry Smith maxnz = 0; 189017699dbbSLois Curfman McInnes for (i=0; i<size; i++) { 18910452661fSBarry Smith maxnz = PetscMax(maxnz,procsnz[i]); 1892416022c9SBarry Smith } 1893b0a32e0cSBarry Smith ierr = PetscMalloc(maxnz*sizeof(int),&cols);CHKERRQ(ierr); 1894416022c9SBarry Smith 1895416022c9SBarry Smith /* read in my part of the matrix column indices */ 1896416022c9SBarry Smith nz = procsnz[0]; 1897b0a32e0cSBarry Smith ierr = PetscMalloc(nz*sizeof(int),&mycols);CHKERRQ(ierr); 18980752156aSBarry Smith ierr = PetscBinaryRead(fd,mycols,nz,PETSC_INT);CHKERRQ(ierr); 1899d65a2f8fSBarry Smith 1900d65a2f8fSBarry Smith /* read in every one elses and ship off */ 190117699dbbSLois Curfman McInnes for (i=1; i<size; i++) { 1902d65a2f8fSBarry Smith nz = procsnz[i]; 19030752156aSBarry Smith ierr = PetscBinaryRead(fd,cols,nz,PETSC_INT);CHKERRQ(ierr); 1904ca161407SBarry Smith ierr = MPI_Send(cols,nz,MPI_INT,i,tag,comm);CHKERRQ(ierr); 1905d65a2f8fSBarry Smith } 1906606d414cSSatish Balay ierr = PetscFree(cols);CHKERRQ(ierr); 19073a40ed3dSBarry Smith } else { 1908416022c9SBarry Smith /* determine buffer space needed for message */ 1909416022c9SBarry Smith nz = 0; 1910416022c9SBarry Smith for (i=0; i<m; i++) { 1911416022c9SBarry Smith nz += ourlens[i]; 1912416022c9SBarry Smith } 1913b0a32e0cSBarry Smith ierr = PetscMalloc((nz+1)*sizeof(int),&mycols);CHKERRQ(ierr); 1914416022c9SBarry Smith 1915416022c9SBarry Smith /* receive message of column indices*/ 1916ca161407SBarry Smith ierr = MPI_Recv(mycols,nz,MPI_INT,0,tag,comm,&status);CHKERRQ(ierr); 1917ca161407SBarry Smith ierr = MPI_Get_count(&status,MPI_INT,&maxnz);CHKERRQ(ierr); 191829bbc08cSBarry Smith if (maxnz != nz) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"something is wrong with file"); 1919416022c9SBarry Smith } 1920416022c9SBarry Smith 1921b362ba68SBarry Smith /* determine column ownership if matrix is not square */ 1922b362ba68SBarry Smith if (N != M) { 1923b362ba68SBarry Smith n = N/size + ((N % size) > rank); 1924b362ba68SBarry Smith ierr = MPI_Scan(&n,&cend,1,MPI_INT,MPI_SUM,comm);CHKERRQ(ierr); 1925b362ba68SBarry Smith cstart = cend - n; 1926b362ba68SBarry Smith } else { 1927b362ba68SBarry Smith cstart = rstart; 1928b362ba68SBarry Smith cend = rend; 1929fb2e594dSBarry Smith n = cend - cstart; 1930b362ba68SBarry Smith } 1931b362ba68SBarry Smith 1932416022c9SBarry Smith /* loop over local rows, determining number of off diagonal entries */ 1933549d3d68SSatish Balay ierr = PetscMemzero(offlens,m*sizeof(int));CHKERRQ(ierr); 1934416022c9SBarry Smith jj = 0; 1935416022c9SBarry Smith for (i=0; i<m; i++) { 1936416022c9SBarry Smith for (j=0; j<ourlens[i]; j++) { 1937b362ba68SBarry Smith if (mycols[jj] < cstart || mycols[jj] >= cend) offlens[i]++; 1938416022c9SBarry Smith jj++; 1939416022c9SBarry Smith } 1940416022c9SBarry Smith } 1941d65a2f8fSBarry Smith 1942d65a2f8fSBarry Smith /* create our matrix */ 1943416022c9SBarry Smith for (i=0; i<m; i++) { 1944416022c9SBarry Smith ourlens[i] -= offlens[i]; 1945416022c9SBarry Smith } 1946b362ba68SBarry Smith ierr = MatCreateMPIAIJ(comm,m,n,M,N,0,ourlens,0,offlens,newmat);CHKERRQ(ierr); 1947d65a2f8fSBarry Smith A = *newmat; 1948fb2e594dSBarry Smith ierr = MatSetOption(A,MAT_COLUMNS_SORTED);CHKERRQ(ierr); 1949d65a2f8fSBarry Smith for (i=0; i<m; i++) { 1950d65a2f8fSBarry Smith ourlens[i] += offlens[i]; 1951d65a2f8fSBarry Smith } 1952416022c9SBarry Smith 195317699dbbSLois Curfman McInnes if (!rank) { 195487828ca2SBarry Smith ierr = PetscMalloc(maxnz*sizeof(PetscScalar),&vals);CHKERRQ(ierr); 1955416022c9SBarry Smith 1956416022c9SBarry Smith /* read in my part of the matrix numerical values */ 1957416022c9SBarry Smith nz = procsnz[0]; 19580752156aSBarry Smith ierr = PetscBinaryRead(fd,vals,nz,PETSC_SCALAR);CHKERRQ(ierr); 1959d65a2f8fSBarry Smith 1960d65a2f8fSBarry Smith /* insert into matrix */ 1961d65a2f8fSBarry Smith jj = rstart; 1962d65a2f8fSBarry Smith smycols = mycols; 1963d65a2f8fSBarry Smith svals = vals; 1964d65a2f8fSBarry Smith for (i=0; i<m; i++) { 1965d65a2f8fSBarry Smith ierr = MatSetValues(A,1,&jj,ourlens[i],smycols,svals,INSERT_VALUES);CHKERRQ(ierr); 1966d65a2f8fSBarry Smith smycols += ourlens[i]; 1967d65a2f8fSBarry Smith svals += ourlens[i]; 1968d65a2f8fSBarry Smith jj++; 1969416022c9SBarry Smith } 1970416022c9SBarry Smith 1971d65a2f8fSBarry Smith /* read in other processors and ship out */ 197217699dbbSLois Curfman McInnes for (i=1; i<size; i++) { 1973416022c9SBarry Smith nz = procsnz[i]; 19740752156aSBarry Smith ierr = PetscBinaryRead(fd,vals,nz,PETSC_SCALAR);CHKERRQ(ierr); 1975ca161407SBarry Smith ierr = MPI_Send(vals,nz,MPIU_SCALAR,i,A->tag,comm);CHKERRQ(ierr); 1976416022c9SBarry Smith } 1977606d414cSSatish Balay ierr = PetscFree(procsnz);CHKERRQ(ierr); 19783a40ed3dSBarry Smith } else { 1979d65a2f8fSBarry Smith /* receive numeric values */ 198087828ca2SBarry Smith ierr = PetscMalloc((nz+1)*sizeof(PetscScalar),&vals);CHKERRQ(ierr); 1981416022c9SBarry Smith 1982d65a2f8fSBarry Smith /* receive message of values*/ 1983ca161407SBarry Smith ierr = MPI_Recv(vals,nz,MPIU_SCALAR,0,A->tag,comm,&status);CHKERRQ(ierr); 1984ca161407SBarry Smith ierr = MPI_Get_count(&status,MPIU_SCALAR,&maxnz);CHKERRQ(ierr); 198529bbc08cSBarry Smith if (maxnz != nz) SETERRQ(PETSC_ERR_FILE_UNEXPECTED,"something is wrong with file"); 1986d65a2f8fSBarry Smith 1987d65a2f8fSBarry Smith /* insert into matrix */ 1988d65a2f8fSBarry Smith jj = rstart; 1989d65a2f8fSBarry Smith smycols = mycols; 1990d65a2f8fSBarry Smith svals = vals; 1991d65a2f8fSBarry Smith for (i=0; i<m; i++) { 1992d65a2f8fSBarry Smith ierr = MatSetValues(A,1,&jj,ourlens[i],smycols,svals,INSERT_VALUES);CHKERRQ(ierr); 1993d65a2f8fSBarry Smith smycols += ourlens[i]; 1994d65a2f8fSBarry Smith svals += ourlens[i]; 1995d65a2f8fSBarry Smith jj++; 1996d65a2f8fSBarry Smith } 1997d65a2f8fSBarry Smith } 1998606d414cSSatish Balay ierr = PetscFree(ourlens);CHKERRQ(ierr); 1999606d414cSSatish Balay ierr = PetscFree(vals);CHKERRQ(ierr); 2000606d414cSSatish Balay ierr = PetscFree(mycols);CHKERRQ(ierr); 2001606d414cSSatish Balay ierr = PetscFree(rowners);CHKERRQ(ierr); 2002d65a2f8fSBarry Smith 20036d4a8577SBarry Smith ierr = MatAssemblyBegin(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 20046d4a8577SBarry Smith ierr = MatAssemblyEnd(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 200527fa2452SHong Zhang #if defined(PETSC_HAVE_SPOOLES) 200627fa2452SHong Zhang ierr = PetscOptionsHasName(A->prefix,"-mat_aij_spooles",&flag);CHKERRQ(ierr); 20070f39d4ecSHong Zhang if (flag) { 20080f39d4ecSHong Zhang if (size == 1) { 20090f39d4ecSHong Zhang ierr = MatUseSpooles_SeqAIJ(A);CHKERRQ(ierr); 20100f39d4ecSHong Zhang } else { 20110f39d4ecSHong Zhang ierr = MatUseSpooles_MPIAIJ(A);CHKERRQ(ierr); 20120f39d4ecSHong Zhang } 20130f39d4ecSHong Zhang } 201427fa2452SHong Zhang #endif 201527fa2452SHong Zhang #if defined(PETSC_HAVE_SUPERLUDIST) 201627fa2452SHong Zhang ierr = PetscOptionsHasName(A->prefix,"-mat_aij_superlu_dist",&flag);CHKERRQ(ierr); 201727fa2452SHong Zhang if (flag) { ierr = MatUseSuperLU_DIST_MPIAIJ(A);CHKERRQ(ierr); } 201827fa2452SHong Zhang #endif 20193a40ed3dSBarry Smith PetscFunctionReturn(0); 2020416022c9SBarry Smith } 2021273d9f13SBarry Smith EXTERN_C_END 2022a0ff6018SBarry Smith 20234a2ae208SSatish Balay #undef __FUNCT__ 20244a2ae208SSatish Balay #define __FUNCT__ "MatGetSubMatrix_MPIAIJ" 2025a0ff6018SBarry Smith /* 202629da9460SBarry Smith Not great since it makes two copies of the submatrix, first an SeqAIJ 202729da9460SBarry Smith in local and then by concatenating the local matrices the end result. 202829da9460SBarry Smith Writing it directly would be much like MatGetSubMatrices_MPIAIJ() 2029a0ff6018SBarry Smith */ 20307b2a1423SBarry Smith int MatGetSubMatrix_MPIAIJ(Mat mat,IS isrow,IS iscol,int csize,MatReuse call,Mat *newmat) 2031a0ff6018SBarry Smith { 203200e6dbe6SBarry Smith int ierr,i,m,n,rstart,row,rend,nz,*cwork,size,rank,j; 2033ab50ec6bSBarry Smith int *ii,*jj,nlocal,*dlens,*olens,dlen,olen,jend,mglobal; 2034fee21e36SBarry Smith Mat *local,M,Mreuse; 203587828ca2SBarry Smith PetscScalar *vwork,*aa; 203600e6dbe6SBarry Smith MPI_Comm comm = mat->comm; 203700e6dbe6SBarry Smith Mat_SeqAIJ *aij; 20387e2c5f70SBarry Smith 2039a0ff6018SBarry Smith 2040a0ff6018SBarry Smith PetscFunctionBegin; 20411dab6e02SBarry Smith ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr); 20421dab6e02SBarry Smith ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); 204300e6dbe6SBarry Smith 2044fee21e36SBarry Smith if (call == MAT_REUSE_MATRIX) { 2045fee21e36SBarry Smith ierr = PetscObjectQuery((PetscObject)*newmat,"SubMatrix",(PetscObject *)&Mreuse);CHKERRQ(ierr); 204629bbc08cSBarry Smith if (!Mreuse) SETERRQ(1,"Submatrix passed in was not used before, cannot reuse"); 2047fee21e36SBarry Smith local = &Mreuse; 2048fee21e36SBarry Smith ierr = MatGetSubMatrices(mat,1,&isrow,&iscol,MAT_REUSE_MATRIX,&local);CHKERRQ(ierr); 2049fee21e36SBarry Smith } else { 2050a0ff6018SBarry Smith ierr = MatGetSubMatrices(mat,1,&isrow,&iscol,MAT_INITIAL_MATRIX,&local);CHKERRQ(ierr); 2051fee21e36SBarry Smith Mreuse = *local; 2052606d414cSSatish Balay ierr = PetscFree(local);CHKERRQ(ierr); 2053fee21e36SBarry Smith } 2054a0ff6018SBarry Smith 2055a0ff6018SBarry Smith /* 2056a0ff6018SBarry Smith m - number of local rows 2057a0ff6018SBarry Smith n - number of columns (same on all processors) 2058a0ff6018SBarry Smith rstart - first row in new global matrix generated 2059a0ff6018SBarry Smith */ 2060fee21e36SBarry Smith ierr = MatGetSize(Mreuse,&m,&n);CHKERRQ(ierr); 2061a0ff6018SBarry Smith if (call == MAT_INITIAL_MATRIX) { 2062fee21e36SBarry Smith aij = (Mat_SeqAIJ*)(Mreuse)->data; 206329bbc08cSBarry Smith if (aij->indexshift) SETERRQ(PETSC_ERR_SUP,"No support for index shifted matrix"); 206400e6dbe6SBarry Smith ii = aij->i; 206500e6dbe6SBarry Smith jj = aij->j; 206600e6dbe6SBarry Smith 2067a0ff6018SBarry Smith /* 206800e6dbe6SBarry Smith Determine the number of non-zeros in the diagonal and off-diagonal 206900e6dbe6SBarry Smith portions of the matrix in order to do correct preallocation 2070a0ff6018SBarry Smith */ 207100e6dbe6SBarry Smith 207200e6dbe6SBarry Smith /* first get start and end of "diagonal" columns */ 20736a6a5d1dSBarry Smith if (csize == PETSC_DECIDE) { 2074ab50ec6bSBarry Smith ierr = ISGetSize(isrow,&mglobal);CHKERRQ(ierr); 2075ab50ec6bSBarry Smith if (mglobal == n) { /* square matrix */ 2076e2c4fddaSBarry Smith nlocal = m; 20776a6a5d1dSBarry Smith } else { 2078ab50ec6bSBarry Smith nlocal = n/size + ((n % size) > rank); 2079ab50ec6bSBarry Smith } 2080ab50ec6bSBarry Smith } else { 20816a6a5d1dSBarry Smith nlocal = csize; 20826a6a5d1dSBarry Smith } 2083ca161407SBarry Smith ierr = MPI_Scan(&nlocal,&rend,1,MPI_INT,MPI_SUM,comm);CHKERRQ(ierr); 208400e6dbe6SBarry Smith rstart = rend - nlocal; 20856a6a5d1dSBarry Smith if (rank == size - 1 && rend != n) { 208629bbc08cSBarry Smith SETERRQ(1,"Local column sizes do not add up to total number of columns"); 20876a6a5d1dSBarry Smith } 208800e6dbe6SBarry Smith 208900e6dbe6SBarry Smith /* next, compute all the lengths */ 2090b0a32e0cSBarry Smith ierr = PetscMalloc((2*m+1)*sizeof(int),&dlens);CHKERRQ(ierr); 209100e6dbe6SBarry Smith olens = dlens + m; 209200e6dbe6SBarry Smith for (i=0; i<m; i++) { 209300e6dbe6SBarry Smith jend = ii[i+1] - ii[i]; 209400e6dbe6SBarry Smith olen = 0; 209500e6dbe6SBarry Smith dlen = 0; 209600e6dbe6SBarry Smith for (j=0; j<jend; j++) { 209700e6dbe6SBarry Smith if (*jj < rstart || *jj >= rend) olen++; 209800e6dbe6SBarry Smith else dlen++; 209900e6dbe6SBarry Smith jj++; 210000e6dbe6SBarry Smith } 210100e6dbe6SBarry Smith olens[i] = olen; 210200e6dbe6SBarry Smith dlens[i] = dlen; 210300e6dbe6SBarry Smith } 21042d207970SBarry Smith ierr = MatCreateMPIAIJ(comm,m,nlocal,PETSC_DECIDE,n,0,dlens,0,olens,&M);CHKERRQ(ierr); 2105606d414cSSatish Balay ierr = PetscFree(dlens);CHKERRQ(ierr); 2106a0ff6018SBarry Smith } else { 2107a0ff6018SBarry Smith int ml,nl; 2108a0ff6018SBarry Smith 2109a0ff6018SBarry Smith M = *newmat; 2110a0ff6018SBarry Smith ierr = MatGetLocalSize(M,&ml,&nl);CHKERRQ(ierr); 211129bbc08cSBarry Smith if (ml != m) SETERRQ(PETSC_ERR_ARG_SIZ,"Previous matrix must be same size/layout as request"); 2112a0ff6018SBarry Smith ierr = MatZeroEntries(M);CHKERRQ(ierr); 2113c48de900SBarry Smith /* 2114c48de900SBarry Smith The next two lines are needed so we may call MatSetValues_MPIAIJ() below directly, 2115c48de900SBarry Smith rather than the slower MatSetValues(). 2116c48de900SBarry Smith */ 2117c48de900SBarry Smith M->was_assembled = PETSC_TRUE; 2118c48de900SBarry Smith M->assembled = PETSC_FALSE; 2119a0ff6018SBarry Smith } 2120a0ff6018SBarry Smith ierr = MatGetOwnershipRange(M,&rstart,&rend);CHKERRQ(ierr); 2121fee21e36SBarry Smith aij = (Mat_SeqAIJ*)(Mreuse)->data; 212229bbc08cSBarry Smith if (aij->indexshift) SETERRQ(PETSC_ERR_SUP,"No support for index shifted matrix"); 212300e6dbe6SBarry Smith ii = aij->i; 212400e6dbe6SBarry Smith jj = aij->j; 212500e6dbe6SBarry Smith aa = aij->a; 2126a0ff6018SBarry Smith for (i=0; i<m; i++) { 2127a0ff6018SBarry Smith row = rstart + i; 212800e6dbe6SBarry Smith nz = ii[i+1] - ii[i]; 212900e6dbe6SBarry Smith cwork = jj; jj += nz; 213000e6dbe6SBarry Smith vwork = aa; aa += nz; 21318c638d02SBarry Smith ierr = MatSetValues_MPIAIJ(M,1,&row,nz,cwork,vwork,INSERT_VALUES);CHKERRQ(ierr); 2132a0ff6018SBarry Smith } 2133a0ff6018SBarry Smith 2134a0ff6018SBarry Smith ierr = MatAssemblyBegin(M,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 2135a0ff6018SBarry Smith ierr = MatAssemblyEnd(M,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 2136a0ff6018SBarry Smith *newmat = M; 2137fee21e36SBarry Smith 2138fee21e36SBarry Smith /* save submatrix used in processor for next request */ 2139fee21e36SBarry Smith if (call == MAT_INITIAL_MATRIX) { 2140fee21e36SBarry Smith ierr = PetscObjectCompose((PetscObject)M,"SubMatrix",(PetscObject)Mreuse);CHKERRQ(ierr); 2141fee21e36SBarry Smith ierr = PetscObjectDereference((PetscObject)Mreuse);CHKERRQ(ierr); 2142fee21e36SBarry Smith } 2143fee21e36SBarry Smith 2144a0ff6018SBarry Smith PetscFunctionReturn(0); 2145a0ff6018SBarry Smith } 2146273d9f13SBarry Smith 21474a2ae208SSatish Balay #undef __FUNCT__ 21484a2ae208SSatish Balay #define __FUNCT__ "MatMPIAIJSetPreallocation" 2149273d9f13SBarry Smith /*@C 2150273d9f13SBarry Smith MatMPIAIJSetPreallocation - Creates a sparse parallel matrix in AIJ format 2151273d9f13SBarry Smith (the default parallel PETSc format). For good matrix assembly performance 2152273d9f13SBarry Smith the user should preallocate the matrix storage by setting the parameters 2153273d9f13SBarry Smith d_nz (or d_nnz) and o_nz (or o_nnz). By setting these parameters accurately, 2154273d9f13SBarry Smith performance can be increased by more than a factor of 50. 2155273d9f13SBarry Smith 2156273d9f13SBarry Smith Collective on MPI_Comm 2157273d9f13SBarry Smith 2158273d9f13SBarry Smith Input Parameters: 2159273d9f13SBarry Smith + A - the matrix 2160273d9f13SBarry Smith . d_nz - number of nonzeros per row in DIAGONAL portion of local submatrix 2161273d9f13SBarry Smith (same value is used for all local rows) 2162273d9f13SBarry Smith . d_nnz - array containing the number of nonzeros in the various rows of the 2163273d9f13SBarry Smith DIAGONAL portion of the local submatrix (possibly different for each row) 2164273d9f13SBarry Smith or PETSC_NULL, if d_nz is used to specify the nonzero structure. 2165273d9f13SBarry Smith The size of this array is equal to the number of local rows, i.e 'm'. 2166273d9f13SBarry Smith You must leave room for the diagonal entry even if it is zero. 2167273d9f13SBarry Smith . o_nz - number of nonzeros per row in the OFF-DIAGONAL portion of local 2168273d9f13SBarry Smith submatrix (same value is used for all local rows). 2169273d9f13SBarry Smith - o_nnz - array containing the number of nonzeros in the various rows of the 2170273d9f13SBarry Smith OFF-DIAGONAL portion of the local submatrix (possibly different for 2171273d9f13SBarry Smith each row) or PETSC_NULL, if o_nz is used to specify the nonzero 2172273d9f13SBarry Smith structure. The size of this array is equal to the number 2173273d9f13SBarry Smith of local rows, i.e 'm'. 2174273d9f13SBarry Smith 2175273d9f13SBarry Smith The AIJ format (also called the Yale sparse matrix format or 2176273d9f13SBarry Smith compressed row storage), is fully compatible with standard Fortran 77 2177273d9f13SBarry Smith storage. That is, the stored row and column indices can begin at 2178273d9f13SBarry Smith either one (as in Fortran) or zero. See the users manual for details. 2179273d9f13SBarry Smith 2180273d9f13SBarry Smith The user MUST specify either the local or global matrix dimensions 2181273d9f13SBarry Smith (possibly both). 2182273d9f13SBarry Smith 2183273d9f13SBarry Smith The parallel matrix is partitioned such that the first m0 rows belong to 2184273d9f13SBarry Smith process 0, the next m1 rows belong to process 1, the next m2 rows belong 2185273d9f13SBarry Smith to process 2 etc.. where m0,m1,m2... are the input parameter 'm'. 2186273d9f13SBarry Smith 2187273d9f13SBarry Smith The DIAGONAL portion of the local submatrix of a processor can be defined 2188273d9f13SBarry Smith as the submatrix which is obtained by extraction the part corresponding 2189273d9f13SBarry Smith to the rows r1-r2 and columns r1-r2 of the global matrix, where r1 is the 2190273d9f13SBarry Smith first row that belongs to the processor, and r2 is the last row belonging 2191273d9f13SBarry Smith to the this processor. This is a square mxm matrix. The remaining portion 2192273d9f13SBarry Smith of the local submatrix (mxN) constitute the OFF-DIAGONAL portion. 2193273d9f13SBarry Smith 2194273d9f13SBarry Smith If o_nnz, d_nnz are specified, then o_nz, and d_nz are ignored. 2195273d9f13SBarry Smith 2196273d9f13SBarry Smith By default, this format uses inodes (identical nodes) when possible. 2197273d9f13SBarry Smith We search for consecutive rows with the same nonzero structure, thereby 2198273d9f13SBarry Smith reusing matrix information to achieve increased efficiency. 2199273d9f13SBarry Smith 2200273d9f13SBarry Smith Options Database Keys: 2201273d9f13SBarry Smith + -mat_aij_no_inode - Do not use inodes 2202273d9f13SBarry Smith . -mat_aij_inode_limit <limit> - Sets inode limit (max limit=5) 2203273d9f13SBarry Smith - -mat_aij_oneindex - Internally use indexing starting at 1 2204273d9f13SBarry Smith rather than 0. Note that when calling MatSetValues(), 2205273d9f13SBarry Smith the user still MUST index entries starting at 0! 2206273d9f13SBarry Smith 2207273d9f13SBarry Smith Example usage: 2208273d9f13SBarry Smith 2209273d9f13SBarry Smith Consider the following 8x8 matrix with 34 non-zero values, that is 2210273d9f13SBarry Smith assembled across 3 processors. Lets assume that proc0 owns 3 rows, 2211273d9f13SBarry Smith proc1 owns 3 rows, proc2 owns 2 rows. This division can be shown 2212273d9f13SBarry Smith as follows: 2213273d9f13SBarry Smith 2214273d9f13SBarry Smith .vb 2215273d9f13SBarry Smith 1 2 0 | 0 3 0 | 0 4 2216273d9f13SBarry Smith Proc0 0 5 6 | 7 0 0 | 8 0 2217273d9f13SBarry Smith 9 0 10 | 11 0 0 | 12 0 2218273d9f13SBarry Smith ------------------------------------- 2219273d9f13SBarry Smith 13 0 14 | 15 16 17 | 0 0 2220273d9f13SBarry Smith Proc1 0 18 0 | 19 20 21 | 0 0 2221273d9f13SBarry Smith 0 0 0 | 22 23 0 | 24 0 2222273d9f13SBarry Smith ------------------------------------- 2223273d9f13SBarry Smith Proc2 25 26 27 | 0 0 28 | 29 0 2224273d9f13SBarry Smith 30 0 0 | 31 32 33 | 0 34 2225273d9f13SBarry Smith .ve 2226273d9f13SBarry Smith 2227273d9f13SBarry Smith This can be represented as a collection of submatrices as: 2228273d9f13SBarry Smith 2229273d9f13SBarry Smith .vb 2230273d9f13SBarry Smith A B C 2231273d9f13SBarry Smith D E F 2232273d9f13SBarry Smith G H I 2233273d9f13SBarry Smith .ve 2234273d9f13SBarry Smith 2235273d9f13SBarry Smith Where the submatrices A,B,C are owned by proc0, D,E,F are 2236273d9f13SBarry Smith owned by proc1, G,H,I are owned by proc2. 2237273d9f13SBarry Smith 2238273d9f13SBarry Smith The 'm' parameters for proc0,proc1,proc2 are 3,3,2 respectively. 2239273d9f13SBarry Smith The 'n' parameters for proc0,proc1,proc2 are 3,3,2 respectively. 2240273d9f13SBarry Smith The 'M','N' parameters are 8,8, and have the same values on all procs. 2241273d9f13SBarry Smith 2242273d9f13SBarry Smith The DIAGONAL submatrices corresponding to proc0,proc1,proc2 are 2243273d9f13SBarry Smith submatrices [A], [E], [I] respectively. The OFF-DIAGONAL submatrices 2244273d9f13SBarry Smith corresponding to proc0,proc1,proc2 are [BC], [DF], [GH] respectively. 2245273d9f13SBarry Smith Internally, each processor stores the DIAGONAL part, and the OFF-DIAGONAL 2246273d9f13SBarry Smith part as SeqAIJ matrices. for eg: proc1 will store [E] as a SeqAIJ 2247273d9f13SBarry Smith matrix, ans [DF] as another SeqAIJ matrix. 2248273d9f13SBarry Smith 2249273d9f13SBarry Smith When d_nz, o_nz parameters are specified, d_nz storage elements are 2250273d9f13SBarry Smith allocated for every row of the local diagonal submatrix, and o_nz 2251273d9f13SBarry Smith storage locations are allocated for every row of the OFF-DIAGONAL submat. 2252273d9f13SBarry Smith One way to choose d_nz and o_nz is to use the max nonzerors per local 2253273d9f13SBarry Smith rows for each of the local DIAGONAL, and the OFF-DIAGONAL submatrices. 2254273d9f13SBarry Smith In this case, the values of d_nz,o_nz are: 2255273d9f13SBarry Smith .vb 2256273d9f13SBarry Smith proc0 : dnz = 2, o_nz = 2 2257273d9f13SBarry Smith proc1 : dnz = 3, o_nz = 2 2258273d9f13SBarry Smith proc2 : dnz = 1, o_nz = 4 2259273d9f13SBarry Smith .ve 2260273d9f13SBarry Smith We are allocating m*(d_nz+o_nz) storage locations for every proc. This 2261273d9f13SBarry Smith translates to 3*(2+2)=12 for proc0, 3*(3+2)=15 for proc1, 2*(1+4)=10 2262273d9f13SBarry Smith for proc3. i.e we are using 12+15+10=37 storage locations to store 2263273d9f13SBarry Smith 34 values. 2264273d9f13SBarry Smith 2265273d9f13SBarry Smith When d_nnz, o_nnz parameters are specified, the storage is specified 2266273d9f13SBarry Smith for every row, coresponding to both DIAGONAL and OFF-DIAGONAL submatrices. 2267273d9f13SBarry Smith In the above case the values for d_nnz,o_nnz are: 2268273d9f13SBarry Smith .vb 2269273d9f13SBarry Smith proc0: d_nnz = [2,2,2] and o_nnz = [2,2,2] 2270273d9f13SBarry Smith proc1: d_nnz = [3,3,2] and o_nnz = [2,1,1] 2271273d9f13SBarry Smith proc2: d_nnz = [1,1] and o_nnz = [4,4] 2272273d9f13SBarry Smith .ve 2273273d9f13SBarry Smith Here the space allocated is sum of all the above values i.e 34, and 2274273d9f13SBarry Smith hence pre-allocation is perfect. 2275273d9f13SBarry Smith 2276273d9f13SBarry Smith Level: intermediate 2277273d9f13SBarry Smith 2278273d9f13SBarry Smith .keywords: matrix, aij, compressed row, sparse, parallel 2279273d9f13SBarry Smith 2280273d9f13SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues() 2281273d9f13SBarry Smith @*/ 2282273d9f13SBarry Smith int MatMPIAIJSetPreallocation(Mat B,int d_nz,int *d_nnz,int o_nz,int *o_nnz) 2283273d9f13SBarry Smith { 2284273d9f13SBarry Smith Mat_MPIAIJ *b; 2285273d9f13SBarry Smith int ierr,i; 2286273d9f13SBarry Smith PetscTruth flg2; 2287273d9f13SBarry Smith 2288273d9f13SBarry Smith PetscFunctionBegin; 2289273d9f13SBarry Smith ierr = PetscTypeCompare((PetscObject)B,MATMPIAIJ,&flg2);CHKERRQ(ierr); 2290273d9f13SBarry Smith if (!flg2) PetscFunctionReturn(0); 2291273d9f13SBarry Smith B->preallocated = PETSC_TRUE; 2292435da068SBarry Smith if (d_nz == PETSC_DEFAULT || d_nz == PETSC_DECIDE) d_nz = 5; 2293435da068SBarry Smith if (o_nz == PETSC_DEFAULT || o_nz == PETSC_DECIDE) o_nz = 2; 2294435da068SBarry Smith if (d_nz < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"d_nz cannot be less than 0: value %d",d_nz); 2295435da068SBarry Smith if (o_nz < 0) SETERRQ1(PETSC_ERR_ARG_OUTOFRANGE,"o_nz cannot be less than 0: value %d",o_nz); 2296273d9f13SBarry Smith if (d_nnz) { 2297273d9f13SBarry Smith for (i=0; i<B->m; i++) { 2298273d9f13SBarry Smith 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]); 2299273d9f13SBarry Smith } 2300273d9f13SBarry Smith } 2301273d9f13SBarry Smith if (o_nnz) { 2302273d9f13SBarry Smith for (i=0; i<B->m; i++) { 2303273d9f13SBarry Smith 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]); 2304273d9f13SBarry Smith } 2305273d9f13SBarry Smith } 2306273d9f13SBarry Smith b = (Mat_MPIAIJ*)B->data; 2307273d9f13SBarry Smith 2308273d9f13SBarry Smith ierr = MatCreateSeqAIJ(PETSC_COMM_SELF,B->m,B->n,d_nz,d_nnz,&b->A);CHKERRQ(ierr); 2309b0a32e0cSBarry Smith PetscLogObjectParent(B,b->A); 2310273d9f13SBarry Smith ierr = MatCreateSeqAIJ(PETSC_COMM_SELF,B->m,B->N,o_nz,o_nnz,&b->B);CHKERRQ(ierr); 2311b0a32e0cSBarry Smith PetscLogObjectParent(B,b->B); 2312273d9f13SBarry Smith 2313273d9f13SBarry Smith PetscFunctionReturn(0); 2314273d9f13SBarry Smith } 2315273d9f13SBarry Smith 23164a2ae208SSatish Balay #undef __FUNCT__ 23174a2ae208SSatish Balay #define __FUNCT__ "MatCreateMPIAIJ" 2318273d9f13SBarry Smith /*@C 2319273d9f13SBarry Smith MatCreateMPIAIJ - Creates a sparse parallel matrix in AIJ format 2320273d9f13SBarry Smith (the default parallel PETSc format). For good matrix assembly performance 2321273d9f13SBarry Smith the user should preallocate the matrix storage by setting the parameters 2322273d9f13SBarry Smith d_nz (or d_nnz) and o_nz (or o_nnz). By setting these parameters accurately, 2323273d9f13SBarry Smith performance can be increased by more than a factor of 50. 2324273d9f13SBarry Smith 2325273d9f13SBarry Smith Collective on MPI_Comm 2326273d9f13SBarry Smith 2327273d9f13SBarry Smith Input Parameters: 2328273d9f13SBarry Smith + comm - MPI communicator 2329273d9f13SBarry Smith . m - number of local rows (or PETSC_DECIDE to have calculated if M is given) 2330273d9f13SBarry Smith This value should be the same as the local size used in creating the 2331273d9f13SBarry Smith y vector for the matrix-vector product y = Ax. 2332273d9f13SBarry Smith . n - This value should be the same as the local size used in creating the 2333273d9f13SBarry Smith x vector for the matrix-vector product y = Ax. (or PETSC_DECIDE to have 2334273d9f13SBarry Smith calculated if N is given) For square matrices n is almost always m. 2335273d9f13SBarry Smith . M - number of global rows (or PETSC_DETERMINE to have calculated if m is given) 2336273d9f13SBarry Smith . N - number of global columns (or PETSC_DETERMINE to have calculated if n is given) 2337273d9f13SBarry Smith . d_nz - number of nonzeros per row in DIAGONAL portion of local submatrix 2338273d9f13SBarry Smith (same value is used for all local rows) 2339273d9f13SBarry Smith . d_nnz - array containing the number of nonzeros in the various rows of the 2340273d9f13SBarry Smith DIAGONAL portion of the local submatrix (possibly different for each row) 2341273d9f13SBarry Smith or PETSC_NULL, if d_nz is used to specify the nonzero structure. 2342273d9f13SBarry Smith The size of this array is equal to the number of local rows, i.e 'm'. 2343273d9f13SBarry Smith You must leave room for the diagonal entry even if it is zero. 2344273d9f13SBarry Smith . o_nz - number of nonzeros per row in the OFF-DIAGONAL portion of local 2345273d9f13SBarry Smith submatrix (same value is used for all local rows). 2346273d9f13SBarry Smith - o_nnz - array containing the number of nonzeros in the various rows of the 2347273d9f13SBarry Smith OFF-DIAGONAL portion of the local submatrix (possibly different for 2348273d9f13SBarry Smith each row) or PETSC_NULL, if o_nz is used to specify the nonzero 2349273d9f13SBarry Smith structure. The size of this array is equal to the number 2350273d9f13SBarry Smith of local rows, i.e 'm'. 2351273d9f13SBarry Smith 2352273d9f13SBarry Smith Output Parameter: 2353273d9f13SBarry Smith . A - the matrix 2354273d9f13SBarry Smith 2355273d9f13SBarry Smith Notes: 2356273d9f13SBarry Smith m,n,M,N parameters specify the size of the matrix, and its partitioning across 2357273d9f13SBarry Smith processors, while d_nz,d_nnz,o_nz,o_nnz parameters specify the approximate 2358273d9f13SBarry Smith storage requirements for this matrix. 2359273d9f13SBarry Smith 2360273d9f13SBarry Smith If PETSC_DECIDE or PETSC_DETERMINE is used for a particular argument on one 2361273d9f13SBarry Smith processor than it must be used on all processors that share the object for 2362273d9f13SBarry Smith that argument. 2363273d9f13SBarry Smith 2364273d9f13SBarry Smith The AIJ format (also called the Yale sparse matrix format or 2365273d9f13SBarry Smith compressed row storage), is fully compatible with standard Fortran 77 2366273d9f13SBarry Smith storage. That is, the stored row and column indices can begin at 2367273d9f13SBarry Smith either one (as in Fortran) or zero. See the users manual for details. 2368273d9f13SBarry Smith 2369273d9f13SBarry Smith The user MUST specify either the local or global matrix dimensions 2370273d9f13SBarry Smith (possibly both). 2371273d9f13SBarry Smith 2372273d9f13SBarry Smith The parallel matrix is partitioned such that the first m0 rows belong to 2373273d9f13SBarry Smith process 0, the next m1 rows belong to process 1, the next m2 rows belong 2374273d9f13SBarry Smith to process 2 etc.. where m0,m1,m2... are the input parameter 'm'. 2375273d9f13SBarry Smith 2376273d9f13SBarry Smith The DIAGONAL portion of the local submatrix of a processor can be defined 2377273d9f13SBarry Smith as the submatrix which is obtained by extraction the part corresponding 2378273d9f13SBarry Smith to the rows r1-r2 and columns r1-r2 of the global matrix, where r1 is the 2379273d9f13SBarry Smith first row that belongs to the processor, and r2 is the last row belonging 2380273d9f13SBarry Smith to the this processor. This is a square mxm matrix. The remaining portion 2381273d9f13SBarry Smith of the local submatrix (mxN) constitute the OFF-DIAGONAL portion. 2382273d9f13SBarry Smith 2383273d9f13SBarry Smith If o_nnz, d_nnz are specified, then o_nz, and d_nz are ignored. 2384273d9f13SBarry Smith 2385273d9f13SBarry Smith By default, this format uses inodes (identical nodes) when possible. 2386273d9f13SBarry Smith We search for consecutive rows with the same nonzero structure, thereby 2387273d9f13SBarry Smith reusing matrix information to achieve increased efficiency. 2388273d9f13SBarry Smith 2389273d9f13SBarry Smith Options Database Keys: 2390273d9f13SBarry Smith + -mat_aij_no_inode - Do not use inodes 2391273d9f13SBarry Smith . -mat_aij_inode_limit <limit> - Sets inode limit (max limit=5) 2392273d9f13SBarry Smith - -mat_aij_oneindex - Internally use indexing starting at 1 2393273d9f13SBarry Smith rather than 0. Note that when calling MatSetValues(), 2394273d9f13SBarry Smith the user still MUST index entries starting at 0! 2395273d9f13SBarry Smith 2396273d9f13SBarry Smith 2397273d9f13SBarry Smith Example usage: 2398273d9f13SBarry Smith 2399273d9f13SBarry Smith Consider the following 8x8 matrix with 34 non-zero values, that is 2400273d9f13SBarry Smith assembled across 3 processors. Lets assume that proc0 owns 3 rows, 2401273d9f13SBarry Smith proc1 owns 3 rows, proc2 owns 2 rows. This division can be shown 2402273d9f13SBarry Smith as follows: 2403273d9f13SBarry Smith 2404273d9f13SBarry Smith .vb 2405273d9f13SBarry Smith 1 2 0 | 0 3 0 | 0 4 2406273d9f13SBarry Smith Proc0 0 5 6 | 7 0 0 | 8 0 2407273d9f13SBarry Smith 9 0 10 | 11 0 0 | 12 0 2408273d9f13SBarry Smith ------------------------------------- 2409273d9f13SBarry Smith 13 0 14 | 15 16 17 | 0 0 2410273d9f13SBarry Smith Proc1 0 18 0 | 19 20 21 | 0 0 2411273d9f13SBarry Smith 0 0 0 | 22 23 0 | 24 0 2412273d9f13SBarry Smith ------------------------------------- 2413273d9f13SBarry Smith Proc2 25 26 27 | 0 0 28 | 29 0 2414273d9f13SBarry Smith 30 0 0 | 31 32 33 | 0 34 2415273d9f13SBarry Smith .ve 2416273d9f13SBarry Smith 2417273d9f13SBarry Smith This can be represented as a collection of submatrices as: 2418273d9f13SBarry Smith 2419273d9f13SBarry Smith .vb 2420273d9f13SBarry Smith A B C 2421273d9f13SBarry Smith D E F 2422273d9f13SBarry Smith G H I 2423273d9f13SBarry Smith .ve 2424273d9f13SBarry Smith 2425273d9f13SBarry Smith Where the submatrices A,B,C are owned by proc0, D,E,F are 2426273d9f13SBarry Smith owned by proc1, G,H,I are owned by proc2. 2427273d9f13SBarry Smith 2428273d9f13SBarry Smith The 'm' parameters for proc0,proc1,proc2 are 3,3,2 respectively. 2429273d9f13SBarry Smith The 'n' parameters for proc0,proc1,proc2 are 3,3,2 respectively. 2430273d9f13SBarry Smith The 'M','N' parameters are 8,8, and have the same values on all procs. 2431273d9f13SBarry Smith 2432273d9f13SBarry Smith The DIAGONAL submatrices corresponding to proc0,proc1,proc2 are 2433273d9f13SBarry Smith submatrices [A], [E], [I] respectively. The OFF-DIAGONAL submatrices 2434273d9f13SBarry Smith corresponding to proc0,proc1,proc2 are [BC], [DF], [GH] respectively. 2435273d9f13SBarry Smith Internally, each processor stores the DIAGONAL part, and the OFF-DIAGONAL 2436273d9f13SBarry Smith part as SeqAIJ matrices. for eg: proc1 will store [E] as a SeqAIJ 2437273d9f13SBarry Smith matrix, ans [DF] as another SeqAIJ matrix. 2438273d9f13SBarry Smith 2439273d9f13SBarry Smith When d_nz, o_nz parameters are specified, d_nz storage elements are 2440273d9f13SBarry Smith allocated for every row of the local diagonal submatrix, and o_nz 2441273d9f13SBarry Smith storage locations are allocated for every row of the OFF-DIAGONAL submat. 2442273d9f13SBarry Smith One way to choose d_nz and o_nz is to use the max nonzerors per local 2443273d9f13SBarry Smith rows for each of the local DIAGONAL, and the OFF-DIAGONAL submatrices. 2444273d9f13SBarry Smith In this case, the values of d_nz,o_nz are: 2445273d9f13SBarry Smith .vb 2446273d9f13SBarry Smith proc0 : dnz = 2, o_nz = 2 2447273d9f13SBarry Smith proc1 : dnz = 3, o_nz = 2 2448273d9f13SBarry Smith proc2 : dnz = 1, o_nz = 4 2449273d9f13SBarry Smith .ve 2450273d9f13SBarry Smith We are allocating m*(d_nz+o_nz) storage locations for every proc. This 2451273d9f13SBarry Smith translates to 3*(2+2)=12 for proc0, 3*(3+2)=15 for proc1, 2*(1+4)=10 2452273d9f13SBarry Smith for proc3. i.e we are using 12+15+10=37 storage locations to store 2453273d9f13SBarry Smith 34 values. 2454273d9f13SBarry Smith 2455273d9f13SBarry Smith When d_nnz, o_nnz parameters are specified, the storage is specified 2456273d9f13SBarry Smith for every row, coresponding to both DIAGONAL and OFF-DIAGONAL submatrices. 2457273d9f13SBarry Smith In the above case the values for d_nnz,o_nnz are: 2458273d9f13SBarry Smith .vb 2459273d9f13SBarry Smith proc0: d_nnz = [2,2,2] and o_nnz = [2,2,2] 2460273d9f13SBarry Smith proc1: d_nnz = [3,3,2] and o_nnz = [2,1,1] 2461273d9f13SBarry Smith proc2: d_nnz = [1,1] and o_nnz = [4,4] 2462273d9f13SBarry Smith .ve 2463273d9f13SBarry Smith Here the space allocated is sum of all the above values i.e 34, and 2464273d9f13SBarry Smith hence pre-allocation is perfect. 2465273d9f13SBarry Smith 2466273d9f13SBarry Smith Level: intermediate 2467273d9f13SBarry Smith 2468273d9f13SBarry Smith .keywords: matrix, aij, compressed row, sparse, parallel 2469273d9f13SBarry Smith 2470273d9f13SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues() 2471273d9f13SBarry Smith @*/ 2472273d9f13SBarry Smith int MatCreateMPIAIJ(MPI_Comm comm,int m,int n,int M,int N,int d_nz,int *d_nnz,int o_nz,int *o_nnz,Mat *A) 2473273d9f13SBarry Smith { 2474273d9f13SBarry Smith int ierr,size; 2475273d9f13SBarry Smith 2476273d9f13SBarry Smith PetscFunctionBegin; 2477273d9f13SBarry Smith ierr = MatCreate(comm,m,n,M,N,A);CHKERRQ(ierr); 2478273d9f13SBarry Smith ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); 2479273d9f13SBarry Smith if (size > 1) { 2480273d9f13SBarry Smith ierr = MatSetType(*A,MATMPIAIJ);CHKERRQ(ierr); 2481273d9f13SBarry Smith ierr = MatMPIAIJSetPreallocation(*A,d_nz,d_nnz,o_nz,o_nnz);CHKERRQ(ierr); 2482273d9f13SBarry Smith } else { 2483273d9f13SBarry Smith ierr = MatSetType(*A,MATSEQAIJ);CHKERRQ(ierr); 2484273d9f13SBarry Smith ierr = MatSeqAIJSetPreallocation(*A,d_nz,d_nnz);CHKERRQ(ierr); 2485273d9f13SBarry Smith } 2486273d9f13SBarry Smith PetscFunctionReturn(0); 2487273d9f13SBarry Smith } 2488195d93cdSBarry Smith 24894a2ae208SSatish Balay #undef __FUNCT__ 24904a2ae208SSatish Balay #define __FUNCT__ "MatMPIAIJGetSeqAIJ" 2491195d93cdSBarry Smith int MatMPIAIJGetSeqAIJ(Mat A,Mat *Ad,Mat *Ao,int **colmap) 2492195d93cdSBarry Smith { 2493195d93cdSBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ *)A->data; 2494195d93cdSBarry Smith PetscFunctionBegin; 2495195d93cdSBarry Smith *Ad = a->A; 2496195d93cdSBarry Smith *Ao = a->B; 2497195d93cdSBarry Smith *colmap = a->garray; 2498195d93cdSBarry Smith PetscFunctionReturn(0); 2499195d93cdSBarry Smith } 2500a2243be0SBarry Smith 2501a2243be0SBarry Smith #undef __FUNCT__ 2502a2243be0SBarry Smith #define __FUNCT__ "MatSetColoring_MPIAIJ" 2503a2243be0SBarry Smith int MatSetColoring_MPIAIJ(Mat A,ISColoring coloring) 2504a2243be0SBarry Smith { 250508b6dcc0SBarry Smith int ierr,i; 2506a2243be0SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 2507a2243be0SBarry Smith 2508a2243be0SBarry Smith PetscFunctionBegin; 2509a2243be0SBarry Smith if (coloring->ctype == IS_COLORING_LOCAL) { 251008b6dcc0SBarry Smith ISColoringValue *allcolors,*colors; 2511a2243be0SBarry Smith ISColoring ocoloring; 2512a2243be0SBarry Smith 2513a2243be0SBarry Smith /* set coloring for diagonal portion */ 2514a2243be0SBarry Smith ierr = MatSetColoring_SeqAIJ(a->A,coloring);CHKERRQ(ierr); 2515a2243be0SBarry Smith 2516a2243be0SBarry Smith /* set coloring for off-diagonal portion */ 251708b6dcc0SBarry Smith ierr = ISAllGatherColors(A->comm,coloring->n,coloring->colors,PETSC_NULL,&allcolors);CHKERRQ(ierr); 251808b6dcc0SBarry Smith ierr = PetscMalloc((a->B->n+1)*sizeof(ISColoringValue),&colors);CHKERRQ(ierr); 2519a2243be0SBarry Smith for (i=0; i<a->B->n; i++) { 2520a2243be0SBarry Smith colors[i] = allcolors[a->garray[i]]; 2521a2243be0SBarry Smith } 2522a2243be0SBarry Smith ierr = PetscFree(allcolors);CHKERRQ(ierr); 2523a2243be0SBarry Smith ierr = ISColoringCreate(MPI_COMM_SELF,a->B->n,colors,&ocoloring);CHKERRQ(ierr); 2524a2243be0SBarry Smith ierr = MatSetColoring_SeqAIJ(a->B,ocoloring);CHKERRQ(ierr); 2525a2243be0SBarry Smith ierr = ISColoringDestroy(ocoloring);CHKERRQ(ierr); 2526a2243be0SBarry Smith } else if (coloring->ctype == IS_COLORING_GHOSTED) { 252708b6dcc0SBarry Smith ISColoringValue *colors; 252808b6dcc0SBarry Smith int *larray; 2529a2243be0SBarry Smith ISColoring ocoloring; 2530a2243be0SBarry Smith 2531a2243be0SBarry Smith /* set coloring for diagonal portion */ 2532a2243be0SBarry Smith ierr = PetscMalloc((a->A->n+1)*sizeof(int),&larray);CHKERRQ(ierr); 2533a2243be0SBarry Smith for (i=0; i<a->A->n; i++) { 2534a2243be0SBarry Smith larray[i] = i + a->cstart; 2535a2243be0SBarry Smith } 2536a2243be0SBarry Smith ierr = ISGlobalToLocalMappingApply(A->mapping,IS_GTOLM_MASK,a->A->n,larray,PETSC_NULL,larray);CHKERRQ(ierr); 253708b6dcc0SBarry Smith ierr = PetscMalloc((a->A->n+1)*sizeof(ISColoringValue),&colors);CHKERRQ(ierr); 2538a2243be0SBarry Smith for (i=0; i<a->A->n; i++) { 2539a2243be0SBarry Smith colors[i] = coloring->colors[larray[i]]; 2540a2243be0SBarry Smith } 2541a2243be0SBarry Smith ierr = PetscFree(larray);CHKERRQ(ierr); 254212c595b3SBarry Smith ierr = ISColoringCreate(PETSC_COMM_SELF,a->A->n,colors,&ocoloring);CHKERRQ(ierr); 2543a2243be0SBarry Smith ierr = MatSetColoring_SeqAIJ(a->A,ocoloring);CHKERRQ(ierr); 2544a2243be0SBarry Smith ierr = ISColoringDestroy(ocoloring);CHKERRQ(ierr); 2545a2243be0SBarry Smith 2546a2243be0SBarry Smith /* set coloring for off-diagonal portion */ 2547a2243be0SBarry Smith ierr = PetscMalloc((a->B->n+1)*sizeof(int),&larray);CHKERRQ(ierr); 2548a2243be0SBarry Smith ierr = ISGlobalToLocalMappingApply(A->mapping,IS_GTOLM_MASK,a->B->n,a->garray,PETSC_NULL,larray);CHKERRQ(ierr); 254908b6dcc0SBarry Smith ierr = PetscMalloc((a->B->n+1)*sizeof(ISColoringValue),&colors);CHKERRQ(ierr); 2550a2243be0SBarry Smith for (i=0; i<a->B->n; i++) { 2551a2243be0SBarry Smith colors[i] = coloring->colors[larray[i]]; 2552a2243be0SBarry Smith } 2553a2243be0SBarry Smith ierr = PetscFree(larray);CHKERRQ(ierr); 2554a2243be0SBarry Smith ierr = ISColoringCreate(MPI_COMM_SELF,a->B->n,colors,&ocoloring);CHKERRQ(ierr); 2555a2243be0SBarry Smith ierr = MatSetColoring_SeqAIJ(a->B,ocoloring);CHKERRQ(ierr); 2556a2243be0SBarry Smith ierr = ISColoringDestroy(ocoloring);CHKERRQ(ierr); 2557a2243be0SBarry Smith } else { 2558a2243be0SBarry Smith SETERRQ1(1,"No support ISColoringType %d",coloring->ctype); 2559a2243be0SBarry Smith } 2560a2243be0SBarry Smith 2561a2243be0SBarry Smith PetscFunctionReturn(0); 2562a2243be0SBarry Smith } 2563a2243be0SBarry Smith 2564a2243be0SBarry Smith #undef __FUNCT__ 2565779c1a83SBarry Smith #define __FUNCT__ "MatSetValuesAdic_MPIAIJ" 2566779c1a83SBarry Smith int MatSetValuesAdic_MPIAIJ(Mat A,void *advalues) 2567a2243be0SBarry Smith { 2568a2243be0SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 2569a2243be0SBarry Smith int ierr; 2570a2243be0SBarry Smith 2571a2243be0SBarry Smith PetscFunctionBegin; 2572779c1a83SBarry Smith ierr = MatSetValuesAdic_SeqAIJ(a->A,advalues);CHKERRQ(ierr); 2573779c1a83SBarry Smith ierr = MatSetValuesAdic_SeqAIJ(a->B,advalues);CHKERRQ(ierr); 2574779c1a83SBarry Smith PetscFunctionReturn(0); 2575779c1a83SBarry Smith } 2576779c1a83SBarry Smith 2577779c1a83SBarry Smith #undef __FUNCT__ 2578779c1a83SBarry Smith #define __FUNCT__ "MatSetValuesAdifor_MPIAIJ" 2579779c1a83SBarry Smith int MatSetValuesAdifor_MPIAIJ(Mat A,int nl,void *advalues) 2580779c1a83SBarry Smith { 2581779c1a83SBarry Smith Mat_MPIAIJ *a = (Mat_MPIAIJ*)A->data; 2582779c1a83SBarry Smith int ierr; 2583779c1a83SBarry Smith 2584779c1a83SBarry Smith PetscFunctionBegin; 2585779c1a83SBarry Smith ierr = MatSetValuesAdifor_SeqAIJ(a->A,nl,advalues);CHKERRQ(ierr); 2586779c1a83SBarry Smith ierr = MatSetValuesAdifor_SeqAIJ(a->B,nl,advalues);CHKERRQ(ierr); 2587a2243be0SBarry Smith PetscFunctionReturn(0); 2588a2243be0SBarry Smith } 2589c5d6d63eSBarry Smith 2590c5d6d63eSBarry Smith #undef __FUNCT__ 259151dd7536SBarry Smith #define __FUNCT__ "MatMerge" 2592c5d6d63eSBarry Smith /*@C 259351dd7536SBarry Smith MatMerge - Creates a single large PETSc matrix by concatinating sequential 259451dd7536SBarry Smith matrices from each processor 2595c5d6d63eSBarry Smith 2596c5d6d63eSBarry Smith Collective on MPI_Comm 2597c5d6d63eSBarry Smith 2598c5d6d63eSBarry Smith Input Parameters: 259951dd7536SBarry Smith + comm - the communicators the parallel matrix will live on 260051dd7536SBarry Smith - inmat - the input sequential matrices 260151dd7536SBarry Smith 260251dd7536SBarry Smith Output Parameter: 260351dd7536SBarry Smith . outmat - the parallel matrix generated 2604c5d6d63eSBarry Smith 26057e25d530SSatish Balay Level: advanced 26067e25d530SSatish Balay 2607c5d6d63eSBarry Smith Notes: The number of columns of the matrix in EACH of the seperate files 2608c5d6d63eSBarry Smith MUST be the same. 2609c5d6d63eSBarry Smith 2610c5d6d63eSBarry Smith @*/ 261151dd7536SBarry Smith int MatMerge(MPI_Comm comm,Mat inmat, Mat *outmat) 2612c5d6d63eSBarry Smith { 2613a15ac5e4SHong Zhang int ierr,m,n,i,rstart,*indx,nnz,I,*dnz,*onz; 2614c5d6d63eSBarry Smith PetscScalar *values; 261551dd7536SBarry Smith PetscMap columnmap,rowmap; 2616c5d6d63eSBarry Smith 2617c5d6d63eSBarry Smith PetscFunctionBegin; 2618c5d6d63eSBarry Smith 261951dd7536SBarry Smith ierr = MatGetSize(inmat,&m,&n);CHKERRQ(ierr); 262051dd7536SBarry Smith 262151dd7536SBarry Smith /* count nonzeros in each row, for diagonal and off diagonal portion of matrix */ 262251dd7536SBarry Smith ierr = PetscMapCreate(comm,&columnmap);CHKERRQ(ierr); 262351dd7536SBarry Smith ierr = PetscMapSetSize(columnmap,n);CHKERRQ(ierr); 262451dd7536SBarry Smith ierr = PetscMapSetType(columnmap,MAP_MPI);CHKERRQ(ierr); 262551dd7536SBarry Smith ierr = PetscMapGetLocalSize(columnmap,&n);CHKERRQ(ierr); 262651dd7536SBarry Smith ierr = PetscMapDestroy(columnmap);CHKERRQ(ierr); 262751dd7536SBarry Smith 262851dd7536SBarry Smith ierr = PetscMapCreate(comm,&rowmap);CHKERRQ(ierr); 262951dd7536SBarry Smith ierr = PetscMapSetLocalSize(rowmap,m);CHKERRQ(ierr); 263051dd7536SBarry Smith ierr = PetscMapSetType(rowmap,MAP_MPI);CHKERRQ(ierr); 263151dd7536SBarry Smith ierr = PetscMapGetLocalRange(rowmap,&rstart,0);CHKERRQ(ierr); 263251dd7536SBarry Smith ierr = PetscMapDestroy(rowmap);CHKERRQ(ierr); 263351dd7536SBarry Smith 263451dd7536SBarry Smith ierr = MatPreallocateInitialize(comm,m,n,dnz,onz);CHKERRQ(ierr); 2635c5d6d63eSBarry Smith for (i=0;i<m;i++) { 263651dd7536SBarry Smith ierr = MatGetRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr); 263751dd7536SBarry Smith ierr = MatPreallocateSet(i+rstart,nnz,indx,dnz,onz);CHKERRQ(ierr); 263851dd7536SBarry Smith ierr = MatRestoreRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr); 2639c5d6d63eSBarry Smith } 264051dd7536SBarry Smith ierr = MatCreateMPIAIJ(comm,m,n,PETSC_DETERMINE,PETSC_DETERMINE,0,dnz,0,onz,outmat);CHKERRQ(ierr); 264151dd7536SBarry Smith ierr = MatPreallocateFinalize(dnz,onz);CHKERRQ(ierr); 2642c5d6d63eSBarry Smith 264351dd7536SBarry Smith for (i=0;i<m;i++) { 264451dd7536SBarry Smith ierr = MatGetRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr); 264551dd7536SBarry Smith I = i + rstart; 264651dd7536SBarry Smith ierr = MatSetValues(*outmat,1,&I,nnz,indx,values,INSERT_VALUES);CHKERRQ(ierr); 264751dd7536SBarry Smith ierr = MatRestoreRow(inmat,i,&nnz,&indx,&values);CHKERRQ(ierr); 264851dd7536SBarry Smith } 264951dd7536SBarry Smith ierr = MatDestroy(inmat);CHKERRQ(ierr); 265051dd7536SBarry Smith ierr = MatAssemblyBegin(*outmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 265151dd7536SBarry Smith ierr = MatAssemblyEnd(*outmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 265251dd7536SBarry Smith 2653c5d6d63eSBarry Smith PetscFunctionReturn(0); 2654c5d6d63eSBarry Smith } 2655c5d6d63eSBarry Smith 2656c5d6d63eSBarry Smith #undef __FUNCT__ 2657c5d6d63eSBarry Smith #define __FUNCT__ "MatFileSplit" 2658c5d6d63eSBarry Smith int MatFileSplit(Mat A,char *outfile) 2659c5d6d63eSBarry Smith { 2660c5d6d63eSBarry Smith int ierr,rank,len,m,N,i,rstart,*indx,nnz; 2661c5d6d63eSBarry Smith PetscViewer out; 2662c5d6d63eSBarry Smith char *name; 2663c5d6d63eSBarry Smith Mat B; 2664c5d6d63eSBarry Smith PetscScalar *values; 2665c5d6d63eSBarry Smith 2666c5d6d63eSBarry Smith PetscFunctionBegin; 2667c5d6d63eSBarry Smith 2668c5d6d63eSBarry Smith ierr = MatGetLocalSize(A,&m,0);CHKERRQ(ierr); 2669c5d6d63eSBarry Smith ierr = MatGetSize(A,0,&N);CHKERRQ(ierr); 2670c5d6d63eSBarry Smith ierr = MatCreateSeqAIJ(PETSC_COMM_SELF,m,N,0,0,&B);CHKERRQ(ierr); 2671c5d6d63eSBarry Smith ierr = MatGetOwnershipRange(A,&rstart,0);CHKERRQ(ierr); 2672c5d6d63eSBarry Smith for (i=0;i<m;i++) { 2673c5d6d63eSBarry Smith ierr = MatGetRow(A,i+rstart,&nnz,&indx,&values);CHKERRQ(ierr); 2674c5d6d63eSBarry Smith ierr = MatSetValues(B,1,&i,nnz,indx,values,INSERT_VALUES);CHKERRQ(ierr); 2675c5d6d63eSBarry Smith ierr = MatRestoreRow(A,i+rstart,&nnz,&indx,&values);CHKERRQ(ierr); 2676c5d6d63eSBarry Smith } 2677c5d6d63eSBarry Smith ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 2678c5d6d63eSBarry Smith ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 2679c5d6d63eSBarry Smith 2680c5d6d63eSBarry Smith ierr = MPI_Comm_rank(A->comm,&rank);CHKERRQ(ierr); 2681c5d6d63eSBarry Smith ierr = PetscStrlen(outfile,&len);CHKERRQ(ierr); 2682c5d6d63eSBarry Smith ierr = PetscMalloc((len+5)*sizeof(char),&name);CHKERRQ(ierr); 2683c5d6d63eSBarry Smith sprintf(name,"%s.%d",outfile,rank); 2684c5d6d63eSBarry Smith ierr = PetscViewerBinaryOpen(PETSC_COMM_SELF,name,PETSC_BINARY_CREATE,&out);CHKERRQ(ierr); 2685c5d6d63eSBarry Smith ierr = PetscFree(name); 2686c5d6d63eSBarry Smith ierr = MatView(B,out);CHKERRQ(ierr); 2687c5d6d63eSBarry Smith ierr = PetscViewerDestroy(out);CHKERRQ(ierr); 2688c5d6d63eSBarry Smith ierr = MatDestroy(B);CHKERRQ(ierr); 2689c5d6d63eSBarry Smith PetscFunctionReturn(0); 2690c5d6d63eSBarry Smith } 2691