xref: /petsc/src/mat/impls/adj/mpi/mpiadj.c (revision 87828ca270d8140797fd4271705413c4ecfcb535)
1*87828ca2SBarry Smith /*$Id: mpiadj.c,v 1.64 2001/07/20 21:20:46 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 
94a2ae208SSatish Balay #undef __FUNCT__
104a2ae208SSatish Balay #define __FUNCT__ "MatView_MPIAdj_ASCII"
11b0a32e0cSBarry Smith int MatView_MPIAdj_ASCII(Mat A,PetscViewer viewer)
12b97cf49bSBarry Smith {
133eda8832SBarry Smith   Mat_MPIAdj        *a = (Mat_MPIAdj*)A->data;
14fb9695e5SSatish Balay   int               ierr,i,j,m = A->m;
15fb9695e5SSatish Balay   char              *name;
16ce1411ecSBarry Smith   PetscViewerFormat format;
17b97cf49bSBarry Smith 
18433994e6SBarry Smith   PetscFunctionBegin;
193a7fca6bSBarry Smith   ierr = PetscObjectGetName((PetscObject)A,&name);CHKERRQ(ierr);
20b0a32e0cSBarry Smith   ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
21fb9695e5SSatish Balay   if (format == PETSC_VIEWER_ASCII_INFO) {
223a40ed3dSBarry Smith     PetscFunctionReturn(0);
23fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_MATLAB) {
24ffac6cdbSBarry Smith     SETERRQ(PETSC_ERR_SUP,"Matlab format not supported");
250752156aSBarry Smith   } else {
26b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_NO);CHKERRQ(ierr);
27b97cf49bSBarry Smith     for (i=0; i<m; i++) {
28b0a32e0cSBarry Smith       ierr = PetscViewerASCIISynchronizedPrintf(viewer,"row %d:",i+a->rstart);CHKERRQ(ierr);
29b97cf49bSBarry Smith       for (j=a->i[i]; j<a->i[i+1]; j++) {
30b0a32e0cSBarry Smith         ierr = PetscViewerASCIISynchronizedPrintf(viewer," %d ",a->j[j]);CHKERRQ(ierr);
310752156aSBarry Smith       }
32b0a32e0cSBarry Smith       ierr = PetscViewerASCIISynchronizedPrintf(viewer,"\n");CHKERRQ(ierr);
33b97cf49bSBarry Smith     }
34b0a32e0cSBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_YES);CHKERRQ(ierr);
35b97cf49bSBarry Smith   }
36b0a32e0cSBarry Smith   ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
373a40ed3dSBarry Smith   PetscFunctionReturn(0);
38b97cf49bSBarry Smith }
39b97cf49bSBarry Smith 
404a2ae208SSatish Balay #undef __FUNCT__
414a2ae208SSatish Balay #define __FUNCT__ "MatView_MPIAdj"
42b0a32e0cSBarry Smith int MatView_MPIAdj(Mat A,PetscViewer viewer)
43b97cf49bSBarry Smith {
44b97cf49bSBarry Smith   int        ierr;
456831982aSBarry Smith   PetscTruth isascii;
46b97cf49bSBarry Smith 
47433994e6SBarry Smith   PetscFunctionBegin;
48b0a32e0cSBarry Smith   ierr = PetscTypeCompare((PetscObject)viewer,PETSC_VIEWER_ASCII,&isascii);CHKERRQ(ierr);
490f5bd95cSBarry Smith   if (isascii) {
503eda8832SBarry Smith     ierr = MatView_MPIAdj_ASCII(A,viewer);CHKERRQ(ierr);
515cd90555SBarry Smith   } else {
5229bbc08cSBarry Smith     SETERRQ1(1,"Viewer type %s not supported by MPIAdj",((PetscObject)viewer)->type_name);
53b97cf49bSBarry Smith   }
543a40ed3dSBarry Smith   PetscFunctionReturn(0);
55b97cf49bSBarry Smith }
56b97cf49bSBarry Smith 
574a2ae208SSatish Balay #undef __FUNCT__
584a2ae208SSatish Balay #define __FUNCT__ "MatDestroy_MPIAdj"
593eda8832SBarry Smith int MatDestroy_MPIAdj(Mat mat)
60b97cf49bSBarry Smith {
613eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)mat->data;
6294d884c6SBarry Smith   int        ierr;
6394d884c6SBarry Smith 
6494d884c6SBarry Smith   PetscFunctionBegin;
65aa482453SBarry Smith #if defined(PETSC_USE_LOG)
66b0a32e0cSBarry Smith   PetscLogObjectState((PetscObject)mat,"Rows=%d, Cols=%d, NZ=%d",mat->m,mat->n,a->nz);
67b97cf49bSBarry Smith #endif
68606d414cSSatish Balay   if (a->diag) {ierr = PetscFree(a->diag);CHKERRQ(ierr);}
690400557aSBarry Smith   if (a->freeaij) {
70606d414cSSatish Balay     ierr = PetscFree(a->i);CHKERRQ(ierr);
71606d414cSSatish Balay     ierr = PetscFree(a->j);CHKERRQ(ierr);
721198db28SBarry Smith     if (a->values) {ierr = PetscFree(a->values);CHKERRQ(ierr);}
730400557aSBarry Smith   }
740400557aSBarry Smith   ierr = PetscFree(a->rowners);CHKERRQ(ierr);
751198db28SBarry Smith   ierr = PetscFree(a);CHKERRQ(ierr);
763a40ed3dSBarry Smith   PetscFunctionReturn(0);
77b97cf49bSBarry Smith }
78b97cf49bSBarry Smith 
794a2ae208SSatish Balay #undef __FUNCT__
804a2ae208SSatish Balay #define __FUNCT__ "MatSetOption_MPIAdj"
813eda8832SBarry Smith int MatSetOption_MPIAdj(Mat A,MatOption op)
82b97cf49bSBarry Smith {
833eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
84b97cf49bSBarry Smith 
85433994e6SBarry Smith   PetscFunctionBegin;
8612c028f9SKris Buschelman   switch (op) {
8712c028f9SKris Buschelman   case MAT_STRUCTURALLY_SYMMETRIC:
88b97cf49bSBarry Smith     a->symmetric = PETSC_TRUE;
8912c028f9SKris Buschelman     break;
90d03495bdSKris Buschelman   case MAT_USE_SINGLE_PRECISION_SOLVES:
9112c028f9SKris Buschelman   default:
92b0a32e0cSBarry Smith     PetscLogInfo(A,"MatSetOption_MPIAdj:Option ignored\n");
9312c028f9SKris Buschelman     break;
94b97cf49bSBarry Smith   }
953a40ed3dSBarry Smith   PetscFunctionReturn(0);
96b97cf49bSBarry Smith }
97b97cf49bSBarry Smith 
98b97cf49bSBarry Smith 
99b97cf49bSBarry Smith /*
100b97cf49bSBarry Smith      Adds diagonal pointers to sparse matrix structure.
101b97cf49bSBarry Smith */
102b97cf49bSBarry Smith 
1034a2ae208SSatish Balay #undef __FUNCT__
1044a2ae208SSatish Balay #define __FUNCT__ "MatMarkDiagonal_MPIAdj"
1053eda8832SBarry Smith int MatMarkDiagonal_MPIAdj(Mat A)
106b97cf49bSBarry Smith {
1073eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
10882502324SSatish Balay   int        i,j,*diag,m = A->m,ierr;
109b97cf49bSBarry Smith 
110433994e6SBarry Smith   PetscFunctionBegin;
111b0a32e0cSBarry Smith   ierr = PetscMalloc((m+1)*sizeof(int),&diag);CHKERRQ(ierr);
112b0a32e0cSBarry Smith   PetscLogObjectMemory(A,(m+1)*sizeof(int));
113273d9f13SBarry Smith   for (i=0; i<A->m; i++) {
114b97cf49bSBarry Smith     for (j=a->i[i]; j<a->i[i+1]; j++) {
115b97cf49bSBarry Smith       if (a->j[j] == i) {
116b97cf49bSBarry Smith         diag[i] = j;
117b97cf49bSBarry Smith         break;
118b97cf49bSBarry Smith       }
119b97cf49bSBarry Smith     }
120b97cf49bSBarry Smith   }
121b97cf49bSBarry Smith   a->diag = diag;
1223a40ed3dSBarry Smith   PetscFunctionReturn(0);
123b97cf49bSBarry Smith }
124b97cf49bSBarry Smith 
1254a2ae208SSatish Balay #undef __FUNCT__
1264a2ae208SSatish Balay #define __FUNCT__ "MatGetOwnershipRange_MPIAdj"
1273eda8832SBarry Smith int MatGetOwnershipRange_MPIAdj(Mat A,int *m,int *n)
128b97cf49bSBarry Smith {
1293eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
130433994e6SBarry Smith   PetscFunctionBegin;
131c2e958feSBarry Smith   if (m) *m = a->rstart;
132c2e958feSBarry Smith   if (n) *n = a->rend;
1333a40ed3dSBarry Smith   PetscFunctionReturn(0);
134b97cf49bSBarry Smith }
135b97cf49bSBarry Smith 
1364a2ae208SSatish Balay #undef __FUNCT__
1374a2ae208SSatish Balay #define __FUNCT__ "MatGetRow_MPIAdj"
138*87828ca2SBarry Smith int MatGetRow_MPIAdj(Mat A,int row,int *nz,int **idx,PetscScalar **v)
139b97cf49bSBarry Smith {
1403eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj*)A->data;
141b97cf49bSBarry Smith   int        *itmp;
142b97cf49bSBarry Smith 
143433994e6SBarry Smith   PetscFunctionBegin;
1440752156aSBarry Smith   row -= a->rstart;
1450752156aSBarry Smith 
146273d9f13SBarry Smith   if (row < 0 || row >= A->m) SETERRQ(PETSC_ERR_ARG_OUTOFRANGE,"Row out of range");
147b97cf49bSBarry Smith 
148b97cf49bSBarry Smith   *nz = a->i[row+1] - a->i[row];
149b97cf49bSBarry Smith   if (v) *v = PETSC_NULL;
150b97cf49bSBarry Smith   if (idx) {
151b97cf49bSBarry Smith     itmp = a->j + a->i[row];
152b97cf49bSBarry Smith     if (*nz) {
153b97cf49bSBarry Smith       *idx = itmp;
154b97cf49bSBarry Smith     }
155b97cf49bSBarry Smith     else *idx = 0;
156b97cf49bSBarry Smith   }
1573a40ed3dSBarry Smith   PetscFunctionReturn(0);
158b97cf49bSBarry Smith }
159b97cf49bSBarry Smith 
1604a2ae208SSatish Balay #undef __FUNCT__
1614a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRow_MPIAdj"
162*87828ca2SBarry Smith int MatRestoreRow_MPIAdj(Mat A,int row,int *nz,int **idx,PetscScalar **v)
163b97cf49bSBarry Smith {
164433994e6SBarry Smith   PetscFunctionBegin;
1653a40ed3dSBarry Smith   PetscFunctionReturn(0);
166b97cf49bSBarry Smith }
167b97cf49bSBarry Smith 
1684a2ae208SSatish Balay #undef __FUNCT__
1694a2ae208SSatish Balay #define __FUNCT__ "MatGetBlockSize_MPIAdj"
1703eda8832SBarry Smith int MatGetBlockSize_MPIAdj(Mat A,int *bs)
171b97cf49bSBarry Smith {
172433994e6SBarry Smith   PetscFunctionBegin;
173b97cf49bSBarry Smith   *bs = 1;
1743a40ed3dSBarry Smith   PetscFunctionReturn(0);
175b97cf49bSBarry Smith }
176b97cf49bSBarry Smith 
177b97cf49bSBarry Smith 
1784a2ae208SSatish Balay #undef __FUNCT__
1794a2ae208SSatish Balay #define __FUNCT__ "MatEqual_MPIAdj"
1803eda8832SBarry Smith int MatEqual_MPIAdj(Mat A,Mat B,PetscTruth* flg)
181b97cf49bSBarry Smith {
1823eda8832SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj *)A->data,*b = (Mat_MPIAdj *)B->data;
1830f5bd95cSBarry Smith   int         ierr;
1840f5bd95cSBarry Smith   PetscTruth  flag;
185b97cf49bSBarry Smith 
186433994e6SBarry Smith   PetscFunctionBegin;
187273d9f13SBarry Smith   ierr = PetscTypeCompare((PetscObject)B,MATMPIADJ,&flag);CHKERRQ(ierr);
188273d9f13SBarry Smith   if (!flag) SETERRQ(PETSC_ERR_ARG_INCOMP,"Matrices must be same type");
189b97cf49bSBarry Smith 
190b97cf49bSBarry Smith   /* If the  matrix dimensions are not equal,or no of nonzeros */
191273d9f13SBarry Smith   if ((A->m != B->m) ||(a->nz != b->nz)) {
1920f5bd95cSBarry Smith     flag = PETSC_FALSE;
193b97cf49bSBarry Smith   }
194b97cf49bSBarry Smith 
195b97cf49bSBarry Smith   /* if the a->i are the same */
196273d9f13SBarry Smith   ierr = PetscMemcmp(a->i,b->i,(A->m+1)*sizeof(int),&flag);CHKERRQ(ierr);
197b97cf49bSBarry Smith 
198b97cf49bSBarry Smith   /* if a->j are the same */
1990f5bd95cSBarry Smith   ierr = PetscMemcmp(a->j,b->j,(a->nz)*sizeof(int),&flag);CHKERRQ(ierr);
200b97cf49bSBarry Smith 
201ca161407SBarry Smith   ierr = MPI_Allreduce(&flag,flg,1,MPI_INT,MPI_LAND,A->comm);CHKERRQ(ierr);
2023a40ed3dSBarry Smith   PetscFunctionReturn(0);
203b97cf49bSBarry Smith }
204b97cf49bSBarry Smith 
2054a2ae208SSatish Balay #undef __FUNCT__
2064a2ae208SSatish Balay #define __FUNCT__ "MatGetRowIJ_MPIAdj"
2076cd91f64SBarry Smith int MatGetRowIJ_MPIAdj(Mat A,int oshift,PetscTruth symmetric,int *m,int **ia,int **ja,PetscTruth *done)
2086cd91f64SBarry Smith {
209d42735a1SBarry Smith   int        ierr,size,i;
2106cd91f64SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj *)A->data;
2116cd91f64SBarry Smith 
2126cd91f64SBarry Smith   PetscFunctionBegin;
2136cd91f64SBarry Smith   ierr = MPI_Comm_size(A->comm,&size);CHKERRQ(ierr);
2146cd91f64SBarry Smith   if (size > 1) {*done = PETSC_FALSE; PetscFunctionReturn(0);}
2156cd91f64SBarry Smith   *m    = A->m;
2166cd91f64SBarry Smith   *ia   = a->i;
2176cd91f64SBarry Smith   *ja   = a->j;
2186cd91f64SBarry Smith   *done = PETSC_TRUE;
219d42735a1SBarry Smith   if (oshift) {
220d42735a1SBarry Smith     for (i=0; i<(*ia)[*m]; i++) {
221d42735a1SBarry Smith       (*ja)[i]++;
222d42735a1SBarry Smith     }
223d42735a1SBarry Smith     for (i=0; i<=(*m); i++) (*ia)[i]++;
224d42735a1SBarry Smith   }
225d42735a1SBarry Smith   PetscFunctionReturn(0);
226d42735a1SBarry Smith }
227d42735a1SBarry Smith 
2284a2ae208SSatish Balay #undef __FUNCT__
2294a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRowIJ_MPIAdj"
230d42735a1SBarry Smith int MatRestoreRowIJ_MPIAdj(Mat A,int oshift,PetscTruth symmetric,int *m,int **ia,int **ja,PetscTruth *done)
231d42735a1SBarry Smith {
232d42735a1SBarry Smith   int        i;
233d42735a1SBarry Smith   Mat_MPIAdj *a = (Mat_MPIAdj *)A->data;
234d42735a1SBarry Smith 
235d42735a1SBarry Smith   PetscFunctionBegin;
236c5b3d447SBarry Smith   if (ia && a->i != *ia) SETERRQ(1,"ia passed back is not one obtained with MatGetRowIJ()");
237c5b3d447SBarry Smith   if (ja && a->j != *ja) SETERRQ(1,"ja passed back is not one obtained with MatGetRowIJ()");
238d42735a1SBarry Smith   if (oshift) {
239d42735a1SBarry Smith     for (i=0; i<=(*m); i++) (*ia)[i]--;
240d42735a1SBarry Smith     for (i=0; i<(*ia)[*m]; i++) {
241d42735a1SBarry Smith       (*ja)[i]--;
242d42735a1SBarry Smith     }
243d42735a1SBarry Smith   }
2446cd91f64SBarry Smith   PetscFunctionReturn(0);
2456cd91f64SBarry Smith }
246b97cf49bSBarry Smith 
247b97cf49bSBarry Smith /* -------------------------------------------------------------------*/
2480b3b1487SBarry Smith static struct _MatOps MatOps_Values = {0,
2493eda8832SBarry Smith        MatGetRow_MPIAdj,
2503eda8832SBarry Smith        MatRestoreRow_MPIAdj,
251b97cf49bSBarry Smith        0,
252b97cf49bSBarry Smith        0,
253b97cf49bSBarry Smith        0,
254b97cf49bSBarry Smith        0,
2550b3b1487SBarry Smith        0,
2560b3b1487SBarry Smith        0,
2570b3b1487SBarry Smith        0,
2580b3b1487SBarry Smith        0,
2590b3b1487SBarry Smith        0,
2600b3b1487SBarry Smith        0,
2610b3b1487SBarry Smith        0,
2620b3b1487SBarry Smith        0,
2630b3b1487SBarry Smith        0,
2643eda8832SBarry Smith        MatEqual_MPIAdj,
2650b3b1487SBarry Smith        0,
2660b3b1487SBarry Smith        0,
2670b3b1487SBarry Smith        0,
2680b3b1487SBarry Smith        0,
2690b3b1487SBarry Smith        0,
2700b3b1487SBarry Smith        0,
2713eda8832SBarry Smith        MatSetOption_MPIAdj,
2720b3b1487SBarry Smith        0,
2730b3b1487SBarry Smith        0,
2740b3b1487SBarry Smith        0,
2750b3b1487SBarry Smith        0,
2760b3b1487SBarry Smith        0,
2770b3b1487SBarry Smith        0,
278273d9f13SBarry Smith        0,
279273d9f13SBarry Smith        0,
2803eda8832SBarry Smith        MatGetOwnershipRange_MPIAdj,
2810b3b1487SBarry Smith        0,
2820b3b1487SBarry Smith        0,
2830b3b1487SBarry Smith        0,
2840b3b1487SBarry Smith        0,
2850b3b1487SBarry Smith        0,
2860b3b1487SBarry Smith        0,
2870b3b1487SBarry Smith        0,
2880b3b1487SBarry Smith        0,
2890b3b1487SBarry Smith        0,
2900b3b1487SBarry Smith        0,
2910b3b1487SBarry Smith        0,
2920b3b1487SBarry Smith        0,
2930b3b1487SBarry Smith        0,
2940b3b1487SBarry Smith        0,
2950b3b1487SBarry Smith        0,
2960b3b1487SBarry Smith        0,
2970b3b1487SBarry Smith        0,
2980b3b1487SBarry Smith        0,
299b97cf49bSBarry Smith        0,
3003eda8832SBarry Smith        MatGetBlockSize_MPIAdj,
3016cd91f64SBarry Smith        MatGetRowIJ_MPIAdj,
302d42735a1SBarry Smith        MatRestoreRowIJ_MPIAdj,
303b97cf49bSBarry Smith        0,
304b97cf49bSBarry Smith        0,
305b97cf49bSBarry Smith        0,
3060752156aSBarry Smith        0,
3070752156aSBarry Smith        0,
3080b3b1487SBarry Smith        0,
3090b3b1487SBarry Smith        0,
3100b3b1487SBarry Smith        0,
311b9b97703SBarry Smith        MatDestroy_MPIAdj,
312b9b97703SBarry Smith        MatView_MPIAdj,
3138a124369SBarry Smith        MatGetPetscMaps_Petsc};
314b97cf49bSBarry Smith 
315b97cf49bSBarry Smith 
316273d9f13SBarry Smith EXTERN_C_BEGIN
3174a2ae208SSatish Balay #undef __FUNCT__
3184a2ae208SSatish Balay #define __FUNCT__ "MatCreate_MPIAdj"
319273d9f13SBarry Smith int MatCreate_MPIAdj(Mat B)
320273d9f13SBarry Smith {
321273d9f13SBarry Smith   Mat_MPIAdj *b;
322273d9f13SBarry Smith   int        ii,ierr,size,rank;
323273d9f13SBarry Smith 
324273d9f13SBarry Smith   PetscFunctionBegin;
325273d9f13SBarry Smith   ierr = MPI_Comm_size(B->comm,&size);CHKERRQ(ierr);
326273d9f13SBarry Smith   ierr = MPI_Comm_rank(B->comm,&rank);CHKERRQ(ierr);
327273d9f13SBarry Smith 
328b0a32e0cSBarry Smith   ierr                = PetscNew(Mat_MPIAdj,&b);CHKERRQ(ierr);
329b0a32e0cSBarry Smith   B->data             = (void*)b;
330273d9f13SBarry Smith   ierr                = PetscMemzero(b,sizeof(Mat_MPIAdj));CHKERRQ(ierr);
331273d9f13SBarry Smith   ierr                = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
332273d9f13SBarry Smith   B->factor           = 0;
333273d9f13SBarry Smith   B->lupivotthreshold = 1.0;
334273d9f13SBarry Smith   B->mapping          = 0;
335273d9f13SBarry Smith   B->assembled        = PETSC_FALSE;
336273d9f13SBarry Smith 
337273d9f13SBarry Smith   ierr = MPI_Allreduce(&B->m,&B->M,1,MPI_INT,MPI_SUM,B->comm);CHKERRQ(ierr);
338273d9f13SBarry Smith   B->n = B->N;
339273d9f13SBarry Smith 
340273d9f13SBarry Smith   /* the information in the maps duplicates the information computed below, eventually
341273d9f13SBarry Smith      we should remove the duplicate information that is not contained in the maps */
3428a124369SBarry Smith   ierr = PetscMapCreateMPI(B->comm,B->m,B->M,&B->rmap);CHKERRQ(ierr);
343273d9f13SBarry Smith   /* we don't know the "local columns" so just use the row information :-(*/
3448a124369SBarry Smith   ierr = PetscMapCreateMPI(B->comm,B->m,B->M,&B->cmap);CHKERRQ(ierr);
345273d9f13SBarry Smith 
346b0a32e0cSBarry Smith   ierr = PetscMalloc((size+1)*sizeof(int),&b->rowners);CHKERRQ(ierr);
347b0a32e0cSBarry Smith   PetscLogObjectMemory(B,(size+2)*sizeof(int)+sizeof(struct _p_Mat)+sizeof(Mat_MPIAdj));
348273d9f13SBarry Smith   ierr = MPI_Allgather(&B->m,1,MPI_INT,b->rowners+1,1,MPI_INT,B->comm);CHKERRQ(ierr);
349273d9f13SBarry Smith   b->rowners[0] = 0;
350273d9f13SBarry Smith   for (ii=2; ii<=size; ii++) {
351273d9f13SBarry Smith     b->rowners[ii] += b->rowners[ii-1];
352273d9f13SBarry Smith   }
353273d9f13SBarry Smith   b->rstart = b->rowners[rank];
354273d9f13SBarry Smith   b->rend   = b->rowners[rank+1];
355273d9f13SBarry Smith 
356273d9f13SBarry Smith   PetscFunctionReturn(0);
357273d9f13SBarry Smith }
358273d9f13SBarry Smith EXTERN_C_END
359273d9f13SBarry Smith 
3604a2ae208SSatish Balay #undef __FUNCT__
3614a2ae208SSatish Balay #define __FUNCT__ "MatMPIAdjSetPreallocation"
362273d9f13SBarry Smith int MatMPIAdjSetPreallocation(Mat B,int *i,int *j,int *values)
363273d9f13SBarry Smith {
364273d9f13SBarry Smith   Mat_MPIAdj *b = (Mat_MPIAdj *)B->data;
365273d9f13SBarry Smith   int        ierr;
366273d9f13SBarry Smith #if defined(PETSC_USE_BOPT_g)
367273d9f13SBarry Smith   int        ii;
368273d9f13SBarry Smith #endif
369273d9f13SBarry Smith 
370273d9f13SBarry Smith   PetscFunctionBegin;
371273d9f13SBarry Smith   B->preallocated = PETSC_TRUE;
372273d9f13SBarry Smith #if defined(PETSC_USE_BOPT_g)
373273d9f13SBarry Smith   if (i[0] != 0) SETERRQ1(1,"First i[] index must be zero, instead it is %d\n",i[0]);
374273d9f13SBarry Smith   for (ii=1; ii<B->m; ii++) {
375273d9f13SBarry Smith     if (i[ii] < 0 || i[ii] < i[ii-1]) {
376273d9f13SBarry Smith       SETERRQ4(1,"i[%d] index is out of range: i[%d]",ii,i[ii],ii-1,i[ii-1]);
377273d9f13SBarry Smith     }
378273d9f13SBarry Smith   }
379273d9f13SBarry Smith   for (ii=0; ii<i[B->m]; ii++) {
380273d9f13SBarry Smith     if (j[ii] < 0 || j[ii] >= B->N) {
381273d9f13SBarry Smith       SETERRQ2(1,"Column index %d out of range %d\n",ii,j[ii]);
382273d9f13SBarry Smith     }
383273d9f13SBarry Smith   }
384273d9f13SBarry Smith #endif
385273d9f13SBarry Smith 
386273d9f13SBarry Smith   b->j      = j;
387273d9f13SBarry Smith   b->i      = i;
388273d9f13SBarry Smith   b->values = values;
389273d9f13SBarry Smith 
390273d9f13SBarry Smith   b->nz               = i[B->m];
391273d9f13SBarry Smith   b->diag             = 0;
392273d9f13SBarry Smith   b->symmetric        = PETSC_FALSE;
393273d9f13SBarry Smith   b->freeaij          = PETSC_TRUE;
394273d9f13SBarry Smith 
395273d9f13SBarry Smith   ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
396273d9f13SBarry Smith   ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
397273d9f13SBarry Smith   PetscFunctionReturn(0);
398273d9f13SBarry Smith }
399273d9f13SBarry Smith 
4004a2ae208SSatish Balay #undef __FUNCT__
4014a2ae208SSatish Balay #define __FUNCT__ "MatCreateMPIAdj"
402b97cf49bSBarry Smith /*@C
4033eda8832SBarry Smith    MatCreateMPIAdj - Creates a sparse matrix representing an adjacency list.
404b97cf49bSBarry Smith    The matrix does not have numerical values associated with it, but is
405b97cf49bSBarry Smith    intended for ordering (to reduce bandwidth etc) and partitioning.
406b97cf49bSBarry Smith 
407ef5ee4d1SLois Curfman McInnes    Collective on MPI_Comm
408ef5ee4d1SLois Curfman McInnes 
409b97cf49bSBarry Smith    Input Parameters:
410c2e958feSBarry Smith +  comm - MPI communicator
4110752156aSBarry Smith .  m - number of local rows
412b97cf49bSBarry Smith .  n - number of columns
413b97cf49bSBarry Smith .  i - the indices into j for the start of each row
414329f5518SBarry Smith .  j - the column indices for each row (sorted for each row).
415ef5ee4d1SLois Curfman McInnes        The indices in i and j start with zero (NOT with one).
416329f5518SBarry Smith -  values -[optional] edge weights
417b97cf49bSBarry Smith 
418b97cf49bSBarry Smith    Output Parameter:
419b97cf49bSBarry Smith .  A - the matrix
420b97cf49bSBarry Smith 
42115091d37SBarry Smith    Level: intermediate
42215091d37SBarry Smith 
4234bc6d8c0SBarry Smith    Notes: This matrix object does not support most matrix operations, include
4244bc6d8c0SBarry Smith    MatSetValues().
425c2e958feSBarry Smith    You must NOT free the ii, values and jj arrays yourself. PETSc will free them
4261198db28SBarry Smith    when the matrix is destroyed. And you must allocate them with PetscMalloc(). If you
4271198db28SBarry Smith     call from Fortran you need not create the arrays with PetscMalloc().
428327e1a73SBarry Smith    Should not include the matrix diagonals.
429b97cf49bSBarry Smith 
430ef5ee4d1SLois Curfman McInnes    Possible values for MatSetOption() - MAT_STRUCTURALLY_SYMMETRIC
431b97cf49bSBarry Smith 
43291e9ee9fSBarry Smith .seealso: MatCreate(), MatCreateSeqAdj(), MatGetOrdering()
433b97cf49bSBarry Smith @*/
4343eda8832SBarry Smith int MatCreateMPIAdj(MPI_Comm comm,int m,int n,int *i,int *j,int *values,Mat *A)
435b97cf49bSBarry Smith {
436273d9f13SBarry Smith   int        ierr;
437b97cf49bSBarry Smith 
438433994e6SBarry Smith   PetscFunctionBegin;
439273d9f13SBarry Smith   ierr = MatCreate(comm,m,n,PETSC_DETERMINE,n,A);CHKERRQ(ierr);
440273d9f13SBarry Smith   ierr = MatSetType(*A,MATMPIADJ);CHKERRQ(ierr);
441273d9f13SBarry Smith   ierr = MatMPIAdjSetPreallocation(*A,i,j,values);CHKERRQ(ierr);
4423a40ed3dSBarry Smith   PetscFunctionReturn(0);
443b97cf49bSBarry Smith }
444b97cf49bSBarry Smith 
445273d9f13SBarry Smith EXTERN_C_BEGIN
4464a2ae208SSatish Balay #undef __FUNCT__
4474a2ae208SSatish Balay #define __FUNCT__ "MatConvertTo_MPIAdj"
448273d9f13SBarry Smith int MatConvertTo_MPIAdj(Mat A,MatType type,Mat *B)
449c2e958feSBarry Smith {
4504c49b128SBarry Smith   int      i,ierr,m,N,nzeros = 0,*ia,*ja,*rj,len,rstart,cnt,j,*a;
451*87828ca2SBarry Smith   PetscScalar   *ra;
452c2e958feSBarry Smith   MPI_Comm comm;
453c2e958feSBarry Smith 
454c2e958feSBarry Smith   PetscFunctionBegin;
455c2e958feSBarry Smith   ierr = MatGetSize(A,PETSC_NULL,&N);CHKERRQ(ierr);
456c2e958feSBarry Smith   ierr = MatGetLocalSize(A,&m,PETSC_NULL);CHKERRQ(ierr);
457c2e958feSBarry Smith   ierr = MatGetOwnershipRange(A,&rstart,PETSC_NULL);CHKERRQ(ierr);
458c2e958feSBarry Smith 
459c2e958feSBarry Smith   /* count the number of nonzeros per row */
460c2e958feSBarry Smith   for (i=0; i<m; i++) {
461c2e958feSBarry Smith     ierr   = MatGetRow(A,i+rstart,&len,&rj,PETSC_NULL);CHKERRQ(ierr);
462c2e958feSBarry Smith     for (j=0; j<len; j++) {
463c2e958feSBarry Smith       if (rj[j] == i+rstart) {len--; break;}    /* don't count diagonal */
464c2e958feSBarry Smith     }
465c2e958feSBarry Smith     ierr   = MatRestoreRow(A,i+rstart,&len,&rj,PETSC_NULL);CHKERRQ(ierr);
466c2e958feSBarry Smith     nzeros += len;
467c2e958feSBarry Smith   }
468c2e958feSBarry Smith 
469c2e958feSBarry Smith   /* malloc space for nonzeros */
470b0a32e0cSBarry Smith   ierr = PetscMalloc((nzeros+1)*sizeof(int),&a);CHKERRQ(ierr);
471b0a32e0cSBarry Smith   ierr = PetscMalloc((N+1)*sizeof(int),&ia);CHKERRQ(ierr);
472b0a32e0cSBarry Smith   ierr = PetscMalloc((nzeros+1)*sizeof(int),&ja);CHKERRQ(ierr);
473c2e958feSBarry Smith 
474c2e958feSBarry Smith   nzeros = 0;
475c2e958feSBarry Smith   ia[0]  = 0;
476c2e958feSBarry Smith   for (i=0; i<m; i++) {
477c2e958feSBarry Smith     ierr    = MatGetRow(A,i+rstart,&len,&rj,&ra);CHKERRQ(ierr);
478c2e958feSBarry Smith     cnt     = 0;
479c2e958feSBarry Smith     for (j=0; j<len; j++) {
480c2e958feSBarry Smith       if (rj[j] != i+rstart) { /* if not diagonal */
4814c49b128SBarry Smith         a[nzeros+cnt]    = (int) PetscAbsScalar(ra[j]);
482c2e958feSBarry Smith         ja[nzeros+cnt++] = rj[j];
483c2e958feSBarry Smith       }
484c2e958feSBarry Smith     }
485c2e958feSBarry Smith     ierr    = MatRestoreRow(A,i+rstart,&len,&rj,&ra);CHKERRQ(ierr);
486c2e958feSBarry Smith     nzeros += cnt;
487c2e958feSBarry Smith     ia[i+1] = nzeros;
488c2e958feSBarry Smith   }
489c2e958feSBarry Smith 
490c2e958feSBarry Smith   ierr = PetscObjectGetComm((PetscObject)A,&comm);CHKERRQ(ierr);
4913eda8832SBarry Smith   ierr = MatCreateMPIAdj(comm,m,N,ia,ja,a,B);CHKERRQ(ierr);
492c2e958feSBarry Smith 
493c2e958feSBarry Smith   PetscFunctionReturn(0);
494c2e958feSBarry Smith }
495273d9f13SBarry Smith EXTERN_C_END
496433994e6SBarry Smith 
497433994e6SBarry Smith 
498433994e6SBarry Smith 
499433994e6SBarry Smith 
500433994e6SBarry Smith 
501