xref: /petsc/src/mat/impls/adj/mpi/mpiadj.c (revision 29bbc08cd5461c366aba6645924e8ff42acd1de0)
1*29bbc08cSBarry Smith /*$Id: mpiadj.c,v 1.47 2000/09/22 20:44:09 bsmith Exp bsmith $*/
2b97cf49bSBarry Smith 
3b97cf49bSBarry Smith /*
4b97cf49bSBarry Smith     Defines the basic matrix operations for the ADJ adjacency list matrix data-structure.
5b97cf49bSBarry Smith */
6e090d566SSatish Balay #include "petscsys.h"
73eda8832SBarry Smith #include "src/mat/impls/adj/mpi/mpiadj.h"
8b97cf49bSBarry Smith 
9b97cf49bSBarry Smith #undef __FUNC__
10b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatView_MPIAdj_ASCII"
11ca44d042SBarry Smith int MatView_MPIAdj_ASCII(Mat A,Viewer viewer)
12b97cf49bSBarry Smith {
133eda8832SBarry Smith   Mat_MPIAdj  *a = (Mat_MPIAdj*)A->data;
14b97cf49bSBarry Smith   int         ierr,i,j,m = a->m, format;
15b97cf49bSBarry Smith   char        *outputname;
16b97cf49bSBarry Smith 
17433994e6SBarry Smith   PetscFunctionBegin;
1877ed5343SBarry Smith   ierr = ViewerGetOutputname(viewer,&outputname);CHKERRQ(ierr);
19d132466eSBarry Smith   ierr = ViewerGetFormat(viewer,&format);CHKERRQ(ierr);
20b97cf49bSBarry Smith   if (format == VIEWER_FORMAT_ASCII_INFO) {
213a40ed3dSBarry Smith     PetscFunctionReturn(0);
220752156aSBarry Smith   } else {
236831982aSBarry Smith     ierr = ViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
24b97cf49bSBarry Smith     for (i=0; i<m; i++) {
256831982aSBarry Smith       ierr = ViewerASCIISynchronizedPrintf(viewer,"row %d:",i+a->rstart);CHKERRQ(ierr);
26b97cf49bSBarry Smith       for (j=a->i[i]; j<a->i[i+1]; j++) {
276831982aSBarry Smith         ierr = ViewerASCIISynchronizedPrintf(viewer," %d ",a->j[j]);CHKERRQ(ierr);
280752156aSBarry Smith       }
296831982aSBarry Smith       ierr = ViewerASCIISynchronizedPrintf(viewer,"\n");CHKERRQ(ierr);
30b97cf49bSBarry Smith     }
316831982aSBarry Smith     ierr = ViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
32b97cf49bSBarry Smith   }
336831982aSBarry Smith   ierr = ViewerFlush(viewer);CHKERRQ(ierr);
343a40ed3dSBarry Smith   PetscFunctionReturn(0);
35b97cf49bSBarry Smith }
36b97cf49bSBarry Smith 
37b97cf49bSBarry Smith #undef __FUNC__
38b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatView_MPIAdj"
393eda8832SBarry Smith int MatView_MPIAdj(Mat A,Viewer viewer)
40b97cf49bSBarry Smith {
41b97cf49bSBarry Smith   int        ierr;
426831982aSBarry Smith   PetscTruth isascii;
43b97cf49bSBarry Smith 
44433994e6SBarry Smith   PetscFunctionBegin;
456831982aSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,ASCII_VIEWER,&isascii);CHKERRQ(ierr);
460f5bd95cSBarry Smith   if (isascii) {
473eda8832SBarry Smith     ierr = MatView_MPIAdj_ASCII(A,viewer);CHKERRQ(ierr);
485cd90555SBarry Smith   } else {
49*29bbc08cSBarry Smith     SETERRQ1(1,"Viewer type %s not supported by MPIAdj",((PetscObject)viewer)->type_name);
50b97cf49bSBarry Smith   }
513a40ed3dSBarry Smith   PetscFunctionReturn(0);
52b97cf49bSBarry Smith }
53b97cf49bSBarry Smith 
54b97cf49bSBarry Smith #undef __FUNC__
55b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatDestroy_MPIAdj"
563eda8832SBarry Smith int MatDestroy_MPIAdj(Mat mat)
57b97cf49bSBarry Smith {
583eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)mat->data;
5994d884c6SBarry Smith   int        ierr;
6094d884c6SBarry Smith 
6194d884c6SBarry Smith   PetscFunctionBegin;
6294d884c6SBarry Smith 
6394d884c6SBarry Smith   if (mat->mapping) {
6494d884c6SBarry Smith     ierr = ISLocalToGlobalMappingDestroy(mat->mapping);CHKERRQ(ierr);
6594d884c6SBarry Smith   }
6694d884c6SBarry Smith   if (mat->bmapping) {
6794d884c6SBarry Smith     ierr = ISLocalToGlobalMappingDestroy(mat->bmapping);CHKERRQ(ierr);
6894d884c6SBarry Smith   }
69c7fcc2eaSBarry Smith   if (mat->rmap) {
70c7fcc2eaSBarry Smith     ierr = MapDestroy(mat->rmap);CHKERRQ(ierr);
71c7fcc2eaSBarry Smith   }
72c7fcc2eaSBarry Smith   if (mat->cmap) {
73c7fcc2eaSBarry Smith     ierr = MapDestroy(mat->cmap);CHKERRQ(ierr);
74c7fcc2eaSBarry Smith   }
75b97cf49bSBarry Smith 
76aa482453SBarry Smith #if defined(PETSC_USE_LOG)
7794d884c6SBarry Smith   PLogObjectState((PetscObject)mat,"Rows=%d, Cols=%d, NZ=%d",mat->m,mat->n,a->nz);
78b97cf49bSBarry Smith #endif
79606d414cSSatish Balay   if (a->diag) {ierr = PetscFree(a->diag);CHKERRQ(ierr);}
800400557aSBarry Smith   if (a->freeaij) {
81606d414cSSatish Balay     ierr = PetscFree(a->i);CHKERRQ(ierr);
82606d414cSSatish Balay     ierr = PetscFree(a->j);CHKERRQ(ierr);
831198db28SBarry Smith     if (a->values) {ierr = PetscFree(a->values);CHKERRQ(ierr);}
840400557aSBarry Smith   }
850400557aSBarry Smith   ierr = PetscFree(a->rowners);CHKERRQ(ierr);
861198db28SBarry Smith   ierr = PetscFree(a);CHKERRQ(ierr);
87b97cf49bSBarry Smith 
8894d884c6SBarry Smith   PLogObjectDestroy(mat);
8994d884c6SBarry Smith   PetscHeaderDestroy(mat);
903a40ed3dSBarry Smith   PetscFunctionReturn(0);
91b97cf49bSBarry Smith }
92b97cf49bSBarry Smith 
93b97cf49bSBarry Smith #undef __FUNC__
94b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatSetOption_MPIAdj"
953eda8832SBarry Smith int MatSetOption_MPIAdj(Mat A,MatOption op)
96b97cf49bSBarry Smith {
973eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
98b97cf49bSBarry Smith 
99433994e6SBarry Smith   PetscFunctionBegin;
100b97cf49bSBarry Smith   if (op == MAT_STRUCTURALLY_SYMMETRIC) {
101b97cf49bSBarry Smith     a->symmetric = PETSC_TRUE;
102b97cf49bSBarry Smith   } else {
1033eda8832SBarry Smith     PLogInfo(A,"MatSetOption_MPIAdj:Option ignored\n");
104b97cf49bSBarry Smith   }
1053a40ed3dSBarry Smith   PetscFunctionReturn(0);
106b97cf49bSBarry Smith }
107b97cf49bSBarry Smith 
108b97cf49bSBarry Smith 
109b97cf49bSBarry Smith /*
110b97cf49bSBarry Smith      Adds diagonal pointers to sparse matrix structure.
111b97cf49bSBarry Smith */
112b97cf49bSBarry Smith 
113b97cf49bSBarry Smith #undef __FUNC__
114b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatMarkDiagonal_MPIAdj"
1153eda8832SBarry Smith int MatMarkDiagonal_MPIAdj(Mat A)
116b97cf49bSBarry Smith {
1173eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
118b97cf49bSBarry Smith   int        i,j,*diag,m = a->m;
119b97cf49bSBarry Smith 
120433994e6SBarry Smith   PetscFunctionBegin;
121b97cf49bSBarry Smith   diag = (int*)PetscMalloc((m+1)*sizeof(int));CHKPTRQ(diag);
122b97cf49bSBarry Smith   PLogObjectMemory(A,(m+1)*sizeof(int));
123b97cf49bSBarry Smith   for (i=0; i<a->m; i++) {
124b97cf49bSBarry Smith     for (j=a->i[i]; j<a->i[i+1]; j++) {
125b97cf49bSBarry Smith       if (a->j[j] == i) {
126b97cf49bSBarry Smith         diag[i] = j;
127b97cf49bSBarry Smith         break;
128b97cf49bSBarry Smith       }
129b97cf49bSBarry Smith     }
130b97cf49bSBarry Smith   }
131b97cf49bSBarry Smith   a->diag = diag;
1323a40ed3dSBarry Smith   PetscFunctionReturn(0);
133b97cf49bSBarry Smith }
134b97cf49bSBarry Smith 
135b97cf49bSBarry Smith #undef __FUNC__
136b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatGetSize_MPIAdj"
1373eda8832SBarry Smith int MatGetSize_MPIAdj(Mat A,int *m,int *n)
138b97cf49bSBarry Smith {
139433994e6SBarry Smith   PetscFunctionBegin;
1400752156aSBarry Smith   if (m) *m = A->M;
1410752156aSBarry Smith   if (n) *n = A->N;
1423a40ed3dSBarry Smith   PetscFunctionReturn(0);
143b97cf49bSBarry Smith }
144b97cf49bSBarry Smith 
145b97cf49bSBarry Smith #undef __FUNC__
146b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatGetSize_MPIAdj"
1473eda8832SBarry Smith int MatGetLocalSize_MPIAdj(Mat A,int *m,int *n)
148b97cf49bSBarry Smith {
1493eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
150433994e6SBarry Smith   PetscFunctionBegin;
1510752156aSBarry Smith   if (m) *m = a->m;
1520752156aSBarry Smith   if (n) *n = A->N;
1533a40ed3dSBarry Smith   PetscFunctionReturn(0);
154b97cf49bSBarry Smith }
155b97cf49bSBarry Smith 
156b97cf49bSBarry Smith #undef __FUNC__
157b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatGetOwnershipRange_MPIAdj"
1583eda8832SBarry Smith int MatGetOwnershipRange_MPIAdj(Mat A,int *m,int *n)
159b97cf49bSBarry Smith {
1603eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
161433994e6SBarry Smith   PetscFunctionBegin;
162c2e958feSBarry Smith   if (m) *m = a->rstart;
163c2e958feSBarry Smith   if (n) *n = a->rend;
1643a40ed3dSBarry Smith   PetscFunctionReturn(0);
165b97cf49bSBarry Smith }
166b97cf49bSBarry Smith 
167b97cf49bSBarry Smith #undef __FUNC__
168b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatGetRow_MPIAdj"
1693eda8832SBarry Smith int MatGetRow_MPIAdj(Mat A,int row,int *nz,int **idx,Scalar **v)
170b97cf49bSBarry Smith {
1713eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
172b97cf49bSBarry Smith   int        *itmp;
173b97cf49bSBarry Smith 
174433994e6SBarry Smith   PetscFunctionBegin;
1750752156aSBarry Smith   row -= a->rstart;
1760752156aSBarry Smith 
177*29bbc08cSBarry Smith   if (row < 0 || row >= a->m) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Row out of range");
178b97cf49bSBarry Smith 
179b97cf49bSBarry Smith   *nz = a->i[row+1] - a->i[row];
180b97cf49bSBarry Smith   if (v) *v = PETSC_NULL;
181b97cf49bSBarry Smith   if (idx) {
182b97cf49bSBarry Smith     itmp = a->j + a->i[row];
183b97cf49bSBarry Smith     if (*nz) {
184b97cf49bSBarry Smith       *idx = itmp;
185b97cf49bSBarry Smith     }
186b97cf49bSBarry Smith     else *idx = 0;
187b97cf49bSBarry Smith   }
1883a40ed3dSBarry Smith   PetscFunctionReturn(0);
189b97cf49bSBarry Smith }
190b97cf49bSBarry Smith 
191b97cf49bSBarry Smith #undef __FUNC__
192b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatRestoreRow_MPIAdj"
1933eda8832SBarry Smith int MatRestoreRow_MPIAdj(Mat A,int row,int *nz,int **idx,Scalar **v)
194b97cf49bSBarry Smith {
195433994e6SBarry Smith   PetscFunctionBegin;
1963a40ed3dSBarry Smith   PetscFunctionReturn(0);
197b97cf49bSBarry Smith }
198b97cf49bSBarry Smith 
199b97cf49bSBarry Smith #undef __FUNC__
200b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatGetBlockSize_MPIAdj"
2013eda8832SBarry Smith int MatGetBlockSize_MPIAdj(Mat A,int *bs)
202b97cf49bSBarry Smith {
203433994e6SBarry Smith   PetscFunctionBegin;
204b97cf49bSBarry Smith   *bs = 1;
2053a40ed3dSBarry Smith   PetscFunctionReturn(0);
206b97cf49bSBarry Smith }
207b97cf49bSBarry Smith 
208b97cf49bSBarry Smith 
209b97cf49bSBarry Smith #undef __FUNC__
210b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatEqual_MPIAdj"
2113eda8832SBarry Smith int MatEqual_MPIAdj(Mat A,Mat B,PetscTruth* flg)
212b97cf49bSBarry Smith {
2133eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj *)A->data,*b = (Mat_MPIAdj *)B->data;
2140f5bd95cSBarry Smith   int         ierr;
2150f5bd95cSBarry Smith   PetscTruth  flag;
216b97cf49bSBarry Smith 
217433994e6SBarry Smith   PetscFunctionBegin;
218*29bbc08cSBarry Smith   if (B->type != MATMPIADJ) SETERRQ(PETSC_ERR_ARG_INCOMP,"Matrices must be same type");
219b97cf49bSBarry Smith 
220b97cf49bSBarry Smith   /* If the  matrix dimensions are not equal,or no of nonzeros */
2210752156aSBarry Smith   if ((a->m != b->m) ||(a->nz != b->nz)) {
2220f5bd95cSBarry Smith     flag = PETSC_FALSE;
223b97cf49bSBarry Smith   }
224b97cf49bSBarry Smith 
225b97cf49bSBarry Smith   /* if the a->i are the same */
2260f5bd95cSBarry Smith   ierr = PetscMemcmp(a->i,b->i,(a->m+1)*sizeof(int),&flag);CHKERRQ(ierr);
227b97cf49bSBarry Smith 
228b97cf49bSBarry Smith   /* if a->j are the same */
2290f5bd95cSBarry Smith   ierr = PetscMemcmp(a->j,b->j,(a->nz)*sizeof(int),&flag);CHKERRQ(ierr);
230b97cf49bSBarry Smith 
231ca161407SBarry Smith   ierr = MPI_Allreduce(&flag,flg,1,MPI_INT,MPI_LAND,A->comm);CHKERRQ(ierr);
2323a40ed3dSBarry Smith   PetscFunctionReturn(0);
233b97cf49bSBarry Smith }
234b97cf49bSBarry Smith 
235b97cf49bSBarry Smith 
236b97cf49bSBarry Smith /* -------------------------------------------------------------------*/
2370b3b1487SBarry Smith static struct _MatOps MatOps_Values = {0,
2383eda8832SBarry Smith        MatGetRow_MPIAdj,
2393eda8832SBarry Smith        MatRestoreRow_MPIAdj,
240b97cf49bSBarry Smith        0,
241b97cf49bSBarry Smith        0,
242b97cf49bSBarry Smith        0,
243b97cf49bSBarry Smith        0,
2440b3b1487SBarry Smith        0,
2450b3b1487SBarry Smith        0,
2460b3b1487SBarry Smith        0,
2470b3b1487SBarry Smith        0,
2480b3b1487SBarry Smith        0,
2490b3b1487SBarry Smith        0,
2500b3b1487SBarry Smith        0,
2510b3b1487SBarry Smith        0,
2520b3b1487SBarry Smith        0,
2533eda8832SBarry Smith        MatEqual_MPIAdj,
2540b3b1487SBarry Smith        0,
2550b3b1487SBarry Smith        0,
2560b3b1487SBarry Smith        0,
2570b3b1487SBarry Smith        0,
2580b3b1487SBarry Smith        0,
2590b3b1487SBarry Smith        0,
2603eda8832SBarry Smith        MatSetOption_MPIAdj,
2610b3b1487SBarry Smith        0,
2620b3b1487SBarry Smith        0,
2630b3b1487SBarry Smith        0,
2640b3b1487SBarry Smith        0,
2650b3b1487SBarry Smith        0,
2660b3b1487SBarry Smith        0,
2673eda8832SBarry Smith        MatGetSize_MPIAdj,
2683eda8832SBarry Smith        MatGetLocalSize_MPIAdj,
2693eda8832SBarry Smith        MatGetOwnershipRange_MPIAdj,
2700b3b1487SBarry Smith        0,
2710b3b1487SBarry Smith        0,
2720b3b1487SBarry Smith        0,
2730b3b1487SBarry Smith        0,
2740b3b1487SBarry Smith        0,
2750b3b1487SBarry Smith        0,
2760b3b1487SBarry Smith        0,
2770b3b1487SBarry Smith        0,
2780b3b1487SBarry Smith        0,
2790b3b1487SBarry Smith        0,
2800b3b1487SBarry Smith        0,
2810b3b1487SBarry Smith        0,
2820b3b1487SBarry Smith        0,
2830b3b1487SBarry Smith        0,
2840b3b1487SBarry Smith        0,
2850b3b1487SBarry Smith        0,
2860b3b1487SBarry Smith        0,
2870b3b1487SBarry Smith        0,
288b97cf49bSBarry Smith        0,
2893eda8832SBarry Smith        MatGetBlockSize_MPIAdj,
290b97cf49bSBarry Smith        0,
291b97cf49bSBarry Smith        0,
292b97cf49bSBarry Smith        0,
293b97cf49bSBarry Smith        0,
294b97cf49bSBarry Smith        0,
2950752156aSBarry Smith        0,
2960752156aSBarry Smith        0,
2970b3b1487SBarry Smith        0,
2980b3b1487SBarry Smith        0,
2990b3b1487SBarry Smith        0,
300b9b97703SBarry Smith        MatDestroy_MPIAdj,
301b9b97703SBarry Smith        MatView_MPIAdj,
3020b3b1487SBarry Smith        MatGetMaps_Petsc};
303b97cf49bSBarry Smith 
304b97cf49bSBarry Smith 
305b97cf49bSBarry Smith #undef __FUNC__
306b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatCreateMPIAdj"
307b97cf49bSBarry Smith /*@C
3083eda8832SBarry Smith    MatCreateMPIAdj - Creates a sparse matrix representing an adjacency list.
309b97cf49bSBarry Smith    The matrix does not have numerical values associated with it, but is
310b97cf49bSBarry Smith    intended for ordering (to reduce bandwidth etc) and partitioning.
311b97cf49bSBarry Smith 
312ef5ee4d1SLois Curfman McInnes    Collective on MPI_Comm
313ef5ee4d1SLois Curfman McInnes 
314b97cf49bSBarry Smith    Input Parameters:
315c2e958feSBarry Smith +  comm - MPI communicator
3160752156aSBarry Smith .  m - number of local rows
317b97cf49bSBarry Smith .  n - number of columns
318b97cf49bSBarry Smith .  i - the indices into j for the start of each row
319329f5518SBarry Smith .  j - the column indices for each row (sorted for each row).
320ef5ee4d1SLois Curfman McInnes        The indices in i and j start with zero (NOT with one).
321329f5518SBarry Smith -  values -[optional] edge weights
322b97cf49bSBarry Smith 
323b97cf49bSBarry Smith    Output Parameter:
324b97cf49bSBarry Smith .  A - the matrix
325b97cf49bSBarry Smith 
32615091d37SBarry Smith    Level: intermediate
32715091d37SBarry Smith 
3284bc6d8c0SBarry Smith    Notes: This matrix object does not support most matrix operations, include
3294bc6d8c0SBarry Smith    MatSetValues().
330c2e958feSBarry Smith    You must NOT free the ii, values and jj arrays yourself. PETSc will free them
3311198db28SBarry Smith    when the matrix is destroyed. And you must allocate them with PetscMalloc(). If you
3321198db28SBarry Smith     call from Fortran you need not create the arrays with PetscMalloc().
333327e1a73SBarry Smith    Should not include the matrix diagonals.
334b97cf49bSBarry Smith 
335ef5ee4d1SLois Curfman McInnes    Possible values for MatSetOption() - MAT_STRUCTURALLY_SYMMETRIC
336b97cf49bSBarry Smith 
33791e9ee9fSBarry Smith .seealso: MatCreate(), MatCreateSeqAdj(), MatGetOrdering()
338b97cf49bSBarry Smith @*/
3393eda8832SBarry Smith int MatCreateMPIAdj(MPI_Comm comm,int m,int n,int *i,int *j,int *values,Mat *A)
340b97cf49bSBarry Smith {
341b97cf49bSBarry Smith   Mat        B;
3423eda8832SBarry Smith   Mat_MPIAdj *b;
343f1af5d2fSBarry Smith   int        ii,ierr,size,rank;
344f1af5d2fSBarry Smith   PetscTruth flg;
345b97cf49bSBarry Smith 
346433994e6SBarry Smith   PetscFunctionBegin;
347d132466eSBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
348d132466eSBarry Smith   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
349b97cf49bSBarry Smith 
350b97cf49bSBarry Smith   *A                  = 0;
3513eda8832SBarry Smith   PetscHeaderCreate(B,_p_Mat,struct _MatOps,MAT_COOKIE,MATMPIADJ,"Mat",comm,MatDestroy,MatView);
352b97cf49bSBarry Smith   PLogObjectCreate(B);
3533eda8832SBarry Smith   B->data             = (void*)(b = PetscNew(Mat_MPIAdj));CHKPTRQ(b);
3543eda8832SBarry Smith   ierr                = PetscMemzero(b,sizeof(Mat_MPIAdj));CHKERRQ(ierr);
355549d3d68SSatish Balay   ierr                = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
356b97cf49bSBarry Smith   B->factor           = 0;
357b97cf49bSBarry Smith   B->lupivotthreshold = 1.0;
358b97cf49bSBarry Smith   B->mapping          = 0;
359b97cf49bSBarry Smith   B->assembled        = PETSC_FALSE;
360b97cf49bSBarry Smith 
3610752156aSBarry Smith   b->m = m; B->m = m;
362ca161407SBarry Smith   ierr = MPI_Allreduce(&m,&B->M,1,MPI_INT,MPI_SUM,comm);CHKERRQ(ierr);
3630752156aSBarry Smith   B->n = n; B->N = n;
3640752156aSBarry Smith 
365c7fcc2eaSBarry Smith   /* the information in the maps duplicates the information computed below, eventually
366c7fcc2eaSBarry Smith      we should remove the duplicate information that is not contained in the maps */
367488ecbafSBarry Smith   ierr = MapCreateMPI(comm,m,B->M,&B->rmap);CHKERRQ(ierr);
368c7fcc2eaSBarry Smith   /* we don't know the "local columns" so just use the row information :-(*/
369488ecbafSBarry Smith   ierr = MapCreateMPI(comm,m,B->M,&B->cmap);CHKERRQ(ierr);
370c7fcc2eaSBarry Smith 
3710752156aSBarry Smith   b->rowners = (int*)PetscMalloc((size+1)*sizeof(int));CHKPTRQ(b->rowners);
3723eda8832SBarry Smith   PLogObjectMemory(B,(size+2)*sizeof(int)+sizeof(struct _p_Mat)+sizeof(Mat_MPIAdj));
373ca161407SBarry Smith   ierr = MPI_Allgather(&m,1,MPI_INT,b->rowners+1,1,MPI_INT,comm);CHKERRQ(ierr);
3740752156aSBarry Smith   b->rowners[0] = 0;
3750752156aSBarry Smith   for (ii=2; ii<=size; ii++) {
3760752156aSBarry Smith     b->rowners[ii] += b->rowners[ii-1];
3770752156aSBarry Smith   }
3780752156aSBarry Smith   b->rstart = b->rowners[rank];
3790752156aSBarry Smith   b->rend   = b->rowners[rank+1];
380b97cf49bSBarry Smith 
3819860f2b2SBarry Smith #if defined(PETSC_USE_BOPT_g)
382*29bbc08cSBarry Smith   if (i[0] != 0) SETERRQ1(1,"First i[] index must be zero, instead it is %d\n",i[0]);
383c2e958feSBarry Smith   for (ii=1; ii<m; ii++) {
384cd5578b5SBarry Smith     if (i[ii] < 0 || i[ii] < i[ii-1]) {
385*29bbc08cSBarry Smith       SETERRQ4(1,"i[%d] index is out of range: i[%d]",ii,i[ii],ii-1,i[ii-1]);
386c2e958feSBarry Smith     }
387c2e958feSBarry Smith   }
388c2e958feSBarry Smith   for (ii=0; ii<i[m]; ii++) {
389cd5578b5SBarry Smith     if (j[ii] < 0 || j[ii] >= B->N) {
390*29bbc08cSBarry Smith       SETERRQ2(1,"Column index %d out of range %d\n",ii,j[ii]);
391c2e958feSBarry Smith     }
392c2e958feSBarry Smith   }
393c2e958feSBarry Smith #endif
394c2e958feSBarry Smith 
395b97cf49bSBarry Smith   b->j  = j;
396b97cf49bSBarry Smith   b->i  = i;
397329f5518SBarry Smith   b->values = values;
398b97cf49bSBarry Smith 
399b97cf49bSBarry Smith   b->nz               = i[m];
400b97cf49bSBarry Smith   b->diag             = 0;
401b97cf49bSBarry Smith   b->symmetric        = PETSC_FALSE;
4020400557aSBarry Smith   b->freeaij          = PETSC_TRUE;
403b97cf49bSBarry Smith   *A = B;
404b97cf49bSBarry Smith 
405b97cf49bSBarry Smith   ierr = OptionsHasName(PETSC_NULL,"-help",&flg);CHKERRQ(ierr);
406b97cf49bSBarry Smith   if (flg) {ierr = MatPrintHelp(B);CHKERRQ(ierr); }
407b97cf49bSBarry Smith   ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
408b97cf49bSBarry Smith   ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
4093a40ed3dSBarry Smith   PetscFunctionReturn(0);
410b97cf49bSBarry Smith }
411b97cf49bSBarry Smith 
412b97cf49bSBarry Smith 
413b97cf49bSBarry Smith 
414c2e958feSBarry Smith #undef __FUNC__
415b2863d3aSBarry Smith #define __FUNC__ /*<a name=""></a>*/"MatConvert_MPIAdj"
4163eda8832SBarry Smith int MatConvert_MPIAdj(Mat A,MatType type,Mat *B)
417c2e958feSBarry Smith {
4184c49b128SBarry Smith   int      i,ierr,m,N,nzeros = 0,*ia,*ja,*rj,len,rstart,cnt,j,*a;
419c2e958feSBarry Smith   Scalar   *ra;
420c2e958feSBarry Smith   MPI_Comm comm;
421c2e958feSBarry Smith 
422c2e958feSBarry Smith   PetscFunctionBegin;
423c2e958feSBarry Smith   ierr = MatGetSize(A,PETSC_NULL,&N);CHKERRQ(ierr);
424c2e958feSBarry Smith   ierr = MatGetLocalSize(A,&m,PETSC_NULL);CHKERRQ(ierr);
425c2e958feSBarry Smith   ierr = MatGetOwnershipRange(A,&rstart,PETSC_NULL);CHKERRQ(ierr);
426c2e958feSBarry Smith 
427c2e958feSBarry Smith   /* count the number of nonzeros per row */
428c2e958feSBarry Smith   for (i=0; i<m; i++) {
429c2e958feSBarry Smith     ierr   = MatGetRow(A,i+rstart,&len,&rj,PETSC_NULL);CHKERRQ(ierr);
430c2e958feSBarry Smith     for (j=0; j<len; j++) {
431c2e958feSBarry Smith       if (rj[j] == i+rstart) {len--; break;}    /* don't count diagonal */
432c2e958feSBarry Smith     }
433c2e958feSBarry Smith     ierr   = MatRestoreRow(A,i+rstart,&len,&rj,PETSC_NULL);CHKERRQ(ierr);
434c2e958feSBarry Smith     nzeros += len;
435c2e958feSBarry Smith   }
436c2e958feSBarry Smith 
437c2e958feSBarry Smith   /* malloc space for nonzeros */
438c2e958feSBarry Smith   a  = (int*)PetscMalloc((nzeros+1)*sizeof(int));CHKPTRQ(a);
439c2e958feSBarry Smith   ia = (int*)PetscMalloc((N+1)*sizeof(int));CHKPTRQ(ia);
440c2e958feSBarry Smith   ja = (int*)PetscMalloc((nzeros+1)*sizeof(int));CHKPTRQ(ja);
441c2e958feSBarry Smith 
442c2e958feSBarry Smith   nzeros = 0;
443c2e958feSBarry Smith   ia[0]  = 0;
444c2e958feSBarry Smith   for (i=0; i<m; i++) {
445c2e958feSBarry Smith     ierr    = MatGetRow(A,i+rstart,&len,&rj,&ra);CHKERRQ(ierr);
446c2e958feSBarry Smith     cnt     = 0;
447c2e958feSBarry Smith     for (j=0; j<len; j++) {
448c2e958feSBarry Smith       if (rj[j] != i+rstart) { /* if not diagonal */
4494c49b128SBarry Smith         a[nzeros+cnt]    = (int) PetscAbsScalar(ra[j]);
450c2e958feSBarry Smith         ja[nzeros+cnt++] = rj[j];
451c2e958feSBarry Smith       }
452c2e958feSBarry Smith     }
453c2e958feSBarry Smith     ierr    = MatRestoreRow(A,i+rstart,&len,&rj,&ra);CHKERRQ(ierr);
454c2e958feSBarry Smith     nzeros += cnt;
455c2e958feSBarry Smith     ia[i+1] = nzeros;
456c2e958feSBarry Smith   }
457c2e958feSBarry Smith 
458c2e958feSBarry Smith   ierr = PetscObjectGetComm((PetscObject)A,&comm);CHKERRQ(ierr);
4593eda8832SBarry Smith   ierr = MatCreateMPIAdj(comm,m,N,ia,ja,a,B);CHKERRQ(ierr);
460c2e958feSBarry Smith 
461c2e958feSBarry Smith   PetscFunctionReturn(0);
462c2e958feSBarry Smith }
463433994e6SBarry Smith 
464433994e6SBarry Smith 
465433994e6SBarry Smith 
466433994e6SBarry Smith 
467433994e6SBarry Smith 
468433994e6SBarry Smith 
469