xref: /petsc/src/mat/impls/sbaij/seq/sbaij.c (revision 8cc058d9cd56c1ccb3be12a47760ddfc446aaffc)
149b5e25fSSatish Balay 
249b5e25fSSatish Balay /*
3a1373b80SHong Zhang     Defines the basic matrix operations for the SBAIJ (compressed row)
449b5e25fSSatish Balay   matrix storage format.
549b5e25fSSatish Balay */
6c6db04a5SJed Brown #include <../src/mat/impls/baij/seq/baij.h>         /*I "petscmat.h" I*/
7c6db04a5SJed Brown #include <../src/mat/impls/sbaij/seq/sbaij.h>
8c6db04a5SJed Brown #include <petscblaslapack.h>
949b5e25fSSatish Balay 
10c6db04a5SJed Brown #include <../src/mat/impls/sbaij/seq/relax.h>
1170dcbbb9SBarry Smith #define USESHORT
12c6db04a5SJed Brown #include <../src/mat/impls/sbaij/seq/relax.h>
1370dcbbb9SBarry Smith 
14ace3abfcSBarry Smith extern PetscErrorCode MatSeqSBAIJSetNumericFactorization_inplace(Mat,PetscBool);
15b5b17502SBarry Smith 
1649b5e25fSSatish Balay /*
1749b5e25fSSatish Balay      Checks for missing diagonals
1849b5e25fSSatish Balay */
194a2ae208SSatish Balay #undef __FUNCT__
204a2ae208SSatish Balay #define __FUNCT__ "MatMissingDiagonal_SeqSBAIJ"
21ace3abfcSBarry Smith PetscErrorCode MatMissingDiagonal_SeqSBAIJ(Mat A,PetscBool  *missing,PetscInt *dd)
2249b5e25fSSatish Balay {
23045c9aa0SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
246849ba73SBarry Smith   PetscErrorCode ierr;
2513f74950SBarry Smith   PetscInt       *diag,*jj = a->j,i;
2649b5e25fSSatish Balay 
2749b5e25fSSatish Balay   PetscFunctionBegin;
28045c9aa0SHong Zhang   ierr     = MatMarkDiagonal_SeqSBAIJ(A);CHKERRQ(ierr);
292af78befSBarry Smith   *missing = PETSC_FALSE;
30358d2f5dSShri Abhyankar   if (A->rmap->n > 0 && !jj) {
31358d2f5dSShri Abhyankar     *missing = PETSC_TRUE;
32358d2f5dSShri Abhyankar     if (dd) *dd = 0;
33358d2f5dSShri Abhyankar     PetscInfo(A,"Matrix has no entries therefore is missing diagonal");
34358d2f5dSShri Abhyankar   } else {
35358d2f5dSShri Abhyankar     diag = a->diag;
3649b5e25fSSatish Balay     for (i=0; i<a->mbs; i++) {
372af78befSBarry Smith       if (jj[diag[i]] != i) {
382af78befSBarry Smith         *missing = PETSC_TRUE;
392af78befSBarry Smith         if (dd) *dd = i;
402af78befSBarry Smith         break;
412af78befSBarry Smith       }
4249b5e25fSSatish Balay     }
43358d2f5dSShri Abhyankar   }
4449b5e25fSSatish Balay   PetscFunctionReturn(0);
4549b5e25fSSatish Balay }
4649b5e25fSSatish Balay 
474a2ae208SSatish Balay #undef __FUNCT__
484a2ae208SSatish Balay #define __FUNCT__ "MatMarkDiagonal_SeqSBAIJ"
49dfbe8321SBarry Smith PetscErrorCode MatMarkDiagonal_SeqSBAIJ(Mat A)
5049b5e25fSSatish Balay {
51045c9aa0SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
526849ba73SBarry Smith   PetscErrorCode ierr;
5309f38230SBarry Smith   PetscInt       i;
5449b5e25fSSatish Balay 
5549b5e25fSSatish Balay   PetscFunctionBegin;
5609f38230SBarry Smith   if (!a->diag) {
5709f38230SBarry Smith     ierr         = PetscMalloc(a->mbs*sizeof(PetscInt),&a->diag);CHKERRQ(ierr);
58c760cd28SBarry Smith     ierr         = PetscLogObjectMemory(A,a->mbs*sizeof(PetscInt));CHKERRQ(ierr);
59c760cd28SBarry Smith     a->free_diag = PETSC_TRUE;
6009f38230SBarry Smith   }
6109f38230SBarry Smith   for (i=0; i<a->mbs; i++) a->diag[i] = a->i[i];
6249b5e25fSSatish Balay   PetscFunctionReturn(0);
6349b5e25fSSatish Balay }
6449b5e25fSSatish Balay 
654a2ae208SSatish Balay #undef __FUNCT__
664a2ae208SSatish Balay #define __FUNCT__ "MatGetRowIJ_SeqSBAIJ"
671a83f524SJed Brown static PetscErrorCode MatGetRowIJ_SeqSBAIJ(Mat A,PetscInt oshift,PetscBool symmetric,PetscBool blockcompressed,PetscInt *nn,const PetscInt *inia[],const PetscInt *inja[],PetscBool  *done)
6849b5e25fSSatish Balay {
69a6ece127SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
70d0f46423SBarry Smith   PetscInt       i,j,n = a->mbs,nz = a->i[n],bs = A->rmap->bs;
711a83f524SJed Brown   PetscInt       **ia = (PetscInt**)inia,**ja = (PetscInt**)inja;
728f7157efSSatish Balay   PetscErrorCode ierr;
7349b5e25fSSatish Balay 
7449b5e25fSSatish Balay   PetscFunctionBegin;
75d3e5a4abSHong Zhang   *nn = n;
76a1373b80SHong Zhang   if (!ia) PetscFunctionReturn(0);
778f7157efSSatish Balay   if (!blockcompressed) {
788f7157efSSatish Balay     /* malloc & create the natural set of indices */
79f1d0d59dSSatish Balay     ierr = PetscMalloc2((n+1)*bs,PetscInt,ia,nz*bs,PetscInt,ja);CHKERRQ(ierr);
808f7157efSSatish Balay     for (i=0; i<n+1; i++) {
818f7157efSSatish Balay       for (j=0; j<bs; j++) {
828f7157efSSatish Balay         *ia[i*bs+j] = a->i[i]*bs+j+oshift;
838f7157efSSatish Balay       }
848f7157efSSatish Balay     }
858f7157efSSatish Balay     for (i=0; i<nz; i++) {
868f7157efSSatish Balay       for (j=0; j<bs; j++) {
878f7157efSSatish Balay         *ja[i*bs+j] = a->j[i]*bs+j+oshift;
888f7157efSSatish Balay       }
898f7157efSSatish Balay     }
908f7157efSSatish Balay   } else { /* blockcompressed */
91a6ece127SHong Zhang     if (oshift == 1) {
92a6ece127SHong Zhang       /* temporarily add 1 to i and j indices */
936c6c5352SBarry Smith       for (i=0; i<nz; i++) a->j[i]++;
94a1373b80SHong Zhang       for (i=0; i<n+1; i++) a->i[i]++;
958f7157efSSatish Balay     }
96a1373b80SHong Zhang     *ia = a->i; *ja = a->j;
97a6ece127SHong Zhang   }
9849b5e25fSSatish Balay   PetscFunctionReturn(0);
9949b5e25fSSatish Balay }
10049b5e25fSSatish Balay 
1014a2ae208SSatish Balay #undef __FUNCT__
1024a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRowIJ_SeqSBAIJ"
1031a83f524SJed Brown static PetscErrorCode MatRestoreRowIJ_SeqSBAIJ(Mat A,PetscInt oshift,PetscBool symmetric,PetscBool blockcompressed,PetscInt *nn,const PetscInt *ia[],const PetscInt *ja[],PetscBool  *done)
10449b5e25fSSatish Balay {
105b7aaefc3SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
1068f7157efSSatish Balay   PetscInt       i,n = a->mbs,nz = a->i[n];
1078f7157efSSatish Balay   PetscErrorCode ierr;
108a6ece127SHong Zhang 
10949b5e25fSSatish Balay   PetscFunctionBegin;
11049b5e25fSSatish Balay   if (!ia) PetscFunctionReturn(0);
111a6ece127SHong Zhang 
1128f7157efSSatish Balay   if (!blockcompressed) {
1138f7157efSSatish Balay     ierr = PetscFree2(*ia,*ja);CHKERRQ(ierr);
1148f7157efSSatish Balay   } else if (oshift == 1) { /* blockcompressed */
1156c6c5352SBarry Smith     for (i=0; i<nz; i++) a->j[i]--;
116a6ece127SHong Zhang     for (i=0; i<n+1; i++) a->i[i]--;
117a6ece127SHong Zhang   }
118a6ece127SHong Zhang   PetscFunctionReturn(0);
11949b5e25fSSatish Balay }
12049b5e25fSSatish Balay 
1214a2ae208SSatish Balay #undef __FUNCT__
1224a2ae208SSatish Balay #define __FUNCT__ "MatDestroy_SeqSBAIJ"
123dfbe8321SBarry Smith PetscErrorCode MatDestroy_SeqSBAIJ(Mat A)
12449b5e25fSSatish Balay {
12549b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
126dfbe8321SBarry Smith   PetscErrorCode ierr;
12749b5e25fSSatish Balay 
12849b5e25fSSatish Balay   PetscFunctionBegin;
129a9f03627SSatish Balay #if defined(PETSC_USE_LOG)
130d0f46423SBarry Smith   PetscLogObjectState((PetscObject)A,"Rows=%D, NZ=%D",A->rmap->N,a->nz);
131a9f03627SSatish Balay #endif
132e6b907acSBarry Smith   ierr = MatSeqXAIJFreeAIJ(A,&a->a,&a->j,&a->i);CHKERRQ(ierr);
1337f53bb6cSHong Zhang   if (a->free_diag) {ierr = PetscFree(a->diag);CHKERRQ(ierr);}
1346bf464f9SBarry Smith   ierr = ISDestroy(&a->row);CHKERRQ(ierr);
1356bf464f9SBarry Smith   ierr = ISDestroy(&a->col);CHKERRQ(ierr);
1366bf464f9SBarry Smith   ierr = ISDestroy(&a->icol);CHKERRQ(ierr);
137c31cb41cSBarry Smith   ierr = PetscFree(a->idiag);CHKERRQ(ierr);
138c31cb41cSBarry Smith   ierr = PetscFree(a->inode.size);CHKERRQ(ierr);
139c760cd28SBarry Smith   if (a->free_imax_ilen) {ierr = PetscFree2(a->imax,a->ilen);CHKERRQ(ierr);}
14005b42c5fSBarry Smith   ierr = PetscFree(a->solve_work);CHKERRQ(ierr);
14141f059aeSBarry Smith   ierr = PetscFree(a->sor_work);CHKERRQ(ierr);
14205b42c5fSBarry Smith   ierr = PetscFree(a->solves_work);CHKERRQ(ierr);
14305b42c5fSBarry Smith   ierr = PetscFree(a->mult_work);CHKERRQ(ierr);
14405b42c5fSBarry Smith   ierr = PetscFree(a->saved_values);CHKERRQ(ierr);
14505b42c5fSBarry Smith   ierr = PetscFree(a->xtoy);CHKERRQ(ierr);
1464da8f245SBarry Smith   if (a->free_jshort) {ierr = PetscFree(a->jshort);CHKERRQ(ierr);}
1471a3463dfSHong Zhang   ierr = PetscFree(a->inew);CHKERRQ(ierr);
1486bf464f9SBarry Smith   ierr = MatDestroy(&a->parent);CHKERRQ(ierr);
149bf0cc555SLisandro Dalcin   ierr = PetscFree(A->data);CHKERRQ(ierr);
150901853e0SKris Buschelman 
151dbd8c25aSHong Zhang   ierr = PetscObjectChangeTypeName((PetscObject)A,0);CHKERRQ(ierr);
1520298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatStoreValues_C","",NULL);CHKERRQ(ierr);
1530298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatRetrieveValues_C","",NULL);CHKERRQ(ierr);
1540298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatSeqSBAIJSetColumnIndices_C","",NULL);CHKERRQ(ierr);
1550298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatConvert_seqsbaij_seqaij_C","",NULL);CHKERRQ(ierr);
1560298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatConvert_seqsbaij_seqbaij_C","",NULL);CHKERRQ(ierr);
1570298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatSeqSBAIJSetPreallocation_C","",NULL);CHKERRQ(ierr);
1580298fd71SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)A,"MatConvert_seqsbaij_seqsbstrm_C","",NULL);CHKERRQ(ierr);
15949b5e25fSSatish Balay   PetscFunctionReturn(0);
16049b5e25fSSatish Balay }
16149b5e25fSSatish Balay 
1624a2ae208SSatish Balay #undef __FUNCT__
1634a2ae208SSatish Balay #define __FUNCT__ "MatSetOption_SeqSBAIJ"
164ace3abfcSBarry Smith PetscErrorCode MatSetOption_SeqSBAIJ(Mat A,MatOption op,PetscBool flg)
16549b5e25fSSatish Balay {
166045c9aa0SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
16763ba0a88SBarry Smith   PetscErrorCode ierr;
16849b5e25fSSatish Balay 
16949b5e25fSSatish Balay   PetscFunctionBegin;
1704d9d31abSKris Buschelman   switch (op) {
1714d9d31abSKris Buschelman   case MAT_ROW_ORIENTED:
1724e0d8c25SBarry Smith     a->roworiented = flg;
1734d9d31abSKris Buschelman     break;
174a9817697SBarry Smith   case MAT_KEEP_NONZERO_PATTERN:
175a9817697SBarry Smith     a->keepnonzeropattern = flg;
1764d9d31abSKris Buschelman     break;
177512a5fc5SBarry Smith   case MAT_NEW_NONZERO_LOCATIONS:
178512a5fc5SBarry Smith     a->nonew = (flg ? 0 : 1);
1794d9d31abSKris Buschelman     break;
1804d9d31abSKris Buschelman   case MAT_NEW_NONZERO_LOCATION_ERR:
1814e0d8c25SBarry Smith     a->nonew = (flg ? -1 : 0);
1824d9d31abSKris Buschelman     break;
1834d9d31abSKris Buschelman   case MAT_NEW_NONZERO_ALLOCATION_ERR:
1844e0d8c25SBarry Smith     a->nonew = (flg ? -2 : 0);
1854d9d31abSKris Buschelman     break;
18628b2fa4aSMatthew Knepley   case MAT_UNUSED_NONZERO_LOCATION_ERR:
18728b2fa4aSMatthew Knepley     a->nounused = (flg ? -1 : 0);
18828b2fa4aSMatthew Knepley     break;
1894e0d8c25SBarry Smith   case MAT_NEW_DIAGONALS:
1904d9d31abSKris Buschelman   case MAT_IGNORE_OFF_PROC_ENTRIES:
1914d9d31abSKris Buschelman   case MAT_USE_HASH_TABLE:
192290bbb0aSBarry Smith     ierr = PetscInfo1(A,"Option %s ignored\n",MatOptions[op]);CHKERRQ(ierr);
1934d9d31abSKris Buschelman     break;
1949a4540c5SBarry Smith   case MAT_HERMITIAN:
195e32f2f54SBarry Smith     if (!A->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call MatAssemblyEnd() first");
1960bc54ff2SBarry Smith     if (A->cmap->n < 65536 && A->cmap->bs == 1) {
197eeffb40dSHong Zhang       A->ops->mult = MatMult_SeqSBAIJ_1_Hermitian_ushort;
1980bc54ff2SBarry Smith     } else if (A->cmap->bs == 1) {
199eeffb40dSHong Zhang       A->ops->mult = MatMult_SeqSBAIJ_1_Hermitian;
200e32f2f54SBarry Smith     } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"No support for Hermitian with block size greater than 1");
201eeffb40dSHong Zhang     break;
2023d472b54SHong Zhang   case MAT_SPD:
2035021d80fSJed Brown     /* These options are handled directly by MatSetOption() */
2043d472b54SHong Zhang     break;
20577e54ba9SKris Buschelman   case MAT_SYMMETRIC:
20677e54ba9SKris Buschelman   case MAT_STRUCTURALLY_SYMMETRIC:
2079a4540c5SBarry Smith   case MAT_SYMMETRY_ETERNAL:
208e32f2f54SBarry Smith     if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix must be symmetric");
209290bbb0aSBarry Smith     ierr = PetscInfo1(A,"Option %s not relevent\n",MatOptions[op]);CHKERRQ(ierr);
210290bbb0aSBarry Smith     break;
211941593c8SHong Zhang   case MAT_IGNORE_LOWER_TRIANGULAR:
2124e0d8c25SBarry Smith     a->ignore_ltriangular = flg;
213941593c8SHong Zhang     break;
214941593c8SHong Zhang   case MAT_ERROR_LOWER_TRIANGULAR:
2154e0d8c25SBarry Smith     a->ignore_ltriangular = flg;
21677e54ba9SKris Buschelman     break;
217f5edf698SHong Zhang   case MAT_GETROW_UPPERTRIANGULAR:
2184e0d8c25SBarry Smith     a->getrow_utriangular = flg;
219f5edf698SHong Zhang     break;
2204d9d31abSKris Buschelman   default:
221e32f2f54SBarry Smith     SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"unknown option %d",op);
22249b5e25fSSatish Balay   }
22349b5e25fSSatish Balay   PetscFunctionReturn(0);
22449b5e25fSSatish Balay }
22549b5e25fSSatish Balay 
2264a2ae208SSatish Balay #undef __FUNCT__
2274a2ae208SSatish Balay #define __FUNCT__ "MatGetRow_SeqSBAIJ"
22813f74950SBarry Smith PetscErrorCode MatGetRow_SeqSBAIJ(Mat A,PetscInt row,PetscInt *ncols,PetscInt **cols,PetscScalar **v)
22949b5e25fSSatish Balay {
23049b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
2316849ba73SBarry Smith   PetscErrorCode ierr;
23213f74950SBarry Smith   PetscInt       itmp,i,j,k,M,*ai,*aj,bs,bn,bp,*cols_i,bs2;
23349b5e25fSSatish Balay   MatScalar      *aa,*aa_i;
23487828ca2SBarry Smith   PetscScalar    *v_i;
23549b5e25fSSatish Balay 
23649b5e25fSSatish Balay   PetscFunctionBegin;
237e32f2f54SBarry Smith   if (A && !a->getrow_utriangular) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"MatGetRow is not supported for SBAIJ matrix format. Getting the upper triangular part of row, run with -mat_getrow_uppertriangular, call MatSetOption(mat,MAT_GETROW_UPPERTRIANGULAR,PETSC_TRUE) or MatGetRowUpperTriangular()");
238f5edf698SHong Zhang   /* Get the upper triangular part of the row */
239d0f46423SBarry Smith   bs  = A->rmap->bs;
24049b5e25fSSatish Balay   ai  = a->i;
24149b5e25fSSatish Balay   aj  = a->j;
24249b5e25fSSatish Balay   aa  = a->a;
24349b5e25fSSatish Balay   bs2 = a->bs2;
24449b5e25fSSatish Balay 
245e32f2f54SBarry Smith   if (row < 0 || row >= A->rmap->N) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "Row %D out of range", row);
24649b5e25fSSatish Balay 
24749b5e25fSSatish Balay   bn     = row/bs; /* Block number */
24849b5e25fSSatish Balay   bp     = row % bs; /* Block position */
24949b5e25fSSatish Balay   M      = ai[bn+1] - ai[bn];
25049b5e25fSSatish Balay   *ncols = bs*M;
25149b5e25fSSatish Balay 
25249b5e25fSSatish Balay   if (v) {
25349b5e25fSSatish Balay     *v = 0;
25449b5e25fSSatish Balay     if (*ncols) {
25587828ca2SBarry Smith       ierr = PetscMalloc((*ncols+row)*sizeof(PetscScalar),v);CHKERRQ(ierr);
25649b5e25fSSatish Balay       for (i=0; i<M; i++) { /* for each block in the block row */
25749b5e25fSSatish Balay         v_i  = *v + i*bs;
25849b5e25fSSatish Balay         aa_i = aa + bs2*(ai[bn] + i);
25926fbe8dcSKarl Rupp         for (j=bp,k=0; j<bs2; j+=bs,k++) v_i[k] = aa_i[j];
26049b5e25fSSatish Balay       }
26149b5e25fSSatish Balay     }
26249b5e25fSSatish Balay   }
26349b5e25fSSatish Balay 
26449b5e25fSSatish Balay   if (cols) {
26549b5e25fSSatish Balay     *cols = 0;
26649b5e25fSSatish Balay     if (*ncols) {
26713f74950SBarry Smith       ierr = PetscMalloc((*ncols+row)*sizeof(PetscInt),cols);CHKERRQ(ierr);
26849b5e25fSSatish Balay       for (i=0; i<M; i++) { /* for each block in the block row */
26949b5e25fSSatish Balay         cols_i = *cols + i*bs;
27049b5e25fSSatish Balay         itmp   = bs*aj[ai[bn] + i];
27126fbe8dcSKarl Rupp         for (j=0; j<bs; j++) cols_i[j] = itmp++;
27249b5e25fSSatish Balay       }
27349b5e25fSSatish Balay     }
27449b5e25fSSatish Balay   }
27549b5e25fSSatish Balay 
27649b5e25fSSatish Balay   /*search column A(0:row-1,row) (=A(row,0:row-1)). Could be expensive! */
2775ddb2528SHong Zhang   /* this segment is currently removed, so only entries in the upper triangle are obtained */
278519f805aSKarl Rupp #if defined(column_search)
27949b5e25fSSatish Balay   v_i    = *v    + M*bs;
28049b5e25fSSatish Balay   cols_i = *cols + M*bs;
28149b5e25fSSatish Balay   for (i=0; i<bn; i++) { /* for each block row */
28249b5e25fSSatish Balay     M = ai[i+1] - ai[i];
28349b5e25fSSatish Balay     for (j=0; j<M; j++) {
28449b5e25fSSatish Balay       itmp = aj[ai[i] + j];    /* block column value */
28549b5e25fSSatish Balay       if (itmp == bn) {
28649b5e25fSSatish Balay         aa_i = aa + bs2*(ai[i] + j) + bs*bp;
28749b5e25fSSatish Balay         for (k=0; k<bs; k++) {
28849b5e25fSSatish Balay           *cols_i++ = i*bs+k;
28949b5e25fSSatish Balay           *v_i++    = aa_i[k];
29049b5e25fSSatish Balay         }
29149b5e25fSSatish Balay         *ncols += bs;
29249b5e25fSSatish Balay         break;
29349b5e25fSSatish Balay       }
29449b5e25fSSatish Balay     }
29549b5e25fSSatish Balay   }
2965ddb2528SHong Zhang #endif
29749b5e25fSSatish Balay   PetscFunctionReturn(0);
29849b5e25fSSatish Balay }
29949b5e25fSSatish Balay 
3004a2ae208SSatish Balay #undef __FUNCT__
3014a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRow_SeqSBAIJ"
30213f74950SBarry Smith PetscErrorCode MatRestoreRow_SeqSBAIJ(Mat A,PetscInt row,PetscInt *nz,PetscInt **idx,PetscScalar **v)
30349b5e25fSSatish Balay {
304dfbe8321SBarry Smith   PetscErrorCode ierr;
30549b5e25fSSatish Balay 
30649b5e25fSSatish Balay   PetscFunctionBegin;
30705b42c5fSBarry Smith   if (idx) {ierr = PetscFree(*idx);CHKERRQ(ierr);}
30805b42c5fSBarry Smith   if (v)   {ierr = PetscFree(*v);CHKERRQ(ierr);}
30949b5e25fSSatish Balay   PetscFunctionReturn(0);
31049b5e25fSSatish Balay }
31149b5e25fSSatish Balay 
3124a2ae208SSatish Balay #undef __FUNCT__
313f5edf698SHong Zhang #define __FUNCT__ "MatGetRowUpperTriangular_SeqSBAIJ"
314f5edf698SHong Zhang PetscErrorCode MatGetRowUpperTriangular_SeqSBAIJ(Mat A)
315f5edf698SHong Zhang {
316f5edf698SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
317f5edf698SHong Zhang 
318f5edf698SHong Zhang   PetscFunctionBegin;
319f5edf698SHong Zhang   a->getrow_utriangular = PETSC_TRUE;
320f5edf698SHong Zhang   PetscFunctionReturn(0);
321f5edf698SHong Zhang }
322f5edf698SHong Zhang #undef __FUNCT__
323f5edf698SHong Zhang #define __FUNCT__ "MatRestoreRowUpperTriangular_SeqSBAIJ"
324f5edf698SHong Zhang PetscErrorCode MatRestoreRowUpperTriangular_SeqSBAIJ(Mat A)
325f5edf698SHong Zhang {
326f5edf698SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
327f5edf698SHong Zhang 
328f5edf698SHong Zhang   PetscFunctionBegin;
329f5edf698SHong Zhang   a->getrow_utriangular = PETSC_FALSE;
330f5edf698SHong Zhang   PetscFunctionReturn(0);
331f5edf698SHong Zhang }
332f5edf698SHong Zhang 
333f5edf698SHong Zhang #undef __FUNCT__
3344a2ae208SSatish Balay #define __FUNCT__ "MatTranspose_SeqSBAIJ"
335fc4dec0aSBarry Smith PetscErrorCode MatTranspose_SeqSBAIJ(Mat A,MatReuse reuse,Mat *B)
33649b5e25fSSatish Balay {
337dfbe8321SBarry Smith   PetscErrorCode ierr;
3385fd66863SKarl Rupp 
33949b5e25fSSatish Balay   PetscFunctionBegin;
340815cbec1SBarry Smith   if (reuse == MAT_INITIAL_MATRIX || *B != A) {
341999d9058SBarry Smith     ierr = MatDuplicate(A,MAT_COPY_VALUES,B);CHKERRQ(ierr);
342fc4dec0aSBarry Smith   }
3438115998fSBarry Smith   PetscFunctionReturn(0);
34449b5e25fSSatish Balay }
34549b5e25fSSatish Balay 
3464a2ae208SSatish Balay #undef __FUNCT__
3474a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ_ASCII"
3486849ba73SBarry Smith static PetscErrorCode MatView_SeqSBAIJ_ASCII(Mat A,PetscViewer viewer)
34949b5e25fSSatish Balay {
35049b5e25fSSatish Balay   Mat_SeqSBAIJ      *a = (Mat_SeqSBAIJ*)A->data;
351dfbe8321SBarry Smith   PetscErrorCode    ierr;
352d0f46423SBarry Smith   PetscInt          i,j,bs = A->rmap->bs,k,l,bs2=a->bs2;
353f3ef73ceSBarry Smith   PetscViewerFormat format;
354121deb67SSatish Balay   PetscInt          *diag;
35549b5e25fSSatish Balay 
35649b5e25fSSatish Balay   PetscFunctionBegin;
357b0a32e0cSBarry Smith   ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
358456192e2SBarry Smith   if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
35977431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  block size is %D\n",bs);CHKERRQ(ierr);
360fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_MATLAB) {
361d2507d54SMatthew Knepley     Mat aij;
362d5f3da31SBarry Smith     if (A->factortype && bs>1) {
36370d5e725SHong Zhang       ierr = PetscPrintf(PETSC_COMM_SELF,"Warning: matrix is factored with bs>1. MatView() with PETSC_VIEWER_ASCII_MATLAB is not supported and ignored!\n");CHKERRQ(ierr);
36470d5e725SHong Zhang       PetscFunctionReturn(0);
36570d5e725SHong Zhang     }
366c9f458caSMatthew Knepley     ierr = MatConvert(A,MATSEQAIJ,MAT_INITIAL_MATRIX,&aij);CHKERRQ(ierr);
367c9f458caSMatthew Knepley     ierr = MatView(aij,viewer);CHKERRQ(ierr);
3686bf464f9SBarry Smith     ierr = MatDestroy(&aij);CHKERRQ(ierr);
369fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_COMMON) {
370d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_FALSE);CHKERRQ(ierr);
37149b5e25fSSatish Balay     for (i=0; i<a->mbs; i++) {
37249b5e25fSSatish Balay       for (j=0; j<bs; j++) {
37377431f27SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"row %D:",i*bs+j);CHKERRQ(ierr);
37449b5e25fSSatish Balay         for (k=a->i[i]; k<a->i[i+1]; k++) {
37549b5e25fSSatish Balay           for (l=0; l<bs; l++) {
37649b5e25fSSatish Balay #if defined(PETSC_USE_COMPLEX)
37749b5e25fSSatish Balay             if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) > 0.0 && PetscRealPart(a->a[bs2*k + l*bs + j]) != 0.0) {
378a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G + %G i) ",bs*a->j[k]+l,
37949b5e25fSSatish Balay                                             PetscRealPart(a->a[bs2*k + l*bs + j]),PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
38049b5e25fSSatish Balay             } else if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) < 0.0 && PetscRealPart(a->a[bs2*k + l*bs + j]) != 0.0) {
381a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",bs*a->j[k]+l,
38249b5e25fSSatish Balay                                             PetscRealPart(a->a[bs2*k + l*bs + j]),-PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
38349b5e25fSSatish Balay             } else if (PetscRealPart(a->a[bs2*k + l*bs + j]) != 0.0) {
384a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,PetscRealPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
38549b5e25fSSatish Balay             }
38649b5e25fSSatish Balay #else
38749b5e25fSSatish Balay             if (a->a[bs2*k + l*bs + j] != 0.0) {
388a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,a->a[bs2*k + l*bs + j]);CHKERRQ(ierr);
38949b5e25fSSatish Balay             }
39049b5e25fSSatish Balay #endif
39149b5e25fSSatish Balay           }
39249b5e25fSSatish Balay         }
393b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
39449b5e25fSSatish Balay       }
39549b5e25fSSatish Balay     }
396d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_TRUE);CHKERRQ(ierr);
397c1490034SHong Zhang   } else if (format == PETSC_VIEWER_ASCII_FACTOR_INFO) {
398c1490034SHong Zhang     PetscFunctionReturn(0);
39949b5e25fSSatish Balay   } else {
400d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_FALSE);CHKERRQ(ierr);
4017566de4bSShri Abhyankar     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)A,viewer,"Matrix Object");CHKERRQ(ierr);
4022c990fa1SHong Zhang     if (A->factortype) { /* for factored matrix */
4032c990fa1SHong Zhang       if (bs>1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"matrix is factored with bs>1. Not implemented yet");
4042c990fa1SHong Zhang 
405121deb67SSatish Balay       diag=a->diag;
406121deb67SSatish Balay       for (i=0; i<a->mbs; i++) { /* for row block i */
4072c990fa1SHong Zhang         ierr = PetscViewerASCIIPrintf(viewer,"row %D:",i);CHKERRQ(ierr);
4082c990fa1SHong Zhang         /* diagonal entry */
4092c990fa1SHong Zhang #if defined(PETSC_USE_COMPLEX)
4102c990fa1SHong Zhang         if (PetscImaginaryPart(a->a[diag[i]]) > 0.0) {
411ca0704adSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," (%D, %G + %G i) ",a->j[diag[i]],PetscRealPart(1.0/a->a[diag[i]]),PetscImaginaryPart(1.0/a->a[diag[i]]));CHKERRQ(ierr);
4122c990fa1SHong Zhang         } else if (PetscImaginaryPart(a->a[diag[i]]) < 0.0) {
413ca0704adSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",a->j[diag[i]],PetscRealPart(1.0/a->a[diag[i]]),-PetscImaginaryPart(1.0/a->a[diag[i]]));CHKERRQ(ierr);
4142c990fa1SHong Zhang         } else {
4152c990fa1SHong Zhang           ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",a->j[diag[i]],PetscRealPart(1.0/a->a[diag[i]]));CHKERRQ(ierr);
4162c990fa1SHong Zhang         }
4172c990fa1SHong Zhang #else
4182c990fa1SHong Zhang         ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",a->j[diag[i]],1.0/a->a[diag[i]]);CHKERRQ(ierr);
4192c990fa1SHong Zhang #endif
4202c990fa1SHong Zhang         /* off-diagonal entries */
4212c990fa1SHong Zhang         for (k=a->i[i]; k<a->i[i+1]-1; k++) {
4222c990fa1SHong Zhang #if defined(PETSC_USE_COMPLEX)
423ca0704adSBarry Smith           if (PetscImaginaryPart(a->a[k]) > 0.0) {
424ca0704adSBarry Smith             ierr = PetscViewerASCIIPrintf(viewer," (%D, %G + %G i) ",bs*a->j[k],PetscRealPart(a->a[k]),PetscImaginaryPart(a->a[k]));CHKERRQ(ierr);
425ca0704adSBarry Smith           } else if (PetscImaginaryPart(a->a[k]) < 0.0) {
426ca0704adSBarry Smith             ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",bs*a->j[k],PetscRealPart(a->a[k]),-PetscImaginaryPart(a->a[k]));CHKERRQ(ierr);
4272c990fa1SHong Zhang           } else {
428ca0704adSBarry Smith             ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k],PetscRealPart(a->a[k]));CHKERRQ(ierr);
4292c990fa1SHong Zhang           }
4302c990fa1SHong Zhang #else
4312c990fa1SHong Zhang           ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",a->j[k],a->a[k]);CHKERRQ(ierr);
4322c990fa1SHong Zhang #endif
4332c990fa1SHong Zhang         }
4342c990fa1SHong Zhang         ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
4352c990fa1SHong Zhang       }
4362c990fa1SHong Zhang 
4372c990fa1SHong Zhang     } else { /* for non-factored matrix */
4380c74a584SJed Brown       for (i=0; i<a->mbs; i++) { /* for row block i */
4390c74a584SJed Brown         for (j=0; j<bs; j++) {   /* for row bs*i + j */
44077431f27SBarry Smith           ierr = PetscViewerASCIIPrintf(viewer,"row %D:",i*bs+j);CHKERRQ(ierr);
4410c74a584SJed Brown           for (k=a->i[i]; k<a->i[i+1]; k++) { /* for column block */
4420c74a584SJed Brown             for (l=0; l<bs; l++) {            /* for column */
44349b5e25fSSatish Balay #if defined(PETSC_USE_COMPLEX)
44449b5e25fSSatish Balay               if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) > 0.0) {
445a83599f4SBarry Smith                 ierr = PetscViewerASCIIPrintf(viewer," (%D, %G + %G i) ",bs*a->j[k]+l,
44649b5e25fSSatish Balay                                               PetscRealPart(a->a[bs2*k + l*bs + j]),PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
44749b5e25fSSatish Balay               } else if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) < 0.0) {
448a83599f4SBarry Smith                 ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",bs*a->j[k]+l,
44949b5e25fSSatish Balay                                               PetscRealPart(a->a[bs2*k + l*bs + j]),-PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
45049b5e25fSSatish Balay               } else {
451a83599f4SBarry Smith                 ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,PetscRealPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
45249b5e25fSSatish Balay               }
45349b5e25fSSatish Balay #else
454e9f7bc9eSHong Zhang               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,a->a[bs2*k + l*bs + j]);CHKERRQ(ierr);
45549b5e25fSSatish Balay #endif
45649b5e25fSSatish Balay             }
45749b5e25fSSatish Balay           }
458b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
45949b5e25fSSatish Balay         }
46049b5e25fSSatish Balay       }
4612c990fa1SHong Zhang     }
462d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_TRUE);CHKERRQ(ierr);
46349b5e25fSSatish Balay   }
464b0a32e0cSBarry Smith   ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
46549b5e25fSSatish Balay   PetscFunctionReturn(0);
46649b5e25fSSatish Balay }
46749b5e25fSSatish Balay 
4689804daf3SBarry Smith #include <petscdraw.h>
4694a2ae208SSatish Balay #undef __FUNCT__
4704a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ_Draw_Zoom"
4716849ba73SBarry Smith static PetscErrorCode MatView_SeqSBAIJ_Draw_Zoom(PetscDraw draw,void *Aa)
47249b5e25fSSatish Balay {
47349b5e25fSSatish Balay   Mat            A = (Mat) Aa;
47449b5e25fSSatish Balay   Mat_SeqSBAIJ   *a=(Mat_SeqSBAIJ*)A->data;
4756849ba73SBarry Smith   PetscErrorCode ierr;
476d0f46423SBarry Smith   PetscInt       row,i,j,k,l,mbs=a->mbs,color,bs=A->rmap->bs,bs2=a->bs2;
47713f74950SBarry Smith   PetscMPIInt    rank;
47849b5e25fSSatish Balay   PetscReal      xl,yl,xr,yr,x_l,x_r,y_l,y_r;
47949b5e25fSSatish Balay   MatScalar      *aa;
48049b5e25fSSatish Balay   MPI_Comm       comm;
481b0a32e0cSBarry Smith   PetscViewer    viewer;
48249b5e25fSSatish Balay 
48349b5e25fSSatish Balay   PetscFunctionBegin;
48449b5e25fSSatish Balay   /*
48549b5e25fSSatish Balay     This is nasty. If this is called from an originally parallel matrix
48649b5e25fSSatish Balay     then all processes call this,but only the first has the matrix so the
48749b5e25fSSatish Balay     rest should return immediately.
48849b5e25fSSatish Balay   */
48949b5e25fSSatish Balay   ierr = PetscObjectGetComm((PetscObject)draw,&comm);CHKERRQ(ierr);
49049b5e25fSSatish Balay   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
49149b5e25fSSatish Balay   if (rank) PetscFunctionReturn(0);
49249b5e25fSSatish Balay 
49349b5e25fSSatish Balay   ierr = PetscObjectQuery((PetscObject)A,"Zoomviewer",(PetscObject*)&viewer);CHKERRQ(ierr);
49449b5e25fSSatish Balay 
495b0a32e0cSBarry Smith   ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
496b0a32e0cSBarry Smith   PetscDrawString(draw, .3*(xl+xr), .3*(yl+yr), PETSC_DRAW_BLACK, "symmetric");
49749b5e25fSSatish Balay 
49849b5e25fSSatish Balay   /* loop over matrix elements drawing boxes */
499b0a32e0cSBarry Smith   color = PETSC_DRAW_BLUE;
50049b5e25fSSatish Balay   for (i=0,row=0; i<mbs; i++,row+=bs) {
50149b5e25fSSatish Balay     for (j=a->i[i]; j<a->i[i+1]; j++) {
502d0f46423SBarry Smith       y_l = A->rmap->N - row - 1.0; y_r = y_l + 1.0;
50349b5e25fSSatish Balay       x_l = a->j[j]*bs; x_r = x_l + 1.0;
50449b5e25fSSatish Balay       aa  = a->a + j*bs2;
50549b5e25fSSatish Balay       for (k=0; k<bs; k++) {
50649b5e25fSSatish Balay         for (l=0; l<bs; l++) {
50749b5e25fSSatish Balay           if (PetscRealPart(*aa++) >=  0.) continue;
508b0a32e0cSBarry Smith           ierr = PetscDrawRectangle(draw,x_l+k,y_l-l,x_r+k,y_r-l,color,color,color,color);CHKERRQ(ierr);
50949b5e25fSSatish Balay         }
51049b5e25fSSatish Balay       }
51149b5e25fSSatish Balay     }
51249b5e25fSSatish Balay   }
513b0a32e0cSBarry Smith   color = PETSC_DRAW_CYAN;
51449b5e25fSSatish Balay   for (i=0,row=0; i<mbs; i++,row+=bs) {
51549b5e25fSSatish Balay     for (j=a->i[i]; j<a->i[i+1]; j++) {
516d0f46423SBarry Smith       y_l = A->rmap->N - row - 1.0; y_r = y_l + 1.0;
51749b5e25fSSatish Balay       x_l = a->j[j]*bs; x_r = x_l + 1.0;
51849b5e25fSSatish Balay       aa = a->a + j*bs2;
51949b5e25fSSatish Balay       for (k=0; k<bs; k++) {
52049b5e25fSSatish Balay         for (l=0; l<bs; l++) {
52149b5e25fSSatish Balay           if (PetscRealPart(*aa++) != 0.) continue;
522b0a32e0cSBarry Smith           ierr = PetscDrawRectangle(draw,x_l+k,y_l-l,x_r+k,y_r-l,color,color,color,color);CHKERRQ(ierr);
52349b5e25fSSatish Balay         }
52449b5e25fSSatish Balay       }
52549b5e25fSSatish Balay     }
52649b5e25fSSatish Balay   }
52749b5e25fSSatish Balay 
528b0a32e0cSBarry Smith   color = PETSC_DRAW_RED;
52949b5e25fSSatish Balay   for (i=0,row=0; i<mbs; i++,row+=bs) {
53049b5e25fSSatish Balay     for (j=a->i[i]; j<a->i[i+1]; j++) {
531d0f46423SBarry Smith       y_l = A->rmap->N - row - 1.0; y_r = y_l + 1.0;
53249b5e25fSSatish Balay       x_l = a->j[j]*bs; x_r = x_l + 1.0;
53349b5e25fSSatish Balay       aa = a->a + j*bs2;
53449b5e25fSSatish Balay       for (k=0; k<bs; k++) {
53549b5e25fSSatish Balay         for (l=0; l<bs; l++) {
53649b5e25fSSatish Balay           if (PetscRealPart(*aa++) <= 0.) continue;
537b0a32e0cSBarry Smith           ierr = PetscDrawRectangle(draw,x_l+k,y_l-l,x_r+k,y_r-l,color,color,color,color);CHKERRQ(ierr);
53849b5e25fSSatish Balay         }
53949b5e25fSSatish Balay       }
54049b5e25fSSatish Balay     }
54149b5e25fSSatish Balay   }
54249b5e25fSSatish Balay   PetscFunctionReturn(0);
54349b5e25fSSatish Balay }
54449b5e25fSSatish Balay 
5454a2ae208SSatish Balay #undef __FUNCT__
5464a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ_Draw"
5476849ba73SBarry Smith static PetscErrorCode MatView_SeqSBAIJ_Draw(Mat A,PetscViewer viewer)
54849b5e25fSSatish Balay {
549dfbe8321SBarry Smith   PetscErrorCode ierr;
55049b5e25fSSatish Balay   PetscReal      xl,yl,xr,yr,w,h;
551b0a32e0cSBarry Smith   PetscDraw      draw;
552ace3abfcSBarry Smith   PetscBool      isnull;
55349b5e25fSSatish Balay 
55449b5e25fSSatish Balay   PetscFunctionBegin;
555b0a32e0cSBarry Smith   ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
556b0a32e0cSBarry Smith   ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr); if (isnull) PetscFunctionReturn(0);
55749b5e25fSSatish Balay 
55849b5e25fSSatish Balay   ierr = PetscObjectCompose((PetscObject)A,"Zoomviewer",(PetscObject)viewer);CHKERRQ(ierr);
559d0f46423SBarry Smith   xr   = A->rmap->N; yr = A->rmap->N; h = yr/10.0; w = xr/10.0;
56049b5e25fSSatish Balay   xr  += w;    yr += h;  xl = -w;     yl = -h;
561b0a32e0cSBarry Smith   ierr = PetscDrawSetCoordinates(draw,xl,yl,xr,yr);CHKERRQ(ierr);
562b0a32e0cSBarry Smith   ierr = PetscDrawZoom(draw,MatView_SeqSBAIJ_Draw_Zoom,A);CHKERRQ(ierr);
5630298fd71SBarry Smith   ierr = PetscObjectCompose((PetscObject)A,"Zoomviewer",NULL);CHKERRQ(ierr);
56449b5e25fSSatish Balay   PetscFunctionReturn(0);
56549b5e25fSSatish Balay }
56649b5e25fSSatish Balay 
5674a2ae208SSatish Balay #undef __FUNCT__
5684a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ"
569dfbe8321SBarry Smith PetscErrorCode MatView_SeqSBAIJ(Mat A,PetscViewer viewer)
57049b5e25fSSatish Balay {
571dfbe8321SBarry Smith   PetscErrorCode ierr;
572ace3abfcSBarry Smith   PetscBool      iascii,isdraw;
57308917f38SBarry Smith   FILE           *file = 0;
57449b5e25fSSatish Balay 
57549b5e25fSSatish Balay   PetscFunctionBegin;
576251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
577251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
57832077d6dSBarry Smith   if (iascii) {
57949b5e25fSSatish Balay     ierr = MatView_SeqSBAIJ_ASCII(A,viewer);CHKERRQ(ierr);
58049b5e25fSSatish Balay   } else if (isdraw) {
58149b5e25fSSatish Balay     ierr = MatView_SeqSBAIJ_Draw(A,viewer);CHKERRQ(ierr);
58249b5e25fSSatish Balay   } else {
583a5e6ed63SBarry Smith     Mat B;
584ceb03754SKris Buschelman     ierr = MatConvert(A,MATSEQAIJ,MAT_INITIAL_MATRIX,&B);CHKERRQ(ierr);
585a5e6ed63SBarry Smith     ierr = MatView(B,viewer);CHKERRQ(ierr);
5866bf464f9SBarry Smith     ierr = MatDestroy(&B);CHKERRQ(ierr);
58708917f38SBarry Smith     ierr = PetscViewerBinaryGetInfoPointer(viewer,&file);CHKERRQ(ierr);
58808917f38SBarry Smith     if (file) {
58908917f38SBarry Smith       fprintf(file,"-matload_block_size %d\n",(int)A->rmap->bs);
59008917f38SBarry Smith     }
59149b5e25fSSatish Balay   }
59249b5e25fSSatish Balay   PetscFunctionReturn(0);
59349b5e25fSSatish Balay }
59449b5e25fSSatish Balay 
59549b5e25fSSatish Balay 
5964a2ae208SSatish Balay #undef __FUNCT__
5974a2ae208SSatish Balay #define __FUNCT__ "MatGetValues_SeqSBAIJ"
59813f74950SBarry Smith PetscErrorCode MatGetValues_SeqSBAIJ(Mat A,PetscInt m,const PetscInt im[],PetscInt n,const PetscInt in[],PetscScalar v[])
59949b5e25fSSatish Balay {
600045c9aa0SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
60113f74950SBarry Smith   PetscInt     *rp,k,low,high,t,row,nrow,i,col,l,*aj = a->j;
60213f74950SBarry Smith   PetscInt     *ai = a->i,*ailen = a->ilen;
603d0f46423SBarry Smith   PetscInt     brow,bcol,ridx,cidx,bs=A->rmap->bs,bs2=a->bs2;
60497e567efSBarry Smith   MatScalar    *ap,*aa = a->a;
60549b5e25fSSatish Balay 
60649b5e25fSSatish Balay   PetscFunctionBegin;
60749b5e25fSSatish Balay   for (k=0; k<m; k++) { /* loop over rows */
60849b5e25fSSatish Balay     row = im[k]; brow = row/bs;
609e32f2f54SBarry Smith     if (row < 0) {v += n; continue;} /* SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative row: %D",row); */
610e32f2f54SBarry Smith     if (row >= A->rmap->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %D max %D",row,A->rmap->N-1);
61149b5e25fSSatish Balay     rp   = aj + ai[brow]; ap = aa + bs2*ai[brow];
61249b5e25fSSatish Balay     nrow = ailen[brow];
61349b5e25fSSatish Balay     for (l=0; l<n; l++) { /* loop over columns */
614e32f2f54SBarry Smith       if (in[l] < 0) {v++; continue;} /* SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative column: %D",in[l]); */
615e32f2f54SBarry Smith       if (in[l] >= A->cmap->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %D max %D",in[l],A->cmap->n-1);
61649b5e25fSSatish Balay       col  = in[l];
61749b5e25fSSatish Balay       bcol = col/bs;
61849b5e25fSSatish Balay       cidx = col%bs;
61949b5e25fSSatish Balay       ridx = row%bs;
62049b5e25fSSatish Balay       high = nrow;
62149b5e25fSSatish Balay       low  = 0; /* assume unsorted */
62249b5e25fSSatish Balay       while (high-low > 5) {
62349b5e25fSSatish Balay         t = (low+high)/2;
62449b5e25fSSatish Balay         if (rp[t] > bcol) high = t;
62549b5e25fSSatish Balay         else              low  = t;
62649b5e25fSSatish Balay       }
62749b5e25fSSatish Balay       for (i=low; i<high; i++) {
62849b5e25fSSatish Balay         if (rp[i] > bcol) break;
62949b5e25fSSatish Balay         if (rp[i] == bcol) {
63049b5e25fSSatish Balay           *v++ = ap[bs2*i+bs*cidx+ridx];
63149b5e25fSSatish Balay           goto finished;
63249b5e25fSSatish Balay         }
63349b5e25fSSatish Balay       }
63497e567efSBarry Smith       *v++ = 0.0;
63549b5e25fSSatish Balay finished:;
63649b5e25fSSatish Balay     }
63749b5e25fSSatish Balay   }
63849b5e25fSSatish Balay   PetscFunctionReturn(0);
63949b5e25fSSatish Balay }
64049b5e25fSSatish Balay 
64149b5e25fSSatish Balay 
6424a2ae208SSatish Balay #undef __FUNCT__
6434a2ae208SSatish Balay #define __FUNCT__ "MatSetValuesBlocked_SeqSBAIJ"
64413f74950SBarry Smith PetscErrorCode MatSetValuesBlocked_SeqSBAIJ(Mat A,PetscInt m,const PetscInt im[],PetscInt n,const PetscInt in[],const PetscScalar v[],InsertMode is)
64549b5e25fSSatish Balay {
6460880e062SHong Zhang   Mat_SeqSBAIJ      *a = (Mat_SeqSBAIJ*)A->data;
6476849ba73SBarry Smith   PetscErrorCode    ierr;
648e2ee6c50SBarry Smith   PetscInt          *rp,k,low,high,t,ii,jj,row,nrow,i,col,l,rmax,N,lastcol = -1;
64913f74950SBarry Smith   PetscInt          *imax      =a->imax,*ai=a->i,*ailen=a->ilen;
650d0f46423SBarry Smith   PetscInt          *aj        =a->j,nonew=a->nonew,bs2=a->bs2,bs=A->rmap->bs,stepval;
651ace3abfcSBarry Smith   PetscBool         roworiented=a->roworiented;
652dd6ea824SBarry Smith   const PetscScalar *value     = v;
653f15d580aSBarry Smith   MatScalar         *ap,*aa = a->a,*bap;
6540880e062SHong Zhang 
65549b5e25fSSatish Balay   PetscFunctionBegin;
65626fbe8dcSKarl Rupp   if (roworiented) stepval = (n-1)*bs;
65726fbe8dcSKarl Rupp   else stepval = (m-1)*bs;
65826fbe8dcSKarl Rupp 
6590880e062SHong Zhang   for (k=0; k<m; k++) { /* loop over added rows */
6600880e062SHong Zhang     row = im[k];
6610880e062SHong Zhang     if (row < 0) continue;
6622515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
663e32f2f54SBarry Smith     if (row >= a->mbs) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %D max %D",row,a->mbs-1);
6640880e062SHong Zhang #endif
6650880e062SHong Zhang     rp   = aj + ai[row];
6660880e062SHong Zhang     ap   = aa + bs2*ai[row];
6670880e062SHong Zhang     rmax = imax[row];
6680880e062SHong Zhang     nrow = ailen[row];
6690880e062SHong Zhang     low  = 0;
670818f2c47SBarry Smith     high = nrow;
6710880e062SHong Zhang     for (l=0; l<n; l++) { /* loop over added columns */
6720880e062SHong Zhang       if (in[l] < 0) continue;
6730880e062SHong Zhang       col = in[l];
6742515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
675e32f2f54SBarry Smith       if (col >= a->nbs) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %D max %D",col,a->nbs-1);
676b1823623SSatish Balay #endif
677b98bf0e1SJed Brown       if (col < row) {
67826fbe8dcSKarl Rupp         if (a->ignore_ltriangular) continue; /* ignore lower triangular block */
67926fbe8dcSKarl Rupp         else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_USER,"Lower triangular value cannot be set for sbaij format. Ignoring these values, run with -mat_ignore_lower_triangular or call MatSetOption(mat,MAT_IGNORE_LOWER_TRIANGULAR,PETSC_TRUE)");
680b98bf0e1SJed Brown       }
68126fbe8dcSKarl Rupp       if (roworiented) value = v + k*(stepval+bs)*bs + l*bs;
68226fbe8dcSKarl Rupp       else value = v + l*(stepval+bs)*bs + k*bs;
68326fbe8dcSKarl Rupp 
68426fbe8dcSKarl Rupp       if (col <= lastcol) low = 0;
68526fbe8dcSKarl Rupp       else high = nrow;
68626fbe8dcSKarl Rupp 
687e2ee6c50SBarry Smith       lastcol = col;
6880880e062SHong Zhang       while (high-low > 7) {
6890880e062SHong Zhang         t = (low+high)/2;
6900880e062SHong Zhang         if (rp[t] > col) high = t;
6910880e062SHong Zhang         else             low  = t;
6920880e062SHong Zhang       }
6930880e062SHong Zhang       for (i=low; i<high; i++) {
6940880e062SHong Zhang         if (rp[i] > col) break;
6950880e062SHong Zhang         if (rp[i] == col) {
6960880e062SHong Zhang           bap = ap +  bs2*i;
6970880e062SHong Zhang           if (roworiented) {
6980880e062SHong Zhang             if (is == ADD_VALUES) {
6990880e062SHong Zhang               for (ii=0; ii<bs; ii++,value+=stepval) {
7000880e062SHong Zhang                 for (jj=ii; jj<bs2; jj+=bs) {
7010880e062SHong Zhang                   bap[jj] += *value++;
7020880e062SHong Zhang                 }
7030880e062SHong Zhang               }
7040880e062SHong Zhang             } else {
7050880e062SHong Zhang               for (ii=0; ii<bs; ii++,value+=stepval) {
7060880e062SHong Zhang                 for (jj=ii; jj<bs2; jj+=bs) {
7070880e062SHong Zhang                   bap[jj] = *value++;
7080880e062SHong Zhang                 }
7090880e062SHong Zhang                }
7100880e062SHong Zhang             }
7110880e062SHong Zhang           } else {
7120880e062SHong Zhang             if (is == ADD_VALUES) {
7130880e062SHong Zhang               for (ii=0; ii<bs; ii++,value+=stepval) {
7140880e062SHong Zhang                 for (jj=0; jj<bs; jj++) {
7150880e062SHong Zhang                   *bap++ += *value++;
7160880e062SHong Zhang                 }
7170880e062SHong Zhang               }
7180880e062SHong Zhang             } else {
7190880e062SHong Zhang               for (ii=0; ii<bs; ii++,value+=stepval) {
7200880e062SHong Zhang                 for (jj=0; jj<bs; jj++) {
7210880e062SHong Zhang                   *bap++  = *value++;
7220880e062SHong Zhang                 }
7230880e062SHong Zhang               }
7240880e062SHong Zhang             }
7250880e062SHong Zhang           }
7260880e062SHong Zhang           goto noinsert2;
7270880e062SHong Zhang         }
7280880e062SHong Zhang       }
7290880e062SHong Zhang       if (nonew == 1) goto noinsert2;
730e32f2f54SBarry Smith       if (nonew == -1) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%D, %D) in the matrix", row, col);
731fef13f97SBarry Smith       MatSeqXAIJReallocateAIJ(A,a->mbs,bs2,nrow,row,col,rmax,aa,ai,aj,rp,ap,imax,nonew,MatScalar);
732c03d1d03SSatish Balay       N = nrow++ - 1; high++;
7330880e062SHong Zhang       /* shift up all the later entries in this row */
7340880e062SHong Zhang       for (ii=N; ii>=i; ii--) {
7350880e062SHong Zhang         rp[ii+1] = rp[ii];
7360880e062SHong Zhang         ierr     = PetscMemcpy(ap+bs2*(ii+1),ap+bs2*(ii),bs2*sizeof(MatScalar));CHKERRQ(ierr);
7370880e062SHong Zhang       }
7380880e062SHong Zhang       if (N >= i) {
7390880e062SHong Zhang         ierr = PetscMemzero(ap+bs2*i,bs2*sizeof(MatScalar));CHKERRQ(ierr);
7400880e062SHong Zhang       }
7410880e062SHong Zhang       rp[i] = col;
7420880e062SHong Zhang       bap   = ap +  bs2*i;
7430880e062SHong Zhang       if (roworiented) {
7440880e062SHong Zhang         for (ii=0; ii<bs; ii++,value+=stepval) {
7450880e062SHong Zhang           for (jj=ii; jj<bs2; jj+=bs) {
7460880e062SHong Zhang             bap[jj] = *value++;
7470880e062SHong Zhang           }
7480880e062SHong Zhang         }
7490880e062SHong Zhang       } else {
7500880e062SHong Zhang         for (ii=0; ii<bs; ii++,value+=stepval) {
7510880e062SHong Zhang           for (jj=0; jj<bs; jj++) {
7520880e062SHong Zhang             *bap++ = *value++;
7530880e062SHong Zhang           }
7540880e062SHong Zhang         }
7550880e062SHong Zhang        }
7560880e062SHong Zhang     noinsert2:;
7570880e062SHong Zhang       low = i;
7580880e062SHong Zhang     }
7590880e062SHong Zhang     ailen[row] = nrow;
7600880e062SHong Zhang   }
7610880e062SHong Zhang   PetscFunctionReturn(0);
76249b5e25fSSatish Balay }
76349b5e25fSSatish Balay 
76464831d72SBarry Smith /*
76564831d72SBarry Smith     This is not yet used
76664831d72SBarry Smith */
7674a2ae208SSatish Balay #undef __FUNCT__
7684108e4d5SBarry Smith #define __FUNCT__ "MatAssemblyEnd_SeqSBAIJ_SeqAIJ_Inode"
7694108e4d5SBarry Smith PetscErrorCode MatAssemblyEnd_SeqSBAIJ_SeqAIJ_Inode(Mat A)
7700def2e27SBarry Smith {
7710def2e27SBarry Smith   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
7720def2e27SBarry Smith   PetscErrorCode ierr;
7730def2e27SBarry Smith   const PetscInt *ai = a->i, *aj = a->j,*cols;
7740def2e27SBarry Smith   PetscInt       i   = 0,j,blk_size,m = A->rmap->n,node_count = 0,nzx,nzy,*ns,row,nz,cnt,cnt2,*counts;
775ace3abfcSBarry Smith   PetscBool      flag;
7760def2e27SBarry Smith 
7770def2e27SBarry Smith   PetscFunctionBegin;
7780def2e27SBarry Smith   ierr = PetscMalloc(m*sizeof(PetscInt),&ns);CHKERRQ(ierr);
7790def2e27SBarry Smith   while (i < m) {
7800def2e27SBarry Smith     nzx = ai[i+1] - ai[i];       /* Number of nonzeros */
7810def2e27SBarry Smith     /* Limits the number of elements in a node to 'a->inode.limit' */
7820def2e27SBarry Smith     for (j=i+1,blk_size=1; j<m && blk_size <a->inode.limit; ++j,++blk_size) {
7830def2e27SBarry Smith       nzy = ai[j+1] - ai[j];
7840def2e27SBarry Smith       if (nzy != (nzx - j + i)) break;
7850def2e27SBarry Smith       ierr = PetscMemcmp(aj + ai[i] + j - i,aj + ai[j],nzy*sizeof(PetscInt),&flag);CHKERRQ(ierr);
7860def2e27SBarry Smith       if (!flag) break;
7870def2e27SBarry Smith     }
7880def2e27SBarry Smith     ns[node_count++] = blk_size;
78926fbe8dcSKarl Rupp 
7900def2e27SBarry Smith     i = j;
7910def2e27SBarry Smith   }
7920def2e27SBarry Smith   if (!a->inode.size && m && node_count > .9*m) {
7930def2e27SBarry Smith     ierr = PetscFree(ns);CHKERRQ(ierr);
7940def2e27SBarry Smith     ierr = PetscInfo2(A,"Found %D nodes out of %D rows. Not using Inode routines\n",node_count,m);CHKERRQ(ierr);
7950def2e27SBarry Smith   } else {
7960def2e27SBarry Smith     a->inode.node_count = node_count;
79726fbe8dcSKarl Rupp 
7980def2e27SBarry Smith     ierr = PetscMalloc(node_count*sizeof(PetscInt),&a->inode.size);CHKERRQ(ierr);
799c760cd28SBarry Smith     ierr = PetscLogObjectMemory(A,node_count*sizeof(PetscInt));CHKERRQ(ierr);
80022d28d08SBarry Smith     ierr = PetscMemcpy(a->inode.size,ns,node_count*sizeof(PetscInt));CHKERRQ(ierr);
8010def2e27SBarry Smith     ierr = PetscFree(ns);CHKERRQ(ierr);
8020def2e27SBarry Smith     ierr = PetscInfo3(A,"Found %D nodes of %D. Limit used: %D. Using Inode routines\n",node_count,m,a->inode.limit);CHKERRQ(ierr);
8030def2e27SBarry Smith 
8040def2e27SBarry Smith     /* count collections of adjacent columns in each inode */
8050def2e27SBarry Smith     row = 0;
8060def2e27SBarry Smith     cnt = 0;
8070def2e27SBarry Smith     for (i=0; i<node_count; i++) {
8080def2e27SBarry Smith       cols = aj + ai[row] + a->inode.size[i];
8090def2e27SBarry Smith       nz   = ai[row+1] - ai[row] - a->inode.size[i];
8100def2e27SBarry Smith       for (j=1; j<nz; j++) {
81126fbe8dcSKarl Rupp         if (cols[j] != cols[j-1]+1) cnt++;
8120def2e27SBarry Smith       }
8130def2e27SBarry Smith       cnt++;
8140def2e27SBarry Smith       row += a->inode.size[i];
8150def2e27SBarry Smith     }
8160def2e27SBarry Smith     ierr = PetscMalloc(2*cnt*sizeof(PetscInt),&counts);CHKERRQ(ierr);
8170def2e27SBarry Smith     cnt  = 0;
8180def2e27SBarry Smith     row  = 0;
8190def2e27SBarry Smith     for (i=0; i<node_count; i++) {
8200def2e27SBarry Smith       cols = aj + ai[row] + a->inode.size[i];
8210def2e27SBarry Smith       CHKMEMQ;
8220def2e27SBarry Smith       counts[2*cnt] = cols[0];
8230def2e27SBarry Smith       CHKMEMQ;
8240def2e27SBarry Smith       nz   = ai[row+1] - ai[row] - a->inode.size[i];
8250def2e27SBarry Smith       cnt2 = 1;
8260def2e27SBarry Smith       for (j=1; j<nz; j++) {
8270def2e27SBarry Smith         if (cols[j] != cols[j-1]+1) {
8280def2e27SBarry Smith           CHKMEMQ;
8290def2e27SBarry Smith           counts[2*(cnt++)+1] = cnt2;
8300def2e27SBarry Smith           counts[2*cnt]       = cols[j];
8310def2e27SBarry Smith           CHKMEMQ;
8320def2e27SBarry Smith           cnt2 = 1;
8330def2e27SBarry Smith         } else cnt2++;
8340def2e27SBarry Smith       }
8350def2e27SBarry Smith       CHKMEMQ;
8360def2e27SBarry Smith       counts[2*(cnt++)+1] = cnt2;
8370def2e27SBarry Smith       CHKMEMQ;
8380def2e27SBarry Smith       row += a->inode.size[i];
8390def2e27SBarry Smith     }
84022d28d08SBarry Smith     ierr = PetscIntView(2*cnt,counts,0);CHKERRQ(ierr);
8410def2e27SBarry Smith   }
84238702af4SBarry Smith   PetscFunctionReturn(0);
84338702af4SBarry Smith }
84438702af4SBarry Smith 
84538702af4SBarry Smith #undef __FUNCT__
8464a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyEnd_SeqSBAIJ"
847dfbe8321SBarry Smith PetscErrorCode MatAssemblyEnd_SeqSBAIJ(Mat A,MatAssemblyType mode)
84849b5e25fSSatish Balay {
84949b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
8506849ba73SBarry Smith   PetscErrorCode ierr;
85113f74950SBarry Smith   PetscInt       fshift = 0,i,j,*ai = a->i,*aj = a->j,*imax = a->imax;
852d0f46423SBarry Smith   PetscInt       m      = A->rmap->N,*ip,N,*ailen = a->ilen;
85313f74950SBarry Smith   PetscInt       mbs    = a->mbs,bs2 = a->bs2,rmax = 0;
85449b5e25fSSatish Balay   MatScalar      *aa    = a->a,*ap;
85549b5e25fSSatish Balay 
85649b5e25fSSatish Balay   PetscFunctionBegin;
85749b5e25fSSatish Balay   if (mode == MAT_FLUSH_ASSEMBLY) PetscFunctionReturn(0);
85849b5e25fSSatish Balay 
85949b5e25fSSatish Balay   if (m) rmax = ailen[0];
86049b5e25fSSatish Balay   for (i=1; i<mbs; i++) {
86149b5e25fSSatish Balay     /* move each row back by the amount of empty slots (fshift) before it*/
86249b5e25fSSatish Balay     fshift += imax[i-1] - ailen[i-1];
86349b5e25fSSatish Balay     rmax    = PetscMax(rmax,ailen[i]);
86449b5e25fSSatish Balay     if (fshift) {
86549b5e25fSSatish Balay       ip = aj + ai[i]; ap = aa + bs2*ai[i];
86649b5e25fSSatish Balay       N  = ailen[i];
86749b5e25fSSatish Balay       for (j=0; j<N; j++) {
86849b5e25fSSatish Balay         ip[j-fshift] = ip[j];
86949b5e25fSSatish Balay         ierr         = PetscMemcpy(ap+(j-fshift)*bs2,ap+j*bs2,bs2*sizeof(MatScalar));CHKERRQ(ierr);
87049b5e25fSSatish Balay       }
87149b5e25fSSatish Balay     }
87249b5e25fSSatish Balay     ai[i] = ai[i-1] + ailen[i-1];
87349b5e25fSSatish Balay   }
87449b5e25fSSatish Balay   if (mbs) {
87549b5e25fSSatish Balay     fshift += imax[mbs-1] - ailen[mbs-1];
87649b5e25fSSatish Balay     ai[mbs] = ai[mbs-1] + ailen[mbs-1];
87749b5e25fSSatish Balay   }
87849b5e25fSSatish Balay   /* reset ilen and imax for each row */
87949b5e25fSSatish Balay   for (i=0; i<mbs; i++) {
88049b5e25fSSatish Balay     ailen[i] = imax[i] = ai[i+1] - ai[i];
88149b5e25fSSatish Balay   }
8826c6c5352SBarry Smith   a->nz = ai[mbs];
88349b5e25fSSatish Balay 
884b424e231SHong Zhang   /* diagonals may have moved, reset it */
885b424e231SHong Zhang   if (a->diag) {
8862ed38d0bSJed Brown     ierr = PetscMemcpy(a->diag,ai,mbs*sizeof(PetscInt));CHKERRQ(ierr);
88749b5e25fSSatish Balay   }
88826fbe8dcSKarl Rupp   if (fshift && a->nounused == -1) SETERRQ4(PETSC_COMM_SELF,PETSC_ERR_PLIB, "Unused space detected in matrix: %D X %D block size %D, %D unneeded", m, A->cmap->n, A->rmap->bs, fshift*bs2);
88926fbe8dcSKarl Rupp 
890d0f46423SBarry Smith   ierr = PetscInfo5(A,"Matrix size: %D X %D, block size %D; storage space: %D unneeded, %D used\n",m,A->rmap->N,A->rmap->bs,fshift*bs2,a->nz*bs2);CHKERRQ(ierr);
891ae15b995SBarry Smith   ierr = PetscInfo1(A,"Number of mallocs during MatSetValues is %D\n",a->reallocs);CHKERRQ(ierr);
892ae15b995SBarry Smith   ierr = PetscInfo1(A,"Most nonzeros blocks in any row is %D\n",rmax);CHKERRQ(ierr);
89326fbe8dcSKarl Rupp 
8948e58a170SBarry Smith   A->info.mallocs    += a->reallocs;
89549b5e25fSSatish Balay   a->reallocs         = 0;
89649b5e25fSSatish Balay   A->info.nz_unneeded = (PetscReal)fshift*bs2;
897061b2667SBarry Smith   a->idiagvalid       = PETSC_FALSE;
89838702af4SBarry Smith 
89938702af4SBarry Smith   if (A->cmap->n < 65536 && A->cmap->bs == 1) {
90044e1c64aSLisandro Dalcin     if (a->jshort && a->free_jshort) {
90117803ae8SHong Zhang       /* when matrix data structure is changed, previous jshort must be replaced */
90217803ae8SHong Zhang       ierr = PetscFree(a->jshort);CHKERRQ(ierr);
90317803ae8SHong Zhang     }
90438702af4SBarry Smith     ierr = PetscMalloc(a->i[A->rmap->n]*sizeof(unsigned short),&a->jshort);CHKERRQ(ierr);
905c760cd28SBarry Smith     ierr = PetscLogObjectMemory(A,a->i[A->rmap->n]*sizeof(unsigned short));CHKERRQ(ierr);
90638702af4SBarry Smith     for (i=0; i<a->i[A->rmap->n]; i++) a->jshort[i] = a->j[i];
90738702af4SBarry Smith     A->ops->mult   = MatMult_SeqSBAIJ_1_ushort;
90841f059aeSBarry Smith     A->ops->sor    = MatSOR_SeqSBAIJ_ushort;
9094da8f245SBarry Smith     a->free_jshort = PETSC_TRUE;
91038702af4SBarry Smith   }
91149b5e25fSSatish Balay   PetscFunctionReturn(0);
91249b5e25fSSatish Balay }
91349b5e25fSSatish Balay 
91449b5e25fSSatish Balay /*
91549b5e25fSSatish Balay    This function returns an array of flags which indicate the locations of contiguous
91649b5e25fSSatish Balay    blocks that should be zeroed. for eg: if bs = 3  and is = [0,1,2,3,5,6,7,8,9]
91749b5e25fSSatish Balay    then the resulting sizes = [3,1,1,3,1] correspondig to sets [(0,1,2),(3),(5),(6,7,8),(9)]
91849b5e25fSSatish Balay    Assume: sizes should be long enough to hold all the values.
91949b5e25fSSatish Balay */
9204a2ae208SSatish Balay #undef __FUNCT__
9214a2ae208SSatish Balay #define __FUNCT__ "MatZeroRows_SeqSBAIJ_Check_Blocks"
92213f74950SBarry Smith PetscErrorCode MatZeroRows_SeqSBAIJ_Check_Blocks(PetscInt idx[],PetscInt n,PetscInt bs,PetscInt sizes[], PetscInt *bs_max)
92349b5e25fSSatish Balay {
92413f74950SBarry Smith   PetscInt  i,j,k,row;
925ace3abfcSBarry Smith   PetscBool flg;
92649b5e25fSSatish Balay 
92749b5e25fSSatish Balay   PetscFunctionBegin;
92849b5e25fSSatish Balay   for (i=0,j=0; i<n; j++) {
92949b5e25fSSatish Balay     row = idx[i];
93049b5e25fSSatish Balay     if (row%bs!=0) { /* Not the begining of a block */
93149b5e25fSSatish Balay       sizes[j] = 1;
93249b5e25fSSatish Balay       i++;
93349b5e25fSSatish Balay     } else if (i+bs > n) { /* Beginning of a block, but complete block doesn't exist (at idx end) */
93449b5e25fSSatish Balay       sizes[j] = 1;         /* Also makes sure atleast 'bs' values exist for next else */
93549b5e25fSSatish Balay       i++;
93649b5e25fSSatish Balay     } else { /* Begining of the block, so check if the complete block exists */
93749b5e25fSSatish Balay       flg = PETSC_TRUE;
93849b5e25fSSatish Balay       for (k=1; k<bs; k++) {
93949b5e25fSSatish Balay         if (row+k != idx[i+k]) { /* break in the block */
94049b5e25fSSatish Balay           flg = PETSC_FALSE;
94149b5e25fSSatish Balay           break;
94249b5e25fSSatish Balay         }
94349b5e25fSSatish Balay       }
944abc0a331SBarry Smith       if (flg) { /* No break in the bs */
94549b5e25fSSatish Balay         sizes[j] = bs;
94649b5e25fSSatish Balay         i       += bs;
94749b5e25fSSatish Balay       } else {
94849b5e25fSSatish Balay         sizes[j] = 1;
94949b5e25fSSatish Balay         i++;
95049b5e25fSSatish Balay       }
95149b5e25fSSatish Balay     }
95249b5e25fSSatish Balay   }
95349b5e25fSSatish Balay   *bs_max = j;
95449b5e25fSSatish Balay   PetscFunctionReturn(0);
95549b5e25fSSatish Balay }
95649b5e25fSSatish Balay 
95749b5e25fSSatish Balay 
95849b5e25fSSatish Balay /* Only add/insert a(i,j) with i<=j (blocks).
95949b5e25fSSatish Balay    Any a(i,j) with i>j input by user is ingored.
96049b5e25fSSatish Balay */
96149b5e25fSSatish Balay 
9624a2ae208SSatish Balay #undef __FUNCT__
9634a2ae208SSatish Balay #define __FUNCT__ "MatSetValues_SeqSBAIJ"
96413f74950SBarry Smith PetscErrorCode MatSetValues_SeqSBAIJ(Mat A,PetscInt m,const PetscInt im[],PetscInt n,const PetscInt in[],const PetscScalar v[],InsertMode is)
96549b5e25fSSatish Balay {
96649b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
9676849ba73SBarry Smith   PetscErrorCode ierr;
968e2ee6c50SBarry Smith   PetscInt       *rp,k,low,high,t,ii,row,nrow,i,col,l,rmax,N,lastcol = -1;
96913f74950SBarry Smith   PetscInt       *imax=a->imax,*ai=a->i,*ailen=a->ilen,roworiented=a->roworiented;
970d0f46423SBarry Smith   PetscInt       *aj  =a->j,nonew=a->nonew,bs=A->rmap->bs,brow,bcol;
97113f74950SBarry Smith   PetscInt       ridx,cidx,bs2=a->bs2;
97249b5e25fSSatish Balay   MatScalar      *ap,value,*aa=a->a,*bap;
97349b5e25fSSatish Balay 
97449b5e25fSSatish Balay   PetscFunctionBegin;
97571fd2e92SBarry Smith   if (v) PetscValidScalarPointer(v,6);
97649b5e25fSSatish Balay   for (k=0; k<m; k++) { /* loop over added rows */
97749b5e25fSSatish Balay     row  = im[k];       /* row number */
97849b5e25fSSatish Balay     brow = row/bs;      /* block row number */
97949b5e25fSSatish Balay     if (row < 0) continue;
9802515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
981e32f2f54SBarry Smith     if (row >= A->rmap->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %D max %D",row,A->rmap->N-1);
98249b5e25fSSatish Balay #endif
98349b5e25fSSatish Balay     rp   = aj + ai[brow]; /*ptr to beginning of column value of the row block*/
98449b5e25fSSatish Balay     ap   = aa + bs2*ai[brow]; /*ptr to beginning of element value of the row block*/
98549b5e25fSSatish Balay     rmax = imax[brow];  /* maximum space allocated for this row */
98649b5e25fSSatish Balay     nrow = ailen[brow]; /* actual length of this row */
98749b5e25fSSatish Balay     low  = 0;
98849b5e25fSSatish Balay 
98949b5e25fSSatish Balay     for (l=0; l<n; l++) { /* loop over added columns */
99049b5e25fSSatish Balay       if (in[l] < 0) continue;
9912515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
992e32f2f54SBarry Smith       if (in[l] >= A->rmap->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %D max %D",in[l],A->rmap->N-1);
99349b5e25fSSatish Balay #endif
99449b5e25fSSatish Balay       col  = in[l];
99549b5e25fSSatish Balay       bcol = col/bs;              /* block col number */
99649b5e25fSSatish Balay 
997941593c8SHong Zhang       if (brow > bcol) {
99826fbe8dcSKarl Rupp         if (a->ignore_ltriangular) continue; /* ignore lower triangular values */
99926fbe8dcSKarl Rupp         else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_USER,"Lower triangular value cannot be set for sbaij format. Ignoring these values, run with -mat_ignore_lower_triangular or call MatSetOption(mat,MAT_IGNORE_LOWER_TRIANGULAR,PETSC_TRUE)");
1000941593c8SHong Zhang       }
1001f4989cb3SHong Zhang 
100249b5e25fSSatish Balay       ridx = row % bs; cidx = col % bs; /*row and col index inside the block */
10038549e402SHong Zhang       if ((brow==bcol && ridx<=cidx) || (brow<bcol)) {
100449b5e25fSSatish Balay         /* element value a(k,l) */
100526fbe8dcSKarl Rupp         if (roworiented) value = v[l + k*n];
100626fbe8dcSKarl Rupp         else value = v[k + l*m];
100749b5e25fSSatish Balay 
100849b5e25fSSatish Balay         /* move pointer bap to a(k,l) quickly and add/insert value */
100926fbe8dcSKarl Rupp         if (col <= lastcol) low = 0;
101026fbe8dcSKarl Rupp         high = nrow;
1011e2ee6c50SBarry Smith         lastcol = col;
101249b5e25fSSatish Balay         while (high-low > 7) {
101349b5e25fSSatish Balay           t = (low+high)/2;
101449b5e25fSSatish Balay           if (rp[t] > bcol) high = t;
101549b5e25fSSatish Balay           else              low  = t;
101649b5e25fSSatish Balay         }
101749b5e25fSSatish Balay         for (i=low; i<high; i++) {
101849b5e25fSSatish Balay           if (rp[i] > bcol) break;
101949b5e25fSSatish Balay           if (rp[i] == bcol) {
102049b5e25fSSatish Balay             bap = ap +  bs2*i + bs*cidx + ridx;
102149b5e25fSSatish Balay             if (is == ADD_VALUES) *bap += value;
102249b5e25fSSatish Balay             else                  *bap  = value;
10238549e402SHong Zhang             /* for diag block, add/insert its symmetric element a(cidx,ridx) */
10248549e402SHong Zhang             if (brow == bcol && ridx < cidx) {
10258549e402SHong Zhang               bap = ap +  bs2*i + bs*ridx + cidx;
10268549e402SHong Zhang               if (is == ADD_VALUES) *bap += value;
10278549e402SHong Zhang               else                  *bap  = value;
10288549e402SHong Zhang             }
102949b5e25fSSatish Balay             goto noinsert1;
103049b5e25fSSatish Balay           }
103149b5e25fSSatish Balay         }
103249b5e25fSSatish Balay 
103349b5e25fSSatish Balay         if (nonew == 1) goto noinsert1;
1034e32f2f54SBarry Smith         if (nonew == -1) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%D, %D) in the matrix", row, col);
1035fef13f97SBarry Smith         MatSeqXAIJReallocateAIJ(A,a->mbs,bs2,nrow,brow,bcol,rmax,aa,ai,aj,rp,ap,imax,nonew,MatScalar);
103649b5e25fSSatish Balay 
1037c03d1d03SSatish Balay         N = nrow++ - 1; high++;
103849b5e25fSSatish Balay         /* shift up all the later entries in this row */
103949b5e25fSSatish Balay         for (ii=N; ii>=i; ii--) {
104049b5e25fSSatish Balay           rp[ii+1] = rp[ii];
104149b5e25fSSatish Balay           ierr     = PetscMemcpy(ap+bs2*(ii+1),ap+bs2*(ii),bs2*sizeof(MatScalar));CHKERRQ(ierr);
104249b5e25fSSatish Balay         }
104349b5e25fSSatish Balay         if (N>=i) {
104449b5e25fSSatish Balay           ierr = PetscMemzero(ap+bs2*i,bs2*sizeof(MatScalar));CHKERRQ(ierr);
104549b5e25fSSatish Balay         }
104649b5e25fSSatish Balay         rp[i]                      = bcol;
104749b5e25fSSatish Balay         ap[bs2*i + bs*cidx + ridx] = value;
104849b5e25fSSatish Balay noinsert1:;
104949b5e25fSSatish Balay         low = i;
10508549e402SHong Zhang       }
105149b5e25fSSatish Balay     }   /* end of loop over added columns */
105249b5e25fSSatish Balay     ailen[brow] = nrow;
105349b5e25fSSatish Balay   }   /* end of loop over added rows */
105449b5e25fSSatish Balay   PetscFunctionReturn(0);
105549b5e25fSSatish Balay }
105649b5e25fSSatish Balay 
10574a2ae208SSatish Balay #undef __FUNCT__
10584d101231SSatish Balay #define __FUNCT__ "MatICCFactor_SeqSBAIJ"
10590481f469SBarry Smith PetscErrorCode MatICCFactor_SeqSBAIJ(Mat inA,IS row,const MatFactorInfo *info)
106049b5e25fSSatish Balay {
10614ccecd49SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)inA->data;
106249b5e25fSSatish Balay   Mat            outA;
1063dfbe8321SBarry Smith   PetscErrorCode ierr;
1064ace3abfcSBarry Smith   PetscBool      row_identity;
106549b5e25fSSatish Balay 
106649b5e25fSSatish Balay   PetscFunctionBegin;
1067e32f2f54SBarry Smith   if (info->levels != 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Only levels=0 is supported for in-place icc");
1068c84f5b01SHong Zhang   ierr = ISIdentity(row,&row_identity);CHKERRQ(ierr);
1069e32f2f54SBarry Smith   if (!row_identity) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix reordering is not supported");
1070e32f2f54SBarry Smith   if (inA->rmap->bs != 1) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix block size %D is not supported",inA->rmap->bs); /* Need to replace MatCholeskyFactorSymbolic_SeqSBAIJ_MSR()! */
1071c84f5b01SHong Zhang 
107249b5e25fSSatish Balay   outA            = inA;
1073d5f3da31SBarry Smith   inA->factortype = MAT_FACTOR_ICC;
107449b5e25fSSatish Balay 
10751a3463dfSHong Zhang   ierr = MatMarkDiagonal_SeqSBAIJ(inA);CHKERRQ(ierr);
1076d595f711SHong Zhang   ierr = MatSeqSBAIJSetNumericFactorization_inplace(inA,row_identity);CHKERRQ(ierr);
107749b5e25fSSatish Balay 
1078c3122656SLisandro Dalcin   ierr   = PetscObjectReference((PetscObject)row);CHKERRQ(ierr);
10796bf464f9SBarry Smith   ierr   = ISDestroy(&a->row);CHKERRQ(ierr);
1080c84f5b01SHong Zhang   a->row = row;
1081c3122656SLisandro Dalcin   ierr   = PetscObjectReference((PetscObject)row);CHKERRQ(ierr);
10826bf464f9SBarry Smith   ierr   = ISDestroy(&a->col);CHKERRQ(ierr);
1083c84f5b01SHong Zhang   a->col = row;
1084c84f5b01SHong Zhang 
1085c84f5b01SHong Zhang   /* Create the invert permutation so that it can be used in MatCholeskyFactorNumeric() */
1086c84f5b01SHong Zhang   if (a->icol) {ierr = ISInvertPermutation(row,PETSC_DECIDE, &a->icol);CHKERRQ(ierr);}
108752e6d16bSBarry Smith   ierr = PetscLogObjectParent(inA,a->icol);CHKERRQ(ierr);
108849b5e25fSSatish Balay 
108949b5e25fSSatish Balay   if (!a->solve_work) {
1090d0f46423SBarry Smith     ierr = PetscMalloc((inA->rmap->N+inA->rmap->bs)*sizeof(PetscScalar),&a->solve_work);CHKERRQ(ierr);
1091d0f46423SBarry Smith     ierr = PetscLogObjectMemory(inA,(inA->rmap->N+inA->rmap->bs)*sizeof(PetscScalar));CHKERRQ(ierr);
109249b5e25fSSatish Balay   }
109349b5e25fSSatish Balay 
1094719d5645SBarry Smith   ierr = MatCholeskyFactorNumeric(outA,inA,info);CHKERRQ(ierr);
109549b5e25fSSatish Balay   PetscFunctionReturn(0);
109649b5e25fSSatish Balay }
1097950f1e5bSHong Zhang 
10984a2ae208SSatish Balay #undef __FUNCT__
10994a2ae208SSatish Balay #define __FUNCT__ "MatSeqSBAIJSetColumnIndices_SeqSBAIJ"
11007087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetColumnIndices_SeqSBAIJ(Mat mat,PetscInt *indices)
110149b5e25fSSatish Balay {
1102045c9aa0SHong Zhang   Mat_SeqSBAIJ   *baij = (Mat_SeqSBAIJ*)mat->data;
110313f74950SBarry Smith   PetscInt       i,nz,n;
11047827cd58SJed Brown   PetscErrorCode ierr;
110549b5e25fSSatish Balay 
110649b5e25fSSatish Balay   PetscFunctionBegin;
11076c6c5352SBarry Smith   nz = baij->maxnz;
1108d0f46423SBarry Smith   n  = mat->cmap->n;
110926fbe8dcSKarl Rupp   for (i=0; i<nz; i++) baij->j[i] = indices[i];
111026fbe8dcSKarl Rupp 
11116c6c5352SBarry Smith   baij->nz = nz;
111226fbe8dcSKarl Rupp   for (i=0; i<n; i++) baij->ilen[i] = baij->imax[i];
111326fbe8dcSKarl Rupp 
11147827cd58SJed Brown   ierr = MatSetOption(mat,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
111549b5e25fSSatish Balay   PetscFunctionReturn(0);
111649b5e25fSSatish Balay }
111749b5e25fSSatish Balay 
11184a2ae208SSatish Balay #undef __FUNCT__
11194a2ae208SSatish Balay #define __FUNCT__ "MatSeqSBAIJSetColumnIndices"
112049b5e25fSSatish Balay /*@
112119585528SSatish Balay   MatSeqSBAIJSetColumnIndices - Set the column indices for all the rows
112249b5e25fSSatish Balay   in the matrix.
112349b5e25fSSatish Balay 
112449b5e25fSSatish Balay   Input Parameters:
112519585528SSatish Balay   +  mat     - the SeqSBAIJ matrix
112649b5e25fSSatish Balay   -  indices - the column indices
112749b5e25fSSatish Balay 
112849b5e25fSSatish Balay   Level: advanced
112949b5e25fSSatish Balay 
113049b5e25fSSatish Balay   Notes:
113149b5e25fSSatish Balay   This can be called if you have precomputed the nonzero structure of the
113249b5e25fSSatish Balay   matrix and want to provide it to the matrix object to improve the performance
113349b5e25fSSatish Balay   of the MatSetValues() operation.
113449b5e25fSSatish Balay 
113549b5e25fSSatish Balay   You MUST have set the correct numbers of nonzeros per row in the call to
1136d1be2dadSMatthew Knepley   MatCreateSeqSBAIJ(), and the columns indices MUST be sorted.
113749b5e25fSSatish Balay 
1138ab9f2c04SSatish Balay   MUST be called before any calls to MatSetValues()
113949b5e25fSSatish Balay 
1140ab9f2c04SSatish Balay   .seealso: MatCreateSeqSBAIJ
114149b5e25fSSatish Balay @*/
11427087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetColumnIndices(Mat mat,PetscInt *indices)
114349b5e25fSSatish Balay {
11444ac538c5SBarry Smith   PetscErrorCode ierr;
114549b5e25fSSatish Balay 
114649b5e25fSSatish Balay   PetscFunctionBegin;
11470700a824SBarry Smith   PetscValidHeaderSpecific(mat,MAT_CLASSID,1);
11484482741eSBarry Smith   PetscValidPointer(indices,2);
11494ac538c5SBarry Smith   ierr = PetscUseMethod(mat,"MatSeqSBAIJSetColumnIndices_C",(Mat,PetscInt*),(mat,indices));CHKERRQ(ierr);
115049b5e25fSSatish Balay   PetscFunctionReturn(0);
115149b5e25fSSatish Balay }
115249b5e25fSSatish Balay 
11534a2ae208SSatish Balay #undef __FUNCT__
11543c896bc6SHong Zhang #define __FUNCT__ "MatCopy_SeqSBAIJ"
11553c896bc6SHong Zhang PetscErrorCode MatCopy_SeqSBAIJ(Mat A,Mat B,MatStructure str)
11563c896bc6SHong Zhang {
11573c896bc6SHong Zhang   PetscErrorCode ierr;
11583c896bc6SHong Zhang 
11593c896bc6SHong Zhang   PetscFunctionBegin;
11603c896bc6SHong Zhang   /* If the two matrices have the same copy implementation, use fast copy. */
11613c896bc6SHong Zhang   if (str == SAME_NONZERO_PATTERN && (A->ops->copy == B->ops->copy)) {
11623c896bc6SHong Zhang     Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
11633c896bc6SHong Zhang     Mat_SeqSBAIJ *b = (Mat_SeqSBAIJ*)B->data;
11643c896bc6SHong Zhang 
1165e7e72b3dSBarry Smith     if (a->i[A->rmap->N] != b->i[B->rmap->N]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_INCOMP,"Number of nonzeros in two matrices are different");
1166d0f46423SBarry Smith     ierr = PetscMemcpy(b->a,a->a,(a->i[A->rmap->N])*sizeof(PetscScalar));CHKERRQ(ierr);
11673c896bc6SHong Zhang   } else {
1168f5edf698SHong Zhang     ierr = MatGetRowUpperTriangular(A);CHKERRQ(ierr);
11693c896bc6SHong Zhang     ierr = MatCopy_Basic(A,B,str);CHKERRQ(ierr);
1170f5edf698SHong Zhang     ierr = MatRestoreRowUpperTriangular(A);CHKERRQ(ierr);
11713c896bc6SHong Zhang   }
11723c896bc6SHong Zhang   PetscFunctionReturn(0);
11733c896bc6SHong Zhang }
11743c896bc6SHong Zhang 
11753c896bc6SHong Zhang #undef __FUNCT__
11764994cf47SJed Brown #define __FUNCT__ "MatSetUp_SeqSBAIJ"
11774994cf47SJed Brown PetscErrorCode MatSetUp_SeqSBAIJ(Mat A)
1178273d9f13SBarry Smith {
1179dfbe8321SBarry Smith   PetscErrorCode ierr;
1180273d9f13SBarry Smith 
1181273d9f13SBarry Smith   PetscFunctionBegin;
1182535b19f3SBarry Smith   ierr =  MatSeqSBAIJSetPreallocation_SeqSBAIJ(A,A->rmap->bs,PETSC_DEFAULT,0);CHKERRQ(ierr);
1183273d9f13SBarry Smith   PetscFunctionReturn(0);
1184273d9f13SBarry Smith }
1185273d9f13SBarry Smith 
1186a6ece127SHong Zhang #undef __FUNCT__
11878c778c55SBarry Smith #define __FUNCT__ "MatSeqSBAIJGetArray_SeqSBAIJ"
11888c778c55SBarry Smith PetscErrorCode MatSeqSBAIJGetArray_SeqSBAIJ(Mat A,PetscScalar *array[])
1189a6ece127SHong Zhang {
1190a6ece127SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
11915fd66863SKarl Rupp 
1192a6ece127SHong Zhang   PetscFunctionBegin;
1193a6ece127SHong Zhang   *array = a->a;
1194a6ece127SHong Zhang   PetscFunctionReturn(0);
1195a6ece127SHong Zhang }
1196a6ece127SHong Zhang 
1197a6ece127SHong Zhang #undef __FUNCT__
11988c778c55SBarry Smith #define __FUNCT__ "MatSeqSBAIJRestoreArray_SeqSBAIJ"
11998c778c55SBarry Smith PetscErrorCode MatSeqSBAIJRestoreArray_SeqSBAIJ(Mat A,PetscScalar *array[])
1200a6ece127SHong Zhang {
1201a6ece127SHong Zhang   PetscFunctionBegin;
1202a6ece127SHong Zhang   PetscFunctionReturn(0);
1203a6ece127SHong Zhang }
1204a6ece127SHong Zhang 
120542ee4b1aSHong Zhang #undef __FUNCT__
120642ee4b1aSHong Zhang #define __FUNCT__ "MatAXPY_SeqSBAIJ"
1207f4df32b1SMatthew Knepley PetscErrorCode MatAXPY_SeqSBAIJ(Mat Y,PetscScalar a,Mat X,MatStructure str)
120842ee4b1aSHong Zhang {
120942ee4b1aSHong Zhang   Mat_SeqSBAIJ   *x=(Mat_SeqSBAIJ*)X->data, *y=(Mat_SeqSBAIJ*)Y->data;
1210dfbe8321SBarry Smith   PetscErrorCode ierr;
1211e838b9e7SJed Brown   PetscInt       i,bs=Y->rmap->bs,bs2=bs*bs,j;
1212e838b9e7SJed Brown   PetscBLASInt   one = 1;
121342ee4b1aSHong Zhang 
121442ee4b1aSHong Zhang   PetscFunctionBegin;
121542ee4b1aSHong Zhang   if (str == SAME_NONZERO_PATTERN) {
1216f4df32b1SMatthew Knepley     PetscScalar  alpha = a;
1217c5df96a5SBarry Smith     PetscBLASInt bnz;
1218c5df96a5SBarry Smith     ierr = PetscBLASIntCast(x->nz*bs2,&bnz);CHKERRQ(ierr);
1219a83cb05cSBarry Smith     PetscStackCall("BLASaxpy",BLASaxpy_(&bnz,&alpha,x->a,&one,y->a,&one));
1220c537a176SHong Zhang   } else if (str == SUBSET_NONZERO_PATTERN) { /* nonzeros of X is a subset of Y's */
1221c4319e64SHong Zhang     if (y->xtoy && y->XtoY != X) {
1222c4319e64SHong Zhang       ierr = PetscFree(y->xtoy);CHKERRQ(ierr);
12236bf464f9SBarry Smith       ierr = MatDestroy(&y->XtoY);CHKERRQ(ierr);
1224c537a176SHong Zhang     }
1225c4319e64SHong Zhang     if (!y->xtoy) { /* get xtoy */
12260298fd71SBarry Smith       ierr    = MatAXPYGetxtoy_Private(x->mbs,x->i,x->j,NULL, y->i,y->j,NULL, &y->xtoy);CHKERRQ(ierr);
1227c4319e64SHong Zhang       y->XtoY = X;
1228c537a176SHong Zhang     }
12296c6c5352SBarry Smith     for (i=0; i<x->nz; i++) {
1230c4319e64SHong Zhang       j = 0;
1231c4319e64SHong Zhang       while (j < bs2) {
1232f4df32b1SMatthew Knepley         y->a[bs2*y->xtoy[i]+j] += a*(x->a[bs2*i+j]);
1233c4319e64SHong Zhang         j++;
1234c537a176SHong Zhang       }
1235c4319e64SHong Zhang     }
12361e2582c4SBarry Smith     ierr = PetscInfo3(Y,"ratio of nnz_s(X)/nnz_s(Y): %D/%D = %G\n",bs2*x->nz,bs2*y->nz,(PetscReal)(bs2*x->nz)/(bs2*y->nz));CHKERRQ(ierr);
123742ee4b1aSHong Zhang   } else {
1238f5edf698SHong Zhang     ierr = MatGetRowUpperTriangular(X);CHKERRQ(ierr);
1239f4df32b1SMatthew Knepley     ierr = MatAXPY_Basic(Y,a,X,str);CHKERRQ(ierr);
1240f5edf698SHong Zhang     ierr = MatRestoreRowUpperTriangular(X);CHKERRQ(ierr);
124142ee4b1aSHong Zhang   }
124242ee4b1aSHong Zhang   PetscFunctionReturn(0);
124342ee4b1aSHong Zhang }
124442ee4b1aSHong Zhang 
1245efcf0fc3SBarry Smith #undef __FUNCT__
1246efcf0fc3SBarry Smith #define __FUNCT__ "MatIsSymmetric_SeqSBAIJ"
1247ace3abfcSBarry Smith PetscErrorCode MatIsSymmetric_SeqSBAIJ(Mat A,PetscReal tol,PetscBool  *flg)
1248efcf0fc3SBarry Smith {
1249efcf0fc3SBarry Smith   PetscFunctionBegin;
1250efcf0fc3SBarry Smith   *flg = PETSC_TRUE;
1251efcf0fc3SBarry Smith   PetscFunctionReturn(0);
1252efcf0fc3SBarry Smith }
1253efcf0fc3SBarry Smith 
1254efcf0fc3SBarry Smith #undef __FUNCT__
1255efcf0fc3SBarry Smith #define __FUNCT__ "MatIsStructurallySymmetric_SeqSBAIJ"
1256ace3abfcSBarry Smith PetscErrorCode MatIsStructurallySymmetric_SeqSBAIJ(Mat A,PetscBool  *flg)
1257efcf0fc3SBarry Smith {
1258efcf0fc3SBarry Smith   PetscFunctionBegin;
1259efcf0fc3SBarry Smith   *flg = PETSC_TRUE;
1260efcf0fc3SBarry Smith   PetscFunctionReturn(0);
1261efcf0fc3SBarry Smith }
1262efcf0fc3SBarry Smith 
1263efcf0fc3SBarry Smith #undef __FUNCT__
1264efcf0fc3SBarry Smith #define __FUNCT__ "MatIsHermitian_SeqSBAIJ"
1265ace3abfcSBarry Smith PetscErrorCode MatIsHermitian_SeqSBAIJ(Mat A,PetscReal tol,PetscBool  *flg)
1266efcf0fc3SBarry Smith {
1267efcf0fc3SBarry Smith   PetscFunctionBegin;
1268efcf0fc3SBarry Smith   *flg = PETSC_FALSE;
1269efcf0fc3SBarry Smith   PetscFunctionReturn(0);
1270efcf0fc3SBarry Smith }
1271efcf0fc3SBarry Smith 
127299cafbc1SBarry Smith #undef __FUNCT__
127399cafbc1SBarry Smith #define __FUNCT__ "MatRealPart_SeqSBAIJ"
127499cafbc1SBarry Smith PetscErrorCode MatRealPart_SeqSBAIJ(Mat A)
127599cafbc1SBarry Smith {
127699cafbc1SBarry Smith   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
127799cafbc1SBarry Smith   PetscInt     i,nz = a->bs2*a->i[a->mbs];
1278dd6ea824SBarry Smith   MatScalar    *aa = a->a;
127999cafbc1SBarry Smith 
128099cafbc1SBarry Smith   PetscFunctionBegin;
128199cafbc1SBarry Smith   for (i=0; i<nz; i++) aa[i] = PetscRealPart(aa[i]);
128299cafbc1SBarry Smith   PetscFunctionReturn(0);
128399cafbc1SBarry Smith }
128499cafbc1SBarry Smith 
128599cafbc1SBarry Smith #undef __FUNCT__
128699cafbc1SBarry Smith #define __FUNCT__ "MatImaginaryPart_SeqSBAIJ"
128799cafbc1SBarry Smith PetscErrorCode MatImaginaryPart_SeqSBAIJ(Mat A)
128899cafbc1SBarry Smith {
128999cafbc1SBarry Smith   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
129099cafbc1SBarry Smith   PetscInt     i,nz = a->bs2*a->i[a->mbs];
1291dd6ea824SBarry Smith   MatScalar    *aa = a->a;
129299cafbc1SBarry Smith 
129399cafbc1SBarry Smith   PetscFunctionBegin;
129499cafbc1SBarry Smith   for (i=0; i<nz; i++) aa[i] = PetscImaginaryPart(aa[i]);
129599cafbc1SBarry Smith   PetscFunctionReturn(0);
129699cafbc1SBarry Smith }
129799cafbc1SBarry Smith 
12983bededecSBarry Smith #undef __FUNCT__
12993bededecSBarry Smith #define __FUNCT__ "MatZeroRowsColumns_SeqSBAIJ"
13003bededecSBarry Smith PetscErrorCode MatZeroRowsColumns_SeqSBAIJ(Mat A,PetscInt is_n,const PetscInt is_idx[],PetscScalar diag,Vec x, Vec b)
13013bededecSBarry Smith {
13023bededecSBarry Smith   Mat_SeqSBAIJ      *baij=(Mat_SeqSBAIJ*)A->data;
13033bededecSBarry Smith   PetscErrorCode    ierr;
13043bededecSBarry Smith   PetscInt          i,j,k,count;
13053bededecSBarry Smith   PetscInt          bs   =A->rmap->bs,bs2=baij->bs2,row,col;
13063bededecSBarry Smith   PetscScalar       zero = 0.0;
13073bededecSBarry Smith   MatScalar         *aa;
13083bededecSBarry Smith   const PetscScalar *xx;
13093bededecSBarry Smith   PetscScalar       *bb;
131056777dd2SBarry Smith   PetscBool         *zeroed,vecs = PETSC_FALSE;
13113bededecSBarry Smith 
13123bededecSBarry Smith   PetscFunctionBegin;
13133bededecSBarry Smith   /* fix right hand side if needed */
13143bededecSBarry Smith   if (x && b) {
13153bededecSBarry Smith     ierr = VecGetArrayRead(x,&xx);CHKERRQ(ierr);
13163bededecSBarry Smith     ierr = VecGetArray(b,&bb);CHKERRQ(ierr);
131756777dd2SBarry Smith     vecs = PETSC_TRUE;
13183bededecSBarry Smith   }
13193bededecSBarry Smith   A->same_nonzero = PETSC_TRUE;
13203bededecSBarry Smith 
13213bededecSBarry Smith   /* zero the columns */
13223bededecSBarry Smith   ierr = PetscMalloc(A->rmap->n*sizeof(PetscBool),&zeroed);CHKERRQ(ierr);
13233bededecSBarry Smith   ierr = PetscMemzero(zeroed,A->rmap->n*sizeof(PetscBool));CHKERRQ(ierr);
13243bededecSBarry Smith   for (i=0; i<is_n; i++) {
13253bededecSBarry Smith     if (is_idx[i] < 0 || is_idx[i] >= A->rmap->N) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"row %D out of range",is_idx[i]);
13263bededecSBarry Smith     zeroed[is_idx[i]] = PETSC_TRUE;
13273bededecSBarry Smith   }
132856777dd2SBarry Smith   if (vecs) {
132956777dd2SBarry Smith     for (i=0; i<A->rmap->N; i++) {
133056777dd2SBarry Smith       row = i/bs;
133156777dd2SBarry Smith       for (j=baij->i[row]; j<baij->i[row+1]; j++) {
133256777dd2SBarry Smith         for (k=0; k<bs; k++) {
133356777dd2SBarry Smith           col = bs*baij->j[j] + k;
133456777dd2SBarry Smith           if (col <= i) continue;
133556777dd2SBarry Smith           aa = ((MatScalar*)(baij->a)) + j*bs2 + (i%bs) + bs*k;
133626fbe8dcSKarl Rupp           if (!zeroed[i] && zeroed[col]) bb[i]   -= aa[0]*xx[col];
133726fbe8dcSKarl Rupp           if (zeroed[i] && !zeroed[col]) bb[col] -= aa[0]*xx[i];
133856777dd2SBarry Smith         }
133956777dd2SBarry Smith       }
134056777dd2SBarry Smith     }
134126fbe8dcSKarl Rupp     for (i=0; i<is_n; i++) bb[is_idx[i]] = diag*xx[is_idx[i]];
134256777dd2SBarry Smith   }
134356777dd2SBarry Smith 
13443bededecSBarry Smith   for (i=0; i<A->rmap->N; i++) {
13453bededecSBarry Smith     if (!zeroed[i]) {
13463bededecSBarry Smith       row = i/bs;
13473bededecSBarry Smith       for (j=baij->i[row]; j<baij->i[row+1]; j++) {
13483bededecSBarry Smith         for (k=0; k<bs; k++) {
13493bededecSBarry Smith           col = bs*baij->j[j] + k;
13503bededecSBarry Smith           if (zeroed[col]) {
13513bededecSBarry Smith             aa = ((MatScalar*)(baij->a)) + j*bs2 + (i%bs) + bs*k;
13523bededecSBarry Smith             aa[0] = 0.0;
13533bededecSBarry Smith           }
13543bededecSBarry Smith         }
13553bededecSBarry Smith       }
13563bededecSBarry Smith     }
13573bededecSBarry Smith   }
13583bededecSBarry Smith   ierr = PetscFree(zeroed);CHKERRQ(ierr);
135956777dd2SBarry Smith   if (vecs) {
136056777dd2SBarry Smith     ierr = VecRestoreArrayRead(x,&xx);CHKERRQ(ierr);
136156777dd2SBarry Smith     ierr = VecRestoreArray(b,&bb);CHKERRQ(ierr);
136256777dd2SBarry Smith   }
13633bededecSBarry Smith 
13643bededecSBarry Smith   /* zero the rows */
13653bededecSBarry Smith   for (i=0; i<is_n; i++) {
13663bededecSBarry Smith     row   = is_idx[i];
13673bededecSBarry Smith     count = (baij->i[row/bs +1] - baij->i[row/bs])*bs;
13683bededecSBarry Smith     aa    = ((MatScalar*)(baij->a)) + baij->i[row/bs]*bs2 + (row%bs);
13693bededecSBarry Smith     for (k=0; k<count; k++) {
13703bededecSBarry Smith       aa[0] =  zero;
13713bededecSBarry Smith       aa   += bs;
13723bededecSBarry Smith     }
13733bededecSBarry Smith     if (diag != 0.0) {
13743bededecSBarry Smith       ierr = (*A->ops->setvalues)(A,1,&row,1,&row,&diag,INSERT_VALUES);CHKERRQ(ierr);
13753bededecSBarry Smith     }
13763bededecSBarry Smith   }
13773bededecSBarry Smith   ierr = MatAssemblyEnd_SeqSBAIJ(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
13783bededecSBarry Smith   PetscFunctionReturn(0);
13793bededecSBarry Smith }
13803bededecSBarry Smith 
138149b5e25fSSatish Balay /* -------------------------------------------------------------------*/
1382be332245SKarl Rupp static struct _MatOps MatOps_Values = {
1383be332245SKarl Rupp         MatSetValues_SeqSBAIJ,
138449b5e25fSSatish Balay         MatGetRow_SeqSBAIJ,
138549b5e25fSSatish Balay         MatRestoreRow_SeqSBAIJ,
138649b5e25fSSatish Balay         MatMult_SeqSBAIJ_N,
138797304618SKris Buschelman /*  4*/ MatMultAdd_SeqSBAIJ_N,
1388431c96f7SBarry Smith         MatMult_SeqSBAIJ_N,       /* transpose versions are same as non-transpose versions */
1389e005ede5SBarry Smith         MatMultAdd_SeqSBAIJ_N,
1390db4efbfdSBarry Smith         0,
139149b5e25fSSatish Balay         0,
139249b5e25fSSatish Balay         0,
139397304618SKris Buschelman /* 10*/ 0,
139449b5e25fSSatish Balay         0,
1395c078aec8SLisandro Dalcin         MatCholeskyFactor_SeqSBAIJ,
139641f059aeSBarry Smith         MatSOR_SeqSBAIJ,
139749b5e25fSSatish Balay         MatTranspose_SeqSBAIJ,
139897304618SKris Buschelman /* 15*/ MatGetInfo_SeqSBAIJ,
139949b5e25fSSatish Balay         MatEqual_SeqSBAIJ,
140049b5e25fSSatish Balay         MatGetDiagonal_SeqSBAIJ,
140149b5e25fSSatish Balay         MatDiagonalScale_SeqSBAIJ,
140249b5e25fSSatish Balay         MatNorm_SeqSBAIJ,
140397304618SKris Buschelman /* 20*/ 0,
140449b5e25fSSatish Balay         MatAssemblyEnd_SeqSBAIJ,
140549b5e25fSSatish Balay         MatSetOption_SeqSBAIJ,
140649b5e25fSSatish Balay         MatZeroEntries_SeqSBAIJ,
1407d519adbfSMatthew Knepley /* 24*/ 0,
140849b5e25fSSatish Balay         0,
140949b5e25fSSatish Balay         0,
1410db4efbfdSBarry Smith         0,
1411db4efbfdSBarry Smith         0,
14124994cf47SJed Brown /* 29*/ MatSetUp_SeqSBAIJ,
1413c464158bSHong Zhang         0,
1414db4efbfdSBarry Smith         0,
14158c778c55SBarry Smith         0,
14168c778c55SBarry Smith         0,
1417d519adbfSMatthew Knepley /* 34*/ MatDuplicate_SeqSBAIJ,
1418719d5645SBarry Smith         0,
1419719d5645SBarry Smith         0,
142049b5e25fSSatish Balay         0,
1421c84f5b01SHong Zhang         MatICCFactor_SeqSBAIJ,
1422d519adbfSMatthew Knepley /* 39*/ MatAXPY_SeqSBAIJ,
142349b5e25fSSatish Balay         MatGetSubMatrices_SeqSBAIJ,
142449b5e25fSSatish Balay         MatIncreaseOverlap_SeqSBAIJ,
142549b5e25fSSatish Balay         MatGetValues_SeqSBAIJ,
14263c896bc6SHong Zhang         MatCopy_SeqSBAIJ,
1427d519adbfSMatthew Knepley /* 44*/ 0,
142849b5e25fSSatish Balay         MatScale_SeqSBAIJ,
142949b5e25fSSatish Balay         0,
143049b5e25fSSatish Balay         0,
14313bededecSBarry Smith         MatZeroRowsColumns_SeqSBAIJ,
1432f73d5cc4SBarry Smith /* 49*/ 0,
143349b5e25fSSatish Balay         MatGetRowIJ_SeqSBAIJ,
143449b5e25fSSatish Balay         MatRestoreRowIJ_SeqSBAIJ,
143549b5e25fSSatish Balay         0,
143649b5e25fSSatish Balay         0,
1437d519adbfSMatthew Knepley /* 54*/ 0,
143849b5e25fSSatish Balay         0,
143949b5e25fSSatish Balay         0,
144049b5e25fSSatish Balay         0,
144149b5e25fSSatish Balay         MatSetValuesBlocked_SeqSBAIJ,
1442d519adbfSMatthew Knepley /* 59*/ MatGetSubMatrix_SeqSBAIJ,
144349b5e25fSSatish Balay         0,
144449b5e25fSSatish Balay         0,
1445357abbc8SBarry Smith         0,
1446d959ec07SHong Zhang         0,
1447d519adbfSMatthew Knepley /* 64*/ 0,
1448d959ec07SHong Zhang         0,
1449d959ec07SHong Zhang         0,
1450d959ec07SHong Zhang         0,
1451d959ec07SHong Zhang         0,
1452d519adbfSMatthew Knepley /* 69*/ MatGetRowMaxAbs_SeqSBAIJ,
14533e0d88b5SBarry Smith         0,
14543e0d88b5SBarry Smith         0,
14553e0d88b5SBarry Smith         0,
14563e0d88b5SBarry Smith         0,
1457d519adbfSMatthew Knepley /* 74*/ 0,
14583e0d88b5SBarry Smith         0,
14593e0d88b5SBarry Smith         0,
14603e0d88b5SBarry Smith         0,
14613e0d88b5SBarry Smith         0,
1462d519adbfSMatthew Knepley /* 79*/ 0,
14633e0d88b5SBarry Smith         0,
14643e0d88b5SBarry Smith         0,
146597304618SKris Buschelman         MatGetInertia_SeqSBAIJ,
14665bba2384SShri Abhyankar         MatLoad_SeqSBAIJ,
1467d519adbfSMatthew Knepley /* 84*/ MatIsSymmetric_SeqSBAIJ,
1468865e5f61SKris Buschelman         MatIsHermitian_SeqSBAIJ,
1469efcf0fc3SBarry Smith         MatIsStructurallySymmetric_SeqSBAIJ,
1470865e5f61SKris Buschelman         0,
1471865e5f61SKris Buschelman         0,
1472d519adbfSMatthew Knepley /* 89*/ 0,
1473865e5f61SKris Buschelman         0,
1474865e5f61SKris Buschelman         0,
1475865e5f61SKris Buschelman         0,
1476865e5f61SKris Buschelman         0,
1477d519adbfSMatthew Knepley /* 94*/ 0,
1478865e5f61SKris Buschelman         0,
1479865e5f61SKris Buschelman         0,
148099cafbc1SBarry Smith         0,
148199cafbc1SBarry Smith         0,
1482d519adbfSMatthew Knepley /* 99*/ 0,
148399cafbc1SBarry Smith         0,
148499cafbc1SBarry Smith         0,
148599cafbc1SBarry Smith         0,
148699cafbc1SBarry Smith         0,
1487d519adbfSMatthew Knepley /*104*/ 0,
148899cafbc1SBarry Smith         MatRealPart_SeqSBAIJ,
1489f5edf698SHong Zhang         MatImaginaryPart_SeqSBAIJ,
1490f5edf698SHong Zhang         MatGetRowUpperTriangular_SeqSBAIJ,
14912af78befSBarry Smith         MatRestoreRowUpperTriangular_SeqSBAIJ,
1492d519adbfSMatthew Knepley /*109*/ 0,
14932af78befSBarry Smith         0,
14942af78befSBarry Smith         0,
14952af78befSBarry Smith         0,
1496547795f9SHong Zhang         MatMissingDiagonal_SeqSBAIJ,
1497547795f9SHong Zhang /*114*/ 0,
1498547795f9SHong Zhang         0,
1499547795f9SHong Zhang         0,
1500547795f9SHong Zhang         0,
1501547795f9SHong Zhang         0,
1502547795f9SHong Zhang /*119*/ 0,
1503547795f9SHong Zhang         0,
15042f480046SShri Abhyankar         0,
15055bba2384SShri Abhyankar         0
150699cafbc1SBarry Smith };
1507be1d678aSKris Buschelman 
15084a2ae208SSatish Balay #undef __FUNCT__
15094a2ae208SSatish Balay #define __FUNCT__ "MatStoreValues_SeqSBAIJ"
15107087cfbeSBarry Smith PetscErrorCode  MatStoreValues_SeqSBAIJ(Mat mat)
151149b5e25fSSatish Balay {
15124afc71dfSHong Zhang   Mat_SeqSBAIJ   *aij = (Mat_SeqSBAIJ*)mat->data;
1513d0f46423SBarry Smith   PetscInt       nz   = aij->i[mat->rmap->N]*mat->rmap->bs*aij->bs2;
1514dfbe8321SBarry Smith   PetscErrorCode ierr;
151549b5e25fSSatish Balay 
151649b5e25fSSatish Balay   PetscFunctionBegin;
1517e7e72b3dSBarry Smith   if (aij->nonew != 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call MatSetOption(A,MAT_NEW_NONZERO_LOCATIONS,PETSC_FALSE);first");
151849b5e25fSSatish Balay 
151949b5e25fSSatish Balay   /* allocate space for values if not already there */
152049b5e25fSSatish Balay   if (!aij->saved_values) {
152187828ca2SBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(PetscScalar),&aij->saved_values);CHKERRQ(ierr);
152249b5e25fSSatish Balay   }
152349b5e25fSSatish Balay 
152449b5e25fSSatish Balay   /* copy values over */
152587828ca2SBarry Smith   ierr = PetscMemcpy(aij->saved_values,aij->a,nz*sizeof(PetscScalar));CHKERRQ(ierr);
152649b5e25fSSatish Balay   PetscFunctionReturn(0);
152749b5e25fSSatish Balay }
152849b5e25fSSatish Balay 
15294a2ae208SSatish Balay #undef __FUNCT__
15304a2ae208SSatish Balay #define __FUNCT__ "MatRetrieveValues_SeqSBAIJ"
15317087cfbeSBarry Smith PetscErrorCode  MatRetrieveValues_SeqSBAIJ(Mat mat)
153249b5e25fSSatish Balay {
15334afc71dfSHong Zhang   Mat_SeqSBAIJ   *aij = (Mat_SeqSBAIJ*)mat->data;
15346849ba73SBarry Smith   PetscErrorCode ierr;
1535d0f46423SBarry Smith   PetscInt       nz = aij->i[mat->rmap->N]*mat->rmap->bs*aij->bs2;
153649b5e25fSSatish Balay 
153749b5e25fSSatish Balay   PetscFunctionBegin;
1538e7e72b3dSBarry Smith   if (aij->nonew != 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call MatSetOption(A,MAT_NEW_NONZERO_LOCATIONS,PETSC_FALSE);first");
1539e7e72b3dSBarry Smith   if (!aij->saved_values) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call MatStoreValues(A);first");
154049b5e25fSSatish Balay 
154149b5e25fSSatish Balay   /* copy values over */
154287828ca2SBarry Smith   ierr = PetscMemcpy(aij->a,aij->saved_values,nz*sizeof(PetscScalar));CHKERRQ(ierr);
154349b5e25fSSatish Balay   PetscFunctionReturn(0);
154449b5e25fSSatish Balay }
154549b5e25fSSatish Balay 
15464a2ae208SSatish Balay #undef __FUNCT__
1547a23d5eceSKris Buschelman #define __FUNCT__ "MatSeqSBAIJSetPreallocation_SeqSBAIJ"
15487087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetPreallocation_SeqSBAIJ(Mat B,PetscInt bs,PetscInt nz,PetscInt *nnz)
154949b5e25fSSatish Balay {
1550c464158bSHong Zhang   Mat_SeqSBAIJ   *b = (Mat_SeqSBAIJ*)B->data;
15516849ba73SBarry Smith   PetscErrorCode ierr;
1552535b19f3SBarry Smith   PetscInt       i,mbs,bs2;
15532576faa2SJed Brown   PetscBool      skipallocation = PETSC_FALSE,flg = PETSC_FALSE,realalloc = PETSC_FALSE;
155449b5e25fSSatish Balay 
155549b5e25fSSatish Balay   PetscFunctionBegin;
15562576faa2SJed Brown   if (nz >= 0 || nnz) realalloc = PETSC_TRUE;
1557273d9f13SBarry Smith   B->preallocated = PETSC_TRUE;
1558db4efbfdSBarry Smith 
155926283091SBarry Smith   ierr = PetscLayoutSetBlockSize(B->rmap,bs);CHKERRQ(ierr);
156026283091SBarry Smith   ierr = PetscLayoutSetBlockSize(B->cmap,bs);CHKERRQ(ierr);
156126283091SBarry Smith   ierr = PetscLayoutSetUp(B->rmap);CHKERRQ(ierr);
156226283091SBarry Smith   ierr = PetscLayoutSetUp(B->cmap);CHKERRQ(ierr);
1563e02043d6SBarry Smith   ierr = PetscLayoutGetBlockSize(B->rmap,&bs);CHKERRQ(ierr);
1564899cda47SBarry Smith 
1565d0f46423SBarry Smith   mbs = B->rmap->N/bs;
156649b5e25fSSatish Balay   bs2 = bs*bs;
156749b5e25fSSatish Balay 
1568e7e72b3dSBarry Smith   if (mbs*bs != B->rmap->N) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Number rows, cols must be divisible by blocksize");
156949b5e25fSSatish Balay 
1570ab93d7beSBarry Smith   if (nz == MAT_SKIP_ALLOCATION) {
1571ab93d7beSBarry Smith     skipallocation = PETSC_TRUE;
1572ab93d7beSBarry Smith     nz             = 0;
1573ab93d7beSBarry Smith   }
1574ab93d7beSBarry Smith 
1575435da068SBarry Smith   if (nz == PETSC_DEFAULT || nz == PETSC_DECIDE) nz = 3;
1576e32f2f54SBarry Smith   if (nz < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"nz cannot be less than 0: value %D",nz);
157749b5e25fSSatish Balay   if (nnz) {
157849b5e25fSSatish Balay     for (i=0; i<mbs; i++) {
1579e32f2f54SBarry Smith       if (nnz[i] < 0) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"nnz cannot be less than 0: local row %D value %D",i,nnz[i]);
1580e32f2f54SBarry Smith       if (nnz[i] > mbs) SETERRQ3(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"nnz cannot be greater than block row length: local row %D value %D rowlength %D",i,nnz[i],mbs);
158149b5e25fSSatish Balay     }
158249b5e25fSSatish Balay   }
158349b5e25fSSatish Balay 
1584db4efbfdSBarry Smith   B->ops->mult             = MatMult_SeqSBAIJ_N;
1585db4efbfdSBarry Smith   B->ops->multadd          = MatMultAdd_SeqSBAIJ_N;
1586db4efbfdSBarry Smith   B->ops->multtranspose    = MatMult_SeqSBAIJ_N;
1587db4efbfdSBarry Smith   B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_N;
158826fbe8dcSKarl Rupp 
15890298fd71SBarry Smith   ierr  = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_no_unroll",&flg,NULL);CHKERRQ(ierr);
159049b5e25fSSatish Balay   if (!flg) {
159149b5e25fSSatish Balay     switch (bs) {
159249b5e25fSSatish Balay     case 1:
159349b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_1;
159449b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_1;
1595431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_1;
1596431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_1;
159749b5e25fSSatish Balay       break;
159849b5e25fSSatish Balay     case 2:
159949b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_2;
160049b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_2;
1601431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_2;
1602431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_2;
160349b5e25fSSatish Balay       break;
160449b5e25fSSatish Balay     case 3:
160549b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_3;
160649b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_3;
1607431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_3;
1608431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_3;
160949b5e25fSSatish Balay       break;
161049b5e25fSSatish Balay     case 4:
161149b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_4;
161249b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_4;
1613431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_4;
1614431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_4;
161549b5e25fSSatish Balay       break;
161649b5e25fSSatish Balay     case 5:
161749b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_5;
161849b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_5;
1619431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_5;
1620431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_5;
162149b5e25fSSatish Balay       break;
162249b5e25fSSatish Balay     case 6:
162349b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_6;
162449b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_6;
1625431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_6;
1626431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_6;
162749b5e25fSSatish Balay       break;
162849b5e25fSSatish Balay     case 7:
1629de53e5efSHong Zhang       B->ops->mult             = MatMult_SeqSBAIJ_7;
163049b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_7;
1631431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_7;
1632431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_7;
163349b5e25fSSatish Balay       break;
163449b5e25fSSatish Balay     }
163549b5e25fSSatish Balay   }
163649b5e25fSSatish Balay 
163749b5e25fSSatish Balay   b->mbs = mbs;
16384afc71dfSHong Zhang   b->nbs = mbs;
1639ab93d7beSBarry Smith   if (!skipallocation) {
16402ee49352SLisandro Dalcin     if (!b->imax) {
1641ab93d7beSBarry Smith       ierr = PetscMalloc2(mbs,PetscInt,&b->imax,mbs,PetscInt,&b->ilen);CHKERRQ(ierr);
164226fbe8dcSKarl Rupp 
1643c760cd28SBarry Smith       b->free_imax_ilen = PETSC_TRUE;
164426fbe8dcSKarl Rupp 
16452ee49352SLisandro Dalcin       ierr = PetscLogObjectMemory(B,2*mbs*sizeof(PetscInt));CHKERRQ(ierr);
16462ee49352SLisandro Dalcin     }
164749b5e25fSSatish Balay     if (!nnz) {
1648435da068SBarry Smith       if (nz == PETSC_DEFAULT || nz == PETSC_DECIDE) nz = 5;
164949b5e25fSSatish Balay       else if (nz <= 0) nz = 1;
165026fbe8dcSKarl Rupp       for (i=0; i<mbs; i++) b->imax[i] = nz;
1651153ea458SHong Zhang       nz = nz*mbs; /* total nz */
165249b5e25fSSatish Balay     } else {
165349b5e25fSSatish Balay       nz = 0;
16548cef66ccSHong Zhang       for (i=0; i<mbs; i++) {b->imax[i] = nnz[i]; nz += nnz[i];}
165549b5e25fSSatish Balay     }
16562ee49352SLisandro Dalcin     /* b->ilen will count nonzeros in each block row so far. */
165726fbe8dcSKarl Rupp     for (i=0; i<mbs; i++) b->ilen[i] = 0;
16586c6c5352SBarry Smith     /* nz=(nz+mbs)/2; */ /* total diagonal and superdiagonal nonzero blocks */
165949b5e25fSSatish Balay 
166049b5e25fSSatish Balay     /* allocate the matrix space */
16612ee49352SLisandro Dalcin     ierr = MatSeqXAIJFreeAIJ(B,&b->a,&b->j,&b->i);CHKERRQ(ierr);
1662d0f46423SBarry Smith     ierr = PetscMalloc3(bs2*nz,PetscScalar,&b->a,nz,PetscInt,&b->j,B->rmap->N+1,PetscInt,&b->i);CHKERRQ(ierr);
1663d0f46423SBarry Smith     ierr = PetscLogObjectMemory(B,(B->rmap->N+1)*sizeof(PetscInt)+nz*(bs2*sizeof(PetscScalar)+sizeof(PetscInt)));CHKERRQ(ierr);
16646c6c5352SBarry Smith     ierr = PetscMemzero(b->a,nz*bs2*sizeof(MatScalar));CHKERRQ(ierr);
166513f74950SBarry Smith     ierr = PetscMemzero(b->j,nz*sizeof(PetscInt));CHKERRQ(ierr);
166626fbe8dcSKarl Rupp 
166749b5e25fSSatish Balay     b->singlemalloc = PETSC_TRUE;
166849b5e25fSSatish Balay 
166949b5e25fSSatish Balay     /* pointer to beginning of each row */
1670e60cf9a0SBarry Smith     b->i[0] = 0;
167126fbe8dcSKarl Rupp     for (i=1; i<mbs+1; i++) b->i[i] = b->i[i-1] + b->imax[i-1];
167226fbe8dcSKarl Rupp 
1673e6b907acSBarry Smith     b->free_a  = PETSC_TRUE;
1674e6b907acSBarry Smith     b->free_ij = PETSC_TRUE;
1675e811da20SHong Zhang   } else {
1676e6b907acSBarry Smith     b->free_a  = PETSC_FALSE;
1677e6b907acSBarry Smith     b->free_ij = PETSC_FALSE;
1678ab93d7beSBarry Smith   }
167949b5e25fSSatish Balay 
1680d0f46423SBarry Smith   B->rmap->bs = bs;
168149b5e25fSSatish Balay   b->bs2      = bs2;
16826c6c5352SBarry Smith   b->nz       = 0;
1683b32cb4a7SJed Brown   b->maxnz    = nz;
1684153ea458SHong Zhang 
168516cdd363SHong Zhang   b->inew    = 0;
168616cdd363SHong Zhang   b->jnew    = 0;
168716cdd363SHong Zhang   b->anew    = 0;
168816cdd363SHong Zhang   b->a2anew  = 0;
16891a3463dfSHong Zhang   b->permute = PETSC_FALSE;
16902576faa2SJed Brown   if (realalloc) {ierr = MatSetOption(B,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);}
1691c464158bSHong Zhang   PetscFunctionReturn(0);
1692c464158bSHong Zhang }
1693153ea458SHong Zhang 
1694db4efbfdSBarry Smith /*
1695db4efbfdSBarry Smith    This is used to set the numeric factorization for both Cholesky and ICC symbolic factorization
1696db4efbfdSBarry Smith */
16978b1456e3SHong Zhang #undef __FUNCT__
1698d595f711SHong Zhang #define __FUNCT__ "MatSeqSBAIJSetNumericFactorization_inplace"
1699ace3abfcSBarry Smith PetscErrorCode MatSeqSBAIJSetNumericFactorization_inplace(Mat B,PetscBool natural)
1700db4efbfdSBarry Smith {
1701db4efbfdSBarry Smith   PetscErrorCode ierr;
1702ace3abfcSBarry Smith   PetscBool      flg = PETSC_FALSE;
1703db4efbfdSBarry Smith   PetscInt       bs  = B->rmap->bs;
1704db4efbfdSBarry Smith 
1705db4efbfdSBarry Smith   PetscFunctionBegin;
17060298fd71SBarry Smith   ierr = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_no_unroll",&flg,NULL);CHKERRQ(ierr);
1707db4efbfdSBarry Smith   if (flg) bs = 8;
1708db4efbfdSBarry Smith 
1709db4efbfdSBarry Smith   if (!natural) {
1710db4efbfdSBarry Smith     switch (bs) {
1711db4efbfdSBarry Smith     case 1:
1712d595f711SHong Zhang       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_1_inplace;
1713db4efbfdSBarry Smith       break;
1714db4efbfdSBarry Smith     case 2:
1715db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_2;
1716db4efbfdSBarry Smith       break;
1717db4efbfdSBarry Smith     case 3:
1718db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_3;
1719db4efbfdSBarry Smith       break;
1720db4efbfdSBarry Smith     case 4:
1721db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_4;
1722db4efbfdSBarry Smith       break;
1723db4efbfdSBarry Smith     case 5:
1724db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_5;
1725db4efbfdSBarry Smith       break;
1726db4efbfdSBarry Smith     case 6:
1727db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_6;
1728db4efbfdSBarry Smith       break;
1729db4efbfdSBarry Smith     case 7:
1730db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_7;
1731db4efbfdSBarry Smith       break;
1732db4efbfdSBarry Smith     default:
1733db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_N;
1734db4efbfdSBarry Smith       break;
1735db4efbfdSBarry Smith     }
1736db4efbfdSBarry Smith   } else {
1737db4efbfdSBarry Smith     switch (bs) {
1738db4efbfdSBarry Smith     case 1:
1739d595f711SHong Zhang       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_1_NaturalOrdering_inplace;
1740db4efbfdSBarry Smith       break;
1741db4efbfdSBarry Smith     case 2:
1742db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_2_NaturalOrdering;
1743db4efbfdSBarry Smith       break;
1744db4efbfdSBarry Smith     case 3:
1745db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_3_NaturalOrdering;
1746db4efbfdSBarry Smith       break;
1747db4efbfdSBarry Smith     case 4:
1748db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_4_NaturalOrdering;
1749db4efbfdSBarry Smith       break;
1750db4efbfdSBarry Smith     case 5:
1751db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_5_NaturalOrdering;
1752db4efbfdSBarry Smith       break;
1753db4efbfdSBarry Smith     case 6:
1754db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_6_NaturalOrdering;
1755db4efbfdSBarry Smith       break;
1756db4efbfdSBarry Smith     case 7:
1757db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_7_NaturalOrdering;
1758db4efbfdSBarry Smith       break;
1759db4efbfdSBarry Smith     default:
1760db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_N_NaturalOrdering;
1761db4efbfdSBarry Smith       break;
1762db4efbfdSBarry Smith     }
1763db4efbfdSBarry Smith   }
1764db4efbfdSBarry Smith   PetscFunctionReturn(0);
1765db4efbfdSBarry Smith }
1766db4efbfdSBarry Smith 
1767*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatConvert_SeqSBAIJ_SeqAIJ(Mat, MatType,MatReuse,Mat*);
1768*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatConvert_SeqSBAIJ_SeqBAIJ(Mat, MatType,MatReuse,Mat*);
1769d769727bSBarry Smith 
17705c9eb25fSBarry Smith #undef __FUNCT__
17715c9eb25fSBarry Smith #define __FUNCT__ "MatGetFactor_seqsbaij_petsc"
1772*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactor_seqsbaij_petsc(Mat A,MatFactorType ftype,Mat *B)
17735c9eb25fSBarry Smith {
1774d0f46423SBarry Smith   PetscInt       n = A->rmap->n;
17755c9eb25fSBarry Smith   PetscErrorCode ierr;
17765c9eb25fSBarry Smith 
17775c9eb25fSBarry Smith   PetscFunctionBegin;
17780e92d65fSHong Zhang #if defined(PETSC_USE_COMPLEX)
17790e92d65fSHong Zhang   if (A->hermitian) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Hermitian Factor is not supported");
17800e92d65fSHong Zhang #endif
1781ce94432eSBarry Smith   ierr = MatCreate(PetscObjectComm((PetscObject)A),B);CHKERRQ(ierr);
17825c9eb25fSBarry Smith   ierr = MatSetSizes(*B,n,n,n,n);CHKERRQ(ierr);
17835c9eb25fSBarry Smith   if (ftype == MAT_FACTOR_CHOLESKY || ftype == MAT_FACTOR_ICC) {
17845c9eb25fSBarry Smith     ierr = MatSetType(*B,MATSEQSBAIJ);CHKERRQ(ierr);
17850298fd71SBarry Smith     ierr = MatSeqSBAIJSetPreallocation(*B,A->rmap->bs,MAT_SKIP_ALLOCATION,NULL);CHKERRQ(ierr);
178626fbe8dcSKarl Rupp 
17877b056e98SHong Zhang     (*B)->ops->choleskyfactorsymbolic = MatCholeskyFactorSymbolic_SeqSBAIJ;
1788c6d0d4f0SHong Zhang     (*B)->ops->iccfactorsymbolic      = MatICCFactorSymbolic_SeqSBAIJ;
1789e32f2f54SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Factor type not supported");
1790d5f3da31SBarry Smith   (*B)->factortype = ftype;
17915c9eb25fSBarry Smith   PetscFunctionReturn(0);
17925c9eb25fSBarry Smith }
17935c9eb25fSBarry Smith 
1794db4efbfdSBarry Smith #undef __FUNCT__
1795db4efbfdSBarry Smith #define __FUNCT__ "MatGetFactorAvailable_seqsbaij_petsc"
1796ace3abfcSBarry Smith PetscErrorCode MatGetFactorAvailable_seqsbaij_petsc(Mat A,MatFactorType ftype,PetscBool  *flg)
1797db4efbfdSBarry Smith {
1798db4efbfdSBarry Smith   PetscFunctionBegin;
1799db4efbfdSBarry Smith   if (ftype == MAT_FACTOR_CHOLESKY || ftype == MAT_FACTOR_ICC) {
1800db4efbfdSBarry Smith     *flg = PETSC_TRUE;
1801db4efbfdSBarry Smith   } else {
1802db4efbfdSBarry Smith     *flg = PETSC_FALSE;
1803db4efbfdSBarry Smith   }
1804db4efbfdSBarry Smith   PetscFunctionReturn(0);
1805db4efbfdSBarry Smith }
1806db4efbfdSBarry Smith 
1807611f576cSBarry Smith #if defined(PETSC_HAVE_MUMPS)
1808*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactor_sbaij_mumps(Mat,MatFactorType,Mat*);
1809611f576cSBarry Smith #endif
1810b5e56a35SBarry Smith #if defined(PETSC_HAVE_PASTIX)
1811*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactor_seqsbaij_pastix(Mat,MatFactorType,Mat*);
1812b5e56a35SBarry Smith #endif
181320db9a53SJed Brown #if defined(PETSC_HAVE_CHOLMOD)
1814*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactor_seqsbaij_cholmod(Mat,MatFactorType,Mat*);
181520db9a53SJed Brown #endif
1816*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatGetFactor_seqsbaij_sbstrm(Mat,MatFactorType,Mat*);
18175c9eb25fSBarry Smith 
18180bad9183SKris Buschelman /*MC
1819fafad747SKris Buschelman   MATSEQSBAIJ - MATSEQSBAIJ = "seqsbaij" - A matrix type to be used for sequential symmetric block sparse matrices,
18200bad9183SKris Buschelman   based on block compressed sparse row format.  Only the upper triangular portion of the matrix is stored.
18210bad9183SKris Buschelman 
1822828413b8SBarry Smith   For complex numbers by default this matrix is symmetric, NOT Hermitian symmetric. To make it Hermitian symmetric you
182371dad5bbSBarry Smith   can call MatSetOption(Mat, MAT_HERMITIAN); after MatAssemblyEnd()
1824828413b8SBarry Smith 
18250bad9183SKris Buschelman   Options Database Keys:
18260bad9183SKris Buschelman   . -mat_type seqsbaij - sets the matrix type to "seqsbaij" during a call to MatSetFromOptions()
18270bad9183SKris Buschelman 
182871dad5bbSBarry Smith   Notes: By default if you insert values into the lower triangular part of the matrix they are simply ignored (since they are not
182971dad5bbSBarry Smith      stored and it is assumed they symmetric to the upper triangular). If you call MatSetOption(Mat,MAT_IGNORE_LOWER_TRIANGULAR,PETSC_FALSE) or use
183071dad5bbSBarry Smith      the options database -mat_ignore_lower_triangular false it will generate an error if you try to set a value in the lower triangular portion.
183171dad5bbSBarry Smith 
183271dad5bbSBarry Smith 
18330bad9183SKris Buschelman   Level: beginner
18340bad9183SKris Buschelman 
18350bad9183SKris Buschelman   .seealso: MatCreateSeqSBAIJ
18360bad9183SKris Buschelman M*/
18370bad9183SKris Buschelman 
1838*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatConvert_SeqSBAIJ_SeqSBSTRM(Mat, MatType,MatReuse,Mat*);
1839aa5a9175SDahai Guo 
1840a23d5eceSKris Buschelman #undef __FUNCT__
1841a23d5eceSKris Buschelman #define __FUNCT__ "MatCreate_SeqSBAIJ"
1842*8cc058d9SJed Brown PETSC_EXTERN PetscErrorCode MatCreate_SeqSBAIJ(Mat B)
1843a23d5eceSKris Buschelman {
1844a23d5eceSKris Buschelman   Mat_SeqSBAIJ   *b;
1845dfbe8321SBarry Smith   PetscErrorCode ierr;
184613f74950SBarry Smith   PetscMPIInt    size;
1847ace3abfcSBarry Smith   PetscBool      no_unroll = PETSC_FALSE,no_inode = PETSC_FALSE;
1848a23d5eceSKris Buschelman 
1849a23d5eceSKris Buschelman   PetscFunctionBegin;
1850ce94432eSBarry Smith   ierr = MPI_Comm_size(PetscObjectComm((PetscObject)B),&size);CHKERRQ(ierr);
1851e32f2f54SBarry Smith   if (size > 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Comm must be of size 1");
1852a23d5eceSKris Buschelman 
185338f2d2fdSLisandro Dalcin   ierr    = PetscNewLog(B,Mat_SeqSBAIJ,&b);CHKERRQ(ierr);
1854a23d5eceSKris Buschelman   B->data = (void*)b;
1855a23d5eceSKris Buschelman   ierr    = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
185626fbe8dcSKarl Rupp 
1857a23d5eceSKris Buschelman   B->ops->destroy    = MatDestroy_SeqSBAIJ;
1858a23d5eceSKris Buschelman   B->ops->view       = MatView_SeqSBAIJ;
1859a23d5eceSKris Buschelman   b->row             = 0;
1860a23d5eceSKris Buschelman   b->icol            = 0;
1861a23d5eceSKris Buschelman   b->reallocs        = 0;
1862a23d5eceSKris Buschelman   b->saved_values    = 0;
18630def2e27SBarry Smith   b->inode.limit     = 5;
18640def2e27SBarry Smith   b->inode.max_limit = 5;
1865a23d5eceSKris Buschelman 
1866a23d5eceSKris Buschelman   b->roworiented        = PETSC_TRUE;
1867a23d5eceSKris Buschelman   b->nonew              = 0;
1868a23d5eceSKris Buschelman   b->diag               = 0;
1869a23d5eceSKris Buschelman   b->solve_work         = 0;
1870a23d5eceSKris Buschelman   b->mult_work          = 0;
1871a23d5eceSKris Buschelman   B->spptr              = 0;
1872f2cbd3d5SJed Brown   B->info.nz_unneeded   = (PetscReal)b->maxnz*b->bs2;
1873a9817697SBarry Smith   b->keepnonzeropattern = PETSC_FALSE;
1874a23d5eceSKris Buschelman   b->xtoy               = 0;
1875a23d5eceSKris Buschelman   b->XtoY               = 0;
1876a23d5eceSKris Buschelman 
1877a23d5eceSKris Buschelman   b->inew    = 0;
1878a23d5eceSKris Buschelman   b->jnew    = 0;
1879a23d5eceSKris Buschelman   b->anew    = 0;
1880a23d5eceSKris Buschelman   b->a2anew  = 0;
1881a23d5eceSKris Buschelman   b->permute = PETSC_FALSE;
1882a23d5eceSKris Buschelman 
188371dad5bbSBarry Smith   b->ignore_ltriangular = PETSC_TRUE;
188426fbe8dcSKarl Rupp 
18850298fd71SBarry Smith   ierr = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_ignore_lower_triangular",&b->ignore_ltriangular,NULL);CHKERRQ(ierr);
1886941593c8SHong Zhang 
1887f5edf698SHong Zhang   b->getrow_utriangular = PETSC_FALSE;
188826fbe8dcSKarl Rupp 
18890298fd71SBarry Smith   ierr = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_getrow_uppertriangular",&b->getrow_utriangular,NULL);CHKERRQ(ierr);
1890f5edf698SHong Zhang 
1891b5e56a35SBarry Smith #if defined(PETSC_HAVE_PASTIX)
189200de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatGetFactor_pastix_C","MatGetFactor_seqsbaij_pastix",MatGetFactor_seqsbaij_pastix);CHKERRQ(ierr);
1893b5e56a35SBarry Smith #endif
1894611f576cSBarry Smith #if defined(PETSC_HAVE_MUMPS)
189500de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatGetFactor_mumps_C","MatGetFactor_sbaij_mumps",MatGetFactor_sbaij_mumps);CHKERRQ(ierr);
1896611f576cSBarry Smith #endif
189720db9a53SJed Brown #if defined(PETSC_HAVE_CHOLMOD)
189800de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatGetFactor_cholmod_C","MatGetFactor_seqsbaij_cholmod",MatGetFactor_seqsbaij_cholmod);CHKERRQ(ierr);
189920db9a53SJed Brown #endif
190000de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatGetFactorAvailable_petsc_C","MatGetFactorAvailable_seqsbaij_petsc",MatGetFactorAvailable_seqsbaij_petsc);CHKERRQ(ierr);
190100de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatGetFactor_petsc_C","MatGetFactor_seqsbaij_petsc",MatGetFactor_seqsbaij_petsc);CHKERRQ(ierr);
190200de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatGetFactor_sbstrm_C","MatGetFactor_seqsbaij_sbstrm",MatGetFactor_seqsbaij_sbstrm);CHKERRQ(ierr);
190300de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatStoreValues_C","MatStoreValues_SeqSBAIJ",MatStoreValues_SeqSBAIJ);CHKERRQ(ierr);
190400de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatRetrieveValues_C","MatRetrieveValues_SeqSBAIJ",MatRetrieveValues_SeqSBAIJ);CHKERRQ(ierr);
190500de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatSeqSBAIJSetColumnIndices_C","MatSeqSBAIJSetColumnIndices_SeqSBAIJ",MatSeqSBAIJSetColumnIndices_SeqSBAIJ);CHKERRQ(ierr);
190600de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatConvert_seqsbaij_seqaij_C","MatConvert_SeqSBAIJ_SeqAIJ",MatConvert_SeqSBAIJ_SeqAIJ);CHKERRQ(ierr);
190700de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatConvert_seqsbaij_seqbaij_C","MatConvert_SeqSBAIJ_SeqBAIJ",MatConvert_SeqSBAIJ_SeqBAIJ);CHKERRQ(ierr);
190800de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatSeqSBAIJSetPreallocation_C","MatSeqSBAIJSetPreallocation_SeqSBAIJ",MatSeqSBAIJSetPreallocation_SeqSBAIJ);CHKERRQ(ierr);
190900de8ff0SBarry Smith   ierr = PetscObjectComposeFunction((PetscObject)B,"MatConvert_seqsbaij_seqsbstrm_C","MatConvert_SeqSBAIJ_SeqSBSTRM",MatConvert_SeqSBAIJ_SeqSBSTRM);CHKERRQ(ierr);
191023ce1328SBarry Smith 
191123ce1328SBarry Smith   B->symmetric                  = PETSC_TRUE;
191223ce1328SBarry Smith   B->structurally_symmetric     = PETSC_TRUE;
191323ce1328SBarry Smith   B->symmetric_set              = PETSC_TRUE;
191423ce1328SBarry Smith   B->structurally_symmetric_set = PETSC_TRUE;
191526fbe8dcSKarl Rupp 
191617667f90SBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)B,MATSEQSBAIJ);CHKERRQ(ierr);
19170def2e27SBarry Smith 
1918ce94432eSBarry Smith   ierr = PetscOptionsBegin(PetscObjectComm((PetscObject)B),((PetscObject)B)->prefix,"Options for SEQSBAIJ matrix","Mat");CHKERRQ(ierr);
19190298fd71SBarry Smith   ierr = PetscOptionsBool("-mat_no_unroll","Do not optimize for inodes (slower)",NULL,no_unroll,&no_unroll,NULL);CHKERRQ(ierr);
192026fbe8dcSKarl Rupp   if (no_unroll) {
192126fbe8dcSKarl Rupp     ierr = PetscInfo(B,"Not using Inode routines due to -mat_no_unroll\n");CHKERRQ(ierr);
192226fbe8dcSKarl Rupp   }
19230298fd71SBarry Smith   ierr = PetscOptionsBool("-mat_no_inode","Do not optimize for inodes (slower)",NULL,no_inode,&no_inode,NULL);CHKERRQ(ierr);
192426fbe8dcSKarl Rupp   if (no_inode) {
192526fbe8dcSKarl Rupp     ierr = PetscInfo(B,"Not using Inode routines due to -mat_no_inode\n");CHKERRQ(ierr);
192626fbe8dcSKarl Rupp   }
19270298fd71SBarry Smith   ierr = PetscOptionsInt("-mat_inode_limit","Do not use inodes larger then this value",NULL,b->inode.limit,&b->inode.limit,NULL);CHKERRQ(ierr);
19280def2e27SBarry Smith   ierr = PetscOptionsEnd();CHKERRQ(ierr);
1929ace3abfcSBarry Smith   b->inode.use = (PetscBool)(!(no_unroll || no_inode));
19300def2e27SBarry Smith   if (b->inode.limit > b->inode.max_limit) b->inode.limit = b->inode.max_limit;
1931a23d5eceSKris Buschelman   PetscFunctionReturn(0);
1932a23d5eceSKris Buschelman }
1933a23d5eceSKris Buschelman 
1934a23d5eceSKris Buschelman #undef __FUNCT__
1935a23d5eceSKris Buschelman #define __FUNCT__ "MatSeqSBAIJSetPreallocation"
1936a23d5eceSKris Buschelman /*@C
1937a23d5eceSKris Buschelman    MatSeqSBAIJSetPreallocation - Creates a sparse symmetric matrix in block AIJ (block
1938a23d5eceSKris Buschelman    compressed row) format.  For good matrix assembly performance the
1939a23d5eceSKris Buschelman    user should preallocate the matrix storage by setting the parameter nz
1940a23d5eceSKris Buschelman    (or the array nnz).  By setting these parameters accurately, performance
1941a23d5eceSKris Buschelman    during matrix assembly can be increased by more than a factor of 50.
1942a23d5eceSKris Buschelman 
1943a23d5eceSKris Buschelman    Collective on Mat
1944a23d5eceSKris Buschelman 
1945a23d5eceSKris Buschelman    Input Parameters:
1946a23d5eceSKris Buschelman +  A - the symmetric matrix
1947a23d5eceSKris Buschelman .  bs - size of block
1948a23d5eceSKris Buschelman .  nz - number of block nonzeros per block row (same for all rows)
1949a23d5eceSKris Buschelman -  nnz - array containing the number of block nonzeros in the upper triangular plus
19500298fd71SBarry Smith          diagonal portion of each block (possibly different for each block row) or NULL
1951a23d5eceSKris Buschelman 
1952a23d5eceSKris Buschelman    Options Database Keys:
1953a23d5eceSKris Buschelman .   -mat_no_unroll - uses code that does not unroll the loops in the
1954a23d5eceSKris Buschelman                      block calculations (much slower)
1955db4efbfdSBarry Smith .    -mat_block_size - size of the blocks to use (only works if a negative bs is passed in
1956a23d5eceSKris Buschelman 
1957a23d5eceSKris Buschelman    Level: intermediate
1958a23d5eceSKris Buschelman 
1959a23d5eceSKris Buschelman    Notes:
1960a23d5eceSKris Buschelman    Specify the preallocated storage with either nz or nnz (not both).
19610298fd71SBarry Smith    Set nz=PETSC_DEFAULT and nnz=NULL for PETSc to control dynamic memory
19620598bfebSBarry Smith    allocation.  See the <a href="../../docs/manual.pdf#nameddest=ch_mat">Mat chapter of the users manual</a> for details.
1963a23d5eceSKris Buschelman 
1964aa95bbe8SBarry Smith    You can call MatGetInfo() to get information on how effective the preallocation was;
1965aa95bbe8SBarry Smith    for example the fields mallocs,nz_allocated,nz_used,nz_unneeded;
1966aa95bbe8SBarry Smith    You can also run with the option -info and look for messages with the string
1967aa95bbe8SBarry Smith    malloc in them to see if additional memory allocation was needed.
1968aa95bbe8SBarry Smith 
196949a6f317SBarry Smith    If the nnz parameter is given then the nz parameter is ignored
197049a6f317SBarry Smith 
197149a6f317SBarry Smith 
197269b1f4b7SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues(), MatCreateSBAIJ()
1973a23d5eceSKris Buschelman @*/
19747087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetPreallocation(Mat B,PetscInt bs,PetscInt nz,const PetscInt nnz[])
197513f74950SBarry Smith {
19764ac538c5SBarry Smith   PetscErrorCode ierr;
1977a23d5eceSKris Buschelman 
1978a23d5eceSKris Buschelman   PetscFunctionBegin;
19796ba663aaSJed Brown   PetscValidHeaderSpecific(B,MAT_CLASSID,1);
19806ba663aaSJed Brown   PetscValidType(B,1);
19816ba663aaSJed Brown   PetscValidLogicalCollectiveInt(B,bs,2);
19824ac538c5SBarry Smith   ierr = PetscTryMethod(B,"MatSeqSBAIJSetPreallocation_C",(Mat,PetscInt,PetscInt,const PetscInt[]),(B,bs,nz,nnz));CHKERRQ(ierr);
1983a23d5eceSKris Buschelman   PetscFunctionReturn(0);
1984a23d5eceSKris Buschelman }
198549b5e25fSSatish Balay 
19864a2ae208SSatish Balay #undef __FUNCT__
19874a2ae208SSatish Balay #define __FUNCT__ "MatCreateSeqSBAIJ"
1988c464158bSHong Zhang /*@C
1989c464158bSHong Zhang    MatCreateSeqSBAIJ - Creates a sparse symmetric matrix in block AIJ (block
1990c464158bSHong Zhang    compressed row) format.  For good matrix assembly performance the
1991c464158bSHong Zhang    user should preallocate the matrix storage by setting the parameter nz
1992c464158bSHong Zhang    (or the array nnz).  By setting these parameters accurately, performance
1993c464158bSHong Zhang    during matrix assembly can be increased by more than a factor of 50.
199449b5e25fSSatish Balay 
1995c464158bSHong Zhang    Collective on MPI_Comm
1996c464158bSHong Zhang 
1997c464158bSHong Zhang    Input Parameters:
1998c464158bSHong Zhang +  comm - MPI communicator, set to PETSC_COMM_SELF
1999c464158bSHong Zhang .  bs - size of block
2000c464158bSHong Zhang .  m - number of rows, or number of columns
2001c464158bSHong Zhang .  nz - number of block nonzeros per block row (same for all rows)
2002744e8345SSatish Balay -  nnz - array containing the number of block nonzeros in the upper triangular plus
20030298fd71SBarry Smith          diagonal portion of each block (possibly different for each block row) or NULL
2004c464158bSHong Zhang 
2005c464158bSHong Zhang    Output Parameter:
2006c464158bSHong Zhang .  A - the symmetric matrix
2007c464158bSHong Zhang 
2008c464158bSHong Zhang    Options Database Keys:
2009c464158bSHong Zhang .   -mat_no_unroll - uses code that does not unroll the loops in the
2010c464158bSHong Zhang                      block calculations (much slower)
2011c464158bSHong Zhang .    -mat_block_size - size of the blocks to use
2012c464158bSHong Zhang 
2013c464158bSHong Zhang    Level: intermediate
2014c464158bSHong Zhang 
2015175b88e8SBarry Smith    It is recommended that one use the MatCreate(), MatSetType() and/or MatSetFromOptions(),
2016ae1d86c5SBarry Smith    MatXXXXSetPreallocation() paradgm instead of this routine directly.
2017175b88e8SBarry Smith    [MatXXXXSetPreallocation() is, for example, MatSeqAIJSetPreallocation]
2018175b88e8SBarry Smith 
2019c464158bSHong Zhang    Notes:
20206d6d819aSHong Zhang    The number of rows and columns must be divisible by blocksize.
20216d6d819aSHong Zhang    This matrix type does not support complex Hermitian operation.
2022c464158bSHong Zhang 
2023c464158bSHong Zhang    Specify the preallocated storage with either nz or nnz (not both).
20240298fd71SBarry Smith    Set nz=PETSC_DEFAULT and nnz=NULL for PETSc to control dynamic memory
20250598bfebSBarry Smith    allocation.  See the <a href="../../docs/manual.pdf#nameddest=ch_mat">Mat chapter of the users manual</a> for details.
2026c464158bSHong Zhang 
202749a6f317SBarry Smith    If the nnz parameter is given then the nz parameter is ignored
202849a6f317SBarry Smith 
202969b1f4b7SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues(), MatCreateSBAIJ()
2030c464158bSHong Zhang @*/
20317087cfbeSBarry Smith PetscErrorCode  MatCreateSeqSBAIJ(MPI_Comm comm,PetscInt bs,PetscInt m,PetscInt n,PetscInt nz,const PetscInt nnz[],Mat *A)
2032c464158bSHong Zhang {
2033dfbe8321SBarry Smith   PetscErrorCode ierr;
2034c464158bSHong Zhang 
2035c464158bSHong Zhang   PetscFunctionBegin;
2036f69a0ea3SMatthew Knepley   ierr = MatCreate(comm,A);CHKERRQ(ierr);
2037f69a0ea3SMatthew Knepley   ierr = MatSetSizes(*A,m,n,m,n);CHKERRQ(ierr);
2038c464158bSHong Zhang   ierr = MatSetType(*A,MATSEQSBAIJ);CHKERRQ(ierr);
2039ab93d7beSBarry Smith   ierr = MatSeqSBAIJSetPreallocation_SeqSBAIJ(*A,bs,nz,(PetscInt*)nnz);CHKERRQ(ierr);
204049b5e25fSSatish Balay   PetscFunctionReturn(0);
204149b5e25fSSatish Balay }
204249b5e25fSSatish Balay 
20434a2ae208SSatish Balay #undef __FUNCT__
20444a2ae208SSatish Balay #define __FUNCT__ "MatDuplicate_SeqSBAIJ"
2045dfbe8321SBarry Smith PetscErrorCode MatDuplicate_SeqSBAIJ(Mat A,MatDuplicateOption cpvalues,Mat *B)
204649b5e25fSSatish Balay {
204749b5e25fSSatish Balay   Mat            C;
204849b5e25fSSatish Balay   Mat_SeqSBAIJ   *c,*a = (Mat_SeqSBAIJ*)A->data;
20496849ba73SBarry Smith   PetscErrorCode ierr;
2050b40805acSSatish Balay   PetscInt       i,mbs = a->mbs,nz = a->nz,bs2 =a->bs2;
205149b5e25fSSatish Balay 
205249b5e25fSSatish Balay   PetscFunctionBegin;
2053e32f2f54SBarry Smith   if (a->i[mbs] != nz) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Corrupt matrix");
205449b5e25fSSatish Balay 
205549b5e25fSSatish Balay   *B   = 0;
2056ce94432eSBarry Smith   ierr = MatCreate(PetscObjectComm((PetscObject)A),&C);CHKERRQ(ierr);
2057d0f46423SBarry Smith   ierr = MatSetSizes(C,A->rmap->N,A->cmap->n,A->rmap->N,A->cmap->n);CHKERRQ(ierr);
20588e9a0fb8SHong Zhang   ierr = MatSetType(C,MATSEQSBAIJ);CHKERRQ(ierr);
20591d5dac46SHong Zhang   ierr = PetscMemcpy(C->ops,A->ops,sizeof(struct _MatOps));CHKERRQ(ierr);
2060692f9cbeSHong Zhang   c    = (Mat_SeqSBAIJ*)C->data;
2061692f9cbeSHong Zhang 
2062273d9f13SBarry Smith   C->preallocated       = PETSC_TRUE;
2063d5f3da31SBarry Smith   C->factortype         = A->factortype;
206449b5e25fSSatish Balay   c->row                = 0;
206549b5e25fSSatish Balay   c->icol               = 0;
206649b5e25fSSatish Balay   c->saved_values       = 0;
2067a9817697SBarry Smith   c->keepnonzeropattern = a->keepnonzeropattern;
206849b5e25fSSatish Balay   C->assembled          = PETSC_TRUE;
206949b5e25fSSatish Balay 
20701e1e43feSBarry Smith   ierr   = PetscLayoutReference(A->rmap,&C->rmap);CHKERRQ(ierr);
20711e1e43feSBarry Smith   ierr   = PetscLayoutReference(A->cmap,&C->cmap);CHKERRQ(ierr);
207249b5e25fSSatish Balay   c->bs2 = a->bs2;
207349b5e25fSSatish Balay   c->mbs = a->mbs;
207449b5e25fSSatish Balay   c->nbs = a->nbs;
207549b5e25fSSatish Balay 
2076c760cd28SBarry Smith   if  (cpvalues == MAT_SHARE_NONZERO_PATTERN) {
2077c760cd28SBarry Smith     c->imax           = a->imax;
2078c760cd28SBarry Smith     c->ilen           = a->ilen;
2079c760cd28SBarry Smith     c->free_imax_ilen = PETSC_FALSE;
2080c760cd28SBarry Smith   } else {
20818777fc3fSSatish Balay     ierr = PetscMalloc2((mbs+1),PetscInt,&c->imax,(mbs+1),PetscInt,&c->ilen);CHKERRQ(ierr);
2082c760cd28SBarry Smith     ierr = PetscLogObjectMemory(C,2*(mbs+1)*sizeof(PetscInt));CHKERRQ(ierr);
208349b5e25fSSatish Balay     for (i=0; i<mbs; i++) {
208449b5e25fSSatish Balay       c->imax[i] = a->imax[i];
208549b5e25fSSatish Balay       c->ilen[i] = a->ilen[i];
208649b5e25fSSatish Balay     }
2087c760cd28SBarry Smith     c->free_imax_ilen = PETSC_TRUE;
2088c760cd28SBarry Smith   }
208949b5e25fSSatish Balay 
209049b5e25fSSatish Balay   /* allocate the matrix space */
20914da8f245SBarry Smith   if (cpvalues == MAT_SHARE_NONZERO_PATTERN) {
20924da8f245SBarry Smith     ierr            = PetscMalloc(bs2*nz*sizeof(MatScalar),&c->a);CHKERRQ(ierr);
20934da8f245SBarry Smith     ierr            = PetscLogObjectMemory(C,nz*bs2*sizeof(MatScalar));CHKERRQ(ierr);
209444e1c64aSLisandro Dalcin     c->i            = a->i;
209544e1c64aSLisandro Dalcin     c->j            = a->j;
20964da8f245SBarry Smith     c->singlemalloc = PETSC_FALSE;
209744e1c64aSLisandro Dalcin     c->free_a       = PETSC_TRUE;
20984da8f245SBarry Smith     c->free_ij      = PETSC_FALSE;
20994da8f245SBarry Smith     c->parent       = A;
21004da8f245SBarry Smith     ierr            = PetscObjectReference((PetscObject)A);CHKERRQ(ierr);
21014da8f245SBarry Smith     ierr            = MatSetOption(A,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
21024da8f245SBarry Smith     ierr            = MatSetOption(C,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
21034da8f245SBarry Smith   } else {
2104b40805acSSatish Balay     ierr            = PetscMalloc3(bs2*nz,MatScalar,&c->a,nz,PetscInt,&c->j,mbs+1,PetscInt,&c->i);CHKERRQ(ierr);
210513f74950SBarry Smith     ierr            = PetscMemcpy(c->i,a->i,(mbs+1)*sizeof(PetscInt));CHKERRQ(ierr);
2106b40805acSSatish Balay     ierr            = PetscLogObjectMemory(C,(mbs+1)*sizeof(PetscInt) + nz*(bs2*sizeof(MatScalar) + sizeof(PetscInt)));CHKERRQ(ierr);
21074da8f245SBarry Smith     c->singlemalloc = PETSC_TRUE;
210844e1c64aSLisandro Dalcin     c->free_a       = PETSC_TRUE;
21094da8f245SBarry Smith     c->free_ij      = PETSC_TRUE;
21104da8f245SBarry Smith   }
211149b5e25fSSatish Balay   if (mbs > 0) {
21124da8f245SBarry Smith     if (cpvalues != MAT_SHARE_NONZERO_PATTERN) {
211313f74950SBarry Smith       ierr = PetscMemcpy(c->j,a->j,nz*sizeof(PetscInt));CHKERRQ(ierr);
21144da8f245SBarry Smith     }
211549b5e25fSSatish Balay     if (cpvalues == MAT_COPY_VALUES) {
211649b5e25fSSatish Balay       ierr = PetscMemcpy(c->a,a->a,bs2*nz*sizeof(MatScalar));CHKERRQ(ierr);
211749b5e25fSSatish Balay     } else {
211849b5e25fSSatish Balay       ierr = PetscMemzero(c->a,bs2*nz*sizeof(MatScalar));CHKERRQ(ierr);
211949b5e25fSSatish Balay     }
2120a1c3900fSBarry Smith     if (a->jshort) {
212144e1c64aSLisandro Dalcin       /* cannot share jshort, it is reallocated in MatAssemblyEnd_SeqSBAIJ() */
212244e1c64aSLisandro Dalcin       /* if the parent matrix is reassembled, this child matrix will never notice */
2123a1c3900fSBarry Smith       ierr = PetscMalloc(nz*sizeof(unsigned short),&c->jshort);CHKERRQ(ierr);
2124c760cd28SBarry Smith       ierr = PetscLogObjectMemory(C,nz*sizeof(unsigned short));CHKERRQ(ierr);
2125a1c3900fSBarry Smith       ierr = PetscMemcpy(c->jshort,a->jshort,nz*sizeof(unsigned short));CHKERRQ(ierr);
212626fbe8dcSKarl Rupp 
21274da8f245SBarry Smith       c->free_jshort = PETSC_TRUE;
21284da8f245SBarry Smith     }
2129a1c3900fSBarry Smith   }
213049b5e25fSSatish Balay 
213149b5e25fSSatish Balay   c->roworiented = a->roworiented;
213249b5e25fSSatish Balay   c->nonew       = a->nonew;
213349b5e25fSSatish Balay 
213449b5e25fSSatish Balay   if (a->diag) {
2135c760cd28SBarry Smith     if (cpvalues == MAT_SHARE_NONZERO_PATTERN) {
2136c760cd28SBarry Smith       c->diag      = a->diag;
2137c760cd28SBarry Smith       c->free_diag = PETSC_FALSE;
2138c760cd28SBarry Smith     } else {
21392ed38d0bSJed Brown       ierr = PetscMalloc(mbs*sizeof(PetscInt),&c->diag);CHKERRQ(ierr);
21402ed38d0bSJed Brown       ierr = PetscLogObjectMemory(C,mbs*sizeof(PetscInt));CHKERRQ(ierr);
214126fbe8dcSKarl Rupp       for (i=0; i<mbs; i++) c->diag[i] = a->diag[i];
2142c760cd28SBarry Smith       c->free_diag = PETSC_TRUE;
2143c760cd28SBarry Smith     }
214444e1c64aSLisandro Dalcin   }
21456c6c5352SBarry Smith   c->nz         = a->nz;
2146f2cbd3d5SJed Brown   c->maxnz      = a->nz; /* Since we allocate exactly the right amount */
214749b5e25fSSatish Balay   c->solve_work = 0;
214849b5e25fSSatish Balay   c->mult_work  = 0;
214926fbe8dcSKarl Rupp 
215049b5e25fSSatish Balay   *B   = C;
2151140e18c1SBarry Smith   ierr = PetscFunctionListDuplicate(((PetscObject)A)->qlist,&((PetscObject)C)->qlist);CHKERRQ(ierr);
215249b5e25fSSatish Balay   PetscFunctionReturn(0);
215349b5e25fSSatish Balay }
215449b5e25fSSatish Balay 
21554a2ae208SSatish Balay #undef __FUNCT__
21565bba2384SShri Abhyankar #define __FUNCT__ "MatLoad_SeqSBAIJ"
2157112444f4SShri Abhyankar PetscErrorCode MatLoad_SeqSBAIJ(Mat newmat,PetscViewer viewer)
21582f480046SShri Abhyankar {
21592f480046SShri Abhyankar   Mat_SeqSBAIJ   *a;
21602f480046SShri Abhyankar   PetscErrorCode ierr;
21612f480046SShri Abhyankar   int            fd;
21622f480046SShri Abhyankar   PetscMPIInt    size;
21632f480046SShri Abhyankar   PetscInt       i,nz,header[4],*rowlengths=0,M,N,bs=1;
21642f480046SShri Abhyankar   PetscInt       *mask,mbs,*jj,j,rowcount,nzcount,k,*s_browlengths,maskcount;
21652f480046SShri Abhyankar   PetscInt       kmax,jcount,block,idx,point,nzcountb,extra_rows,rows,cols;
21662f480046SShri Abhyankar   PetscInt       *masked,nmask,tmp,bs2,ishift;
21672f480046SShri Abhyankar   PetscScalar    *aa;
2168ce94432eSBarry Smith   MPI_Comm       comm;
21692f480046SShri Abhyankar 
21702f480046SShri Abhyankar   PetscFunctionBegin;
2171ce94432eSBarry Smith   ierr = PetscObjectGetComm((PetscObject)viewer,&comm);CHKERRQ(ierr);
21720298fd71SBarry Smith   ierr = PetscOptionsGetInt(((PetscObject)newmat)->prefix,"-matload_block_size",&bs,NULL);CHKERRQ(ierr);
21732f480046SShri Abhyankar   bs2  = bs*bs;
21742f480046SShri Abhyankar 
21752f480046SShri Abhyankar   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
21762f480046SShri Abhyankar   if (size > 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"view must have one processor");
21772f480046SShri Abhyankar   ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr);
21782f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,header,4,PETSC_INT);CHKERRQ(ierr);
21792f480046SShri Abhyankar   if (header[0] != MAT_FILE_CLASSID) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"not Mat object");
21802f480046SShri Abhyankar   M = header[1]; N = header[2]; nz = header[3];
21812f480046SShri Abhyankar 
21822f480046SShri Abhyankar   if (header[3] < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"Matrix stored in special format, cannot load as SeqSBAIJ");
21832f480046SShri Abhyankar 
21842f480046SShri Abhyankar   if (M != N) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Can only do square matrices");
21852f480046SShri Abhyankar 
21862f480046SShri Abhyankar   /*
21872f480046SShri Abhyankar      This code adds extra rows to make sure the number of rows is
21882f480046SShri Abhyankar     divisible by the blocksize
21892f480046SShri Abhyankar   */
21902f480046SShri Abhyankar   mbs        = M/bs;
21912f480046SShri Abhyankar   extra_rows = bs - M + bs*(mbs);
21922f480046SShri Abhyankar   if (extra_rows == bs) extra_rows = 0;
21932f480046SShri Abhyankar   else                  mbs++;
21942f480046SShri Abhyankar   if (extra_rows) {
21952f480046SShri Abhyankar     ierr = PetscInfo(viewer,"Padding loaded matrix to match blocksize\n");CHKERRQ(ierr);
21962f480046SShri Abhyankar   }
21972f480046SShri Abhyankar 
21982f480046SShri Abhyankar   /* Set global sizes if not already set */
21992f480046SShri Abhyankar   if (newmat->rmap->n < 0 && newmat->rmap->N < 0 && newmat->cmap->n < 0 && newmat->cmap->N < 0) {
22002f480046SShri Abhyankar     ierr = MatSetSizes(newmat,PETSC_DECIDE,PETSC_DECIDE,M+extra_rows,N+extra_rows);CHKERRQ(ierr);
22012f480046SShri Abhyankar   } else { /* Check if the matrix global sizes are correct */
22022f480046SShri Abhyankar     ierr = MatGetSize(newmat,&rows,&cols);CHKERRQ(ierr);
22032f480046SShri Abhyankar     if (M != rows ||  N != cols) SETERRQ4(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"Matrix in file of different length (%d, %d) than the input matrix (%d, %d)",M,N,rows,cols);
22042f480046SShri Abhyankar   }
22052f480046SShri Abhyankar 
22062f480046SShri Abhyankar   /* read in row lengths */
22072f480046SShri Abhyankar   ierr = PetscMalloc((M+extra_rows)*sizeof(PetscInt),&rowlengths);CHKERRQ(ierr);
22082f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,rowlengths,M,PETSC_INT);CHKERRQ(ierr);
22092f480046SShri Abhyankar   for (i=0; i<extra_rows; i++) rowlengths[M+i] = 1;
22102f480046SShri Abhyankar 
22112f480046SShri Abhyankar   /* read in column indices */
22122f480046SShri Abhyankar   ierr = PetscMalloc((nz+extra_rows)*sizeof(PetscInt),&jj);CHKERRQ(ierr);
22132f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,jj,nz,PETSC_INT);CHKERRQ(ierr);
22142f480046SShri Abhyankar   for (i=0; i<extra_rows; i++) jj[nz+i] = M+i;
22152f480046SShri Abhyankar 
22162f480046SShri Abhyankar   /* loop over row lengths determining block row lengths */
22172f480046SShri Abhyankar   ierr     = PetscMalloc(mbs*sizeof(PetscInt),&s_browlengths);CHKERRQ(ierr);
22182f480046SShri Abhyankar   ierr     = PetscMemzero(s_browlengths,mbs*sizeof(PetscInt));CHKERRQ(ierr);
22192f480046SShri Abhyankar   ierr     = PetscMalloc2(mbs,PetscInt,&mask,mbs,PetscInt,&masked);CHKERRQ(ierr);
22202f480046SShri Abhyankar   ierr     = PetscMemzero(mask,mbs*sizeof(PetscInt));CHKERRQ(ierr);
22212f480046SShri Abhyankar   rowcount = 0;
22222f480046SShri Abhyankar   nzcount  = 0;
22232f480046SShri Abhyankar   for (i=0; i<mbs; i++) {
22242f480046SShri Abhyankar     nmask = 0;
22252f480046SShri Abhyankar     for (j=0; j<bs; j++) {
22262f480046SShri Abhyankar       kmax = rowlengths[rowcount];
22272f480046SShri Abhyankar       for (k=0; k<kmax; k++) {
22282f480046SShri Abhyankar         tmp = jj[nzcount++]/bs;   /* block col. index */
22292f480046SShri Abhyankar         if (!mask[tmp] && tmp >= i) {masked[nmask++] = tmp; mask[tmp] = 1;}
22302f480046SShri Abhyankar       }
22312f480046SShri Abhyankar       rowcount++;
22322f480046SShri Abhyankar     }
22332f480046SShri Abhyankar     s_browlengths[i] += nmask;
22342f480046SShri Abhyankar 
22352f480046SShri Abhyankar     /* zero out the mask elements we set */
22362f480046SShri Abhyankar     for (j=0; j<nmask; j++) mask[masked[j]] = 0;
22372f480046SShri Abhyankar   }
22382f480046SShri Abhyankar 
22392f480046SShri Abhyankar   /* Do preallocation */
22402f480046SShri Abhyankar   ierr = MatSeqSBAIJSetPreallocation_SeqSBAIJ(newmat,bs,0,s_browlengths);CHKERRQ(ierr);
22412f480046SShri Abhyankar   a    = (Mat_SeqSBAIJ*)newmat->data;
22422f480046SShri Abhyankar 
22432f480046SShri Abhyankar   /* set matrix "i" values */
22442f480046SShri Abhyankar   a->i[0] = 0;
22452f480046SShri Abhyankar   for (i=1; i<= mbs; i++) {
22462f480046SShri Abhyankar     a->i[i]      = a->i[i-1] + s_browlengths[i-1];
22472f480046SShri Abhyankar     a->ilen[i-1] = s_browlengths[i-1];
22482f480046SShri Abhyankar   }
22492f480046SShri Abhyankar   a->nz = a->i[mbs];
22502f480046SShri Abhyankar 
22512f480046SShri Abhyankar   /* read in nonzero values */
22522f480046SShri Abhyankar   ierr = PetscMalloc((nz+extra_rows)*sizeof(PetscScalar),&aa);CHKERRQ(ierr);
22532f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,aa,nz,PETSC_SCALAR);CHKERRQ(ierr);
22542f480046SShri Abhyankar   for (i=0; i<extra_rows; i++) aa[nz+i] = 1.0;
22552f480046SShri Abhyankar 
22562f480046SShri Abhyankar   /* set "a" and "j" values into matrix */
22572f480046SShri Abhyankar   nzcount = 0; jcount = 0;
22582f480046SShri Abhyankar   for (i=0; i<mbs; i++) {
22592f480046SShri Abhyankar     nzcountb = nzcount;
22602f480046SShri Abhyankar     nmask    = 0;
22612f480046SShri Abhyankar     for (j=0; j<bs; j++) {
22622f480046SShri Abhyankar       kmax = rowlengths[i*bs+j];
22632f480046SShri Abhyankar       for (k=0; k<kmax; k++) {
22642f480046SShri Abhyankar         tmp = jj[nzcount++]/bs; /* block col. index */
22652f480046SShri Abhyankar         if (!mask[tmp] && tmp >= i) { masked[nmask++] = tmp; mask[tmp] = 1;}
22662f480046SShri Abhyankar       }
22672f480046SShri Abhyankar     }
22682f480046SShri Abhyankar     /* sort the masked values */
22692f480046SShri Abhyankar     ierr = PetscSortInt(nmask,masked);CHKERRQ(ierr);
22702f480046SShri Abhyankar 
22712f480046SShri Abhyankar     /* set "j" values into matrix */
22722f480046SShri Abhyankar     maskcount = 1;
22732f480046SShri Abhyankar     for (j=0; j<nmask; j++) {
22742f480046SShri Abhyankar       a->j[jcount++]  = masked[j];
22752f480046SShri Abhyankar       mask[masked[j]] = maskcount++;
22762f480046SShri Abhyankar     }
22772f480046SShri Abhyankar 
22782f480046SShri Abhyankar     /* set "a" values into matrix */
22792f480046SShri Abhyankar     ishift = bs2*a->i[i];
22802f480046SShri Abhyankar     for (j=0; j<bs; j++) {
22812f480046SShri Abhyankar       kmax = rowlengths[i*bs+j];
22822f480046SShri Abhyankar       for (k=0; k<kmax; k++) {
22832f480046SShri Abhyankar         tmp = jj[nzcountb]/bs;        /* block col. index */
22842f480046SShri Abhyankar         if (tmp >= i) {
22852f480046SShri Abhyankar           block     = mask[tmp] - 1;
22862f480046SShri Abhyankar           point     = jj[nzcountb] - bs*tmp;
22872f480046SShri Abhyankar           idx       = ishift + bs2*block + j + bs*point;
22882f480046SShri Abhyankar           a->a[idx] = aa[nzcountb];
22892f480046SShri Abhyankar         }
22902f480046SShri Abhyankar         nzcountb++;
22912f480046SShri Abhyankar       }
22922f480046SShri Abhyankar     }
22932f480046SShri Abhyankar     /* zero out the mask elements we set */
22942f480046SShri Abhyankar     for (j=0; j<nmask; j++) mask[masked[j]] = 0;
22952f480046SShri Abhyankar   }
22962f480046SShri Abhyankar   if (jcount != a->nz) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"Bad binary matrix");
22972f480046SShri Abhyankar 
22982f480046SShri Abhyankar   ierr = PetscFree(rowlengths);CHKERRQ(ierr);
22992f480046SShri Abhyankar   ierr = PetscFree(s_browlengths);CHKERRQ(ierr);
23002f480046SShri Abhyankar   ierr = PetscFree(aa);CHKERRQ(ierr);
23012f480046SShri Abhyankar   ierr = PetscFree(jj);CHKERRQ(ierr);
23022f480046SShri Abhyankar   ierr = PetscFree2(mask,masked);CHKERRQ(ierr);
23032f480046SShri Abhyankar 
23042f480046SShri Abhyankar   ierr = MatAssemblyBegin(newmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
23052f480046SShri Abhyankar   ierr = MatAssemblyEnd(newmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
23062f480046SShri Abhyankar   PetscFunctionReturn(0);
23072f480046SShri Abhyankar }
23082f480046SShri Abhyankar 
23092f480046SShri Abhyankar #undef __FUNCT__
2310c75a6043SHong Zhang #define __FUNCT__ "MatCreateSeqSBAIJWithArrays"
2311c75a6043SHong Zhang /*@
2312c75a6043SHong Zhang      MatCreateSeqSBAIJWithArrays - Creates an sequential SBAIJ matrix using matrix elements
2313c75a6043SHong Zhang               (upper triangular entries in CSR format) provided by the user.
2314c75a6043SHong Zhang 
2315c75a6043SHong Zhang      Collective on MPI_Comm
2316c75a6043SHong Zhang 
2317c75a6043SHong Zhang    Input Parameters:
2318c75a6043SHong Zhang +  comm - must be an MPI communicator of size 1
2319c75a6043SHong Zhang .  bs - size of block
2320c75a6043SHong Zhang .  m - number of rows
2321c75a6043SHong Zhang .  n - number of columns
2322c75a6043SHong Zhang .  i - row indices
2323c75a6043SHong Zhang .  j - column indices
2324c75a6043SHong Zhang -  a - matrix values
2325c75a6043SHong Zhang 
2326c75a6043SHong Zhang    Output Parameter:
2327c75a6043SHong Zhang .  mat - the matrix
2328c75a6043SHong Zhang 
2329dfb205c3SBarry Smith    Level: advanced
2330c75a6043SHong Zhang 
2331c75a6043SHong Zhang    Notes:
2332c75a6043SHong Zhang        The i, j, and a arrays are not copied by this routine, the user must free these arrays
2333c75a6043SHong Zhang     once the matrix is destroyed
2334c75a6043SHong Zhang 
2335c75a6043SHong Zhang        You cannot set new nonzero locations into this matrix, that will generate an error.
2336c75a6043SHong Zhang 
2337c75a6043SHong Zhang        The i and j indices are 0 based
2338c75a6043SHong Zhang 
2339dfb205c3SBarry Smith        When block size is greater than 1 the matrix values must be stored using the SBAIJ storage format (see the SBAIJ code to determine this). For block size of 1
2340dfb205c3SBarry Smith        it is the regular CSR format excluding the lower triangular elements.
2341dfb205c3SBarry Smith 
234269b1f4b7SBarry Smith .seealso: MatCreate(), MatCreateSBAIJ(), MatCreateSeqSBAIJ()
2343c75a6043SHong Zhang 
2344c75a6043SHong Zhang @*/
23457087cfbeSBarry Smith PetscErrorCode  MatCreateSeqSBAIJWithArrays(MPI_Comm comm,PetscInt bs,PetscInt m,PetscInt n,PetscInt *i,PetscInt *j,PetscScalar *a,Mat *mat)
2346c75a6043SHong Zhang {
2347c75a6043SHong Zhang   PetscErrorCode ierr;
2348c75a6043SHong Zhang   PetscInt       ii;
2349c75a6043SHong Zhang   Mat_SeqSBAIJ   *sbaij;
2350c75a6043SHong Zhang 
2351c75a6043SHong Zhang   PetscFunctionBegin;
2352e32f2f54SBarry Smith   if (bs != 1) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"block size %D > 1 is not supported yet",bs);
2353e32f2f54SBarry Smith   if (i[0]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"i (row indices) must start with 0");
2354c75a6043SHong Zhang 
2355c75a6043SHong Zhang   ierr  = MatCreate(comm,mat);CHKERRQ(ierr);
2356c75a6043SHong Zhang   ierr  = MatSetSizes(*mat,m,n,m,n);CHKERRQ(ierr);
2357c75a6043SHong Zhang   ierr  = MatSetType(*mat,MATSEQSBAIJ);CHKERRQ(ierr);
2358c75a6043SHong Zhang   ierr  = MatSeqSBAIJSetPreallocation_SeqSBAIJ(*mat,bs,MAT_SKIP_ALLOCATION,0);CHKERRQ(ierr);
2359c75a6043SHong Zhang   sbaij = (Mat_SeqSBAIJ*)(*mat)->data;
2360c75a6043SHong Zhang   ierr  = PetscMalloc2(m,PetscInt,&sbaij->imax,m,PetscInt,&sbaij->ilen);CHKERRQ(ierr);
2361c760cd28SBarry Smith   ierr  = PetscLogObjectMemory(*mat,2*m*sizeof(PetscInt));CHKERRQ(ierr);
2362c75a6043SHong Zhang 
2363c75a6043SHong Zhang   sbaij->i = i;
2364c75a6043SHong Zhang   sbaij->j = j;
2365c75a6043SHong Zhang   sbaij->a = a;
236626fbe8dcSKarl Rupp 
2367c75a6043SHong Zhang   sbaij->singlemalloc = PETSC_FALSE;
2368c75a6043SHong Zhang   sbaij->nonew        = -1;             /*this indicates that inserting a new value in the matrix that generates a new nonzero is an error*/
2369e6b907acSBarry Smith   sbaij->free_a       = PETSC_FALSE;
2370e6b907acSBarry Smith   sbaij->free_ij      = PETSC_FALSE;
2371c75a6043SHong Zhang 
2372c75a6043SHong Zhang   for (ii=0; ii<m; ii++) {
2373c75a6043SHong Zhang     sbaij->ilen[ii] = sbaij->imax[ii] = i[ii+1] - i[ii];
2374c75a6043SHong Zhang #if defined(PETSC_USE_DEBUG)
2375e32f2f54SBarry Smith     if (i[ii+1] - i[ii] < 0) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative row length in i (row indices) row = %d length = %d",ii,i[ii+1] - i[ii]);
2376c75a6043SHong Zhang #endif
2377c75a6043SHong Zhang   }
2378c75a6043SHong Zhang #if defined(PETSC_USE_DEBUG)
2379c75a6043SHong Zhang   for (ii=0; ii<sbaij->i[m]; ii++) {
2380e32f2f54SBarry Smith     if (j[ii] < 0) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative column index at location = %d index = %d",ii,j[ii]);
2381e32f2f54SBarry Smith     if (j[ii] > n - 1) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Column index to large at location = %d index = %d",ii,j[ii]);
2382c75a6043SHong Zhang   }
2383c75a6043SHong Zhang #endif
2384c75a6043SHong Zhang 
2385c75a6043SHong Zhang   ierr = MatAssemblyBegin(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2386c75a6043SHong Zhang   ierr = MatAssemblyEnd(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2387c75a6043SHong Zhang   PetscFunctionReturn(0);
2388c75a6043SHong Zhang }
2389d06b337dSHong Zhang 
2390d06b337dSHong Zhang 
2391d06b337dSHong Zhang 
239249b5e25fSSatish Balay 
239349b5e25fSSatish Balay 
2394