xref: /petsc/src/mat/impls/sbaij/seq/sbaij.c (revision 5fd668637986a8d8518383a9159eebc368e1d5b4)
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   }
988f7157efSSatish Balay 
9949b5e25fSSatish Balay   PetscFunctionReturn(0);
10049b5e25fSSatish Balay }
10149b5e25fSSatish Balay 
1024a2ae208SSatish Balay #undef __FUNCT__
1034a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRowIJ_SeqSBAIJ"
1041a83f524SJed Brown static PetscErrorCode MatRestoreRowIJ_SeqSBAIJ(Mat A,PetscInt oshift,PetscBool  symmetric,PetscBool  blockcompressed,PetscInt *nn,const PetscInt *ia[],const PetscInt *ja[],PetscBool  *done)
10549b5e25fSSatish Balay {
106b7aaefc3SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
1078f7157efSSatish Balay   PetscInt     i,n = a->mbs,nz = a->i[n];
1088f7157efSSatish Balay   PetscErrorCode ierr;
109a6ece127SHong Zhang 
11049b5e25fSSatish Balay   PetscFunctionBegin;
11149b5e25fSSatish Balay   if (!ia) PetscFunctionReturn(0);
112a6ece127SHong Zhang 
1138f7157efSSatish Balay   if (!blockcompressed) {
1148f7157efSSatish Balay     ierr = PetscFree2(*ia,*ja);CHKERRQ(ierr);
1158f7157efSSatish Balay   } else if (oshift == 1) { /* blockcompressed */
1166c6c5352SBarry Smith     for (i=0; i<nz; i++) a->j[i]--;
117a6ece127SHong Zhang     for (i=0; i<n+1; i++) a->i[i]--;
118a6ece127SHong Zhang   }
1198f7157efSSatish Balay 
120a6ece127SHong Zhang   PetscFunctionReturn(0);
12149b5e25fSSatish Balay }
12249b5e25fSSatish Balay 
1234a2ae208SSatish Balay #undef __FUNCT__
1244a2ae208SSatish Balay #define __FUNCT__ "MatDestroy_SeqSBAIJ"
125dfbe8321SBarry Smith PetscErrorCode MatDestroy_SeqSBAIJ(Mat A)
12649b5e25fSSatish Balay {
12749b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
128dfbe8321SBarry Smith   PetscErrorCode ierr;
12949b5e25fSSatish Balay 
13049b5e25fSSatish Balay   PetscFunctionBegin;
131a9f03627SSatish Balay #if defined(PETSC_USE_LOG)
132d0f46423SBarry Smith   PetscLogObjectState((PetscObject)A,"Rows=%D, NZ=%D",A->rmap->N,a->nz);
133a9f03627SSatish Balay #endif
134e6b907acSBarry Smith   ierr = MatSeqXAIJFreeAIJ(A,&a->a,&a->j,&a->i);CHKERRQ(ierr);
1357f53bb6cSHong Zhang   if (a->free_diag) {ierr = PetscFree(a->diag);CHKERRQ(ierr);}
1366bf464f9SBarry Smith   ierr = ISDestroy(&a->row);CHKERRQ(ierr);
1376bf464f9SBarry Smith   ierr = ISDestroy(&a->col);CHKERRQ(ierr);
1386bf464f9SBarry Smith   ierr = ISDestroy(&a->icol);CHKERRQ(ierr);
139c31cb41cSBarry Smith   ierr = PetscFree(a->idiag);CHKERRQ(ierr);
140c31cb41cSBarry Smith   ierr = PetscFree(a->inode.size);CHKERRQ(ierr);
141c760cd28SBarry Smith   if (a->free_imax_ilen) {ierr = PetscFree2(a->imax,a->ilen);CHKERRQ(ierr);}
14205b42c5fSBarry Smith   ierr = PetscFree(a->solve_work);CHKERRQ(ierr);
14341f059aeSBarry Smith   ierr = PetscFree(a->sor_work);CHKERRQ(ierr);
14405b42c5fSBarry Smith   ierr = PetscFree(a->solves_work);CHKERRQ(ierr);
14505b42c5fSBarry Smith   ierr = PetscFree(a->mult_work);CHKERRQ(ierr);
14605b42c5fSBarry Smith   ierr = PetscFree(a->saved_values);CHKERRQ(ierr);
14705b42c5fSBarry Smith   ierr = PetscFree(a->xtoy);CHKERRQ(ierr);
1484da8f245SBarry Smith   if (a->free_jshort) {ierr = PetscFree(a->jshort);CHKERRQ(ierr);}
1491a3463dfSHong Zhang   ierr = PetscFree(a->inew);CHKERRQ(ierr);
1506bf464f9SBarry Smith   ierr = MatDestroy(&a->parent);CHKERRQ(ierr);
151bf0cc555SLisandro Dalcin   ierr = PetscFree(A->data);CHKERRQ(ierr);
152901853e0SKris Buschelman 
153dbd8c25aSHong Zhang   ierr = PetscObjectChangeTypeName((PetscObject)A,0);CHKERRQ(ierr);
154901853e0SKris Buschelman   ierr = PetscObjectComposeFunction((PetscObject)A,"MatStoreValues_C","",PETSC_NULL);CHKERRQ(ierr);
155901853e0SKris Buschelman   ierr = PetscObjectComposeFunction((PetscObject)A,"MatRetrieveValues_C","",PETSC_NULL);CHKERRQ(ierr);
156901853e0SKris Buschelman   ierr = PetscObjectComposeFunction((PetscObject)A,"MatSeqSBAIJSetColumnIndices_C","",PETSC_NULL);CHKERRQ(ierr);
157901853e0SKris Buschelman   ierr = PetscObjectComposeFunction((PetscObject)A,"MatConvert_seqsbaij_seqaij_C","",PETSC_NULL);CHKERRQ(ierr);
158901853e0SKris Buschelman   ierr = PetscObjectComposeFunction((PetscObject)A,"MatConvert_seqsbaij_seqbaij_C","",PETSC_NULL);CHKERRQ(ierr);
159901853e0SKris Buschelman   ierr = PetscObjectComposeFunction((PetscObject)A,"MatSeqSBAIJSetPreallocation_C","",PETSC_NULL);CHKERRQ(ierr);
160aa5a9175SDahai Guo   ierr = PetscObjectComposeFunction((PetscObject)A,"MatConvert_seqsbaij_seqsbstrm_C","",PETSC_NULL);CHKERRQ(ierr);
16149b5e25fSSatish Balay   PetscFunctionReturn(0);
16249b5e25fSSatish Balay }
16349b5e25fSSatish Balay 
1644a2ae208SSatish Balay #undef __FUNCT__
1654a2ae208SSatish Balay #define __FUNCT__ "MatSetOption_SeqSBAIJ"
166ace3abfcSBarry Smith PetscErrorCode MatSetOption_SeqSBAIJ(Mat A,MatOption op,PetscBool  flg)
16749b5e25fSSatish Balay {
168045c9aa0SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
16963ba0a88SBarry Smith   PetscErrorCode ierr;
17049b5e25fSSatish Balay 
17149b5e25fSSatish Balay   PetscFunctionBegin;
1724d9d31abSKris Buschelman   switch (op) {
1734d9d31abSKris Buschelman   case MAT_ROW_ORIENTED:
1744e0d8c25SBarry Smith     a->roworiented = flg;
1754d9d31abSKris Buschelman     break;
176a9817697SBarry Smith   case MAT_KEEP_NONZERO_PATTERN:
177a9817697SBarry Smith     a->keepnonzeropattern = flg;
1784d9d31abSKris Buschelman     break;
179512a5fc5SBarry Smith   case MAT_NEW_NONZERO_LOCATIONS:
180512a5fc5SBarry Smith     a->nonew = (flg ? 0 : 1);
1814d9d31abSKris Buschelman     break;
1824d9d31abSKris Buschelman   case MAT_NEW_NONZERO_LOCATION_ERR:
1834e0d8c25SBarry Smith     a->nonew = (flg ? -1 : 0);
1844d9d31abSKris Buschelman     break;
1854d9d31abSKris Buschelman   case MAT_NEW_NONZERO_ALLOCATION_ERR:
1864e0d8c25SBarry Smith     a->nonew = (flg ? -2 : 0);
1874d9d31abSKris Buschelman     break;
18828b2fa4aSMatthew Knepley   case MAT_UNUSED_NONZERO_LOCATION_ERR:
18928b2fa4aSMatthew Knepley     a->nounused = (flg ? -1 : 0);
19028b2fa4aSMatthew Knepley     break;
1914e0d8c25SBarry Smith   case MAT_NEW_DIAGONALS:
1924d9d31abSKris Buschelman   case MAT_IGNORE_OFF_PROC_ENTRIES:
1934d9d31abSKris Buschelman   case MAT_USE_HASH_TABLE:
194290bbb0aSBarry Smith     ierr = PetscInfo1(A,"Option %s ignored\n",MatOptions[op]);CHKERRQ(ierr);
1954d9d31abSKris Buschelman     break;
1969a4540c5SBarry Smith   case MAT_HERMITIAN:
197e32f2f54SBarry Smith     if (!A->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Must call MatAssemblyEnd() first");
1980bc54ff2SBarry Smith     if (A->cmap->n < 65536 && A->cmap->bs == 1) {
199eeffb40dSHong Zhang       A->ops->mult = MatMult_SeqSBAIJ_1_Hermitian_ushort;
2000bc54ff2SBarry Smith     } else if (A->cmap->bs == 1) {
201eeffb40dSHong Zhang       A->ops->mult = MatMult_SeqSBAIJ_1_Hermitian;
202e32f2f54SBarry Smith     } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"No support for Hermitian with block size greater than 1");
203eeffb40dSHong Zhang     break;
2043d472b54SHong Zhang   case MAT_SPD:
2055021d80fSJed Brown     /* These options are handled directly by MatSetOption() */
2063d472b54SHong Zhang     break;
20777e54ba9SKris Buschelman   case MAT_SYMMETRIC:
20877e54ba9SKris Buschelman   case MAT_STRUCTURALLY_SYMMETRIC:
2099a4540c5SBarry Smith   case MAT_SYMMETRY_ETERNAL:
210e32f2f54SBarry Smith     if (!flg) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix must be symmetric");
211290bbb0aSBarry Smith     ierr = PetscInfo1(A,"Option %s not relevent\n",MatOptions[op]);CHKERRQ(ierr);
212290bbb0aSBarry Smith     break;
213941593c8SHong Zhang   case MAT_IGNORE_LOWER_TRIANGULAR:
2144e0d8c25SBarry Smith     a->ignore_ltriangular = flg;
215941593c8SHong Zhang     break;
216941593c8SHong Zhang   case MAT_ERROR_LOWER_TRIANGULAR:
2174e0d8c25SBarry Smith     a->ignore_ltriangular = flg;
21877e54ba9SKris Buschelman     break;
219f5edf698SHong Zhang   case MAT_GETROW_UPPERTRIANGULAR:
2204e0d8c25SBarry Smith     a->getrow_utriangular = flg;
221f5edf698SHong Zhang     break;
2224d9d31abSKris Buschelman   default:
223e32f2f54SBarry Smith     SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"unknown option %d",op);
22449b5e25fSSatish Balay   }
22549b5e25fSSatish Balay   PetscFunctionReturn(0);
22649b5e25fSSatish Balay }
22749b5e25fSSatish Balay 
2284a2ae208SSatish Balay #undef __FUNCT__
2294a2ae208SSatish Balay #define __FUNCT__ "MatGetRow_SeqSBAIJ"
23013f74950SBarry Smith PetscErrorCode MatGetRow_SeqSBAIJ(Mat A,PetscInt row,PetscInt *ncols,PetscInt **cols,PetscScalar **v)
23149b5e25fSSatish Balay {
23249b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
2336849ba73SBarry Smith   PetscErrorCode ierr;
23413f74950SBarry Smith   PetscInt       itmp,i,j,k,M,*ai,*aj,bs,bn,bp,*cols_i,bs2;
23549b5e25fSSatish Balay   MatScalar      *aa,*aa_i;
23687828ca2SBarry Smith   PetscScalar    *v_i;
23749b5e25fSSatish Balay 
23849b5e25fSSatish Balay   PetscFunctionBegin;
239e32f2f54SBarry 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()");
240f5edf698SHong Zhang   /* Get the upper triangular part of the row */
241d0f46423SBarry Smith   bs  = A->rmap->bs;
24249b5e25fSSatish Balay   ai  = a->i;
24349b5e25fSSatish Balay   aj  = a->j;
24449b5e25fSSatish Balay   aa  = a->a;
24549b5e25fSSatish Balay   bs2 = a->bs2;
24649b5e25fSSatish Balay 
247e32f2f54SBarry Smith   if (row < 0 || row >= A->rmap->N) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE, "Row %D out of range", row);
24849b5e25fSSatish Balay 
24949b5e25fSSatish Balay   bn  = row/bs;   /* Block number */
25049b5e25fSSatish Balay   bp  = row % bs; /* Block position */
25149b5e25fSSatish Balay   M   = ai[bn+1] - ai[bn];
25249b5e25fSSatish Balay   *ncols = bs*M;
25349b5e25fSSatish Balay 
25449b5e25fSSatish Balay   if (v) {
25549b5e25fSSatish Balay     *v = 0;
25649b5e25fSSatish Balay     if (*ncols) {
25787828ca2SBarry Smith       ierr = PetscMalloc((*ncols+row)*sizeof(PetscScalar),v);CHKERRQ(ierr);
25849b5e25fSSatish Balay       for (i=0; i<M; i++) { /* for each block in the block row */
25949b5e25fSSatish Balay         v_i  = *v + i*bs;
26049b5e25fSSatish Balay         aa_i = aa + bs2*(ai[bn] + i);
26149b5e25fSSatish Balay         for (j=bp,k=0; j<bs2; j+=bs,k++) {v_i[k] = aa_i[j];}
26249b5e25fSSatish Balay       }
26349b5e25fSSatish Balay     }
26449b5e25fSSatish Balay   }
26549b5e25fSSatish Balay 
26649b5e25fSSatish Balay   if (cols) {
26749b5e25fSSatish Balay     *cols = 0;
26849b5e25fSSatish Balay     if (*ncols) {
26913f74950SBarry Smith       ierr = PetscMalloc((*ncols+row)*sizeof(PetscInt),cols);CHKERRQ(ierr);
27049b5e25fSSatish Balay       for (i=0; i<M; i++) { /* for each block in the block row */
27149b5e25fSSatish Balay         cols_i = *cols + i*bs;
27249b5e25fSSatish Balay         itmp  = bs*aj[ai[bn] + i];
27349b5e25fSSatish Balay         for (j=0; j<bs; j++) {cols_i[j] = itmp++;}
27449b5e25fSSatish Balay       }
27549b5e25fSSatish Balay     }
27649b5e25fSSatish Balay   }
27749b5e25fSSatish Balay 
27849b5e25fSSatish Balay   /*search column A(0:row-1,row) (=A(row,0:row-1)). Could be expensive! */
2795ddb2528SHong Zhang   /* this segment is currently removed, so only entries in the upper triangle are obtained */
280519f805aSKarl Rupp #if defined(column_search)
28149b5e25fSSatish Balay   v_i    = *v    + M*bs;
28249b5e25fSSatish Balay   cols_i = *cols + M*bs;
28349b5e25fSSatish Balay   for (i=0; i<bn; i++) { /* for each block row */
28449b5e25fSSatish Balay     M = ai[i+1] - ai[i];
28549b5e25fSSatish Balay     for (j=0; j<M; j++) {
28649b5e25fSSatish Balay       itmp = aj[ai[i] + j];    /* block column value */
28749b5e25fSSatish Balay       if (itmp == bn) {
28849b5e25fSSatish Balay         aa_i   = aa    + bs2*(ai[i] + j) + bs*bp;
28949b5e25fSSatish Balay         for (k=0; k<bs; k++) {
29049b5e25fSSatish Balay           *cols_i++ = i*bs+k;
29149b5e25fSSatish Balay           *v_i++    = aa_i[k];
29249b5e25fSSatish Balay         }
29349b5e25fSSatish Balay         *ncols += bs;
29449b5e25fSSatish Balay         break;
29549b5e25fSSatish Balay       }
29649b5e25fSSatish Balay     }
29749b5e25fSSatish Balay   }
2985ddb2528SHong Zhang #endif
29949b5e25fSSatish Balay   PetscFunctionReturn(0);
30049b5e25fSSatish Balay }
30149b5e25fSSatish Balay 
3024a2ae208SSatish Balay #undef __FUNCT__
3034a2ae208SSatish Balay #define __FUNCT__ "MatRestoreRow_SeqSBAIJ"
30413f74950SBarry Smith PetscErrorCode MatRestoreRow_SeqSBAIJ(Mat A,PetscInt row,PetscInt *nz,PetscInt **idx,PetscScalar **v)
30549b5e25fSSatish Balay {
306dfbe8321SBarry Smith   PetscErrorCode ierr;
30749b5e25fSSatish Balay 
30849b5e25fSSatish Balay   PetscFunctionBegin;
30905b42c5fSBarry Smith   if (idx) {ierr = PetscFree(*idx);CHKERRQ(ierr);}
31005b42c5fSBarry Smith   if (v)   {ierr = PetscFree(*v);CHKERRQ(ierr);}
31149b5e25fSSatish Balay   PetscFunctionReturn(0);
31249b5e25fSSatish Balay }
31349b5e25fSSatish Balay 
3144a2ae208SSatish Balay #undef __FUNCT__
315f5edf698SHong Zhang #define __FUNCT__ "MatGetRowUpperTriangular_SeqSBAIJ"
316f5edf698SHong Zhang PetscErrorCode MatGetRowUpperTriangular_SeqSBAIJ(Mat A)
317f5edf698SHong Zhang {
318f5edf698SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
319f5edf698SHong Zhang 
320f5edf698SHong Zhang   PetscFunctionBegin;
321f5edf698SHong Zhang   a->getrow_utriangular = PETSC_TRUE;
322f5edf698SHong Zhang   PetscFunctionReturn(0);
323f5edf698SHong Zhang }
324f5edf698SHong Zhang #undef __FUNCT__
325f5edf698SHong Zhang #define __FUNCT__ "MatRestoreRowUpperTriangular_SeqSBAIJ"
326f5edf698SHong Zhang PetscErrorCode MatRestoreRowUpperTriangular_SeqSBAIJ(Mat A)
327f5edf698SHong Zhang {
328f5edf698SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
329f5edf698SHong Zhang 
330f5edf698SHong Zhang   PetscFunctionBegin;
331f5edf698SHong Zhang   a->getrow_utriangular = PETSC_FALSE;
332f5edf698SHong Zhang   PetscFunctionReturn(0);
333f5edf698SHong Zhang }
334f5edf698SHong Zhang 
335f5edf698SHong Zhang #undef __FUNCT__
3364a2ae208SSatish Balay #define __FUNCT__ "MatTranspose_SeqSBAIJ"
337fc4dec0aSBarry Smith PetscErrorCode MatTranspose_SeqSBAIJ(Mat A,MatReuse reuse,Mat *B)
33849b5e25fSSatish Balay {
339dfbe8321SBarry Smith   PetscErrorCode ierr;
340*5fd66863SKarl Rupp 
34149b5e25fSSatish Balay   PetscFunctionBegin;
342815cbec1SBarry Smith   if (reuse == MAT_INITIAL_MATRIX || *B != A) {
343999d9058SBarry Smith     ierr = MatDuplicate(A,MAT_COPY_VALUES,B);CHKERRQ(ierr);
344fc4dec0aSBarry Smith   }
3458115998fSBarry Smith   PetscFunctionReturn(0);
34649b5e25fSSatish Balay }
34749b5e25fSSatish Balay 
3484a2ae208SSatish Balay #undef __FUNCT__
3494a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ_ASCII"
3506849ba73SBarry Smith static PetscErrorCode MatView_SeqSBAIJ_ASCII(Mat A,PetscViewer viewer)
35149b5e25fSSatish Balay {
35249b5e25fSSatish Balay   Mat_SeqSBAIJ      *a = (Mat_SeqSBAIJ*)A->data;
353dfbe8321SBarry Smith   PetscErrorCode    ierr;
354d0f46423SBarry Smith   PetscInt          i,j,bs = A->rmap->bs,k,l,bs2=a->bs2;
355f3ef73ceSBarry Smith   PetscViewerFormat format;
356121deb67SSatish Balay   PetscInt          *diag;
35749b5e25fSSatish Balay 
35849b5e25fSSatish Balay   PetscFunctionBegin;
359b0a32e0cSBarry Smith   ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr);
360456192e2SBarry Smith   if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) {
36177431f27SBarry Smith     ierr = PetscViewerASCIIPrintf(viewer,"  block size is %D\n",bs);CHKERRQ(ierr);
362fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_MATLAB) {
363d2507d54SMatthew Knepley     Mat aij;
364d5f3da31SBarry Smith     if (A->factortype && bs>1) {
36570d5e725SHong 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);
36670d5e725SHong Zhang       PetscFunctionReturn(0);
36770d5e725SHong Zhang     }
368c9f458caSMatthew Knepley     ierr = MatConvert(A,MATSEQAIJ,MAT_INITIAL_MATRIX,&aij);CHKERRQ(ierr);
369c9f458caSMatthew Knepley     ierr = MatView(aij,viewer);CHKERRQ(ierr);
3706bf464f9SBarry Smith     ierr = MatDestroy(&aij);CHKERRQ(ierr);
371fb9695e5SSatish Balay   } else if (format == PETSC_VIEWER_ASCII_COMMON) {
372d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_FALSE);CHKERRQ(ierr);
37349b5e25fSSatish Balay     for (i=0; i<a->mbs; i++) {
37449b5e25fSSatish Balay       for (j=0; j<bs; j++) {
37577431f27SBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"row %D:",i*bs+j);CHKERRQ(ierr);
37649b5e25fSSatish Balay         for (k=a->i[i]; k<a->i[i+1]; k++) {
37749b5e25fSSatish Balay           for (l=0; l<bs; l++) {
37849b5e25fSSatish Balay #if defined(PETSC_USE_COMPLEX)
37949b5e25fSSatish Balay             if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) > 0.0 && PetscRealPart(a->a[bs2*k + l*bs + j]) != 0.0) {
380a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G + %G i) ",bs*a->j[k]+l,
38149b5e25fSSatish Balay                                             PetscRealPart(a->a[bs2*k + l*bs + j]),PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
38249b5e25fSSatish Balay             } else if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) < 0.0 && PetscRealPart(a->a[bs2*k + l*bs + j]) != 0.0) {
383a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",bs*a->j[k]+l,
38449b5e25fSSatish Balay                                             PetscRealPart(a->a[bs2*k + l*bs + j]),-PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
38549b5e25fSSatish Balay             } else if (PetscRealPart(a->a[bs2*k + l*bs + j]) != 0.0) {
386a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,PetscRealPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
38749b5e25fSSatish Balay             }
38849b5e25fSSatish Balay #else
38949b5e25fSSatish Balay             if (a->a[bs2*k + l*bs + j] != 0.0) {
390a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,a->a[bs2*k + l*bs + j]);CHKERRQ(ierr);
39149b5e25fSSatish Balay             }
39249b5e25fSSatish Balay #endif
39349b5e25fSSatish Balay           }
39449b5e25fSSatish Balay         }
395b0a32e0cSBarry Smith         ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
39649b5e25fSSatish Balay       }
39749b5e25fSSatish Balay     }
398d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_TRUE);CHKERRQ(ierr);
399c1490034SHong Zhang   } else if (format == PETSC_VIEWER_ASCII_FACTOR_INFO) {
400c1490034SHong Zhang      PetscFunctionReturn(0);
40149b5e25fSSatish Balay   } else {
402d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_FALSE);CHKERRQ(ierr);
4037566de4bSShri Abhyankar     ierr = PetscObjectPrintClassNamePrefixType((PetscObject)A,viewer,"Matrix Object");CHKERRQ(ierr);
4042c990fa1SHong Zhang     if (A->factortype) { /* for factored matrix */
4052c990fa1SHong Zhang       if (bs>1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"matrix is factored with bs>1. Not implemented yet");
4062c990fa1SHong Zhang 
407121deb67SSatish Balay       diag=a->diag;
408121deb67SSatish Balay       for (i=0; i<a->mbs; i++) { /* for row block i */
4092c990fa1SHong Zhang         ierr = PetscViewerASCIIPrintf(viewer,"row %D:",i);CHKERRQ(ierr);
4102c990fa1SHong Zhang         /* diagonal entry */
4112c990fa1SHong Zhang #if defined(PETSC_USE_COMPLEX)
4122c990fa1SHong Zhang         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 if (PetscImaginaryPart(a->a[diag[i]]) < 0.0) {
415ca0704adSBarry 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);
4162c990fa1SHong Zhang         } else {
4172c990fa1SHong Zhang           ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",a->j[diag[i]],PetscRealPart(1.0/a->a[diag[i]]));CHKERRQ(ierr);
4182c990fa1SHong Zhang         }
4192c990fa1SHong Zhang #else
4202c990fa1SHong Zhang         ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",a->j[diag[i]],1.0/a->a[diag[i]]);CHKERRQ(ierr);
4212c990fa1SHong Zhang #endif
4222c990fa1SHong Zhang         /* off-diagonal entries */
4232c990fa1SHong Zhang         for (k=a->i[i]; k<a->i[i+1]-1; k++) {
4242c990fa1SHong Zhang #if defined(PETSC_USE_COMPLEX)
425ca0704adSBarry Smith           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);
427ca0704adSBarry Smith           } else if (PetscImaginaryPart(a->a[k]) < 0.0) {
428ca0704adSBarry Smith             ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",bs*a->j[k],PetscRealPart(a->a[k]),-PetscImaginaryPart(a->a[k]));CHKERRQ(ierr);
4292c990fa1SHong Zhang           } else {
430ca0704adSBarry Smith             ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k],PetscRealPart(a->a[k]));CHKERRQ(ierr);
4312c990fa1SHong Zhang           }
4322c990fa1SHong Zhang #else
4332c990fa1SHong Zhang           ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",a->j[k],a->a[k]);CHKERRQ(ierr);
4342c990fa1SHong Zhang #endif
4352c990fa1SHong Zhang         }
4362c990fa1SHong Zhang         ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
4372c990fa1SHong Zhang       }
4382c990fa1SHong Zhang 
4392c990fa1SHong Zhang     } else { /* for non-factored matrix */
4400c74a584SJed Brown       for (i=0; i<a->mbs; i++) { /* for row block i */
4410c74a584SJed Brown         for (j=0; j<bs; j++) {   /* for row bs*i + j */
44277431f27SBarry Smith           ierr = PetscViewerASCIIPrintf(viewer,"row %D:",i*bs+j);CHKERRQ(ierr);
4430c74a584SJed Brown           for (k=a->i[i]; k<a->i[i+1]; k++) { /* for column block */
4440c74a584SJed Brown             for (l=0; l<bs; l++) {            /* for column */
44549b5e25fSSatish Balay #if defined(PETSC_USE_COMPLEX)
44649b5e25fSSatish Balay               if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) > 0.0) {
447a83599f4SBarry Smith               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G + %G i) ",bs*a->j[k]+l,
44849b5e25fSSatish Balay                                             PetscRealPart(a->a[bs2*k + l*bs + j]),PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
44949b5e25fSSatish Balay               } else if (PetscImaginaryPart(a->a[bs2*k + l*bs + j]) < 0.0) {
450a83599f4SBarry Smith                 ierr = PetscViewerASCIIPrintf(viewer," (%D, %G - %G i) ",bs*a->j[k]+l,
45149b5e25fSSatish Balay                                             PetscRealPart(a->a[bs2*k + l*bs + j]),-PetscImaginaryPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
45249b5e25fSSatish Balay               } else {
453a83599f4SBarry Smith                 ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,PetscRealPart(a->a[bs2*k + l*bs + j]));CHKERRQ(ierr);
45449b5e25fSSatish Balay               }
45549b5e25fSSatish Balay #else
456e9f7bc9eSHong Zhang               ierr = PetscViewerASCIIPrintf(viewer," (%D, %G) ",bs*a->j[k]+l,a->a[bs2*k + l*bs + j]);CHKERRQ(ierr);
45749b5e25fSSatish Balay #endif
45849b5e25fSSatish Balay             }
45949b5e25fSSatish Balay           }
460b0a32e0cSBarry Smith           ierr = PetscViewerASCIIPrintf(viewer,"\n");CHKERRQ(ierr);
46149b5e25fSSatish Balay         }
46249b5e25fSSatish Balay       }
4632c990fa1SHong Zhang     }
464d00279f6SBarry Smith     ierr = PetscViewerASCIIUseTabs(viewer,PETSC_TRUE);CHKERRQ(ierr);
46549b5e25fSSatish Balay   }
466b0a32e0cSBarry Smith   ierr = PetscViewerFlush(viewer);CHKERRQ(ierr);
46749b5e25fSSatish Balay   PetscFunctionReturn(0);
46849b5e25fSSatish Balay }
46949b5e25fSSatish Balay 
4704a2ae208SSatish Balay #undef __FUNCT__
4714a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ_Draw_Zoom"
4726849ba73SBarry Smith static PetscErrorCode MatView_SeqSBAIJ_Draw_Zoom(PetscDraw draw,void *Aa)
47349b5e25fSSatish Balay {
47449b5e25fSSatish Balay   Mat            A = (Mat) Aa;
47549b5e25fSSatish Balay   Mat_SeqSBAIJ   *a=(Mat_SeqSBAIJ*)A->data;
4766849ba73SBarry Smith   PetscErrorCode ierr;
477d0f46423SBarry Smith   PetscInt       row,i,j,k,l,mbs=a->mbs,color,bs=A->rmap->bs,bs2=a->bs2;
47813f74950SBarry Smith   PetscMPIInt    rank;
47949b5e25fSSatish Balay   PetscReal      xl,yl,xr,yr,x_l,x_r,y_l,y_r;
48049b5e25fSSatish Balay   MatScalar      *aa;
48149b5e25fSSatish Balay   MPI_Comm       comm;
482b0a32e0cSBarry Smith   PetscViewer    viewer;
48349b5e25fSSatish Balay 
48449b5e25fSSatish Balay   PetscFunctionBegin;
48549b5e25fSSatish Balay   /*
48649b5e25fSSatish Balay     This is nasty. If this is called from an originally parallel matrix
48749b5e25fSSatish Balay     then all processes call this,but only the first has the matrix so the
48849b5e25fSSatish Balay     rest should return immediately.
48949b5e25fSSatish Balay   */
49049b5e25fSSatish Balay   ierr = PetscObjectGetComm((PetscObject)draw,&comm);CHKERRQ(ierr);
49149b5e25fSSatish Balay   ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr);
49249b5e25fSSatish Balay   if (rank) PetscFunctionReturn(0);
49349b5e25fSSatish Balay 
49449b5e25fSSatish Balay   ierr = PetscObjectQuery((PetscObject)A,"Zoomviewer",(PetscObject*)&viewer);CHKERRQ(ierr);
49549b5e25fSSatish Balay 
496b0a32e0cSBarry Smith   ierr = PetscDrawGetCoordinates(draw,&xl,&yl,&xr,&yr);CHKERRQ(ierr);
497b0a32e0cSBarry Smith   PetscDrawString(draw, .3*(xl+xr), .3*(yl+yr), PETSC_DRAW_BLACK, "symmetric");
49849b5e25fSSatish Balay 
49949b5e25fSSatish Balay   /* loop over matrix elements drawing boxes */
500b0a32e0cSBarry Smith   color = PETSC_DRAW_BLUE;
50149b5e25fSSatish Balay   for (i=0,row=0; i<mbs; i++,row+=bs) {
50249b5e25fSSatish Balay     for (j=a->i[i]; j<a->i[i+1]; j++) {
503d0f46423SBarry Smith       y_l = A->rmap->N - row - 1.0; y_r = y_l + 1.0;
50449b5e25fSSatish Balay       x_l = a->j[j]*bs; x_r = x_l + 1.0;
50549b5e25fSSatish Balay       aa = a->a + j*bs2;
50649b5e25fSSatish Balay       for (k=0; k<bs; k++) {
50749b5e25fSSatish Balay         for (l=0; l<bs; l++) {
50849b5e25fSSatish Balay           if (PetscRealPart(*aa++) >=  0.) continue;
509b0a32e0cSBarry Smith           ierr = PetscDrawRectangle(draw,x_l+k,y_l-l,x_r+k,y_r-l,color,color,color,color);CHKERRQ(ierr);
51049b5e25fSSatish Balay         }
51149b5e25fSSatish Balay       }
51249b5e25fSSatish Balay     }
51349b5e25fSSatish Balay   }
514b0a32e0cSBarry Smith   color = PETSC_DRAW_CYAN;
51549b5e25fSSatish Balay   for (i=0,row=0; i<mbs; i++,row+=bs) {
51649b5e25fSSatish Balay     for (j=a->i[i]; j<a->i[i+1]; j++) {
517d0f46423SBarry Smith       y_l = A->rmap->N - row - 1.0; y_r = y_l + 1.0;
51849b5e25fSSatish Balay       x_l = a->j[j]*bs; x_r = x_l + 1.0;
51949b5e25fSSatish Balay       aa = a->a + j*bs2;
52049b5e25fSSatish Balay       for (k=0; k<bs; k++) {
52149b5e25fSSatish Balay         for (l=0; l<bs; l++) {
52249b5e25fSSatish Balay           if (PetscRealPart(*aa++) != 0.) continue;
523b0a32e0cSBarry Smith           ierr = PetscDrawRectangle(draw,x_l+k,y_l-l,x_r+k,y_r-l,color,color,color,color);CHKERRQ(ierr);
52449b5e25fSSatish Balay         }
52549b5e25fSSatish Balay       }
52649b5e25fSSatish Balay     }
52749b5e25fSSatish Balay   }
52849b5e25fSSatish Balay 
529b0a32e0cSBarry Smith   color = PETSC_DRAW_RED;
53049b5e25fSSatish Balay   for (i=0,row=0; i<mbs; i++,row+=bs) {
53149b5e25fSSatish Balay     for (j=a->i[i]; j<a->i[i+1]; j++) {
532d0f46423SBarry Smith       y_l = A->rmap->N - row - 1.0; y_r = y_l + 1.0;
53349b5e25fSSatish Balay       x_l = a->j[j]*bs; x_r = x_l + 1.0;
53449b5e25fSSatish Balay       aa = a->a + j*bs2;
53549b5e25fSSatish Balay       for (k=0; k<bs; k++) {
53649b5e25fSSatish Balay         for (l=0; l<bs; l++) {
53749b5e25fSSatish Balay           if (PetscRealPart(*aa++) <= 0.) continue;
538b0a32e0cSBarry Smith           ierr = PetscDrawRectangle(draw,x_l+k,y_l-l,x_r+k,y_r-l,color,color,color,color);CHKERRQ(ierr);
53949b5e25fSSatish Balay         }
54049b5e25fSSatish Balay       }
54149b5e25fSSatish Balay     }
54249b5e25fSSatish Balay   }
54349b5e25fSSatish Balay   PetscFunctionReturn(0);
54449b5e25fSSatish Balay }
54549b5e25fSSatish Balay 
5464a2ae208SSatish Balay #undef __FUNCT__
5474a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ_Draw"
5486849ba73SBarry Smith static PetscErrorCode MatView_SeqSBAIJ_Draw(Mat A,PetscViewer viewer)
54949b5e25fSSatish Balay {
550dfbe8321SBarry Smith   PetscErrorCode ierr;
55149b5e25fSSatish Balay   PetscReal      xl,yl,xr,yr,w,h;
552b0a32e0cSBarry Smith   PetscDraw      draw;
553ace3abfcSBarry Smith   PetscBool      isnull;
55449b5e25fSSatish Balay 
55549b5e25fSSatish Balay   PetscFunctionBegin;
556b0a32e0cSBarry Smith   ierr = PetscViewerDrawGetDraw(viewer,0,&draw);CHKERRQ(ierr);
557b0a32e0cSBarry Smith   ierr = PetscDrawIsNull(draw,&isnull);CHKERRQ(ierr); if (isnull) PetscFunctionReturn(0);
55849b5e25fSSatish Balay 
55949b5e25fSSatish Balay   ierr = PetscObjectCompose((PetscObject)A,"Zoomviewer",(PetscObject)viewer);CHKERRQ(ierr);
560d0f46423SBarry Smith   xr  = A->rmap->N; yr = A->rmap->N; h = yr/10.0; w = xr/10.0;
56149b5e25fSSatish Balay   xr += w;    yr += h;  xl = -w;     yl = -h;
562b0a32e0cSBarry Smith   ierr = PetscDrawSetCoordinates(draw,xl,yl,xr,yr);CHKERRQ(ierr);
563b0a32e0cSBarry Smith   ierr = PetscDrawZoom(draw,MatView_SeqSBAIJ_Draw_Zoom,A);CHKERRQ(ierr);
56449b5e25fSSatish Balay   ierr = PetscObjectCompose((PetscObject)A,"Zoomviewer",PETSC_NULL);CHKERRQ(ierr);
56549b5e25fSSatish Balay   PetscFunctionReturn(0);
56649b5e25fSSatish Balay }
56749b5e25fSSatish Balay 
5684a2ae208SSatish Balay #undef __FUNCT__
5694a2ae208SSatish Balay #define __FUNCT__ "MatView_SeqSBAIJ"
570dfbe8321SBarry Smith PetscErrorCode MatView_SeqSBAIJ(Mat A,PetscViewer viewer)
57149b5e25fSSatish Balay {
572dfbe8321SBarry Smith   PetscErrorCode ierr;
573ace3abfcSBarry Smith   PetscBool      iascii,isdraw;
57408917f38SBarry Smith   FILE           *file = 0;
57549b5e25fSSatish Balay 
57649b5e25fSSatish Balay   PetscFunctionBegin;
577251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr);
578251f4c67SDmitry Karpeev   ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERDRAW,&isdraw);CHKERRQ(ierr);
57932077d6dSBarry Smith   if (iascii) {
58049b5e25fSSatish Balay     ierr = MatView_SeqSBAIJ_ASCII(A,viewer);CHKERRQ(ierr);
58149b5e25fSSatish Balay   } else if (isdraw) {
58249b5e25fSSatish Balay     ierr = MatView_SeqSBAIJ_Draw(A,viewer);CHKERRQ(ierr);
58349b5e25fSSatish Balay   } else {
584a5e6ed63SBarry Smith     Mat B;
585ceb03754SKris Buschelman     ierr = MatConvert(A,MATSEQAIJ,MAT_INITIAL_MATRIX,&B);CHKERRQ(ierr);
586a5e6ed63SBarry Smith     ierr = MatView(B,viewer);CHKERRQ(ierr);
5876bf464f9SBarry Smith     ierr = MatDestroy(&B);CHKERRQ(ierr);
58808917f38SBarry Smith     ierr = PetscViewerBinaryGetInfoPointer(viewer,&file);CHKERRQ(ierr);
58908917f38SBarry Smith     if (file) {
59008917f38SBarry Smith       fprintf(file,"-matload_block_size %d\n",(int)A->rmap->bs);
59108917f38SBarry Smith     }
59249b5e25fSSatish Balay   }
59349b5e25fSSatish Balay   PetscFunctionReturn(0);
59449b5e25fSSatish Balay }
59549b5e25fSSatish Balay 
59649b5e25fSSatish Balay 
5974a2ae208SSatish Balay #undef __FUNCT__
5984a2ae208SSatish Balay #define __FUNCT__ "MatGetValues_SeqSBAIJ"
59913f74950SBarry Smith PetscErrorCode MatGetValues_SeqSBAIJ(Mat A,PetscInt m,const PetscInt im[],PetscInt n,const PetscInt in[],PetscScalar v[])
60049b5e25fSSatish Balay {
601045c9aa0SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
60213f74950SBarry Smith   PetscInt     *rp,k,low,high,t,row,nrow,i,col,l,*aj = a->j;
60313f74950SBarry Smith   PetscInt     *ai = a->i,*ailen = a->ilen;
604d0f46423SBarry Smith   PetscInt     brow,bcol,ridx,cidx,bs=A->rmap->bs,bs2=a->bs2;
60597e567efSBarry Smith   MatScalar    *ap,*aa = a->a;
60649b5e25fSSatish Balay 
60749b5e25fSSatish Balay   PetscFunctionBegin;
60849b5e25fSSatish Balay   for (k=0; k<m; k++) { /* loop over rows */
60949b5e25fSSatish Balay     row  = im[k]; brow = row/bs;
610e32f2f54SBarry Smith     if (row < 0) {v += n; continue;} /* SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative row: %D",row); */
611e32f2f54SBarry 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);
61249b5e25fSSatish Balay     rp   = aj + ai[brow] ; ap = aa + bs2*ai[brow] ;
61349b5e25fSSatish Balay     nrow = ailen[brow];
61449b5e25fSSatish Balay     for (l=0; l<n; l++) { /* loop over columns */
615e32f2f54SBarry Smith       if (in[l] < 0) {v++; continue;} /* SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative column: %D",in[l]); */
616e32f2f54SBarry 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);
61749b5e25fSSatish Balay       col  = in[l] ;
61849b5e25fSSatish Balay       bcol = col/bs;
61949b5e25fSSatish Balay       cidx = col%bs;
62049b5e25fSSatish Balay       ridx = row%bs;
62149b5e25fSSatish Balay       high = nrow;
62249b5e25fSSatish Balay       low  = 0; /* assume unsorted */
62349b5e25fSSatish Balay       while (high-low > 5) {
62449b5e25fSSatish Balay         t = (low+high)/2;
62549b5e25fSSatish Balay         if (rp[t] > bcol) high = t;
62649b5e25fSSatish Balay         else             low  = t;
62749b5e25fSSatish Balay       }
62849b5e25fSSatish Balay       for (i=low; i<high; i++) {
62949b5e25fSSatish Balay         if (rp[i] > bcol) break;
63049b5e25fSSatish Balay         if (rp[i] == bcol) {
63149b5e25fSSatish Balay           *v++ = ap[bs2*i+bs*cidx+ridx];
63249b5e25fSSatish Balay           goto finished;
63349b5e25fSSatish Balay         }
63449b5e25fSSatish Balay       }
63597e567efSBarry Smith       *v++ = 0.0;
63649b5e25fSSatish Balay       finished:;
63749b5e25fSSatish Balay     }
63849b5e25fSSatish Balay   }
63949b5e25fSSatish Balay   PetscFunctionReturn(0);
64049b5e25fSSatish Balay }
64149b5e25fSSatish Balay 
64249b5e25fSSatish Balay 
6434a2ae208SSatish Balay #undef __FUNCT__
6444a2ae208SSatish Balay #define __FUNCT__ "MatSetValuesBlocked_SeqSBAIJ"
64513f74950SBarry Smith PetscErrorCode MatSetValuesBlocked_SeqSBAIJ(Mat A,PetscInt m,const PetscInt im[],PetscInt n,const PetscInt in[],const PetscScalar v[],InsertMode is)
64649b5e25fSSatish Balay {
6470880e062SHong Zhang   Mat_SeqSBAIJ      *a = (Mat_SeqSBAIJ*)A->data;
6486849ba73SBarry Smith   PetscErrorCode    ierr;
649e2ee6c50SBarry Smith   PetscInt          *rp,k,low,high,t,ii,jj,row,nrow,i,col,l,rmax,N,lastcol = -1;
65013f74950SBarry Smith   PetscInt          *imax=a->imax,*ai=a->i,*ailen=a->ilen;
651d0f46423SBarry Smith   PetscInt          *aj=a->j,nonew=a->nonew,bs2=a->bs2,bs=A->rmap->bs,stepval;
652ace3abfcSBarry Smith   PetscBool         roworiented=a->roworiented;
653dd6ea824SBarry Smith   const PetscScalar *value = v;
654f15d580aSBarry Smith   MatScalar         *ap,*aa = a->a,*bap;
6550880e062SHong Zhang 
65649b5e25fSSatish Balay   PetscFunctionBegin;
6570880e062SHong Zhang   if (roworiented) {
6580880e062SHong Zhang     stepval = (n-1)*bs;
6590880e062SHong Zhang   } else {
6600880e062SHong Zhang     stepval = (m-1)*bs;
6610880e062SHong Zhang   }
6620880e062SHong Zhang   for (k=0; k<m; k++) { /* loop over added rows */
6630880e062SHong Zhang     row  = im[k];
6640880e062SHong Zhang     if (row < 0) continue;
6652515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
666e32f2f54SBarry Smith     if (row >= a->mbs) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Row too large: row %D max %D",row,a->mbs-1);
6670880e062SHong Zhang #endif
6680880e062SHong Zhang     rp   = aj + ai[row];
6690880e062SHong Zhang     ap   = aa + bs2*ai[row];
6700880e062SHong Zhang     rmax = imax[row];
6710880e062SHong Zhang     nrow = ailen[row];
6720880e062SHong Zhang     low  = 0;
673818f2c47SBarry Smith     high = nrow;
6740880e062SHong Zhang     for (l=0; l<n; l++) { /* loop over added columns */
6750880e062SHong Zhang       if (in[l] < 0) continue;
6760880e062SHong Zhang       col = in[l];
6772515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
678e32f2f54SBarry Smith       if (col >= a->nbs) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Column too large: col %D max %D",col,a->nbs-1);
679b1823623SSatish Balay #endif
680b98bf0e1SJed Brown       if (col < row) {
681b98bf0e1SJed Brown         if (a->ignore_ltriangular) {
682b98bf0e1SJed Brown           continue; /* ignore lower triangular block */
683b98bf0e1SJed Brown         } else {
684e32f2f54SBarry Smith           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)");
685b98bf0e1SJed Brown         }
686b98bf0e1SJed Brown       }
6870880e062SHong Zhang       if (roworiented) {
6880880e062SHong Zhang         value = v + k*(stepval+bs)*bs + l*bs;
6890880e062SHong Zhang       } else {
6900880e062SHong Zhang         value = v + l*(stepval+bs)*bs + k*bs;
6910880e062SHong Zhang       }
6927cd84e04SBarry Smith       if (col <= lastcol) low = 0; else high = nrow;
693e2ee6c50SBarry Smith       lastcol = col;
6940880e062SHong Zhang       while (high-low > 7) {
6950880e062SHong Zhang         t = (low+high)/2;
6960880e062SHong Zhang         if (rp[t] > col) high = t;
6970880e062SHong Zhang         else             low  = t;
6980880e062SHong Zhang       }
6990880e062SHong Zhang       for (i=low; i<high; i++) {
7000880e062SHong Zhang         if (rp[i] > col) break;
7010880e062SHong Zhang         if (rp[i] == col) {
7020880e062SHong Zhang           bap  = ap +  bs2*i;
7030880e062SHong Zhang           if (roworiented) {
7040880e062SHong Zhang             if (is == ADD_VALUES) {
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             } else {
7110880e062SHong Zhang               for (ii=0; ii<bs; ii++,value+=stepval) {
7120880e062SHong Zhang                 for (jj=ii; jj<bs2; jj+=bs) {
7130880e062SHong Zhang                   bap[jj] = *value++;
7140880e062SHong Zhang                 }
7150880e062SHong Zhang                }
7160880e062SHong Zhang             }
7170880e062SHong Zhang           } else {
7180880e062SHong Zhang             if (is == ADD_VALUES) {
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             } else {
7250880e062SHong Zhang               for (ii=0; ii<bs; ii++,value+=stepval) {
7260880e062SHong Zhang                 for (jj=0; jj<bs; jj++) {
7270880e062SHong Zhang                   *bap++  = *value++;
7280880e062SHong Zhang                 }
7290880e062SHong Zhang               }
7300880e062SHong Zhang             }
7310880e062SHong Zhang           }
7320880e062SHong Zhang           goto noinsert2;
7330880e062SHong Zhang         }
7340880e062SHong Zhang       }
7350880e062SHong Zhang       if (nonew == 1) goto noinsert2;
736e32f2f54SBarry Smith       if (nonew == -1) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%D, %D) in the matrix", row, col);
737fef13f97SBarry Smith       MatSeqXAIJReallocateAIJ(A,a->mbs,bs2,nrow,row,col,rmax,aa,ai,aj,rp,ap,imax,nonew,MatScalar);
738c03d1d03SSatish Balay       N = nrow++ - 1; high++;
7390880e062SHong Zhang       /* shift up all the later entries in this row */
7400880e062SHong Zhang       for (ii=N; ii>=i; ii--) {
7410880e062SHong Zhang         rp[ii+1] = rp[ii];
7420880e062SHong Zhang         ierr = PetscMemcpy(ap+bs2*(ii+1),ap+bs2*(ii),bs2*sizeof(MatScalar));CHKERRQ(ierr);
7430880e062SHong Zhang       }
7440880e062SHong Zhang       if (N >= i) {
7450880e062SHong Zhang         ierr = PetscMemzero(ap+bs2*i,bs2*sizeof(MatScalar));CHKERRQ(ierr);
7460880e062SHong Zhang       }
7470880e062SHong Zhang       rp[i] = col;
7480880e062SHong Zhang       bap   = ap +  bs2*i;
7490880e062SHong Zhang       if (roworiented) {
7500880e062SHong Zhang         for (ii=0; ii<bs; ii++,value+=stepval) {
7510880e062SHong Zhang           for (jj=ii; jj<bs2; jj+=bs) {
7520880e062SHong Zhang             bap[jj] = *value++;
7530880e062SHong Zhang           }
7540880e062SHong Zhang         }
7550880e062SHong Zhang       } else {
7560880e062SHong Zhang         for (ii=0; ii<bs; ii++,value+=stepval) {
7570880e062SHong Zhang           for (jj=0; jj<bs; jj++) {
7580880e062SHong Zhang             *bap++  = *value++;
7590880e062SHong Zhang           }
7600880e062SHong Zhang         }
7610880e062SHong Zhang        }
7620880e062SHong Zhang     noinsert2:;
7630880e062SHong Zhang       low = i;
7640880e062SHong Zhang     }
7650880e062SHong Zhang     ailen[row] = nrow;
7660880e062SHong Zhang   }
7670880e062SHong Zhang    PetscFunctionReturn(0);
76849b5e25fSSatish Balay }
76949b5e25fSSatish Balay 
77064831d72SBarry Smith /*
77164831d72SBarry Smith     This is not yet used
77264831d72SBarry Smith */
7734a2ae208SSatish Balay #undef __FUNCT__
7744108e4d5SBarry Smith #define __FUNCT__ "MatAssemblyEnd_SeqSBAIJ_SeqAIJ_Inode"
7754108e4d5SBarry Smith PetscErrorCode MatAssemblyEnd_SeqSBAIJ_SeqAIJ_Inode(Mat A)
7760def2e27SBarry Smith {
7770def2e27SBarry Smith   Mat_SeqSBAIJ    *a = (Mat_SeqSBAIJ*)A->data;
7780def2e27SBarry Smith   PetscErrorCode  ierr;
7790def2e27SBarry Smith   const PetscInt  *ai = a->i, *aj = a->j,*cols;
7800def2e27SBarry Smith   PetscInt        i = 0,j,blk_size,m = A->rmap->n,node_count = 0,nzx,nzy,*ns,row,nz,cnt,cnt2,*counts;
781ace3abfcSBarry Smith   PetscBool       flag;
7820def2e27SBarry Smith 
7830def2e27SBarry Smith   PetscFunctionBegin;
7840def2e27SBarry Smith   ierr = PetscMalloc(m*sizeof(PetscInt),&ns);CHKERRQ(ierr);
7850def2e27SBarry Smith   while (i < m) {
7860def2e27SBarry Smith     nzx = ai[i+1] - ai[i];       /* Number of nonzeros */
7870def2e27SBarry Smith     /* Limits the number of elements in a node to 'a->inode.limit' */
7880def2e27SBarry Smith     for (j=i+1,blk_size=1; j<m && blk_size <a->inode.limit; ++j,++blk_size) {
7890def2e27SBarry Smith       nzy  = ai[j+1] - ai[j];
7900def2e27SBarry Smith       if (nzy != (nzx - j + i)) break;
7910def2e27SBarry Smith       ierr = PetscMemcmp(aj + ai[i] + j - i,aj + ai[j],nzy*sizeof(PetscInt),&flag);CHKERRQ(ierr);
7920def2e27SBarry Smith       if (!flag) break;
7930def2e27SBarry Smith     }
7940def2e27SBarry Smith     ns[node_count++] = blk_size;
7950def2e27SBarry Smith     i = j;
7960def2e27SBarry Smith   }
7970def2e27SBarry Smith   if (!a->inode.size && m && node_count > .9*m) {
7980def2e27SBarry Smith     ierr = PetscFree(ns);CHKERRQ(ierr);
7990def2e27SBarry Smith     ierr = PetscInfo2(A,"Found %D nodes out of %D rows. Not using Inode routines\n",node_count,m);CHKERRQ(ierr);
8000def2e27SBarry Smith   } else {
8010def2e27SBarry Smith     a->inode.node_count = node_count;
8020def2e27SBarry Smith     ierr = PetscMalloc(node_count*sizeof(PetscInt),&a->inode.size);CHKERRQ(ierr);
803c760cd28SBarry Smith     ierr = PetscLogObjectMemory(A,node_count*sizeof(PetscInt));CHKERRQ(ierr);
80422d28d08SBarry Smith     ierr = PetscMemcpy(a->inode.size,ns,node_count*sizeof(PetscInt));CHKERRQ(ierr);
8050def2e27SBarry Smith     ierr = PetscFree(ns);CHKERRQ(ierr);
8060def2e27SBarry Smith     ierr = PetscInfo3(A,"Found %D nodes of %D. Limit used: %D. Using Inode routines\n",node_count,m,a->inode.limit);CHKERRQ(ierr);
8070def2e27SBarry Smith 
8080def2e27SBarry Smith     /* count collections of adjacent columns in each inode */
8090def2e27SBarry Smith     row = 0;
8100def2e27SBarry Smith     cnt = 0;
8110def2e27SBarry Smith     for (i=0; i<node_count; i++) {
8120def2e27SBarry Smith       cols = aj + ai[row] + a->inode.size[i];
8130def2e27SBarry Smith       nz   = ai[row+1] - ai[row] - a->inode.size[i];
8140def2e27SBarry Smith       for (j=1; j<nz; j++) {
8150def2e27SBarry Smith         if (cols[j] != cols[j-1]+1) {
8160def2e27SBarry Smith           cnt++;
8170def2e27SBarry Smith         }
8180def2e27SBarry Smith       }
8190def2e27SBarry Smith       cnt++;
8200def2e27SBarry Smith       row += a->inode.size[i];
8210def2e27SBarry Smith     }
8220def2e27SBarry Smith     ierr = PetscMalloc(2*cnt*sizeof(PetscInt),&counts);CHKERRQ(ierr);
8230def2e27SBarry Smith     cnt = 0;
8240def2e27SBarry Smith     row = 0;
8250def2e27SBarry Smith     for (i=0; i<node_count; i++) {
8260def2e27SBarry Smith       cols          = aj + ai[row] + a->inode.size[i];
8270def2e27SBarry Smith           CHKMEMQ;
8280def2e27SBarry Smith       counts[2*cnt] = cols[0];
8290def2e27SBarry Smith           CHKMEMQ;
8300def2e27SBarry Smith       nz            = ai[row+1] - ai[row] - a->inode.size[i];
8310def2e27SBarry Smith       cnt2          = 1;
8320def2e27SBarry Smith       for (j=1; j<nz; j++) {
8330def2e27SBarry Smith         if (cols[j] != cols[j-1]+1) {
8340def2e27SBarry Smith           CHKMEMQ;
8350def2e27SBarry Smith           counts[2*(cnt++)+1] = cnt2;
8360def2e27SBarry Smith           counts[2*cnt]       = cols[j];
8370def2e27SBarry Smith           CHKMEMQ;
8380def2e27SBarry Smith           cnt2                = 1;
8390def2e27SBarry Smith         } else cnt2++;
8400def2e27SBarry Smith       }
8410def2e27SBarry Smith           CHKMEMQ;
8420def2e27SBarry Smith       counts[2*(cnt++)+1] = cnt2;
8430def2e27SBarry Smith           CHKMEMQ;
8440def2e27SBarry Smith       row += a->inode.size[i];
8450def2e27SBarry Smith     }
84622d28d08SBarry Smith     ierr = PetscIntView(2*cnt,counts,0);CHKERRQ(ierr);
8470def2e27SBarry Smith   }
84838702af4SBarry Smith   PetscFunctionReturn(0);
84938702af4SBarry Smith }
85038702af4SBarry Smith 
85138702af4SBarry Smith #undef __FUNCT__
8524a2ae208SSatish Balay #define __FUNCT__ "MatAssemblyEnd_SeqSBAIJ"
853dfbe8321SBarry Smith PetscErrorCode MatAssemblyEnd_SeqSBAIJ(Mat A,MatAssemblyType mode)
85449b5e25fSSatish Balay {
85549b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
8566849ba73SBarry Smith   PetscErrorCode ierr;
85713f74950SBarry Smith   PetscInt       fshift = 0,i,j,*ai = a->i,*aj = a->j,*imax = a->imax;
858d0f46423SBarry Smith   PetscInt       m = A->rmap->N,*ip,N,*ailen = a->ilen;
85913f74950SBarry Smith   PetscInt       mbs = a->mbs,bs2 = a->bs2,rmax = 0;
86049b5e25fSSatish Balay   MatScalar      *aa = a->a,*ap;
86149b5e25fSSatish Balay 
86249b5e25fSSatish Balay   PetscFunctionBegin;
86349b5e25fSSatish Balay   if (mode == MAT_FLUSH_ASSEMBLY) PetscFunctionReturn(0);
86449b5e25fSSatish Balay 
86549b5e25fSSatish Balay   if (m) rmax = ailen[0];
86649b5e25fSSatish Balay   for (i=1; i<mbs; i++) {
86749b5e25fSSatish Balay     /* move each row back by the amount of empty slots (fshift) before it*/
86849b5e25fSSatish Balay     fshift += imax[i-1] - ailen[i-1];
86949b5e25fSSatish Balay      rmax   = PetscMax(rmax,ailen[i]);
87049b5e25fSSatish Balay      if (fshift) {
87149b5e25fSSatish Balay        ip = aj + ai[i]; ap = aa + bs2*ai[i];
87249b5e25fSSatish Balay        N = ailen[i];
87349b5e25fSSatish Balay        for (j=0; j<N; j++) {
87449b5e25fSSatish Balay          ip[j-fshift] = ip[j];
87549b5e25fSSatish Balay          ierr = PetscMemcpy(ap+(j-fshift)*bs2,ap+j*bs2,bs2*sizeof(MatScalar));CHKERRQ(ierr);
87649b5e25fSSatish Balay        }
87749b5e25fSSatish Balay      }
87849b5e25fSSatish Balay      ai[i] = ai[i-1] + ailen[i-1];
87949b5e25fSSatish Balay   }
88049b5e25fSSatish Balay   if (mbs) {
88149b5e25fSSatish Balay     fshift += imax[mbs-1] - ailen[mbs-1];
88249b5e25fSSatish Balay      ai[mbs] = ai[mbs-1] + ailen[mbs-1];
88349b5e25fSSatish Balay   }
88449b5e25fSSatish Balay   /* reset ilen and imax for each row */
88549b5e25fSSatish Balay   for (i=0; i<mbs; i++) {
88649b5e25fSSatish Balay     ailen[i] = imax[i] = ai[i+1] - ai[i];
88749b5e25fSSatish Balay   }
8886c6c5352SBarry Smith   a->nz = ai[mbs];
88949b5e25fSSatish Balay 
890b424e231SHong Zhang   /* diagonals may have moved, reset it */
891b424e231SHong Zhang   if (a->diag) {
8922ed38d0bSJed Brown     ierr = PetscMemcpy(a->diag,ai,mbs*sizeof(PetscInt));CHKERRQ(ierr);
89349b5e25fSSatish Balay   }
89428b2fa4aSMatthew Knepley   if (fshift && a->nounused == -1) {
895e32f2f54SBarry Smith     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);
89628b2fa4aSMatthew Knepley   }
897d0f46423SBarry 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);
898ae15b995SBarry Smith   ierr = PetscInfo1(A,"Number of mallocs during MatSetValues is %D\n",a->reallocs);CHKERRQ(ierr);
899ae15b995SBarry Smith   ierr = PetscInfo1(A,"Most nonzeros blocks in any row is %D\n",rmax);CHKERRQ(ierr);
9008e58a170SBarry Smith   A->info.mallocs     += a->reallocs;
90149b5e25fSSatish Balay   a->reallocs          = 0;
90249b5e25fSSatish Balay   A->info.nz_unneeded  = (PetscReal)fshift*bs2;
903061b2667SBarry Smith   a->idiagvalid = PETSC_FALSE;
90438702af4SBarry Smith 
90538702af4SBarry Smith   if (A->cmap->n < 65536 && A->cmap->bs == 1) {
90644e1c64aSLisandro Dalcin     if (a->jshort && a->free_jshort) {
90717803ae8SHong Zhang       /* when matrix data structure is changed, previous jshort must be replaced */
90817803ae8SHong Zhang       ierr = PetscFree(a->jshort);CHKERRQ(ierr);
90917803ae8SHong Zhang     }
91038702af4SBarry Smith     ierr = PetscMalloc(a->i[A->rmap->n]*sizeof(unsigned short),&a->jshort);CHKERRQ(ierr);
911c760cd28SBarry Smith     ierr = PetscLogObjectMemory(A,a->i[A->rmap->n]*sizeof(unsigned short));CHKERRQ(ierr);
91238702af4SBarry Smith     for (i=0; i<a->i[A->rmap->n]; i++) a->jshort[i] = a->j[i];
91338702af4SBarry Smith     A->ops->mult  = MatMult_SeqSBAIJ_1_ushort;
91441f059aeSBarry Smith     A->ops->sor = MatSOR_SeqSBAIJ_ushort;
9154da8f245SBarry Smith     a->free_jshort = PETSC_TRUE;
91638702af4SBarry Smith   }
91749b5e25fSSatish Balay   PetscFunctionReturn(0);
91849b5e25fSSatish Balay }
91949b5e25fSSatish Balay 
92049b5e25fSSatish Balay /*
92149b5e25fSSatish Balay    This function returns an array of flags which indicate the locations of contiguous
92249b5e25fSSatish Balay    blocks that should be zeroed. for eg: if bs = 3  and is = [0,1,2,3,5,6,7,8,9]
92349b5e25fSSatish Balay    then the resulting sizes = [3,1,1,3,1] correspondig to sets [(0,1,2),(3),(5),(6,7,8),(9)]
92449b5e25fSSatish Balay    Assume: sizes should be long enough to hold all the values.
92549b5e25fSSatish Balay */
9264a2ae208SSatish Balay #undef __FUNCT__
9274a2ae208SSatish Balay #define __FUNCT__ "MatZeroRows_SeqSBAIJ_Check_Blocks"
92813f74950SBarry Smith PetscErrorCode MatZeroRows_SeqSBAIJ_Check_Blocks(PetscInt idx[],PetscInt n,PetscInt bs,PetscInt sizes[], PetscInt *bs_max)
92949b5e25fSSatish Balay {
93013f74950SBarry Smith   PetscInt   i,j,k,row;
931ace3abfcSBarry Smith   PetscBool  flg;
93249b5e25fSSatish Balay 
93349b5e25fSSatish Balay   PetscFunctionBegin;
93449b5e25fSSatish Balay    for (i=0,j=0; i<n; j++) {
93549b5e25fSSatish Balay      row = idx[i];
93649b5e25fSSatish Balay      if (row%bs!=0) { /* Not the begining of a block */
93749b5e25fSSatish Balay        sizes[j] = 1;
93849b5e25fSSatish Balay        i++;
93949b5e25fSSatish Balay      } else if (i+bs > n) { /* Beginning of a block, but complete block doesn't exist (at idx end) */
94049b5e25fSSatish Balay        sizes[j] = 1;         /* Also makes sure atleast 'bs' values exist for next else */
94149b5e25fSSatish Balay        i++;
94249b5e25fSSatish Balay      } else { /* Begining of the block, so check if the complete block exists */
94349b5e25fSSatish Balay        flg = PETSC_TRUE;
94449b5e25fSSatish Balay        for (k=1; k<bs; k++) {
94549b5e25fSSatish Balay          if (row+k != idx[i+k]) { /* break in the block */
94649b5e25fSSatish Balay            flg = PETSC_FALSE;
94749b5e25fSSatish Balay            break;
94849b5e25fSSatish Balay          }
94949b5e25fSSatish Balay        }
950abc0a331SBarry Smith        if (flg) { /* No break in the bs */
95149b5e25fSSatish Balay          sizes[j] = bs;
95249b5e25fSSatish Balay          i+= bs;
95349b5e25fSSatish Balay        } else {
95449b5e25fSSatish Balay          sizes[j] = 1;
95549b5e25fSSatish Balay          i++;
95649b5e25fSSatish Balay        }
95749b5e25fSSatish Balay      }
95849b5e25fSSatish Balay    }
95949b5e25fSSatish Balay    *bs_max = j;
96049b5e25fSSatish Balay    PetscFunctionReturn(0);
96149b5e25fSSatish Balay }
96249b5e25fSSatish Balay 
96349b5e25fSSatish Balay 
96449b5e25fSSatish Balay /* Only add/insert a(i,j) with i<=j (blocks).
96549b5e25fSSatish Balay    Any a(i,j) with i>j input by user is ingored.
96649b5e25fSSatish Balay */
96749b5e25fSSatish Balay 
9684a2ae208SSatish Balay #undef __FUNCT__
9694a2ae208SSatish Balay #define __FUNCT__ "MatSetValues_SeqSBAIJ"
97013f74950SBarry Smith PetscErrorCode MatSetValues_SeqSBAIJ(Mat A,PetscInt m,const PetscInt im[],PetscInt n,const PetscInt in[],const PetscScalar v[],InsertMode is)
97149b5e25fSSatish Balay {
97249b5e25fSSatish Balay   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
9736849ba73SBarry Smith   PetscErrorCode ierr;
974e2ee6c50SBarry Smith   PetscInt       *rp,k,low,high,t,ii,row,nrow,i,col,l,rmax,N,lastcol = -1;
97513f74950SBarry Smith   PetscInt       *imax=a->imax,*ai=a->i,*ailen=a->ilen,roworiented=a->roworiented;
976d0f46423SBarry Smith   PetscInt       *aj=a->j,nonew=a->nonew,bs=A->rmap->bs,brow,bcol;
97713f74950SBarry Smith   PetscInt       ridx,cidx,bs2=a->bs2;
97849b5e25fSSatish Balay   MatScalar      *ap,value,*aa=a->a,*bap;
97949b5e25fSSatish Balay 
98049b5e25fSSatish Balay   PetscFunctionBegin;
98171fd2e92SBarry Smith   if (v) PetscValidScalarPointer(v,6);
98249b5e25fSSatish Balay   for (k=0; k<m; k++) { /* loop over added rows */
98349b5e25fSSatish Balay     row  = im[k];       /* row number */
98449b5e25fSSatish Balay     brow = row/bs;      /* block row number */
98549b5e25fSSatish Balay     if (row < 0) continue;
9862515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
987e32f2f54SBarry 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);
98849b5e25fSSatish Balay #endif
98949b5e25fSSatish Balay     rp   = aj + ai[brow]; /*ptr to beginning of column value of the row block*/
99049b5e25fSSatish Balay     ap   = aa + bs2*ai[brow]; /*ptr to beginning of element value of the row block*/
99149b5e25fSSatish Balay     rmax = imax[brow];  /* maximum space allocated for this row */
99249b5e25fSSatish Balay     nrow = ailen[brow]; /* actual length of this row */
99349b5e25fSSatish Balay     low  = 0;
99449b5e25fSSatish Balay 
99549b5e25fSSatish Balay     for (l=0; l<n; l++) { /* loop over added columns */
99649b5e25fSSatish Balay       if (in[l] < 0) continue;
9972515c552SBarry Smith #if defined(PETSC_USE_DEBUG)
998e32f2f54SBarry 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);
99949b5e25fSSatish Balay #endif
100049b5e25fSSatish Balay       col = in[l];
100149b5e25fSSatish Balay       bcol = col/bs;              /* block col number */
100249b5e25fSSatish Balay 
1003941593c8SHong Zhang       if (brow > bcol) {
1004941593c8SHong Zhang         if (a->ignore_ltriangular) {
1005941593c8SHong Zhang           continue; /* ignore lower triangular values */
1006941593c8SHong Zhang         } else {
1007e32f2f54SBarry Smith           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)");
1008941593c8SHong Zhang         }
1009941593c8SHong Zhang       }
1010f4989cb3SHong Zhang 
101149b5e25fSSatish Balay       ridx = row % bs; cidx = col % bs; /*row and col index inside the block */
10128549e402SHong Zhang       if ((brow==bcol && ridx<=cidx) || (brow<bcol)) {
101349b5e25fSSatish Balay         /* element value a(k,l) */
101449b5e25fSSatish Balay         if (roworiented) {
101549b5e25fSSatish Balay           value = v[l + k*n];
101649b5e25fSSatish Balay         } else {
101749b5e25fSSatish Balay           value = v[k + l*m];
101849b5e25fSSatish Balay         }
101949b5e25fSSatish Balay 
102049b5e25fSSatish Balay         /* move pointer bap to a(k,l) quickly and add/insert value */
10217cd84e04SBarry Smith         if (col <= lastcol) low = 0; high = nrow;
1022e2ee6c50SBarry Smith         lastcol = col;
102349b5e25fSSatish Balay         while (high-low > 7) {
102449b5e25fSSatish Balay           t = (low+high)/2;
102549b5e25fSSatish Balay           if (rp[t] > bcol) high = t;
102649b5e25fSSatish Balay           else              low  = t;
102749b5e25fSSatish Balay         }
102849b5e25fSSatish Balay         for (i=low; i<high; i++) {
102949b5e25fSSatish Balay           if (rp[i] > bcol) break;
103049b5e25fSSatish Balay           if (rp[i] == bcol) {
103149b5e25fSSatish Balay             bap  = ap +  bs2*i + bs*cidx + ridx;
103249b5e25fSSatish Balay             if (is == ADD_VALUES) *bap += value;
103349b5e25fSSatish Balay             else                  *bap  = value;
10348549e402SHong Zhang             /* for diag block, add/insert its symmetric element a(cidx,ridx) */
10358549e402SHong Zhang             if (brow == bcol && ridx < cidx) {
10368549e402SHong Zhang               bap  = ap +  bs2*i + bs*ridx + cidx;
10378549e402SHong Zhang               if (is == ADD_VALUES) *bap += value;
10388549e402SHong Zhang               else                  *bap  = value;
10398549e402SHong Zhang             }
104049b5e25fSSatish Balay             goto noinsert1;
104149b5e25fSSatish Balay           }
104249b5e25fSSatish Balay         }
104349b5e25fSSatish Balay 
104449b5e25fSSatish Balay         if (nonew == 1) goto noinsert1;
1045e32f2f54SBarry Smith         if (nonew == -1) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Inserting a new nonzero (%D, %D) in the matrix", row, col);
1046fef13f97SBarry Smith         MatSeqXAIJReallocateAIJ(A,a->mbs,bs2,nrow,brow,bcol,rmax,aa,ai,aj,rp,ap,imax,nonew,MatScalar);
104749b5e25fSSatish Balay 
1048c03d1d03SSatish Balay         N = nrow++ - 1; high++;
104949b5e25fSSatish Balay         /* shift up all the later entries in this row */
105049b5e25fSSatish Balay         for (ii=N; ii>=i; ii--) {
105149b5e25fSSatish Balay           rp[ii+1] = rp[ii];
105249b5e25fSSatish Balay           ierr     = PetscMemcpy(ap+bs2*(ii+1),ap+bs2*(ii),bs2*sizeof(MatScalar));CHKERRQ(ierr);
105349b5e25fSSatish Balay         }
105449b5e25fSSatish Balay         if (N>=i) {
105549b5e25fSSatish Balay           ierr = PetscMemzero(ap+bs2*i,bs2*sizeof(MatScalar));CHKERRQ(ierr);
105649b5e25fSSatish Balay         }
105749b5e25fSSatish Balay         rp[i]                      = bcol;
105849b5e25fSSatish Balay         ap[bs2*i + bs*cidx + ridx] = value;
105949b5e25fSSatish Balay       noinsert1:;
106049b5e25fSSatish Balay         low = i;
10618549e402SHong Zhang       }
106249b5e25fSSatish Balay     }   /* end of loop over added columns */
106349b5e25fSSatish Balay     ailen[brow] = nrow;
106449b5e25fSSatish Balay   }   /* end of loop over added rows */
106549b5e25fSSatish Balay   PetscFunctionReturn(0);
106649b5e25fSSatish Balay }
106749b5e25fSSatish Balay 
10684a2ae208SSatish Balay #undef __FUNCT__
10694d101231SSatish Balay #define __FUNCT__ "MatICCFactor_SeqSBAIJ"
10700481f469SBarry Smith PetscErrorCode MatICCFactor_SeqSBAIJ(Mat inA,IS row,const MatFactorInfo *info)
107149b5e25fSSatish Balay {
10724ccecd49SHong Zhang   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)inA->data;
107349b5e25fSSatish Balay   Mat            outA;
1074dfbe8321SBarry Smith   PetscErrorCode ierr;
1075ace3abfcSBarry Smith   PetscBool      row_identity;
107649b5e25fSSatish Balay 
107749b5e25fSSatish Balay   PetscFunctionBegin;
1078e32f2f54SBarry Smith   if (info->levels != 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Only levels=0 is supported for in-place icc");
1079c84f5b01SHong Zhang   ierr = ISIdentity(row,&row_identity);CHKERRQ(ierr);
1080e32f2f54SBarry Smith   if (!row_identity) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix reordering is not supported");
1081e32f2f54SBarry 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()! */
1082c84f5b01SHong Zhang 
108349b5e25fSSatish Balay   outA            = inA;
1084d5f3da31SBarry Smith   inA->factortype = MAT_FACTOR_ICC;
108549b5e25fSSatish Balay 
10861a3463dfSHong Zhang   ierr = MatMarkDiagonal_SeqSBAIJ(inA);CHKERRQ(ierr);
1087d595f711SHong Zhang   ierr = MatSeqSBAIJSetNumericFactorization_inplace(inA,row_identity);CHKERRQ(ierr);
108849b5e25fSSatish Balay 
1089c3122656SLisandro Dalcin   ierr   = PetscObjectReference((PetscObject)row);CHKERRQ(ierr);
10906bf464f9SBarry Smith   ierr = ISDestroy(&a->row);CHKERRQ(ierr);
1091c84f5b01SHong Zhang   a->row = row;
1092c3122656SLisandro Dalcin   ierr   = PetscObjectReference((PetscObject)row);CHKERRQ(ierr);
10936bf464f9SBarry Smith   ierr = ISDestroy(&a->col);CHKERRQ(ierr);
1094c84f5b01SHong Zhang   a->col = row;
1095c84f5b01SHong Zhang 
1096c84f5b01SHong Zhang   /* Create the invert permutation so that it can be used in MatCholeskyFactorNumeric() */
1097c84f5b01SHong Zhang   if (a->icol) {ierr = ISInvertPermutation(row,PETSC_DECIDE, &a->icol);CHKERRQ(ierr);}
109852e6d16bSBarry Smith   ierr = PetscLogObjectParent(inA,a->icol);CHKERRQ(ierr);
109949b5e25fSSatish Balay 
110049b5e25fSSatish Balay   if (!a->solve_work) {
1101d0f46423SBarry Smith     ierr = PetscMalloc((inA->rmap->N+inA->rmap->bs)*sizeof(PetscScalar),&a->solve_work);CHKERRQ(ierr);
1102d0f46423SBarry Smith     ierr = PetscLogObjectMemory(inA,(inA->rmap->N+inA->rmap->bs)*sizeof(PetscScalar));CHKERRQ(ierr);
110349b5e25fSSatish Balay   }
110449b5e25fSSatish Balay 
1105719d5645SBarry Smith   ierr = MatCholeskyFactorNumeric(outA,inA,info);CHKERRQ(ierr);
110649b5e25fSSatish Balay   PetscFunctionReturn(0);
110749b5e25fSSatish Balay }
1108950f1e5bSHong Zhang 
110949b5e25fSSatish Balay EXTERN_C_BEGIN
11104a2ae208SSatish Balay #undef __FUNCT__
11114a2ae208SSatish Balay #define __FUNCT__ "MatSeqSBAIJSetColumnIndices_SeqSBAIJ"
11127087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetColumnIndices_SeqSBAIJ(Mat mat,PetscInt *indices)
111349b5e25fSSatish Balay {
1114045c9aa0SHong Zhang   Mat_SeqSBAIJ   *baij = (Mat_SeqSBAIJ *)mat->data;
111513f74950SBarry Smith   PetscInt       i,nz,n;
11167827cd58SJed Brown   PetscErrorCode ierr;
111749b5e25fSSatish Balay 
111849b5e25fSSatish Balay   PetscFunctionBegin;
11196c6c5352SBarry Smith   nz = baij->maxnz;
1120d0f46423SBarry Smith   n  = mat->cmap->n;
112149b5e25fSSatish Balay   for (i=0; i<nz; i++) {
112249b5e25fSSatish Balay     baij->j[i] = indices[i];
112349b5e25fSSatish Balay   }
11246c6c5352SBarry Smith    baij->nz = nz;
112549b5e25fSSatish Balay    for (i=0; i<n; i++) {
112649b5e25fSSatish Balay      baij->ilen[i] = baij->imax[i];
112749b5e25fSSatish Balay    }
11287827cd58SJed Brown   ierr = MatSetOption(mat,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
112949b5e25fSSatish Balay   PetscFunctionReturn(0);
113049b5e25fSSatish Balay }
113149b5e25fSSatish Balay EXTERN_C_END
113249b5e25fSSatish Balay 
11334a2ae208SSatish Balay #undef __FUNCT__
11344a2ae208SSatish Balay #define __FUNCT__ "MatSeqSBAIJSetColumnIndices"
113549b5e25fSSatish Balay /*@
113619585528SSatish Balay   MatSeqSBAIJSetColumnIndices - Set the column indices for all the rows
113749b5e25fSSatish Balay   in the matrix.
113849b5e25fSSatish Balay 
113949b5e25fSSatish Balay   Input Parameters:
114019585528SSatish Balay   +  mat     - the SeqSBAIJ matrix
114149b5e25fSSatish Balay   -  indices - the column indices
114249b5e25fSSatish Balay 
114349b5e25fSSatish Balay   Level: advanced
114449b5e25fSSatish Balay 
114549b5e25fSSatish Balay   Notes:
114649b5e25fSSatish Balay   This can be called if you have precomputed the nonzero structure of the
114749b5e25fSSatish Balay   matrix and want to provide it to the matrix object to improve the performance
114849b5e25fSSatish Balay   of the MatSetValues() operation.
114949b5e25fSSatish Balay 
115049b5e25fSSatish Balay   You MUST have set the correct numbers of nonzeros per row in the call to
1151d1be2dadSMatthew Knepley   MatCreateSeqSBAIJ(), and the columns indices MUST be sorted.
115249b5e25fSSatish Balay 
1153ab9f2c04SSatish Balay   MUST be called before any calls to MatSetValues()
115449b5e25fSSatish Balay 
1155ab9f2c04SSatish Balay   .seealso: MatCreateSeqSBAIJ
115649b5e25fSSatish Balay @*/
11577087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetColumnIndices(Mat mat,PetscInt *indices)
115849b5e25fSSatish Balay {
11594ac538c5SBarry Smith   PetscErrorCode ierr;
116049b5e25fSSatish Balay 
116149b5e25fSSatish Balay   PetscFunctionBegin;
11620700a824SBarry Smith   PetscValidHeaderSpecific(mat,MAT_CLASSID,1);
11634482741eSBarry Smith   PetscValidPointer(indices,2);
11644ac538c5SBarry Smith   ierr = PetscUseMethod(mat,"MatSeqSBAIJSetColumnIndices_C",(Mat,PetscInt *),(mat,indices));CHKERRQ(ierr);
116549b5e25fSSatish Balay   PetscFunctionReturn(0);
116649b5e25fSSatish Balay }
116749b5e25fSSatish Balay 
11684a2ae208SSatish Balay #undef __FUNCT__
11693c896bc6SHong Zhang #define __FUNCT__ "MatCopy_SeqSBAIJ"
11703c896bc6SHong Zhang PetscErrorCode MatCopy_SeqSBAIJ(Mat A,Mat B,MatStructure str)
11713c896bc6SHong Zhang {
11723c896bc6SHong Zhang   PetscErrorCode ierr;
11733c896bc6SHong Zhang 
11743c896bc6SHong Zhang   PetscFunctionBegin;
11753c896bc6SHong Zhang   /* If the two matrices have the same copy implementation, use fast copy. */
11763c896bc6SHong Zhang   if (str == SAME_NONZERO_PATTERN && (A->ops->copy == B->ops->copy)) {
11773c896bc6SHong Zhang     Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
11783c896bc6SHong Zhang     Mat_SeqSBAIJ *b = (Mat_SeqSBAIJ*)B->data;
11793c896bc6SHong Zhang 
1180e7e72b3dSBarry 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");
1181d0f46423SBarry Smith     ierr = PetscMemcpy(b->a,a->a,(a->i[A->rmap->N])*sizeof(PetscScalar));CHKERRQ(ierr);
11823c896bc6SHong Zhang   } else {
1183f5edf698SHong Zhang     ierr = MatGetRowUpperTriangular(A);CHKERRQ(ierr);
11843c896bc6SHong Zhang     ierr = MatCopy_Basic(A,B,str);CHKERRQ(ierr);
1185f5edf698SHong Zhang     ierr = MatRestoreRowUpperTriangular(A);CHKERRQ(ierr);
11863c896bc6SHong Zhang   }
11873c896bc6SHong Zhang   PetscFunctionReturn(0);
11883c896bc6SHong Zhang }
11893c896bc6SHong Zhang 
11903c896bc6SHong Zhang #undef __FUNCT__
11914994cf47SJed Brown #define __FUNCT__ "MatSetUp_SeqSBAIJ"
11924994cf47SJed Brown PetscErrorCode MatSetUp_SeqSBAIJ(Mat A)
1193273d9f13SBarry Smith {
1194dfbe8321SBarry Smith   PetscErrorCode ierr;
1195273d9f13SBarry Smith 
1196273d9f13SBarry Smith   PetscFunctionBegin;
1197535b19f3SBarry Smith   ierr =  MatSeqSBAIJSetPreallocation_SeqSBAIJ(A,A->rmap->bs,PETSC_DEFAULT,0);CHKERRQ(ierr);
1198273d9f13SBarry Smith   PetscFunctionReturn(0);
1199273d9f13SBarry Smith }
1200273d9f13SBarry Smith 
1201a6ece127SHong Zhang #undef __FUNCT__
12028c778c55SBarry Smith #define __FUNCT__ "MatSeqSBAIJGetArray_SeqSBAIJ"
12038c778c55SBarry Smith PetscErrorCode MatSeqSBAIJGetArray_SeqSBAIJ(Mat A,PetscScalar *array[])
1204a6ece127SHong Zhang {
1205a6ece127SHong Zhang   Mat_SeqSBAIJ *a = (Mat_SeqSBAIJ*)A->data;
1206*5fd66863SKarl Rupp 
1207a6ece127SHong Zhang   PetscFunctionBegin;
1208a6ece127SHong Zhang   *array = a->a;
1209a6ece127SHong Zhang   PetscFunctionReturn(0);
1210a6ece127SHong Zhang }
1211a6ece127SHong Zhang 
1212a6ece127SHong Zhang #undef __FUNCT__
12138c778c55SBarry Smith #define __FUNCT__ "MatSeqSBAIJRestoreArray_SeqSBAIJ"
12148c778c55SBarry Smith PetscErrorCode MatSeqSBAIJRestoreArray_SeqSBAIJ(Mat A,PetscScalar *array[])
1215a6ece127SHong Zhang {
1216a6ece127SHong Zhang   PetscFunctionBegin;
1217a6ece127SHong Zhang   PetscFunctionReturn(0);
1218a6ece127SHong Zhang  }
1219a6ece127SHong Zhang 
122042ee4b1aSHong Zhang #undef __FUNCT__
122142ee4b1aSHong Zhang #define __FUNCT__ "MatAXPY_SeqSBAIJ"
1222f4df32b1SMatthew Knepley PetscErrorCode MatAXPY_SeqSBAIJ(Mat Y,PetscScalar a,Mat X,MatStructure str)
122342ee4b1aSHong Zhang {
122442ee4b1aSHong Zhang   Mat_SeqSBAIJ   *x=(Mat_SeqSBAIJ *)X->data, *y=(Mat_SeqSBAIJ *)Y->data;
1225dfbe8321SBarry Smith   PetscErrorCode ierr;
1226e838b9e7SJed Brown   PetscInt       i,bs=Y->rmap->bs,bs2=bs*bs,j;
1227e838b9e7SJed Brown   PetscBLASInt   one = 1;
122842ee4b1aSHong Zhang 
122942ee4b1aSHong Zhang   PetscFunctionBegin;
123042ee4b1aSHong Zhang   if (str == SAME_NONZERO_PATTERN) {
1231f4df32b1SMatthew Knepley     PetscScalar  alpha = a;
1232c5df96a5SBarry Smith     PetscBLASInt bnz;
1233c5df96a5SBarry Smith     ierr = PetscBLASIntCast(x->nz*bs2,&bnz);CHKERRQ(ierr);
1234f4df32b1SMatthew Knepley     BLASaxpy_(&bnz,&alpha,x->a,&one,y->a,&one);
1235c537a176SHong Zhang   } else if (str == SUBSET_NONZERO_PATTERN) { /* nonzeros of X is a subset of Y's */
1236c4319e64SHong Zhang     if (y->xtoy && y->XtoY != X) {
1237c4319e64SHong Zhang       ierr = PetscFree(y->xtoy);CHKERRQ(ierr);
12386bf464f9SBarry Smith       ierr = MatDestroy(&y->XtoY);CHKERRQ(ierr);
1239c537a176SHong Zhang     }
1240c4319e64SHong Zhang     if (!y->xtoy) { /* get xtoy */
1241c4319e64SHong Zhang       ierr = MatAXPYGetxtoy_Private(x->mbs,x->i,x->j,PETSC_NULL, y->i,y->j,PETSC_NULL, &y->xtoy);CHKERRQ(ierr);
1242c4319e64SHong Zhang       y->XtoY = X;
1243c537a176SHong Zhang     }
12446c6c5352SBarry Smith     for (i=0; i<x->nz; i++) {
1245c4319e64SHong Zhang       j = 0;
1246c4319e64SHong Zhang       while (j < bs2) {
1247f4df32b1SMatthew Knepley         y->a[bs2*y->xtoy[i]+j] += a*(x->a[bs2*i+j]);
1248c4319e64SHong Zhang         j++;
1249c537a176SHong Zhang       }
1250c4319e64SHong Zhang     }
12511e2582c4SBarry 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);
125242ee4b1aSHong Zhang   } else {
1253f5edf698SHong Zhang     ierr = MatGetRowUpperTriangular(X);CHKERRQ(ierr);
1254f4df32b1SMatthew Knepley     ierr = MatAXPY_Basic(Y,a,X,str);CHKERRQ(ierr);
1255f5edf698SHong Zhang     ierr = MatRestoreRowUpperTriangular(X);CHKERRQ(ierr);
125642ee4b1aSHong Zhang   }
125742ee4b1aSHong Zhang   PetscFunctionReturn(0);
125842ee4b1aSHong Zhang }
125942ee4b1aSHong Zhang 
1260efcf0fc3SBarry Smith #undef __FUNCT__
1261efcf0fc3SBarry Smith #define __FUNCT__ "MatIsSymmetric_SeqSBAIJ"
1262ace3abfcSBarry Smith PetscErrorCode MatIsSymmetric_SeqSBAIJ(Mat A,PetscReal tol,PetscBool  *flg)
1263efcf0fc3SBarry Smith {
1264efcf0fc3SBarry Smith   PetscFunctionBegin;
1265efcf0fc3SBarry Smith   *flg = PETSC_TRUE;
1266efcf0fc3SBarry Smith   PetscFunctionReturn(0);
1267efcf0fc3SBarry Smith }
1268efcf0fc3SBarry Smith 
1269efcf0fc3SBarry Smith #undef __FUNCT__
1270efcf0fc3SBarry Smith #define __FUNCT__ "MatIsStructurallySymmetric_SeqSBAIJ"
1271ace3abfcSBarry Smith PetscErrorCode MatIsStructurallySymmetric_SeqSBAIJ(Mat A,PetscBool  *flg)
1272efcf0fc3SBarry Smith {
1273efcf0fc3SBarry Smith    PetscFunctionBegin;
1274efcf0fc3SBarry Smith    *flg = PETSC_TRUE;
1275efcf0fc3SBarry Smith    PetscFunctionReturn(0);
1276efcf0fc3SBarry Smith }
1277efcf0fc3SBarry Smith 
1278efcf0fc3SBarry Smith #undef __FUNCT__
1279efcf0fc3SBarry Smith #define __FUNCT__ "MatIsHermitian_SeqSBAIJ"
1280ace3abfcSBarry Smith PetscErrorCode MatIsHermitian_SeqSBAIJ(Mat A,PetscReal tol,PetscBool  *flg)
1281efcf0fc3SBarry Smith  {
1282efcf0fc3SBarry Smith    PetscFunctionBegin;
1283efcf0fc3SBarry Smith    *flg = PETSC_FALSE;
1284efcf0fc3SBarry Smith    PetscFunctionReturn(0);
1285efcf0fc3SBarry Smith  }
1286efcf0fc3SBarry Smith 
128799cafbc1SBarry Smith #undef __FUNCT__
128899cafbc1SBarry Smith #define __FUNCT__ "MatRealPart_SeqSBAIJ"
128999cafbc1SBarry Smith PetscErrorCode MatRealPart_SeqSBAIJ(Mat A)
129099cafbc1SBarry Smith {
129199cafbc1SBarry Smith   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
129299cafbc1SBarry Smith   PetscInt       i,nz = a->bs2*a->i[a->mbs];
1293dd6ea824SBarry Smith   MatScalar      *aa = a->a;
129499cafbc1SBarry Smith 
129599cafbc1SBarry Smith   PetscFunctionBegin;
129699cafbc1SBarry Smith   for (i=0; i<nz; i++) aa[i] = PetscRealPart(aa[i]);
129799cafbc1SBarry Smith   PetscFunctionReturn(0);
129899cafbc1SBarry Smith }
129999cafbc1SBarry Smith 
130099cafbc1SBarry Smith #undef __FUNCT__
130199cafbc1SBarry Smith #define __FUNCT__ "MatImaginaryPart_SeqSBAIJ"
130299cafbc1SBarry Smith PetscErrorCode MatImaginaryPart_SeqSBAIJ(Mat A)
130399cafbc1SBarry Smith {
130499cafbc1SBarry Smith   Mat_SeqSBAIJ   *a = (Mat_SeqSBAIJ*)A->data;
130599cafbc1SBarry Smith   PetscInt       i,nz = a->bs2*a->i[a->mbs];
1306dd6ea824SBarry Smith   MatScalar      *aa = a->a;
130799cafbc1SBarry Smith 
130899cafbc1SBarry Smith   PetscFunctionBegin;
130999cafbc1SBarry Smith   for (i=0; i<nz; i++) aa[i] = PetscImaginaryPart(aa[i]);
131099cafbc1SBarry Smith   PetscFunctionReturn(0);
131199cafbc1SBarry Smith }
131299cafbc1SBarry Smith 
13133bededecSBarry Smith #undef __FUNCT__
13143bededecSBarry Smith #define __FUNCT__ "MatZeroRowsColumns_SeqSBAIJ"
13153bededecSBarry Smith PetscErrorCode MatZeroRowsColumns_SeqSBAIJ(Mat A,PetscInt is_n,const PetscInt is_idx[],PetscScalar diag,Vec x, Vec b)
13163bededecSBarry Smith {
13173bededecSBarry Smith   Mat_SeqSBAIJ      *baij=(Mat_SeqSBAIJ*)A->data;
13183bededecSBarry Smith   PetscErrorCode    ierr;
13193bededecSBarry Smith   PetscInt          i,j,k,count;
13203bededecSBarry Smith   PetscInt          bs=A->rmap->bs,bs2=baij->bs2,row,col;
13213bededecSBarry Smith   PetscScalar       zero = 0.0;
13223bededecSBarry Smith   MatScalar         *aa;
13233bededecSBarry Smith   const PetscScalar *xx;
13243bededecSBarry Smith   PetscScalar       *bb;
132556777dd2SBarry Smith   PetscBool         *zeroed,vecs = PETSC_FALSE;
13263bededecSBarry Smith 
13273bededecSBarry Smith   PetscFunctionBegin;
13283bededecSBarry Smith   /* fix right hand side if needed */
13293bededecSBarry Smith   if (x && b) {
13303bededecSBarry Smith     ierr = VecGetArrayRead(x,&xx);CHKERRQ(ierr);
13313bededecSBarry Smith     ierr = VecGetArray(b,&bb);CHKERRQ(ierr);
133256777dd2SBarry Smith     vecs = PETSC_TRUE;
13333bededecSBarry Smith   }
13343bededecSBarry Smith   A->same_nonzero = PETSC_TRUE;
13353bededecSBarry Smith 
13363bededecSBarry Smith   /* zero the columns */
13373bededecSBarry Smith   ierr = PetscMalloc(A->rmap->n*sizeof(PetscBool),&zeroed);CHKERRQ(ierr);
13383bededecSBarry Smith   ierr = PetscMemzero(zeroed,A->rmap->n*sizeof(PetscBool));CHKERRQ(ierr);
13393bededecSBarry Smith   for (i=0; i<is_n; i++) {
13403bededecSBarry 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]);
13413bededecSBarry Smith     zeroed[is_idx[i]] = PETSC_TRUE;
13423bededecSBarry Smith   }
134356777dd2SBarry Smith   if (vecs) {
134456777dd2SBarry Smith     for (i=0; i<A->rmap->N; i++) {
134556777dd2SBarry Smith       row = i/bs;
134656777dd2SBarry Smith       for (j=baij->i[row]; j<baij->i[row+1]; j++) {
134756777dd2SBarry Smith         for (k=0; k<bs; k++) {
134856777dd2SBarry Smith           col = bs*baij->j[j] + k;
134956777dd2SBarry Smith           if (col <= i) continue;
135056777dd2SBarry Smith           aa = ((MatScalar*)(baij->a)) + j*bs2 + (i%bs) + bs*k;
135156777dd2SBarry Smith           if (!zeroed[i] && zeroed[col]) {
135256777dd2SBarry Smith             bb[i] -= aa[0]*xx[col];
135356777dd2SBarry Smith           }
135456777dd2SBarry Smith           if (zeroed[i] && !zeroed[col]) {
135556777dd2SBarry Smith             bb[col] -= aa[0]*xx[i];
135656777dd2SBarry Smith           }
135756777dd2SBarry Smith         }
135856777dd2SBarry Smith       }
135956777dd2SBarry Smith     }
136056777dd2SBarry Smith     for (i=0; i<is_n; i++) {
136156777dd2SBarry Smith       bb[is_idx[i]] = diag*xx[is_idx[i]];
136256777dd2SBarry Smith     }
136356777dd2SBarry Smith   }
136456777dd2SBarry Smith 
13653bededecSBarry Smith   for (i=0; i<A->rmap->N; i++) {
13663bededecSBarry Smith     if (!zeroed[i]) {
13673bededecSBarry Smith       row = i/bs;
13683bededecSBarry Smith       for (j=baij->i[row]; j<baij->i[row+1]; j++) {
13693bededecSBarry Smith         for (k=0; k<bs; k++) {
13703bededecSBarry Smith           col = bs*baij->j[j] + k;
13713bededecSBarry Smith           if (zeroed[col]) {
13723bededecSBarry Smith             aa = ((MatScalar*)(baij->a)) + j*bs2 + (i%bs) + bs*k;
13733bededecSBarry Smith             aa[0] = 0.0;
13743bededecSBarry Smith           }
13753bededecSBarry Smith         }
13763bededecSBarry Smith       }
13773bededecSBarry Smith     }
13783bededecSBarry Smith   }
13793bededecSBarry Smith   ierr = PetscFree(zeroed);CHKERRQ(ierr);
138056777dd2SBarry Smith   if (vecs) {
138156777dd2SBarry Smith     ierr = VecRestoreArrayRead(x,&xx);CHKERRQ(ierr);
138256777dd2SBarry Smith     ierr = VecRestoreArray(b,&bb);CHKERRQ(ierr);
138356777dd2SBarry Smith   }
13843bededecSBarry Smith 
13853bededecSBarry Smith   /* zero the rows */
13863bededecSBarry Smith   for (i=0; i<is_n; i++) {
13873bededecSBarry Smith     row   = is_idx[i];
13883bededecSBarry Smith     count = (baij->i[row/bs +1] - baij->i[row/bs])*bs;
13893bededecSBarry Smith     aa    = ((MatScalar*)(baij->a)) + baij->i[row/bs]*bs2 + (row%bs);
13903bededecSBarry Smith     for (k=0; k<count; k++) {
13913bededecSBarry Smith       aa[0] =  zero;
13923bededecSBarry Smith       aa    += bs;
13933bededecSBarry Smith     }
13943bededecSBarry Smith     if (diag != 0.0) {
13953bededecSBarry Smith       ierr = (*A->ops->setvalues)(A,1,&row,1,&row,&diag,INSERT_VALUES);CHKERRQ(ierr);
13963bededecSBarry Smith     }
13973bededecSBarry Smith   }
13983bededecSBarry Smith   ierr = MatAssemblyEnd_SeqSBAIJ(A,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
13993bededecSBarry Smith   PetscFunctionReturn(0);
14003bededecSBarry Smith }
14013bededecSBarry Smith 
140249b5e25fSSatish Balay /* -------------------------------------------------------------------*/
1403be332245SKarl Rupp static struct _MatOps MatOps_Values = {
1404be332245SKarl Rupp         MatSetValues_SeqSBAIJ,
140549b5e25fSSatish Balay         MatGetRow_SeqSBAIJ,
140649b5e25fSSatish Balay         MatRestoreRow_SeqSBAIJ,
140749b5e25fSSatish Balay         MatMult_SeqSBAIJ_N,
140897304618SKris Buschelman /*  4*/ MatMultAdd_SeqSBAIJ_N,
1409431c96f7SBarry Smith         MatMult_SeqSBAIJ_N,       /* transpose versions are same as non-transpose versions */
1410e005ede5SBarry Smith         MatMultAdd_SeqSBAIJ_N,
1411db4efbfdSBarry Smith         0,
141249b5e25fSSatish Balay         0,
141349b5e25fSSatish Balay         0,
141497304618SKris Buschelman /* 10*/ 0,
141549b5e25fSSatish Balay         0,
1416c078aec8SLisandro Dalcin         MatCholeskyFactor_SeqSBAIJ,
141741f059aeSBarry Smith         MatSOR_SeqSBAIJ,
141849b5e25fSSatish Balay         MatTranspose_SeqSBAIJ,
141997304618SKris Buschelman /* 15*/ MatGetInfo_SeqSBAIJ,
142049b5e25fSSatish Balay         MatEqual_SeqSBAIJ,
142149b5e25fSSatish Balay         MatGetDiagonal_SeqSBAIJ,
142249b5e25fSSatish Balay         MatDiagonalScale_SeqSBAIJ,
142349b5e25fSSatish Balay         MatNorm_SeqSBAIJ,
142497304618SKris Buschelman /* 20*/ 0,
142549b5e25fSSatish Balay         MatAssemblyEnd_SeqSBAIJ,
142649b5e25fSSatish Balay         MatSetOption_SeqSBAIJ,
142749b5e25fSSatish Balay         MatZeroEntries_SeqSBAIJ,
1428d519adbfSMatthew Knepley /* 24*/ 0,
142949b5e25fSSatish Balay         0,
143049b5e25fSSatish Balay         0,
1431db4efbfdSBarry Smith         0,
1432db4efbfdSBarry Smith         0,
14334994cf47SJed Brown /* 29*/ MatSetUp_SeqSBAIJ,
1434c464158bSHong Zhang         0,
1435db4efbfdSBarry Smith         0,
14368c778c55SBarry Smith         0,
14378c778c55SBarry Smith         0,
1438d519adbfSMatthew Knepley /* 34*/ MatDuplicate_SeqSBAIJ,
1439719d5645SBarry Smith         0,
1440719d5645SBarry Smith         0,
144149b5e25fSSatish Balay         0,
1442c84f5b01SHong Zhang         MatICCFactor_SeqSBAIJ,
1443d519adbfSMatthew Knepley /* 39*/ MatAXPY_SeqSBAIJ,
144449b5e25fSSatish Balay         MatGetSubMatrices_SeqSBAIJ,
144549b5e25fSSatish Balay         MatIncreaseOverlap_SeqSBAIJ,
144649b5e25fSSatish Balay         MatGetValues_SeqSBAIJ,
14473c896bc6SHong Zhang         MatCopy_SeqSBAIJ,
1448d519adbfSMatthew Knepley /* 44*/ 0,
144949b5e25fSSatish Balay         MatScale_SeqSBAIJ,
145049b5e25fSSatish Balay         0,
145149b5e25fSSatish Balay         0,
14523bededecSBarry Smith         MatZeroRowsColumns_SeqSBAIJ,
1453f73d5cc4SBarry Smith /* 49*/ 0,
145449b5e25fSSatish Balay         MatGetRowIJ_SeqSBAIJ,
145549b5e25fSSatish Balay         MatRestoreRowIJ_SeqSBAIJ,
145649b5e25fSSatish Balay         0,
145749b5e25fSSatish Balay         0,
1458d519adbfSMatthew Knepley /* 54*/ 0,
145949b5e25fSSatish Balay         0,
146049b5e25fSSatish Balay         0,
146149b5e25fSSatish Balay         0,
146249b5e25fSSatish Balay         MatSetValuesBlocked_SeqSBAIJ,
1463d519adbfSMatthew Knepley /* 59*/ MatGetSubMatrix_SeqSBAIJ,
146449b5e25fSSatish Balay         0,
146549b5e25fSSatish Balay         0,
1466357abbc8SBarry Smith         0,
1467d959ec07SHong Zhang         0,
1468d519adbfSMatthew Knepley /* 64*/ 0,
1469d959ec07SHong Zhang         0,
1470d959ec07SHong Zhang         0,
1471d959ec07SHong Zhang         0,
1472d959ec07SHong Zhang         0,
1473d519adbfSMatthew Knepley /* 69*/ MatGetRowMaxAbs_SeqSBAIJ,
14743e0d88b5SBarry Smith         0,
14753e0d88b5SBarry Smith         0,
14763e0d88b5SBarry Smith         0,
14773e0d88b5SBarry Smith         0,
1478d519adbfSMatthew Knepley /* 74*/ 0,
14793e0d88b5SBarry Smith         0,
14803e0d88b5SBarry Smith         0,
14813e0d88b5SBarry Smith         0,
14823e0d88b5SBarry Smith         0,
1483d519adbfSMatthew Knepley /* 79*/ 0,
14843e0d88b5SBarry Smith         0,
14853e0d88b5SBarry Smith         0,
148697304618SKris Buschelman         MatGetInertia_SeqSBAIJ,
14875bba2384SShri Abhyankar         MatLoad_SeqSBAIJ,
1488d519adbfSMatthew Knepley /* 84*/ MatIsSymmetric_SeqSBAIJ,
1489865e5f61SKris Buschelman         MatIsHermitian_SeqSBAIJ,
1490efcf0fc3SBarry Smith         MatIsStructurallySymmetric_SeqSBAIJ,
1491865e5f61SKris Buschelman         0,
1492865e5f61SKris Buschelman         0,
1493d519adbfSMatthew Knepley /* 89*/ 0,
1494865e5f61SKris Buschelman         0,
1495865e5f61SKris Buschelman         0,
1496865e5f61SKris Buschelman         0,
1497865e5f61SKris Buschelman         0,
1498d519adbfSMatthew Knepley /* 94*/ 0,
1499865e5f61SKris Buschelman         0,
1500865e5f61SKris Buschelman         0,
150199cafbc1SBarry Smith         0,
150299cafbc1SBarry Smith         0,
1503d519adbfSMatthew Knepley /* 99*/ 0,
150499cafbc1SBarry Smith         0,
150599cafbc1SBarry Smith         0,
150699cafbc1SBarry Smith         0,
150799cafbc1SBarry Smith         0,
1508d519adbfSMatthew Knepley /*104*/ 0,
150999cafbc1SBarry Smith         MatRealPart_SeqSBAIJ,
1510f5edf698SHong Zhang         MatImaginaryPart_SeqSBAIJ,
1511f5edf698SHong Zhang         MatGetRowUpperTriangular_SeqSBAIJ,
15122af78befSBarry Smith         MatRestoreRowUpperTriangular_SeqSBAIJ,
1513d519adbfSMatthew Knepley /*109*/ 0,
15142af78befSBarry Smith         0,
15152af78befSBarry Smith         0,
15162af78befSBarry Smith         0,
1517547795f9SHong Zhang         MatMissingDiagonal_SeqSBAIJ,
1518547795f9SHong Zhang /*114*/ 0,
1519547795f9SHong Zhang         0,
1520547795f9SHong Zhang         0,
1521547795f9SHong Zhang         0,
1522547795f9SHong Zhang         0,
1523547795f9SHong Zhang /*119*/ 0,
1524547795f9SHong Zhang         0,
15252f480046SShri Abhyankar         0,
15265bba2384SShri Abhyankar         0
152799cafbc1SBarry Smith };
1528be1d678aSKris Buschelman 
152949b5e25fSSatish Balay EXTERN_C_BEGIN
15304a2ae208SSatish Balay #undef __FUNCT__
15314a2ae208SSatish Balay #define __FUNCT__ "MatStoreValues_SeqSBAIJ"
15327087cfbeSBarry Smith PetscErrorCode  MatStoreValues_SeqSBAIJ(Mat mat)
153349b5e25fSSatish Balay {
15344afc71dfSHong Zhang   Mat_SeqSBAIJ   *aij = (Mat_SeqSBAIJ *)mat->data;
1535d0f46423SBarry Smith   PetscInt       nz = aij->i[mat->rmap->N]*mat->rmap->bs*aij->bs2;
1536dfbe8321SBarry Smith   PetscErrorCode ierr;
153749b5e25fSSatish Balay 
153849b5e25fSSatish Balay   PetscFunctionBegin;
1539e7e72b3dSBarry Smith   if (aij->nonew != 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call MatSetOption(A,MAT_NEW_NONZERO_LOCATIONS,PETSC_FALSE);first");
154049b5e25fSSatish Balay 
154149b5e25fSSatish Balay   /* allocate space for values if not already there */
154249b5e25fSSatish Balay   if (!aij->saved_values) {
154387828ca2SBarry Smith     ierr = PetscMalloc((nz+1)*sizeof(PetscScalar),&aij->saved_values);CHKERRQ(ierr);
154449b5e25fSSatish Balay   }
154549b5e25fSSatish Balay 
154649b5e25fSSatish Balay   /* copy values over */
154787828ca2SBarry Smith   ierr = PetscMemcpy(aij->saved_values,aij->a,nz*sizeof(PetscScalar));CHKERRQ(ierr);
154849b5e25fSSatish Balay   PetscFunctionReturn(0);
154949b5e25fSSatish Balay }
155049b5e25fSSatish Balay EXTERN_C_END
155149b5e25fSSatish Balay 
155249b5e25fSSatish Balay EXTERN_C_BEGIN
15534a2ae208SSatish Balay #undef __FUNCT__
15544a2ae208SSatish Balay #define __FUNCT__ "MatRetrieveValues_SeqSBAIJ"
15557087cfbeSBarry Smith PetscErrorCode  MatRetrieveValues_SeqSBAIJ(Mat mat)
155649b5e25fSSatish Balay {
15574afc71dfSHong Zhang   Mat_SeqSBAIJ   *aij = (Mat_SeqSBAIJ *)mat->data;
15586849ba73SBarry Smith   PetscErrorCode ierr;
1559d0f46423SBarry Smith   PetscInt       nz = aij->i[mat->rmap->N]*mat->rmap->bs*aij->bs2;
156049b5e25fSSatish Balay 
156149b5e25fSSatish Balay   PetscFunctionBegin;
1562e7e72b3dSBarry Smith   if (aij->nonew != 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call MatSetOption(A,MAT_NEW_NONZERO_LOCATIONS,PETSC_FALSE);first");
1563e7e72b3dSBarry Smith   if (!aij->saved_values) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ORDER,"Must call MatStoreValues(A);first");
156449b5e25fSSatish Balay 
156549b5e25fSSatish Balay   /* copy values over */
156687828ca2SBarry Smith   ierr = PetscMemcpy(aij->a,aij->saved_values,nz*sizeof(PetscScalar));CHKERRQ(ierr);
156749b5e25fSSatish Balay   PetscFunctionReturn(0);
156849b5e25fSSatish Balay }
156949b5e25fSSatish Balay EXTERN_C_END
157049b5e25fSSatish Balay 
15718549e402SHong Zhang EXTERN_C_BEGIN
15724a2ae208SSatish Balay #undef __FUNCT__
1573a23d5eceSKris Buschelman #define __FUNCT__ "MatSeqSBAIJSetPreallocation_SeqSBAIJ"
15747087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetPreallocation_SeqSBAIJ(Mat B,PetscInt bs,PetscInt nz,PetscInt *nnz)
157549b5e25fSSatish Balay {
1576c464158bSHong Zhang   Mat_SeqSBAIJ   *b = (Mat_SeqSBAIJ*)B->data;
15776849ba73SBarry Smith   PetscErrorCode ierr;
1578535b19f3SBarry Smith   PetscInt       i,mbs,bs2;
15792576faa2SJed Brown   PetscBool      skipallocation = PETSC_FALSE,flg = PETSC_FALSE,realalloc = PETSC_FALSE;
158049b5e25fSSatish Balay 
158149b5e25fSSatish Balay   PetscFunctionBegin;
15822576faa2SJed Brown   if (nz >= 0 || nnz) realalloc = PETSC_TRUE;
1583273d9f13SBarry Smith   B->preallocated = PETSC_TRUE;
1584db4efbfdSBarry Smith 
158526283091SBarry Smith   ierr = PetscLayoutSetBlockSize(B->rmap,bs);CHKERRQ(ierr);
158626283091SBarry Smith   ierr = PetscLayoutSetBlockSize(B->cmap,bs);CHKERRQ(ierr);
158726283091SBarry Smith   ierr = PetscLayoutSetUp(B->rmap);CHKERRQ(ierr);
158826283091SBarry Smith   ierr = PetscLayoutSetUp(B->cmap);CHKERRQ(ierr);
1589e02043d6SBarry Smith   ierr = PetscLayoutGetBlockSize(B->rmap,&bs);CHKERRQ(ierr);
1590899cda47SBarry Smith 
1591d0f46423SBarry Smith   mbs  = B->rmap->N/bs;
159249b5e25fSSatish Balay   bs2  = bs*bs;
159349b5e25fSSatish Balay 
1594e7e72b3dSBarry Smith   if (mbs*bs != B->rmap->N) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Number rows, cols must be divisible by blocksize");
159549b5e25fSSatish Balay 
1596ab93d7beSBarry Smith   if (nz == MAT_SKIP_ALLOCATION) {
1597ab93d7beSBarry Smith     skipallocation = PETSC_TRUE;
1598ab93d7beSBarry Smith     nz             = 0;
1599ab93d7beSBarry Smith   }
1600ab93d7beSBarry Smith 
1601435da068SBarry Smith   if (nz == PETSC_DEFAULT || nz == PETSC_DECIDE) nz = 3;
1602e32f2f54SBarry Smith   if (nz < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"nz cannot be less than 0: value %D",nz);
160349b5e25fSSatish Balay   if (nnz) {
160449b5e25fSSatish Balay     for (i=0; i<mbs; i++) {
1605e32f2f54SBarry 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]);
1606e32f2f54SBarry 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);
160749b5e25fSSatish Balay     }
160849b5e25fSSatish Balay   }
160949b5e25fSSatish Balay 
1610db4efbfdSBarry Smith   B->ops->mult             = MatMult_SeqSBAIJ_N;
1611db4efbfdSBarry Smith   B->ops->multadd          = MatMultAdd_SeqSBAIJ_N;
1612db4efbfdSBarry Smith   B->ops->multtranspose    = MatMult_SeqSBAIJ_N;
1613db4efbfdSBarry Smith   B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_N;
1614acfcf0e5SJed Brown   ierr  = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_no_unroll",&flg,PETSC_NULL);CHKERRQ(ierr);
161549b5e25fSSatish Balay   if (!flg) {
161649b5e25fSSatish Balay     switch (bs) {
161749b5e25fSSatish Balay     case 1:
161849b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_1;
161949b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_1;
1620431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_1;
1621431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_1;
162249b5e25fSSatish Balay       break;
162349b5e25fSSatish Balay     case 2:
162449b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_2;
162549b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_2;
1626431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_2;
1627431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_2;
162849b5e25fSSatish Balay       break;
162949b5e25fSSatish Balay     case 3:
163049b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_3;
163149b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_3;
1632431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_3;
1633431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_3;
163449b5e25fSSatish Balay       break;
163549b5e25fSSatish Balay     case 4:
163649b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_4;
163749b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_4;
1638431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_4;
1639431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_4;
164049b5e25fSSatish Balay       break;
164149b5e25fSSatish Balay     case 5:
164249b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_5;
164349b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_5;
1644431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_5;
1645431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_5;
164649b5e25fSSatish Balay       break;
164749b5e25fSSatish Balay     case 6:
164849b5e25fSSatish Balay       B->ops->mult             = MatMult_SeqSBAIJ_6;
164949b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_6;
1650431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_6;
1651431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_6;
165249b5e25fSSatish Balay       break;
165349b5e25fSSatish Balay     case 7:
1654de53e5efSHong Zhang       B->ops->mult             = MatMult_SeqSBAIJ_7;
165549b5e25fSSatish Balay       B->ops->multadd          = MatMultAdd_SeqSBAIJ_7;
1656431c96f7SBarry Smith       B->ops->multtranspose    = MatMult_SeqSBAIJ_7;
1657431c96f7SBarry Smith       B->ops->multtransposeadd = MatMultAdd_SeqSBAIJ_7;
165849b5e25fSSatish Balay       break;
165949b5e25fSSatish Balay     }
166049b5e25fSSatish Balay   }
166149b5e25fSSatish Balay 
166249b5e25fSSatish Balay   b->mbs = mbs;
16634afc71dfSHong Zhang   b->nbs = mbs;
1664ab93d7beSBarry Smith   if (!skipallocation) {
16652ee49352SLisandro Dalcin     if (!b->imax) {
1666ab93d7beSBarry Smith       ierr = PetscMalloc2(mbs,PetscInt,&b->imax,mbs,PetscInt,&b->ilen);CHKERRQ(ierr);
1667c760cd28SBarry Smith       b->free_imax_ilen = PETSC_TRUE;
16682ee49352SLisandro Dalcin       ierr = PetscLogObjectMemory(B,2*mbs*sizeof(PetscInt));CHKERRQ(ierr);
16692ee49352SLisandro Dalcin     }
167049b5e25fSSatish Balay     if (!nnz) {
1671435da068SBarry Smith       if (nz == PETSC_DEFAULT || nz == PETSC_DECIDE) nz = 5;
167249b5e25fSSatish Balay       else if (nz <= 0)        nz = 1;
167349b5e25fSSatish Balay       for (i=0; i<mbs; i++) {
16748cef66ccSHong Zhang         b->imax[i] = nz;
167549b5e25fSSatish Balay       }
1676153ea458SHong Zhang       nz = nz*mbs; /* total nz */
167749b5e25fSSatish Balay     } else {
167849b5e25fSSatish Balay       nz = 0;
16798cef66ccSHong Zhang       for (i=0; i<mbs; i++) {b->imax[i] = nnz[i]; nz += nnz[i];}
168049b5e25fSSatish Balay     }
16812ee49352SLisandro Dalcin     /* b->ilen will count nonzeros in each block row so far. */
16822ee49352SLisandro Dalcin     for (i=0; i<mbs; i++) { b->ilen[i] = 0;}
16836c6c5352SBarry Smith     /* nz=(nz+mbs)/2; */ /* total diagonal and superdiagonal nonzero blocks */
168449b5e25fSSatish Balay 
168549b5e25fSSatish Balay     /* allocate the matrix space */
16862ee49352SLisandro Dalcin     ierr = MatSeqXAIJFreeAIJ(B,&b->a,&b->j,&b->i);CHKERRQ(ierr);
1687d0f46423SBarry Smith     ierr = PetscMalloc3(bs2*nz,PetscScalar,&b->a,nz,PetscInt,&b->j,B->rmap->N+1,PetscInt,&b->i);CHKERRQ(ierr);
1688d0f46423SBarry Smith     ierr = PetscLogObjectMemory(B,(B->rmap->N+1)*sizeof(PetscInt)+nz*(bs2*sizeof(PetscScalar)+sizeof(PetscInt)));CHKERRQ(ierr);
16896c6c5352SBarry Smith     ierr = PetscMemzero(b->a,nz*bs2*sizeof(MatScalar));CHKERRQ(ierr);
169013f74950SBarry Smith     ierr = PetscMemzero(b->j,nz*sizeof(PetscInt));CHKERRQ(ierr);
169149b5e25fSSatish Balay     b->singlemalloc = PETSC_TRUE;
169249b5e25fSSatish Balay 
169349b5e25fSSatish Balay     /* pointer to beginning of each row */
1694e60cf9a0SBarry Smith     b->i[0] = 0;
169549b5e25fSSatish Balay     for (i=1; i<mbs+1; i++) {
169649b5e25fSSatish Balay       b->i[i] = b->i[i-1] + b->imax[i-1];
169749b5e25fSSatish Balay     }
1698e6b907acSBarry Smith     b->free_a     = PETSC_TRUE;
1699e6b907acSBarry Smith     b->free_ij    = PETSC_TRUE;
1700e811da20SHong Zhang   } else {
1701e6b907acSBarry Smith     b->free_a     = PETSC_FALSE;
1702e6b907acSBarry Smith     b->free_ij    = PETSC_FALSE;
1703ab93d7beSBarry Smith   }
170449b5e25fSSatish Balay 
1705d0f46423SBarry Smith   B->rmap->bs     = bs;
170649b5e25fSSatish Balay   b->bs2          = bs2;
17076c6c5352SBarry Smith   b->nz           = 0;
1708b32cb4a7SJed Brown   b->maxnz        = nz;
1709153ea458SHong Zhang 
171016cdd363SHong Zhang   b->inew             = 0;
171116cdd363SHong Zhang   b->jnew             = 0;
171216cdd363SHong Zhang   b->anew             = 0;
171316cdd363SHong Zhang   b->a2anew           = 0;
17141a3463dfSHong Zhang   b->permute          = PETSC_FALSE;
17152576faa2SJed Brown   if (realalloc) {ierr = MatSetOption(B,MAT_NEW_NONZERO_ALLOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);}
1716c464158bSHong Zhang   PetscFunctionReturn(0);
1717c464158bSHong Zhang }
1718a23d5eceSKris Buschelman EXTERN_C_END
1719153ea458SHong Zhang 
1720db4efbfdSBarry Smith /*
1721db4efbfdSBarry Smith    This is used to set the numeric factorization for both Cholesky and ICC symbolic factorization
1722db4efbfdSBarry Smith */
17238b1456e3SHong Zhang #undef __FUNCT__
1724d595f711SHong Zhang #define __FUNCT__ "MatSeqSBAIJSetNumericFactorization_inplace"
1725ace3abfcSBarry Smith PetscErrorCode MatSeqSBAIJSetNumericFactorization_inplace(Mat B,PetscBool  natural)
1726db4efbfdSBarry Smith {
1727db4efbfdSBarry Smith   PetscErrorCode ierr;
1728ace3abfcSBarry Smith   PetscBool      flg = PETSC_FALSE;
1729db4efbfdSBarry Smith   PetscInt       bs = B->rmap->bs;
1730db4efbfdSBarry Smith 
1731db4efbfdSBarry Smith   PetscFunctionBegin;
1732acfcf0e5SJed Brown   ierr    = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_no_unroll",&flg,PETSC_NULL);CHKERRQ(ierr);
1733db4efbfdSBarry Smith   if (flg) bs = 8;
1734db4efbfdSBarry Smith 
1735db4efbfdSBarry Smith   if (!natural) {
1736db4efbfdSBarry Smith     switch (bs) {
1737db4efbfdSBarry Smith     case 1:
1738d595f711SHong Zhang       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_1_inplace;
1739db4efbfdSBarry Smith       break;
1740db4efbfdSBarry Smith     case 2:
1741db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_2;
1742db4efbfdSBarry Smith       break;
1743db4efbfdSBarry Smith     case 3:
1744db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_3;
1745db4efbfdSBarry Smith       break;
1746db4efbfdSBarry Smith     case 4:
1747db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_4;
1748db4efbfdSBarry Smith       break;
1749db4efbfdSBarry Smith     case 5:
1750db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_5;
1751db4efbfdSBarry Smith       break;
1752db4efbfdSBarry Smith     case 6:
1753db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_6;
1754db4efbfdSBarry Smith       break;
1755db4efbfdSBarry Smith     case 7:
1756db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_7;
1757db4efbfdSBarry Smith       break;
1758db4efbfdSBarry Smith     default:
1759db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_N;
1760db4efbfdSBarry Smith       break;
1761db4efbfdSBarry Smith     }
1762db4efbfdSBarry Smith   } else {
1763db4efbfdSBarry Smith     switch (bs) {
1764db4efbfdSBarry Smith     case 1:
1765d595f711SHong Zhang       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_1_NaturalOrdering_inplace;
1766db4efbfdSBarry Smith       break;
1767db4efbfdSBarry Smith     case 2:
1768db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_2_NaturalOrdering;
1769db4efbfdSBarry Smith       break;
1770db4efbfdSBarry Smith     case 3:
1771db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_3_NaturalOrdering;
1772db4efbfdSBarry Smith       break;
1773db4efbfdSBarry Smith     case 4:
1774db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_4_NaturalOrdering;
1775db4efbfdSBarry Smith       break;
1776db4efbfdSBarry Smith     case 5:
1777db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_5_NaturalOrdering;
1778db4efbfdSBarry Smith       break;
1779db4efbfdSBarry Smith     case 6:
1780db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_6_NaturalOrdering;
1781db4efbfdSBarry Smith       break;
1782db4efbfdSBarry Smith     case 7:
1783db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_7_NaturalOrdering;
1784db4efbfdSBarry Smith       break;
1785db4efbfdSBarry Smith     default:
1786db4efbfdSBarry Smith       B->ops->choleskyfactornumeric = MatCholeskyFactorNumeric_SeqSBAIJ_N_NaturalOrdering;
1787db4efbfdSBarry Smith       break;
1788db4efbfdSBarry Smith     }
1789db4efbfdSBarry Smith   }
1790db4efbfdSBarry Smith   PetscFunctionReturn(0);
1791db4efbfdSBarry Smith }
1792db4efbfdSBarry Smith 
1793d769727bSBarry Smith EXTERN_C_BEGIN
17947087cfbeSBarry Smith extern PetscErrorCode  MatConvert_SeqSBAIJ_SeqAIJ(Mat, MatType,MatReuse,Mat*);
17957087cfbeSBarry Smith extern PetscErrorCode  MatConvert_SeqSBAIJ_SeqBAIJ(Mat, MatType,MatReuse,Mat*);
1796d769727bSBarry Smith EXTERN_C_END
1797d769727bSBarry Smith 
1798e631078cSBarry Smith 
1799e631078cSBarry Smith EXTERN_C_BEGIN
18005c9eb25fSBarry Smith #undef __FUNCT__
18015c9eb25fSBarry Smith #define __FUNCT__ "MatGetFactor_seqsbaij_petsc"
18025c9eb25fSBarry Smith PetscErrorCode MatGetFactor_seqsbaij_petsc(Mat A,MatFactorType ftype,Mat *B)
18035c9eb25fSBarry Smith {
1804d0f46423SBarry Smith   PetscInt           n = A->rmap->n;
18055c9eb25fSBarry Smith   PetscErrorCode     ierr;
18065c9eb25fSBarry Smith 
18075c9eb25fSBarry Smith   PetscFunctionBegin;
18080e92d65fSHong Zhang #if defined(PETSC_USE_COMPLEX)
18090e92d65fSHong Zhang   if (A->hermitian)SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Hermitian Factor is not supported");
18100e92d65fSHong Zhang #endif
18115c9eb25fSBarry Smith   ierr = MatCreate(((PetscObject)A)->comm,B);CHKERRQ(ierr);
18125c9eb25fSBarry Smith   ierr = MatSetSizes(*B,n,n,n,n);CHKERRQ(ierr);
18135c9eb25fSBarry Smith   if (ftype == MAT_FACTOR_CHOLESKY || ftype == MAT_FACTOR_ICC) {
18145c9eb25fSBarry Smith     ierr = MatSetType(*B,MATSEQSBAIJ);CHKERRQ(ierr);
1815535b19f3SBarry Smith     ierr = MatSeqSBAIJSetPreallocation(*B,A->rmap->bs,MAT_SKIP_ALLOCATION,PETSC_NULL);CHKERRQ(ierr);
18167b056e98SHong Zhang     (*B)->ops->choleskyfactorsymbolic = MatCholeskyFactorSymbolic_SeqSBAIJ;
1817c6d0d4f0SHong Zhang     (*B)->ops->iccfactorsymbolic      = MatICCFactorSymbolic_SeqSBAIJ;
1818e32f2f54SBarry Smith   } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Factor type not supported");
1819d5f3da31SBarry Smith   (*B)->factortype = ftype;
18205c9eb25fSBarry Smith   PetscFunctionReturn(0);
18215c9eb25fSBarry Smith }
1822e631078cSBarry Smith EXTERN_C_END
18235c9eb25fSBarry Smith 
18245c9eb25fSBarry Smith EXTERN_C_BEGIN
1825db4efbfdSBarry Smith #undef __FUNCT__
1826db4efbfdSBarry Smith #define __FUNCT__ "MatGetFactorAvailable_seqsbaij_petsc"
1827ace3abfcSBarry Smith PetscErrorCode MatGetFactorAvailable_seqsbaij_petsc(Mat A,MatFactorType ftype,PetscBool  *flg)
1828db4efbfdSBarry Smith {
1829db4efbfdSBarry Smith   PetscFunctionBegin;
1830db4efbfdSBarry Smith   if (ftype == MAT_FACTOR_CHOLESKY || ftype == MAT_FACTOR_ICC) {
1831db4efbfdSBarry Smith     *flg = PETSC_TRUE;
1832db4efbfdSBarry Smith   } else {
1833db4efbfdSBarry Smith     *flg = PETSC_FALSE;
1834db4efbfdSBarry Smith   }
1835db4efbfdSBarry Smith   PetscFunctionReturn(0);
1836db4efbfdSBarry Smith }
1837db4efbfdSBarry Smith EXTERN_C_END
1838db4efbfdSBarry Smith 
1839db4efbfdSBarry Smith EXTERN_C_BEGIN
1840611f576cSBarry Smith #if defined(PETSC_HAVE_MUMPS)
1841bccb9932SShri Abhyankar extern PetscErrorCode MatGetFactor_sbaij_mumps(Mat,MatFactorType,Mat*);
1842611f576cSBarry Smith #endif
1843b5e56a35SBarry Smith #if defined(PETSC_HAVE_PASTIX)
1844b5e56a35SBarry Smith extern PetscErrorCode MatGetFactor_seqsbaij_pastix(Mat,MatFactorType,Mat*);
1845b5e56a35SBarry Smith #endif
184620db9a53SJed Brown #if defined(PETSC_HAVE_CHOLMOD)
184720db9a53SJed Brown extern PetscErrorCode MatGetFactor_seqsbaij_cholmod(Mat,MatFactorType,Mat*);
184820db9a53SJed Brown #endif
18492938c13dSDahai Guo extern PetscErrorCode MatGetFactor_seqsbaij_sbstrm(Mat,MatFactorType,Mat*);
1850b1f23a54SSatish Balay EXTERN_C_END
18515c9eb25fSBarry Smith 
18520bad9183SKris Buschelman /*MC
1853fafad747SKris Buschelman   MATSEQSBAIJ - MATSEQSBAIJ = "seqsbaij" - A matrix type to be used for sequential symmetric block sparse matrices,
18540bad9183SKris Buschelman   based on block compressed sparse row format.  Only the upper triangular portion of the matrix is stored.
18550bad9183SKris Buschelman 
1856828413b8SBarry Smith   For complex numbers by default this matrix is symmetric, NOT Hermitian symmetric. To make it Hermitian symmetric you
185771dad5bbSBarry Smith   can call MatSetOption(Mat, MAT_HERMITIAN); after MatAssemblyEnd()
1858828413b8SBarry Smith 
18590bad9183SKris Buschelman   Options Database Keys:
18600bad9183SKris Buschelman   . -mat_type seqsbaij - sets the matrix type to "seqsbaij" during a call to MatSetFromOptions()
18610bad9183SKris Buschelman 
186271dad5bbSBarry Smith   Notes: By default if you insert values into the lower triangular part of the matrix they are simply ignored (since they are not
186371dad5bbSBarry 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
186471dad5bbSBarry 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.
186571dad5bbSBarry Smith 
186671dad5bbSBarry Smith 
18670bad9183SKris Buschelman   Level: beginner
18680bad9183SKris Buschelman 
18690bad9183SKris Buschelman   .seealso: MatCreateSeqSBAIJ
18700bad9183SKris Buschelman M*/
18710bad9183SKris Buschelman 
1872a23d5eceSKris Buschelman EXTERN_C_BEGIN
1873aa5a9175SDahai Guo extern PetscErrorCode  MatConvert_SeqSBAIJ_SeqSBSTRM(Mat, MatType,MatReuse,Mat*);
1874aa5a9175SDahai Guo EXTERN_C_END
1875aa5a9175SDahai Guo 
1876aa5a9175SDahai Guo 
1877aa5a9175SDahai Guo EXTERN_C_BEGIN
1878a23d5eceSKris Buschelman #undef __FUNCT__
1879a23d5eceSKris Buschelman #define __FUNCT__ "MatCreate_SeqSBAIJ"
18807087cfbeSBarry Smith PetscErrorCode  MatCreate_SeqSBAIJ(Mat B)
1881a23d5eceSKris Buschelman {
1882a23d5eceSKris Buschelman   Mat_SeqSBAIJ   *b;
1883dfbe8321SBarry Smith   PetscErrorCode ierr;
188413f74950SBarry Smith   PetscMPIInt    size;
1885ace3abfcSBarry Smith   PetscBool      no_unroll = PETSC_FALSE,no_inode = PETSC_FALSE;
1886a23d5eceSKris Buschelman 
1887a23d5eceSKris Buschelman   PetscFunctionBegin;
18887adad957SLisandro Dalcin   ierr = MPI_Comm_size(((PetscObject)B)->comm,&size);CHKERRQ(ierr);
1889e32f2f54SBarry Smith   if (size > 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Comm must be of size 1");
1890a23d5eceSKris Buschelman 
189138f2d2fdSLisandro Dalcin   ierr    = PetscNewLog(B,Mat_SeqSBAIJ,&b);CHKERRQ(ierr);
1892a23d5eceSKris Buschelman   B->data = (void*)b;
1893a23d5eceSKris Buschelman   ierr    = PetscMemcpy(B->ops,&MatOps_Values,sizeof(struct _MatOps));CHKERRQ(ierr);
1894a23d5eceSKris Buschelman   B->ops->destroy     = MatDestroy_SeqSBAIJ;
1895a23d5eceSKris Buschelman   B->ops->view        = MatView_SeqSBAIJ;
1896a23d5eceSKris Buschelman   b->row              = 0;
1897a23d5eceSKris Buschelman   b->icol             = 0;
1898a23d5eceSKris Buschelman   b->reallocs         = 0;
1899a23d5eceSKris Buschelman   b->saved_values     = 0;
19000def2e27SBarry Smith   b->inode.limit      = 5;
19010def2e27SBarry Smith   b->inode.max_limit  = 5;
1902a23d5eceSKris Buschelman 
1903a23d5eceSKris Buschelman   b->roworiented      = PETSC_TRUE;
1904a23d5eceSKris Buschelman   b->nonew            = 0;
1905a23d5eceSKris Buschelman   b->diag             = 0;
1906a23d5eceSKris Buschelman   b->solve_work       = 0;
1907a23d5eceSKris Buschelman   b->mult_work        = 0;
1908a23d5eceSKris Buschelman   B->spptr            = 0;
1909f2cbd3d5SJed Brown   B->info.nz_unneeded = (PetscReal)b->maxnz*b->bs2;
1910a9817697SBarry Smith   b->keepnonzeropattern   = PETSC_FALSE;
1911a23d5eceSKris Buschelman   b->xtoy             = 0;
1912a23d5eceSKris Buschelman   b->XtoY             = 0;
1913a23d5eceSKris Buschelman 
1914a23d5eceSKris Buschelman   b->inew             = 0;
1915a23d5eceSKris Buschelman   b->jnew             = 0;
1916a23d5eceSKris Buschelman   b->anew             = 0;
1917a23d5eceSKris Buschelman   b->a2anew           = 0;
1918a23d5eceSKris Buschelman   b->permute          = PETSC_FALSE;
1919a23d5eceSKris Buschelman 
192071dad5bbSBarry Smith   b->ignore_ltriangular = PETSC_TRUE;
1921acfcf0e5SJed Brown   ierr = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_ignore_lower_triangular",&b->ignore_ltriangular,PETSC_NULL);CHKERRQ(ierr);
1922941593c8SHong Zhang 
1923f5edf698SHong Zhang   b->getrow_utriangular = PETSC_FALSE;
1924acfcf0e5SJed Brown   ierr = PetscOptionsGetBool(((PetscObject)B)->prefix,"-mat_getrow_uppertriangular",&b->getrow_utriangular,PETSC_NULL);CHKERRQ(ierr);
1925f5edf698SHong Zhang 
1926b5e56a35SBarry Smith #if defined(PETSC_HAVE_PASTIX)
1927ec1065edSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetFactor_pastix_C",
1928b5e56a35SBarry Smith                                            "MatGetFactor_seqsbaij_pastix",
1929b5e56a35SBarry Smith                                            MatGetFactor_seqsbaij_pastix);CHKERRQ(ierr);
1930b5e56a35SBarry Smith #endif
1931611f576cSBarry Smith #if defined(PETSC_HAVE_MUMPS)
1932ec1065edSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetFactor_mumps_C",
1933bccb9932SShri Abhyankar                                      "MatGetFactor_sbaij_mumps",
1934bccb9932SShri Abhyankar                                      MatGetFactor_sbaij_mumps);CHKERRQ(ierr);
1935611f576cSBarry Smith #endif
193620db9a53SJed Brown #if defined(PETSC_HAVE_CHOLMOD)
193720db9a53SJed Brown   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetFactor_cholmod_C",
193820db9a53SJed Brown                                      "MatGetFactor_seqsbaij_cholmod",
193920db9a53SJed Brown                                      MatGetFactor_seqsbaij_cholmod);CHKERRQ(ierr);
194020db9a53SJed Brown #endif
1941ec1065edSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetFactorAvailable_petsc_C",
1942db4efbfdSBarry Smith                                      "MatGetFactorAvailable_seqsbaij_petsc",
1943db4efbfdSBarry Smith                                      MatGetFactorAvailable_seqsbaij_petsc);CHKERRQ(ierr);
1944ec1065edSBarry Smith   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetFactor_petsc_C",
19455c9eb25fSBarry Smith                                      "MatGetFactor_seqsbaij_petsc",
19465c9eb25fSBarry Smith                                      MatGetFactor_seqsbaij_petsc);CHKERRQ(ierr);
19473edee7c7SSatish Balay   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatGetFactor_sbstrm_C",
19482938c13dSDahai Guo                                      "MatGetFactor_seqsbaij_sbstrm",
19492938c13dSDahai Guo                                      MatGetFactor_seqsbaij_sbstrm);CHKERRQ(ierr);
1950a23d5eceSKris Buschelman   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatStoreValues_C",
1951a23d5eceSKris Buschelman                                      "MatStoreValues_SeqSBAIJ",
1952a23d5eceSKris Buschelman                                      MatStoreValues_SeqSBAIJ);CHKERRQ(ierr);
1953a23d5eceSKris Buschelman   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatRetrieveValues_C",
1954a23d5eceSKris Buschelman                                      "MatRetrieveValues_SeqSBAIJ",
195519436ca2SJed Brown                                      MatRetrieveValues_SeqSBAIJ);CHKERRQ(ierr);
1956a23d5eceSKris Buschelman   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatSeqSBAIJSetColumnIndices_C",
1957a23d5eceSKris Buschelman                                      "MatSeqSBAIJSetColumnIndices_SeqSBAIJ",
1958a23d5eceSKris Buschelman                                      MatSeqSBAIJSetColumnIndices_SeqSBAIJ);CHKERRQ(ierr);
19594e5e7fe4SHong Zhang   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatConvert_seqsbaij_seqaij_C",
19604e5e7fe4SHong Zhang                                      "MatConvert_SeqSBAIJ_SeqAIJ",
19614e5e7fe4SHong Zhang                                       MatConvert_SeqSBAIJ_SeqAIJ);CHKERRQ(ierr);
1962a0e1a404SHong Zhang   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatConvert_seqsbaij_seqbaij_C",
1963a0e1a404SHong Zhang                                      "MatConvert_SeqSBAIJ_SeqBAIJ",
1964a0e1a404SHong Zhang                                       MatConvert_SeqSBAIJ_SeqBAIJ);CHKERRQ(ierr);
1965a23d5eceSKris Buschelman   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatSeqSBAIJSetPreallocation_C",
1966a23d5eceSKris Buschelman                                      "MatSeqSBAIJSetPreallocation_SeqSBAIJ",
1967a23d5eceSKris Buschelman                                      MatSeqSBAIJSetPreallocation_SeqSBAIJ);CHKERRQ(ierr);
1968aa5a9175SDahai Guo   ierr = PetscObjectComposeFunctionDynamic((PetscObject)B,"MatConvert_seqsbaij_seqsbstrm_C",
1969aa5a9175SDahai Guo                                      "MatConvert_SeqSBAIJ_SeqSBSTRM",
1970aa5a9175SDahai Guo                                       MatConvert_SeqSBAIJ_SeqSBSTRM);CHKERRQ(ierr);
197123ce1328SBarry Smith 
197223ce1328SBarry Smith   B->symmetric                  = PETSC_TRUE;
197323ce1328SBarry Smith   B->structurally_symmetric     = PETSC_TRUE;
197423ce1328SBarry Smith   B->symmetric_set              = PETSC_TRUE;
197523ce1328SBarry Smith   B->structurally_symmetric_set = PETSC_TRUE;
197617667f90SBarry Smith   ierr = PetscObjectChangeTypeName((PetscObject)B,MATSEQSBAIJ);CHKERRQ(ierr);
19770def2e27SBarry Smith 
19780def2e27SBarry Smith   ierr = PetscOptionsBegin(((PetscObject)B)->comm,((PetscObject)B)->prefix,"Options for SEQSBAIJ matrix","Mat");CHKERRQ(ierr);
1979acfcf0e5SJed Brown     ierr = PetscOptionsBool("-mat_no_unroll","Do not optimize for inodes (slower)",PETSC_NULL,no_unroll,&no_unroll,PETSC_NULL);CHKERRQ(ierr);
19800def2e27SBarry Smith     if (no_unroll) {ierr = PetscInfo(B,"Not using Inode routines due to -mat_no_unroll\n");CHKERRQ(ierr);}
1981acfcf0e5SJed Brown     ierr = PetscOptionsBool("-mat_no_inode","Do not optimize for inodes (slower)",PETSC_NULL,no_inode,&no_inode,PETSC_NULL);CHKERRQ(ierr);
19820def2e27SBarry Smith     if (no_inode) {ierr = PetscInfo(B,"Not using Inode routines due to -mat_no_inode\n");CHKERRQ(ierr);}
19830def2e27SBarry Smith     ierr = PetscOptionsInt("-mat_inode_limit","Do not use inodes larger then this value",PETSC_NULL,b->inode.limit,&b->inode.limit,PETSC_NULL);CHKERRQ(ierr);
19840def2e27SBarry Smith   ierr = PetscOptionsEnd();CHKERRQ(ierr);
1985ace3abfcSBarry Smith   b->inode.use = (PetscBool)(!(no_unroll || no_inode));
19860def2e27SBarry Smith   if (b->inode.limit > b->inode.max_limit) b->inode.limit = b->inode.max_limit;
19870def2e27SBarry Smith 
1988a23d5eceSKris Buschelman   PetscFunctionReturn(0);
1989a23d5eceSKris Buschelman }
1990a23d5eceSKris Buschelman EXTERN_C_END
1991a23d5eceSKris Buschelman 
1992a23d5eceSKris Buschelman #undef __FUNCT__
1993a23d5eceSKris Buschelman #define __FUNCT__ "MatSeqSBAIJSetPreallocation"
1994a23d5eceSKris Buschelman /*@C
1995a23d5eceSKris Buschelman    MatSeqSBAIJSetPreallocation - Creates a sparse symmetric matrix in block AIJ (block
1996a23d5eceSKris Buschelman    compressed row) format.  For good matrix assembly performance the
1997a23d5eceSKris Buschelman    user should preallocate the matrix storage by setting the parameter nz
1998a23d5eceSKris Buschelman    (or the array nnz).  By setting these parameters accurately, performance
1999a23d5eceSKris Buschelman    during matrix assembly can be increased by more than a factor of 50.
2000a23d5eceSKris Buschelman 
2001a23d5eceSKris Buschelman    Collective on Mat
2002a23d5eceSKris Buschelman 
2003a23d5eceSKris Buschelman    Input Parameters:
2004a23d5eceSKris Buschelman +  A - the symmetric matrix
2005a23d5eceSKris Buschelman .  bs - size of block
2006a23d5eceSKris Buschelman .  nz - number of block nonzeros per block row (same for all rows)
2007a23d5eceSKris Buschelman -  nnz - array containing the number of block nonzeros in the upper triangular plus
2008a23d5eceSKris Buschelman          diagonal portion of each block (possibly different for each block row) or PETSC_NULL
2009a23d5eceSKris Buschelman 
2010a23d5eceSKris Buschelman    Options Database Keys:
2011a23d5eceSKris Buschelman .   -mat_no_unroll - uses code that does not unroll the loops in the
2012a23d5eceSKris Buschelman                      block calculations (much slower)
2013db4efbfdSBarry Smith .    -mat_block_size - size of the blocks to use (only works if a negative bs is passed in
2014a23d5eceSKris Buschelman 
2015a23d5eceSKris Buschelman    Level: intermediate
2016a23d5eceSKris Buschelman 
2017a23d5eceSKris Buschelman    Notes:
2018a23d5eceSKris Buschelman    Specify the preallocated storage with either nz or nnz (not both).
2019a23d5eceSKris Buschelman    Set nz=PETSC_DEFAULT and nnz=PETSC_NULL for PETSc to control dynamic memory
20200598bfebSBarry Smith    allocation.  See the <a href="../../docs/manual.pdf#nameddest=ch_mat">Mat chapter of the users manual</a> for details.
2021a23d5eceSKris Buschelman 
2022aa95bbe8SBarry Smith    You can call MatGetInfo() to get information on how effective the preallocation was;
2023aa95bbe8SBarry Smith    for example the fields mallocs,nz_allocated,nz_used,nz_unneeded;
2024aa95bbe8SBarry Smith    You can also run with the option -info and look for messages with the string
2025aa95bbe8SBarry Smith    malloc in them to see if additional memory allocation was needed.
2026aa95bbe8SBarry Smith 
202749a6f317SBarry Smith    If the nnz parameter is given then the nz parameter is ignored
202849a6f317SBarry Smith 
202949a6f317SBarry Smith 
203069b1f4b7SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues(), MatCreateSBAIJ()
2031a23d5eceSKris Buschelman @*/
20327087cfbeSBarry Smith PetscErrorCode  MatSeqSBAIJSetPreallocation(Mat B,PetscInt bs,PetscInt nz,const PetscInt nnz[])
203313f74950SBarry Smith {
20344ac538c5SBarry Smith   PetscErrorCode ierr;
2035a23d5eceSKris Buschelman 
2036a23d5eceSKris Buschelman   PetscFunctionBegin;
20376ba663aaSJed Brown   PetscValidHeaderSpecific(B,MAT_CLASSID,1);
20386ba663aaSJed Brown   PetscValidType(B,1);
20396ba663aaSJed Brown   PetscValidLogicalCollectiveInt(B,bs,2);
20404ac538c5SBarry Smith   ierr = PetscTryMethod(B,"MatSeqSBAIJSetPreallocation_C",(Mat,PetscInt,PetscInt,const PetscInt[]),(B,bs,nz,nnz));CHKERRQ(ierr);
2041a23d5eceSKris Buschelman   PetscFunctionReturn(0);
2042a23d5eceSKris Buschelman }
204349b5e25fSSatish Balay 
20444a2ae208SSatish Balay #undef __FUNCT__
20454a2ae208SSatish Balay #define __FUNCT__ "MatCreateSeqSBAIJ"
2046c464158bSHong Zhang /*@C
2047c464158bSHong Zhang    MatCreateSeqSBAIJ - Creates a sparse symmetric matrix in block AIJ (block
2048c464158bSHong Zhang    compressed row) format.  For good matrix assembly performance the
2049c464158bSHong Zhang    user should preallocate the matrix storage by setting the parameter nz
2050c464158bSHong Zhang    (or the array nnz).  By setting these parameters accurately, performance
2051c464158bSHong Zhang    during matrix assembly can be increased by more than a factor of 50.
205249b5e25fSSatish Balay 
2053c464158bSHong Zhang    Collective on MPI_Comm
2054c464158bSHong Zhang 
2055c464158bSHong Zhang    Input Parameters:
2056c464158bSHong Zhang +  comm - MPI communicator, set to PETSC_COMM_SELF
2057c464158bSHong Zhang .  bs - size of block
2058c464158bSHong Zhang .  m - number of rows, or number of columns
2059c464158bSHong Zhang .  nz - number of block nonzeros per block row (same for all rows)
2060744e8345SSatish Balay -  nnz - array containing the number of block nonzeros in the upper triangular plus
2061744e8345SSatish Balay          diagonal portion of each block (possibly different for each block row) or PETSC_NULL
2062c464158bSHong Zhang 
2063c464158bSHong Zhang    Output Parameter:
2064c464158bSHong Zhang .  A - the symmetric matrix
2065c464158bSHong Zhang 
2066c464158bSHong Zhang    Options Database Keys:
2067c464158bSHong Zhang .   -mat_no_unroll - uses code that does not unroll the loops in the
2068c464158bSHong Zhang                      block calculations (much slower)
2069c464158bSHong Zhang .    -mat_block_size - size of the blocks to use
2070c464158bSHong Zhang 
2071c464158bSHong Zhang    Level: intermediate
2072c464158bSHong Zhang 
2073175b88e8SBarry Smith    It is recommended that one use the MatCreate(), MatSetType() and/or MatSetFromOptions(),
2074ae1d86c5SBarry Smith    MatXXXXSetPreallocation() paradgm instead of this routine directly.
2075175b88e8SBarry Smith    [MatXXXXSetPreallocation() is, for example, MatSeqAIJSetPreallocation]
2076175b88e8SBarry Smith 
2077c464158bSHong Zhang    Notes:
20786d6d819aSHong Zhang    The number of rows and columns must be divisible by blocksize.
20796d6d819aSHong Zhang    This matrix type does not support complex Hermitian operation.
2080c464158bSHong Zhang 
2081c464158bSHong Zhang    Specify the preallocated storage with either nz or nnz (not both).
2082c464158bSHong Zhang    Set nz=PETSC_DEFAULT and nnz=PETSC_NULL for PETSc to control dynamic memory
20830598bfebSBarry Smith    allocation.  See the <a href="../../docs/manual.pdf#nameddest=ch_mat">Mat chapter of the users manual</a> for details.
2084c464158bSHong Zhang 
208549a6f317SBarry Smith    If the nnz parameter is given then the nz parameter is ignored
208649a6f317SBarry Smith 
208769b1f4b7SBarry Smith .seealso: MatCreate(), MatCreateSeqAIJ(), MatSetValues(), MatCreateSBAIJ()
2088c464158bSHong Zhang @*/
20897087cfbeSBarry Smith PetscErrorCode  MatCreateSeqSBAIJ(MPI_Comm comm,PetscInt bs,PetscInt m,PetscInt n,PetscInt nz,const PetscInt nnz[],Mat *A)
2090c464158bSHong Zhang {
2091dfbe8321SBarry Smith   PetscErrorCode ierr;
2092c464158bSHong Zhang 
2093c464158bSHong Zhang   PetscFunctionBegin;
2094f69a0ea3SMatthew Knepley   ierr = MatCreate(comm,A);CHKERRQ(ierr);
2095f69a0ea3SMatthew Knepley   ierr = MatSetSizes(*A,m,n,m,n);CHKERRQ(ierr);
2096c464158bSHong Zhang   ierr = MatSetType(*A,MATSEQSBAIJ);CHKERRQ(ierr);
2097ab93d7beSBarry Smith   ierr = MatSeqSBAIJSetPreallocation_SeqSBAIJ(*A,bs,nz,(PetscInt*)nnz);CHKERRQ(ierr);
209849b5e25fSSatish Balay   PetscFunctionReturn(0);
209949b5e25fSSatish Balay }
210049b5e25fSSatish Balay 
21014a2ae208SSatish Balay #undef __FUNCT__
21024a2ae208SSatish Balay #define __FUNCT__ "MatDuplicate_SeqSBAIJ"
2103dfbe8321SBarry Smith PetscErrorCode MatDuplicate_SeqSBAIJ(Mat A,MatDuplicateOption cpvalues,Mat *B)
210449b5e25fSSatish Balay {
210549b5e25fSSatish Balay   Mat            C;
210649b5e25fSSatish Balay   Mat_SeqSBAIJ   *c,*a = (Mat_SeqSBAIJ*)A->data;
21076849ba73SBarry Smith   PetscErrorCode ierr;
2108b40805acSSatish Balay   PetscInt       i,mbs = a->mbs,nz = a->nz,bs2 =a->bs2;
210949b5e25fSSatish Balay 
211049b5e25fSSatish Balay   PetscFunctionBegin;
2111e32f2f54SBarry Smith   if (a->i[mbs] != nz) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"Corrupt matrix");
211249b5e25fSSatish Balay 
211349b5e25fSSatish Balay   *B = 0;
21147adad957SLisandro Dalcin   ierr = MatCreate(((PetscObject)A)->comm,&C);CHKERRQ(ierr);
2115d0f46423SBarry Smith   ierr = MatSetSizes(C,A->rmap->N,A->cmap->n,A->rmap->N,A->cmap->n);CHKERRQ(ierr);
21168e9a0fb8SHong Zhang   ierr = MatSetType(C,MATSEQSBAIJ);CHKERRQ(ierr);
21171d5dac46SHong Zhang   ierr = PetscMemcpy(C->ops,A->ops,sizeof(struct _MatOps));CHKERRQ(ierr);
2118692f9cbeSHong Zhang   c    = (Mat_SeqSBAIJ*)C->data;
2119692f9cbeSHong Zhang 
2120273d9f13SBarry Smith   C->preallocated       = PETSC_TRUE;
2121d5f3da31SBarry Smith   C->factortype         = A->factortype;
212249b5e25fSSatish Balay   c->row                = 0;
212349b5e25fSSatish Balay   c->icol               = 0;
212449b5e25fSSatish Balay   c->saved_values       = 0;
2125a9817697SBarry Smith   c->keepnonzeropattern = a->keepnonzeropattern;
212649b5e25fSSatish Balay   C->assembled          = PETSC_TRUE;
212749b5e25fSSatish Balay 
21281e1e43feSBarry Smith   ierr = PetscLayoutReference(A->rmap,&C->rmap);CHKERRQ(ierr);
21291e1e43feSBarry Smith   ierr = PetscLayoutReference(A->cmap,&C->cmap);CHKERRQ(ierr);
213049b5e25fSSatish Balay   c->bs2  = a->bs2;
213149b5e25fSSatish Balay   c->mbs  = a->mbs;
213249b5e25fSSatish Balay   c->nbs  = a->nbs;
213349b5e25fSSatish Balay 
2134c760cd28SBarry Smith   if  (cpvalues == MAT_SHARE_NONZERO_PATTERN) {
2135c760cd28SBarry Smith     c->imax           = a->imax;
2136c760cd28SBarry Smith     c->ilen           = a->ilen;
2137c760cd28SBarry Smith     c->free_imax_ilen = PETSC_FALSE;
2138c760cd28SBarry Smith   } else {
21398777fc3fSSatish Balay     ierr = PetscMalloc2((mbs+1),PetscInt,&c->imax,(mbs+1),PetscInt,&c->ilen);CHKERRQ(ierr);
2140c760cd28SBarry Smith     ierr = PetscLogObjectMemory(C,2*(mbs+1)*sizeof(PetscInt));CHKERRQ(ierr);
214149b5e25fSSatish Balay     for (i=0; i<mbs; i++) {
214249b5e25fSSatish Balay       c->imax[i] = a->imax[i];
214349b5e25fSSatish Balay       c->ilen[i] = a->ilen[i];
214449b5e25fSSatish Balay     }
2145c760cd28SBarry Smith     c->free_imax_ilen = PETSC_TRUE;
2146c760cd28SBarry Smith   }
214749b5e25fSSatish Balay 
214849b5e25fSSatish Balay   /* allocate the matrix space */
21494da8f245SBarry Smith   if (cpvalues == MAT_SHARE_NONZERO_PATTERN) {
21504da8f245SBarry Smith     ierr = PetscMalloc(bs2*nz*sizeof(MatScalar),&c->a);CHKERRQ(ierr);
21514da8f245SBarry Smith     ierr = PetscLogObjectMemory(C,nz*bs2*sizeof(MatScalar));CHKERRQ(ierr);
215244e1c64aSLisandro Dalcin     c->i            = a->i;
215344e1c64aSLisandro Dalcin     c->j            = a->j;
21544da8f245SBarry Smith     c->singlemalloc = PETSC_FALSE;
215544e1c64aSLisandro Dalcin     c->free_a       = PETSC_TRUE;
21564da8f245SBarry Smith     c->free_ij      = PETSC_FALSE;
21574da8f245SBarry Smith     c->parent       = A;
21584da8f245SBarry Smith     ierr            = PetscObjectReference((PetscObject)A);CHKERRQ(ierr);
21594da8f245SBarry Smith     ierr            = MatSetOption(A,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
21604da8f245SBarry Smith     ierr            = MatSetOption(C,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_TRUE);CHKERRQ(ierr);
21614da8f245SBarry Smith   } else {
2162b40805acSSatish Balay     ierr = PetscMalloc3(bs2*nz,MatScalar,&c->a,nz,PetscInt,&c->j,mbs+1,PetscInt,&c->i);CHKERRQ(ierr);
216313f74950SBarry Smith     ierr = PetscMemcpy(c->i,a->i,(mbs+1)*sizeof(PetscInt));CHKERRQ(ierr);
2164b40805acSSatish Balay     ierr = PetscLogObjectMemory(C,(mbs+1)*sizeof(PetscInt) + nz*(bs2*sizeof(MatScalar) + sizeof(PetscInt)));CHKERRQ(ierr);
21654da8f245SBarry Smith     c->singlemalloc = PETSC_TRUE;
216644e1c64aSLisandro Dalcin     c->free_a       = PETSC_TRUE;
21674da8f245SBarry Smith     c->free_ij      = PETSC_TRUE;
21684da8f245SBarry Smith   }
216949b5e25fSSatish Balay   if (mbs > 0) {
21704da8f245SBarry Smith     if (cpvalues != MAT_SHARE_NONZERO_PATTERN) {
217113f74950SBarry Smith       ierr = PetscMemcpy(c->j,a->j,nz*sizeof(PetscInt));CHKERRQ(ierr);
21724da8f245SBarry Smith     }
217349b5e25fSSatish Balay     if (cpvalues == MAT_COPY_VALUES) {
217449b5e25fSSatish Balay       ierr = PetscMemcpy(c->a,a->a,bs2*nz*sizeof(MatScalar));CHKERRQ(ierr);
217549b5e25fSSatish Balay     } else {
217649b5e25fSSatish Balay       ierr = PetscMemzero(c->a,bs2*nz*sizeof(MatScalar));CHKERRQ(ierr);
217749b5e25fSSatish Balay     }
2178a1c3900fSBarry Smith     if (a->jshort) {
217944e1c64aSLisandro Dalcin       /* cannot share jshort, it is reallocated in MatAssemblyEnd_SeqSBAIJ() */
218044e1c64aSLisandro Dalcin       /* if the parent matrix is reassembled, this child matrix will never notice */
2181a1c3900fSBarry Smith       ierr = PetscMalloc(nz*sizeof(unsigned short),&c->jshort);CHKERRQ(ierr);
2182c760cd28SBarry Smith       ierr = PetscLogObjectMemory(C,nz*sizeof(unsigned short));CHKERRQ(ierr);
2183a1c3900fSBarry Smith       ierr = PetscMemcpy(c->jshort,a->jshort,nz*sizeof(unsigned short));CHKERRQ(ierr);
21844da8f245SBarry Smith       c->free_jshort = PETSC_TRUE;
21854da8f245SBarry Smith     }
2186a1c3900fSBarry Smith   }
218749b5e25fSSatish Balay 
218849b5e25fSSatish Balay   c->roworiented = a->roworiented;
218949b5e25fSSatish Balay   c->nonew       = a->nonew;
219049b5e25fSSatish Balay 
219149b5e25fSSatish Balay   if (a->diag) {
2192c760cd28SBarry Smith     if (cpvalues == MAT_SHARE_NONZERO_PATTERN) {
2193c760cd28SBarry Smith       c->diag      = a->diag;
2194c760cd28SBarry Smith       c->free_diag = PETSC_FALSE;
2195c760cd28SBarry Smith     } else {
21962ed38d0bSJed Brown       ierr = PetscMalloc(mbs*sizeof(PetscInt),&c->diag);CHKERRQ(ierr);
21972ed38d0bSJed Brown       ierr = PetscLogObjectMemory(C,mbs*sizeof(PetscInt));CHKERRQ(ierr);
219849b5e25fSSatish Balay       for (i=0; i<mbs; i++) {
219949b5e25fSSatish Balay         c->diag[i] = a->diag[i];
220049b5e25fSSatish Balay       }
2201c760cd28SBarry Smith       c->free_diag = PETSC_TRUE;
2202c760cd28SBarry Smith     }
220344e1c64aSLisandro Dalcin   }
22046c6c5352SBarry Smith   c->nz           = a->nz;
2205f2cbd3d5SJed Brown   c->maxnz        = a->nz; /* Since we allocate exactly the right amount */
220649b5e25fSSatish Balay   c->solve_work   = 0;
220749b5e25fSSatish Balay   c->mult_work    = 0;
220849b5e25fSSatish Balay   *B = C;
2209140e18c1SBarry Smith   ierr = PetscFunctionListDuplicate(((PetscObject)A)->qlist,&((PetscObject)C)->qlist);CHKERRQ(ierr);
221049b5e25fSSatish Balay   PetscFunctionReturn(0);
221149b5e25fSSatish Balay }
221249b5e25fSSatish Balay 
22134a2ae208SSatish Balay #undef __FUNCT__
22145bba2384SShri Abhyankar #define __FUNCT__ "MatLoad_SeqSBAIJ"
2215112444f4SShri Abhyankar PetscErrorCode MatLoad_SeqSBAIJ(Mat newmat,PetscViewer viewer)
22162f480046SShri Abhyankar {
22172f480046SShri Abhyankar   Mat_SeqSBAIJ   *a;
22182f480046SShri Abhyankar   PetscErrorCode ierr;
22192f480046SShri Abhyankar   int            fd;
22202f480046SShri Abhyankar   PetscMPIInt    size;
22212f480046SShri Abhyankar   PetscInt       i,nz,header[4],*rowlengths=0,M,N,bs=1;
22222f480046SShri Abhyankar   PetscInt       *mask,mbs,*jj,j,rowcount,nzcount,k,*s_browlengths,maskcount;
22232f480046SShri Abhyankar   PetscInt       kmax,jcount,block,idx,point,nzcountb,extra_rows,rows,cols;
22242f480046SShri Abhyankar   PetscInt       *masked,nmask,tmp,bs2,ishift;
22252f480046SShri Abhyankar   PetscScalar    *aa;
22262f480046SShri Abhyankar   MPI_Comm       comm = ((PetscObject)viewer)->comm;
22272f480046SShri Abhyankar 
22282f480046SShri Abhyankar   PetscFunctionBegin;
2229c55dd799SBarry Smith   ierr = PetscOptionsGetInt(((PetscObject)newmat)->prefix,"-matload_block_size",&bs,PETSC_NULL);CHKERRQ(ierr);
22302f480046SShri Abhyankar   bs2  = bs*bs;
22312f480046SShri Abhyankar 
22322f480046SShri Abhyankar   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
22332f480046SShri Abhyankar   if (size > 1) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"view must have one processor");
22342f480046SShri Abhyankar   ierr = PetscViewerBinaryGetDescriptor(viewer,&fd);CHKERRQ(ierr);
22352f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,header,4,PETSC_INT);CHKERRQ(ierr);
22362f480046SShri Abhyankar   if (header[0] != MAT_FILE_CLASSID) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"not Mat object");
22372f480046SShri Abhyankar   M = header[1]; N = header[2]; nz = header[3];
22382f480046SShri Abhyankar 
22392f480046SShri Abhyankar   if (header[3] < 0) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"Matrix stored in special format, cannot load as SeqSBAIJ");
22402f480046SShri Abhyankar 
22412f480046SShri Abhyankar   if (M != N) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Can only do square matrices");
22422f480046SShri Abhyankar 
22432f480046SShri Abhyankar   /*
22442f480046SShri Abhyankar      This code adds extra rows to make sure the number of rows is
22452f480046SShri Abhyankar     divisible by the blocksize
22462f480046SShri Abhyankar   */
22472f480046SShri Abhyankar   mbs        = M/bs;
22482f480046SShri Abhyankar   extra_rows = bs - M + bs*(mbs);
22492f480046SShri Abhyankar   if (extra_rows == bs) extra_rows = 0;
22502f480046SShri Abhyankar   else                  mbs++;
22512f480046SShri Abhyankar   if (extra_rows) {
22522f480046SShri Abhyankar     ierr = PetscInfo(viewer,"Padding loaded matrix to match blocksize\n");CHKERRQ(ierr);
22532f480046SShri Abhyankar   }
22542f480046SShri Abhyankar 
22552f480046SShri Abhyankar   /* Set global sizes if not already set */
22562f480046SShri Abhyankar   if (newmat->rmap->n < 0 && newmat->rmap->N < 0 && newmat->cmap->n < 0 && newmat->cmap->N < 0) {
22572f480046SShri Abhyankar     ierr = MatSetSizes(newmat,PETSC_DECIDE,PETSC_DECIDE,M+extra_rows,N+extra_rows);CHKERRQ(ierr);
22582f480046SShri Abhyankar   } else { /* Check if the matrix global sizes are correct */
22592f480046SShri Abhyankar     ierr = MatGetSize(newmat,&rows,&cols);CHKERRQ(ierr);
22602f480046SShri 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);
22612f480046SShri Abhyankar   }
22622f480046SShri Abhyankar 
22632f480046SShri Abhyankar   /* read in row lengths */
22642f480046SShri Abhyankar   ierr = PetscMalloc((M+extra_rows)*sizeof(PetscInt),&rowlengths);CHKERRQ(ierr);
22652f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,rowlengths,M,PETSC_INT);CHKERRQ(ierr);
22662f480046SShri Abhyankar   for (i=0; i<extra_rows; i++) rowlengths[M+i] = 1;
22672f480046SShri Abhyankar 
22682f480046SShri Abhyankar   /* read in column indices */
22692f480046SShri Abhyankar   ierr = PetscMalloc((nz+extra_rows)*sizeof(PetscInt),&jj);CHKERRQ(ierr);
22702f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,jj,nz,PETSC_INT);CHKERRQ(ierr);
22712f480046SShri Abhyankar   for (i=0; i<extra_rows; i++) jj[nz+i] = M+i;
22722f480046SShri Abhyankar 
22732f480046SShri Abhyankar   /* loop over row lengths determining block row lengths */
22742f480046SShri Abhyankar   ierr     = PetscMalloc(mbs*sizeof(PetscInt),&s_browlengths);CHKERRQ(ierr);
22752f480046SShri Abhyankar   ierr     = PetscMemzero(s_browlengths,mbs*sizeof(PetscInt));CHKERRQ(ierr);
22762f480046SShri Abhyankar   ierr     = PetscMalloc2(mbs,PetscInt,&mask,mbs,PetscInt,&masked);CHKERRQ(ierr);
22772f480046SShri Abhyankar   ierr     = PetscMemzero(mask,mbs*sizeof(PetscInt));CHKERRQ(ierr);
22782f480046SShri Abhyankar   rowcount = 0;
22792f480046SShri Abhyankar   nzcount  = 0;
22802f480046SShri Abhyankar   for (i=0; i<mbs; i++) {
22812f480046SShri Abhyankar     nmask = 0;
22822f480046SShri Abhyankar     for (j=0; j<bs; j++) {
22832f480046SShri Abhyankar       kmax = rowlengths[rowcount];
22842f480046SShri Abhyankar       for (k=0; k<kmax; k++) {
22852f480046SShri Abhyankar         tmp = jj[nzcount++]/bs;   /* block col. index */
22862f480046SShri Abhyankar         if (!mask[tmp] && tmp >= i) {masked[nmask++] = tmp; mask[tmp] = 1;}
22872f480046SShri Abhyankar       }
22882f480046SShri Abhyankar       rowcount++;
22892f480046SShri Abhyankar     }
22902f480046SShri Abhyankar     s_browlengths[i] += nmask;
22912f480046SShri Abhyankar 
22922f480046SShri Abhyankar     /* zero out the mask elements we set */
22932f480046SShri Abhyankar     for (j=0; j<nmask; j++) mask[masked[j]] = 0;
22942f480046SShri Abhyankar   }
22952f480046SShri Abhyankar 
22962f480046SShri Abhyankar   /* Do preallocation */
22972f480046SShri Abhyankar   ierr = MatSeqSBAIJSetPreallocation_SeqSBAIJ(newmat,bs,0,s_browlengths);CHKERRQ(ierr);
22982f480046SShri Abhyankar   a = (Mat_SeqSBAIJ*)newmat->data;
22992f480046SShri Abhyankar 
23002f480046SShri Abhyankar   /* set matrix "i" values */
23012f480046SShri Abhyankar   a->i[0] = 0;
23022f480046SShri Abhyankar   for (i=1; i<= mbs; i++) {
23032f480046SShri Abhyankar     a->i[i]      = a->i[i-1] + s_browlengths[i-1];
23042f480046SShri Abhyankar     a->ilen[i-1] = s_browlengths[i-1];
23052f480046SShri Abhyankar   }
23062f480046SShri Abhyankar   a->nz = a->i[mbs];
23072f480046SShri Abhyankar 
23082f480046SShri Abhyankar   /* read in nonzero values */
23092f480046SShri Abhyankar   ierr = PetscMalloc((nz+extra_rows)*sizeof(PetscScalar),&aa);CHKERRQ(ierr);
23102f480046SShri Abhyankar   ierr = PetscBinaryRead(fd,aa,nz,PETSC_SCALAR);CHKERRQ(ierr);
23112f480046SShri Abhyankar   for (i=0; i<extra_rows; i++) aa[nz+i] = 1.0;
23122f480046SShri Abhyankar 
23132f480046SShri Abhyankar   /* set "a" and "j" values into matrix */
23142f480046SShri Abhyankar   nzcount = 0; jcount = 0;
23152f480046SShri Abhyankar   for (i=0; i<mbs; i++) {
23162f480046SShri Abhyankar     nzcountb = nzcount;
23172f480046SShri Abhyankar     nmask    = 0;
23182f480046SShri Abhyankar     for (j=0; j<bs; j++) {
23192f480046SShri Abhyankar       kmax = rowlengths[i*bs+j];
23202f480046SShri Abhyankar       for (k=0; k<kmax; k++) {
23212f480046SShri Abhyankar         tmp = jj[nzcount++]/bs; /* block col. index */
23222f480046SShri Abhyankar         if (!mask[tmp] && tmp >= i) { masked[nmask++] = tmp; mask[tmp] = 1;}
23232f480046SShri Abhyankar       }
23242f480046SShri Abhyankar     }
23252f480046SShri Abhyankar     /* sort the masked values */
23262f480046SShri Abhyankar     ierr = PetscSortInt(nmask,masked);CHKERRQ(ierr);
23272f480046SShri Abhyankar 
23282f480046SShri Abhyankar     /* set "j" values into matrix */
23292f480046SShri Abhyankar     maskcount = 1;
23302f480046SShri Abhyankar     for (j=0; j<nmask; j++) {
23312f480046SShri Abhyankar       a->j[jcount++]  = masked[j];
23322f480046SShri Abhyankar       mask[masked[j]] = maskcount++;
23332f480046SShri Abhyankar     }
23342f480046SShri Abhyankar 
23352f480046SShri Abhyankar     /* set "a" values into matrix */
23362f480046SShri Abhyankar     ishift = bs2*a->i[i];
23372f480046SShri Abhyankar     for (j=0; j<bs; j++) {
23382f480046SShri Abhyankar       kmax = rowlengths[i*bs+j];
23392f480046SShri Abhyankar       for (k=0; k<kmax; k++) {
23402f480046SShri Abhyankar         tmp       = jj[nzcountb]/bs ; /* block col. index */
23412f480046SShri Abhyankar         if (tmp >= i) {
23422f480046SShri Abhyankar           block     = mask[tmp] - 1;
23432f480046SShri Abhyankar           point     = jj[nzcountb] - bs*tmp;
23442f480046SShri Abhyankar           idx       = ishift + bs2*block + j + bs*point;
23452f480046SShri Abhyankar           a->a[idx] = aa[nzcountb];
23462f480046SShri Abhyankar         }
23472f480046SShri Abhyankar         nzcountb++;
23482f480046SShri Abhyankar       }
23492f480046SShri Abhyankar     }
23502f480046SShri Abhyankar     /* zero out the mask elements we set */
23512f480046SShri Abhyankar     for (j=0; j<nmask; j++) mask[masked[j]] = 0;
23522f480046SShri Abhyankar   }
23532f480046SShri Abhyankar   if (jcount != a->nz) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_FILE_UNEXPECTED,"Bad binary matrix");
23542f480046SShri Abhyankar 
23552f480046SShri Abhyankar   ierr = PetscFree(rowlengths);CHKERRQ(ierr);
23562f480046SShri Abhyankar   ierr = PetscFree(s_browlengths);CHKERRQ(ierr);
23572f480046SShri Abhyankar   ierr = PetscFree(aa);CHKERRQ(ierr);
23582f480046SShri Abhyankar   ierr = PetscFree(jj);CHKERRQ(ierr);
23592f480046SShri Abhyankar   ierr = PetscFree2(mask,masked);CHKERRQ(ierr);
23602f480046SShri Abhyankar 
23612f480046SShri Abhyankar   ierr = MatAssemblyBegin(newmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
23622f480046SShri Abhyankar   ierr = MatAssemblyEnd(newmat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
23632f480046SShri Abhyankar   PetscFunctionReturn(0);
23642f480046SShri Abhyankar }
23652f480046SShri Abhyankar 
23662f480046SShri Abhyankar #undef __FUNCT__
2367c75a6043SHong Zhang #define __FUNCT__ "MatCreateSeqSBAIJWithArrays"
2368c75a6043SHong Zhang /*@
2369c75a6043SHong Zhang      MatCreateSeqSBAIJWithArrays - Creates an sequential SBAIJ matrix using matrix elements
2370c75a6043SHong Zhang               (upper triangular entries in CSR format) provided by the user.
2371c75a6043SHong Zhang 
2372c75a6043SHong Zhang      Collective on MPI_Comm
2373c75a6043SHong Zhang 
2374c75a6043SHong Zhang    Input Parameters:
2375c75a6043SHong Zhang +  comm - must be an MPI communicator of size 1
2376c75a6043SHong Zhang .  bs - size of block
2377c75a6043SHong Zhang .  m - number of rows
2378c75a6043SHong Zhang .  n - number of columns
2379c75a6043SHong Zhang .  i - row indices
2380c75a6043SHong Zhang .  j - column indices
2381c75a6043SHong Zhang -  a - matrix values
2382c75a6043SHong Zhang 
2383c75a6043SHong Zhang    Output Parameter:
2384c75a6043SHong Zhang .  mat - the matrix
2385c75a6043SHong Zhang 
2386dfb205c3SBarry Smith    Level: advanced
2387c75a6043SHong Zhang 
2388c75a6043SHong Zhang    Notes:
2389c75a6043SHong Zhang        The i, j, and a arrays are not copied by this routine, the user must free these arrays
2390c75a6043SHong Zhang     once the matrix is destroyed
2391c75a6043SHong Zhang 
2392c75a6043SHong Zhang        You cannot set new nonzero locations into this matrix, that will generate an error.
2393c75a6043SHong Zhang 
2394c75a6043SHong Zhang        The i and j indices are 0 based
2395c75a6043SHong Zhang 
2396dfb205c3SBarry 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
2397dfb205c3SBarry Smith        it is the regular CSR format excluding the lower triangular elements.
2398dfb205c3SBarry Smith 
239969b1f4b7SBarry Smith .seealso: MatCreate(), MatCreateSBAIJ(), MatCreateSeqSBAIJ()
2400c75a6043SHong Zhang 
2401c75a6043SHong Zhang @*/
24027087cfbeSBarry Smith PetscErrorCode  MatCreateSeqSBAIJWithArrays(MPI_Comm comm,PetscInt bs,PetscInt m,PetscInt n,PetscInt* i,PetscInt*j,PetscScalar *a,Mat *mat)
2403c75a6043SHong Zhang {
2404c75a6043SHong Zhang   PetscErrorCode ierr;
2405c75a6043SHong Zhang   PetscInt       ii;
2406c75a6043SHong Zhang   Mat_SeqSBAIJ   *sbaij;
2407c75a6043SHong Zhang 
2408c75a6043SHong Zhang   PetscFunctionBegin;
2409e32f2f54SBarry Smith   if (bs != 1) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"block size %D > 1 is not supported yet",bs);
2410e32f2f54SBarry Smith   if (i[0]) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"i (row indices) must start with 0");
2411c75a6043SHong Zhang 
2412c75a6043SHong Zhang   ierr = MatCreate(comm,mat);CHKERRQ(ierr);
2413c75a6043SHong Zhang   ierr = MatSetSizes(*mat,m,n,m,n);CHKERRQ(ierr);
2414c75a6043SHong Zhang   ierr = MatSetType(*mat,MATSEQSBAIJ);CHKERRQ(ierr);
2415c75a6043SHong Zhang   ierr = MatSeqSBAIJSetPreallocation_SeqSBAIJ(*mat,bs,MAT_SKIP_ALLOCATION,0);CHKERRQ(ierr);
2416c75a6043SHong Zhang   sbaij = (Mat_SeqSBAIJ*)(*mat)->data;
2417c75a6043SHong Zhang   ierr = PetscMalloc2(m,PetscInt,&sbaij->imax,m,PetscInt,&sbaij->ilen);CHKERRQ(ierr);
2418c760cd28SBarry Smith   ierr = PetscLogObjectMemory(*mat,2*m*sizeof(PetscInt));CHKERRQ(ierr);
2419c75a6043SHong Zhang 
2420c75a6043SHong Zhang   sbaij->i = i;
2421c75a6043SHong Zhang   sbaij->j = j;
2422c75a6043SHong Zhang   sbaij->a = a;
2423c75a6043SHong Zhang   sbaij->singlemalloc = PETSC_FALSE;
2424c75a6043SHong Zhang   sbaij->nonew        = -1;             /*this indicates that inserting a new value in the matrix that generates a new nonzero is an error*/
2425e6b907acSBarry Smith   sbaij->free_a       = PETSC_FALSE;
2426e6b907acSBarry Smith   sbaij->free_ij      = PETSC_FALSE;
2427c75a6043SHong Zhang 
2428c75a6043SHong Zhang   for (ii=0; ii<m; ii++) {
2429c75a6043SHong Zhang     sbaij->ilen[ii] = sbaij->imax[ii] = i[ii+1] - i[ii];
2430c75a6043SHong Zhang #if defined(PETSC_USE_DEBUG)
2431e32f2f54SBarry 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]);
2432c75a6043SHong Zhang #endif
2433c75a6043SHong Zhang   }
2434c75a6043SHong Zhang #if defined(PETSC_USE_DEBUG)
2435c75a6043SHong Zhang   for (ii=0; ii<sbaij->i[m]; ii++) {
2436e32f2f54SBarry Smith     if (j[ii] < 0) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Negative column index at location = %d index = %d",ii,j[ii]);
2437e32f2f54SBarry 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]);
2438c75a6043SHong Zhang   }
2439c75a6043SHong Zhang #endif
2440c75a6043SHong Zhang 
2441c75a6043SHong Zhang   ierr = MatAssemblyBegin(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2442c75a6043SHong Zhang   ierr = MatAssemblyEnd(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
2443c75a6043SHong Zhang   PetscFunctionReturn(0);
2444c75a6043SHong Zhang }
2445d06b337dSHong Zhang 
2446d06b337dSHong Zhang 
2447d06b337dSHong Zhang 
244849b5e25fSSatish Balay 
244949b5e25fSSatish Balay 
2450