#ifdef PETSC_RCS_HEADER static char vcid[] = "$Id: fdmpiaij.c,v 1.17 1999/01/08 21:47:51 balay Exp balay $"; #endif #include "src/mat/impls/aij/mpi/mpiaij.h" #include "src/vec/vecimpl.h" #include "petsc.h" extern int CreateColmap_MPIAIJ_Private(Mat); extern int MatGetColumnIJ_SeqAIJ(Mat,int,PetscTruth,int*,int**,int**,PetscTruth*); extern int MatRestoreColumnIJ_SeqAIJ(Mat,int,PetscTruth,int*,int**,int**,PetscTruth*); #undef __FUNC__ #define __FUNC__ "MatFDColoringCreate_MPIAIJ" int MatFDColoringCreate_MPIAIJ(Mat mat,ISColoring iscoloring,MatFDColoring c) { Mat_MPIAIJ *aij = (Mat_MPIAIJ *) mat->data; int i,*is,n,nrows,j,k,m,*rows = 0,ierr,*A_ci,*A_cj,ncols,col,flg; int nis = iscoloring->n,*ncolsonproc,size,nctot,*cols,*disp,*B_ci,*B_cj; int *rowhit, M = mat->m,cstart = aij->cstart, cend = aij->cend,colb; int *columnsforrow; IS *isa = iscoloring->is; PetscTruth done; PetscFunctionBegin; if (!mat->assembled) { SETERRQ(PETSC_ERR_ARG_WRONGSTATE,1,"Matrix must be assembled first; MatAssemblyBegin/End();"); } c->M = mat->M; /* set the global rows and columns and local rows */ c->N = mat->N; c->m = mat->m; c->rstart = aij->rstart; c->ncolors = nis; c->ncolumns = (int *) PetscMalloc( nis*sizeof(int) ); CHKPTRQ(c->ncolumns); c->columns = (int **) PetscMalloc( nis*sizeof(int *)); CHKPTRQ(c->columns); c->nrows = (int *) PetscMalloc( nis*sizeof(int) ); CHKPTRQ(c->nrows); c->rows = (int **) PetscMalloc( nis*sizeof(int *)); CHKPTRQ(c->rows); c->columnsforrow = (int **) PetscMalloc( nis*sizeof(int *)); CHKPTRQ(c->columnsforrow); PLogObjectMemory(c,5*nis*sizeof(int)); /* Allow access to data structures of local part of matrix */ if (!aij->colmap) { ierr = CreateColmap_MPIAIJ_Private(mat);CHKERRQ(ierr); } /* Calls the _SeqAIJ() version of these routines to make sure it does not get the reduced (by inodes) version of I and J */ ierr = MatGetColumnIJ_SeqAIJ(aij->A,0,PETSC_FALSE,&ncols,&A_ci,&A_cj,&done); CHKERRQ(ierr); ierr = MatGetColumnIJ_SeqAIJ(aij->B,0,PETSC_FALSE,&ncols,&B_ci,&B_cj,&done); CHKERRQ(ierr); MPI_Comm_size(mat->comm,&size); ncolsonproc = (int *) PetscMalloc( 2*size*sizeof(int *) ); CHKPTRQ(ncolsonproc); disp = ncolsonproc + size; rowhit = (int *) PetscMalloc( (M+1)*sizeof(int) ); CHKPTRQ(rowhit); columnsforrow = (int *) PetscMalloc( (M+1)*sizeof(int) );CHKPTRQ(columnsforrow); /* Temporary option to allow for debugging/testing */ ierr = OptionsHasName(0,"-matfdcoloring_slow",&flg); for ( i=0; incolumns[i] = n; c->ncolumns[i] = n; if (n) { c->columns[i] = (int *) PetscMalloc( n*sizeof(int) ); CHKPTRQ(c->columns[i]); PLogObjectMemory(c,n*sizeof(int)); PetscMemcpy(c->columns[i],is,n*sizeof(int)); } else { c->columns[i] = 0; } /* Determine the total (parallel) number of columns of this color */ ierr = MPI_Allgather(&n,1,MPI_INT,ncolsonproc,1,MPI_INT,mat->comm);CHKERRQ(ierr); nctot = 0; for ( j=0; jcomm);CHKERRQ(ierr); /* for ( j=0; j= cstart && col < cend) { /* column is in diagonal block of matrix */ rows = A_cj + A_ci[col-cstart]; m = A_ci[col-cstart+1] - A_ci[col-cstart]; } else { #if defined (USE_CTABLE) ierr = TableFind(aij->colmap,col+1,&colb); CHKERRQ(ierr) colb --; #else colb = aij->colmap[col] - 1; #endif if (colb == -1) { m = 0; } else { rows = B_cj + B_ci[colb]; m = B_ci[colb+1] - B_ci[colb]; } } /* loop over columns marking them in rowhit */ for ( k=0; knrows[i] = nrows; c->rows[i] = (int *) PetscMalloc((nrows+1)*sizeof(int)); CHKPTRQ(c->rows[i]); c->columnsforrow[i] = (int *) PetscMalloc((nrows+1)*sizeof(int)); CHKPTRQ(c->columnsforrow[i]); PLogObjectMemory(c,2*(nrows+1)*sizeof(int)); nrows = 0; for ( j=0; jrows[i][nrows] = j; c->columnsforrow[i][nrows] = rowhit[j] - 1; nrows++; } } } else {/*-------------------------------------------------------------------------------*/ /* efficient version, using rowhit as a linked list */ int currentcol,fm,mfm; rowhit[M] = M; nrows = 0; /* loop over columns*/ for ( j=0; j= cstart && col < cend) { /* column is in diagonal block of matrix */ rows = A_cj + A_ci[col-cstart]; m = A_ci[col-cstart+1] - A_ci[col-cstart]; } else { #if defined (USE_CTABLE) ierr = TableFind(aij->colmap,col+1,&colb); CHKERRQ(ierr); colb --; #else colb = aij->colmap[col] - 1; #endif if (colb == -1) { m = 0; } else { rows = B_cj + B_ci[colb]; m = B_ci[colb+1] - B_ci[colb]; } } /* loop over columns marking them in rowhit */ fm = M; /* fm points to first entry in linked list */ for ( k=0; knrows[i] = nrows; c->rows[i] = (int *)PetscMalloc((nrows+1)*sizeof(int));CHKPTRQ(c->rows[i]); c->columnsforrow[i] = (int *)PetscMalloc((nrows+1)*sizeof(int));CHKPTRQ(c->columnsforrow[i]); PLogObjectMemory(c,(nrows+1)*sizeof(int)); /* now store the linked list of rows into c->rows[i] */ nrows = 0; fm = rowhit[M]; do { c->rows[i][nrows] = fm; c->columnsforrow[i][nrows++] = columnsforrow[fm]; fm = rowhit[fm]; } while (fm < M); } /* ---------------------------------------------------------------------------------------*/ PetscFree(cols); } PetscFree(rowhit); PetscFree(columnsforrow); PetscFree(ncolsonproc); ierr = MatRestoreColumnIJ_SeqAIJ(aij->A,0,PETSC_FALSE,&ncols,&A_ci,&A_cj,&done); CHKERRQ(ierr); ierr = MatRestoreColumnIJ_SeqAIJ(aij->B,0,PETSC_FALSE,&ncols,&B_ci,&B_cj,&done); CHKERRQ(ierr); c->scale = (Scalar *) PetscMalloc( 2*mat->N*sizeof(Scalar) ); CHKPTRQ(c->scale); PLogObjectMemory(c,2*mat->N*sizeof(Scalar)); c->wscale = c->scale + mat->N; PetscFunctionReturn(0); }