xref: /petsc/src/mat/utils/axpy.c (revision dcca6d9d80ebd869fe6029bd05a3aa9faafef49e)
16f79c3a4SBarry Smith 
2b45d2f2cSJed Brown #include <petsc-private/matimpl.h>  /*I   "petscmat.h"  I*/
36f79c3a4SBarry Smith 
44a2ae208SSatish Balay #undef __FUNCT__
54a2ae208SSatish Balay #define __FUNCT__ "MatAXPY"
606be10caSBarry Smith /*@
721c89e3eSBarry Smith    MatAXPY - Computes Y = a*X + Y.
86f79c3a4SBarry Smith 
93f9fe445SBarry Smith    Logically  Collective on Mat
10fee21e36SBarry Smith 
1198a79cdbSBarry Smith    Input Parameters:
12607cd303SBarry Smith +  a - the scalar multiplier
13607cd303SBarry Smith .  X - the first matrix
14607cd303SBarry Smith .  Y - the second matrix
15407f6b05SHong Zhang -  str - either SAME_NONZERO_PATTERN, DIFFERENT_NONZERO_PATTERN
16407f6b05SHong Zhang          or SUBSET_NONZERO_PATTERN (nonzeros of X is a subset of Y's)
1798a79cdbSBarry Smith 
182860a424SLois Curfman McInnes    Level: intermediate
192860a424SLois Curfman McInnes 
209cf4f1e8SLois Curfman McInnes .keywords: matrix, add
21d4bb536fSBarry Smith 
222860a424SLois Curfman McInnes .seealso: MatAYPX()
2306be10caSBarry Smith  @*/
247087cfbeSBarry Smith PetscErrorCode  MatAXPY(Mat Y,PetscScalar a,Mat X,MatStructure str)
256f79c3a4SBarry Smith {
266849ba73SBarry Smith   PetscErrorCode ierr;
27c1ac3661SBarry Smith   PetscInt       m1,m2,n1,n2;
286f79c3a4SBarry Smith 
293a40ed3dSBarry Smith   PetscFunctionBegin;
300700a824SBarry Smith   PetscValidHeaderSpecific(X,MAT_CLASSID,3);
310700a824SBarry Smith   PetscValidHeaderSpecific(Y,MAT_CLASSID,1);
32c5eb9154SBarry Smith   PetscValidLogicalCollectiveScalar(Y,a,2);
33273d9f13SBarry Smith   ierr = MatGetSize(X,&m1,&n1);CHKERRQ(ierr);
34273d9f13SBarry Smith   ierr = MatGetSize(Y,&m2,&n2);CHKERRQ(ierr);
35e32f2f54SBarry Smith   if (m1 != m2 || n1 != n2) SETERRQ4(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Non conforming matrix add: %D %D %D %D",m1,m2,n1,n2);
361987afe7SBarry Smith 
37e8136da8SHong Zhang   ierr = PetscLogEventBegin(MAT_AXPY,Y,0,0,0);CHKERRQ(ierr);
38f4df32b1SMatthew Knepley   if (Y->ops->axpy) {
39f4df32b1SMatthew Knepley     ierr = (*Y->ops->axpy)(Y,a,X,str);CHKERRQ(ierr);
40d4bb536fSBarry Smith   } else {
41f4df32b1SMatthew Knepley     ierr = MatAXPY_Basic(Y,a,X,str);CHKERRQ(ierr);
42607cd303SBarry Smith   }
43e8136da8SHong Zhang   ierr = PetscLogEventEnd(MAT_AXPY,Y,0,0,0);CHKERRQ(ierr);
442eea6e16SBarry Smith #if defined(PETSC_HAVE_CUSP)
452eea6e16SBarry Smith   if (Y->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) {
462eea6e16SBarry Smith     Y->valid_GPU_matrix = PETSC_CUSP_CPU;
472eea6e16SBarry Smith   }
482eea6e16SBarry Smith #endif
49d67ff14aSKarl Rupp #if defined(PETSC_HAVE_VIENNACL)
50d67ff14aSKarl Rupp   if (Y->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) {
51d67ff14aSKarl Rupp     Y->valid_GPU_matrix = PETSC_VIENNACL_CPU;
52d67ff14aSKarl Rupp   }
53d67ff14aSKarl Rupp #endif
54607cd303SBarry Smith   PetscFunctionReturn(0);
55607cd303SBarry Smith }
56607cd303SBarry Smith 
57607cd303SBarry Smith #undef __FUNCT__
58607cd303SBarry Smith #define __FUNCT__ "MatAXPY_Basic"
59f4df32b1SMatthew Knepley PetscErrorCode MatAXPY_Basic(Mat Y,PetscScalar a,Mat X,MatStructure str)
60607cd303SBarry Smith {
6138baddfdSBarry Smith   PetscInt          i,start,end,j,ncols,m,n;
626849ba73SBarry Smith   PetscErrorCode    ierr;
6338baddfdSBarry Smith   const PetscInt    *row;
64b3cc6726SBarry Smith   PetscScalar       *val;
65b3cc6726SBarry Smith   const PetscScalar *vals;
66607cd303SBarry Smith 
67607cd303SBarry Smith   PetscFunctionBegin;
688dadbd76SSatish Balay   ierr = MatGetSize(X,&m,&n);CHKERRQ(ierr);
6990f02eecSBarry Smith   ierr = MatGetOwnershipRange(X,&start,&end);CHKERRQ(ierr);
70f4df32b1SMatthew Knepley   if (a == 1.0) {
71d4bb536fSBarry Smith     for (i = start; i < end; i++) {
72d4bb536fSBarry Smith       ierr = MatGetRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
73d4bb536fSBarry Smith       ierr = MatSetValues(Y,1,&i,ncols,row,vals,ADD_VALUES);CHKERRQ(ierr);
74d4bb536fSBarry Smith       ierr = MatRestoreRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
75d4bb536fSBarry Smith     }
76d4bb536fSBarry Smith   } else {
77b3cc6726SBarry Smith     ierr = PetscMalloc((n+1)*sizeof(PetscScalar),&val);CHKERRQ(ierr);
7806be10caSBarry Smith     for (i=start; i<end; i++) {
79b3cc6726SBarry Smith       ierr = MatGetRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
8006be10caSBarry Smith       for (j=0; j<ncols; j++) {
81f4df32b1SMatthew Knepley         val[j] = a*vals[j];
826f79c3a4SBarry Smith       }
83b3cc6726SBarry Smith       ierr = MatSetValues(Y,1,&i,ncols,row,val,ADD_VALUES);CHKERRQ(ierr);
84b3cc6726SBarry Smith       ierr = MatRestoreRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
856f79c3a4SBarry Smith     }
86b3cc6726SBarry Smith     ierr = PetscFree(val);CHKERRQ(ierr);
87d4bb536fSBarry Smith   }
886d4a8577SBarry Smith   ierr = MatAssemblyBegin(Y,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
896d4a8577SBarry Smith   ierr = MatAssemblyEnd(Y,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
903a40ed3dSBarry Smith   PetscFunctionReturn(0);
916f79c3a4SBarry Smith }
92052efed2SBarry Smith 
934a2ae208SSatish Balay #undef __FUNCT__
94ec7775f6SShri Abhyankar #define __FUNCT__ "MatAXPY_BasicWithPreallocation"
95ec7775f6SShri Abhyankar PetscErrorCode MatAXPY_BasicWithPreallocation(Mat B,Mat Y,PetscScalar a,Mat X,MatStructure str)
96ec7775f6SShri Abhyankar {
97ec7775f6SShri Abhyankar   PetscInt          i,start,end,j,ncols,m,n;
98ec7775f6SShri Abhyankar   PetscErrorCode    ierr;
99ec7775f6SShri Abhyankar   const PetscInt    *row;
100ec7775f6SShri Abhyankar   PetscScalar       *val;
101ec7775f6SShri Abhyankar   const PetscScalar *vals;
102ec7775f6SShri Abhyankar 
103ec7775f6SShri Abhyankar   PetscFunctionBegin;
104ec7775f6SShri Abhyankar   ierr = MatGetSize(X,&m,&n);CHKERRQ(ierr);
105ec7775f6SShri Abhyankar   ierr = MatGetOwnershipRange(X,&start,&end);CHKERRQ(ierr);
106ec7775f6SShri Abhyankar   if (a == 1.0) {
107ec7775f6SShri Abhyankar     for (i = start; i < end; i++) {
108ec7775f6SShri Abhyankar       ierr = MatGetRow(Y,i,&ncols,&row,&vals);CHKERRQ(ierr);
109ec7775f6SShri Abhyankar       ierr = MatSetValues(B,1,&i,ncols,row,vals,ADD_VALUES);CHKERRQ(ierr);
110ec7775f6SShri Abhyankar       ierr = MatRestoreRow(Y,i,&ncols,&row,&vals);CHKERRQ(ierr);
111ec7775f6SShri Abhyankar 
112ec7775f6SShri Abhyankar       ierr = MatGetRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
113ec7775f6SShri Abhyankar       ierr = MatSetValues(B,1,&i,ncols,row,vals,ADD_VALUES);CHKERRQ(ierr);
114ec7775f6SShri Abhyankar       ierr = MatRestoreRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
115ec7775f6SShri Abhyankar     }
116ec7775f6SShri Abhyankar   } else {
117ec7775f6SShri Abhyankar     ierr = PetscMalloc((n+1)*sizeof(PetscScalar),&val);CHKERRQ(ierr);
118ec7775f6SShri Abhyankar     for (i=start; i<end; i++) {
119ec7775f6SShri Abhyankar       ierr = MatGetRow(Y,i,&ncols,&row,&vals);CHKERRQ(ierr);
120ec7775f6SShri Abhyankar       ierr = MatSetValues(B,1,&i,ncols,row,vals,ADD_VALUES);CHKERRQ(ierr);
121ec7775f6SShri Abhyankar       ierr = MatRestoreRow(Y,i,&ncols,&row,&vals);CHKERRQ(ierr);
122ec7775f6SShri Abhyankar 
123ec7775f6SShri Abhyankar       ierr = MatGetRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
124ec7775f6SShri Abhyankar       for (j=0; j<ncols; j++) {
125ec7775f6SShri Abhyankar         val[j] = a*vals[j];
126ec7775f6SShri Abhyankar       }
127ec7775f6SShri Abhyankar       ierr = MatSetValues(B,1,&i,ncols,row,val,ADD_VALUES);CHKERRQ(ierr);
128ec7775f6SShri Abhyankar       ierr = MatRestoreRow(X,i,&ncols,&row,&vals);CHKERRQ(ierr);
129ec7775f6SShri Abhyankar     }
130ec7775f6SShri Abhyankar     ierr = PetscFree(val);CHKERRQ(ierr);
131ec7775f6SShri Abhyankar   }
132ec7775f6SShri Abhyankar   ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
133ec7775f6SShri Abhyankar   ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
134ec7775f6SShri Abhyankar   PetscFunctionReturn(0);
135ec7775f6SShri Abhyankar }
136ec7775f6SShri Abhyankar 
137ec7775f6SShri Abhyankar #undef __FUNCT__
1384a2ae208SSatish Balay #define __FUNCT__ "MatShift"
139052efed2SBarry Smith /*@
14087828ca2SBarry Smith    MatShift - Computes Y =  Y + a I, where a is a PetscScalar and I is the identity matrix.
141052efed2SBarry Smith 
1423f9fe445SBarry Smith    Neighbor-wise Collective on Mat
143fee21e36SBarry Smith 
14498a79cdbSBarry Smith    Input Parameters:
14598a79cdbSBarry Smith +  Y - the matrices
14687828ca2SBarry Smith -  a - the PetscScalar
14798a79cdbSBarry Smith 
1482860a424SLois Curfman McInnes    Level: intermediate
1492860a424SLois Curfman McInnes 
150052efed2SBarry Smith .keywords: matrix, add, shift
1516b9ee512SLois Curfman McInnes 
152f56f2b3fSBarry Smith .seealso: MatDiagonalSet()
153052efed2SBarry Smith  @*/
1547087cfbeSBarry Smith PetscErrorCode  MatShift(Mat Y,PetscScalar a)
155052efed2SBarry Smith {
1566849ba73SBarry Smith   PetscErrorCode ierr;
15738baddfdSBarry Smith   PetscInt       i,start,end;
158052efed2SBarry Smith 
1593a40ed3dSBarry Smith   PetscFunctionBegin;
1600700a824SBarry Smith   PetscValidHeaderSpecific(Y,MAT_CLASSID,1);
161ce94432eSBarry Smith   if (!Y->assembled) SETERRQ(PetscObjectComm((PetscObject)Y),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix");
162ce94432eSBarry Smith   if (Y->factortype) SETERRQ(PetscObjectComm((PetscObject)Y),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix");
1634994cf47SJed Brown   MatCheckPreallocated(Y,1);
164b50b34bdSBarry Smith 
165f830108cSBarry Smith   if (Y->ops->shift) {
166f4df32b1SMatthew Knepley     ierr = (*Y->ops->shift)(Y,a);CHKERRQ(ierr);
16762d58ce1SBarry Smith   } else {
168f4df32b1SMatthew Knepley     PetscScalar alpha = a;
169d4bb536fSBarry Smith     ierr = MatGetOwnershipRange(Y,&start,&end);CHKERRQ(ierr);
170052efed2SBarry Smith     for (i=start; i<end; i++) {
171f4df32b1SMatthew Knepley       ierr = MatSetValues(Y,1,&i,1,&i,&alpha,ADD_VALUES);CHKERRQ(ierr);
172052efed2SBarry Smith     }
1736d4a8577SBarry Smith     ierr = MatAssemblyBegin(Y,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
1746d4a8577SBarry Smith     ierr = MatAssemblyEnd(Y,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
175052efed2SBarry Smith   }
1762eea6e16SBarry Smith #if defined(PETSC_HAVE_CUSP)
1772eea6e16SBarry Smith   if (Y->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) {
1782eea6e16SBarry Smith     Y->valid_GPU_matrix = PETSC_CUSP_CPU;
1792eea6e16SBarry Smith   }
1802eea6e16SBarry Smith #endif
181d67ff14aSKarl Rupp #if defined(PETSC_HAVE_VIENNACL)
182d67ff14aSKarl Rupp   if (Y->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) {
183d67ff14aSKarl Rupp     Y->valid_GPU_matrix = PETSC_VIENNACL_CPU;
184d67ff14aSKarl Rupp   }
185d67ff14aSKarl Rupp #endif
1863a40ed3dSBarry Smith   PetscFunctionReturn(0);
187052efed2SBarry Smith }
1886d84be18SBarry Smith 
1894a2ae208SSatish Balay #undef __FUNCT__
19009f38230SBarry Smith #define __FUNCT__ "MatDiagonalSet_Default"
1917087cfbeSBarry Smith PetscErrorCode  MatDiagonalSet_Default(Mat Y,Vec D,InsertMode is)
19209f38230SBarry Smith {
19309f38230SBarry Smith   PetscErrorCode ierr;
19409f38230SBarry Smith   PetscInt       i,start,end,vstart,vend;
19509f38230SBarry Smith   PetscScalar    *v;
19609f38230SBarry Smith 
19709f38230SBarry Smith   PetscFunctionBegin;
19809f38230SBarry Smith   ierr = VecGetOwnershipRange(D,&vstart,&vend);CHKERRQ(ierr);
19909f38230SBarry Smith   ierr = MatGetOwnershipRange(Y,&start,&end);CHKERRQ(ierr);
200ae9be289SBarry Smith   if (vstart != start || vend != end) SETERRQ4(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Vector ownership range not compatible with matrix: %D %D vec %D %D mat",vstart,vend,start,end);
20109f38230SBarry Smith   ierr = VecGetArray(D,&v);CHKERRQ(ierr);
20209f38230SBarry Smith   for (i=start; i<end; i++) {
20309f38230SBarry Smith     ierr = MatSetValues(Y,1,&i,1,&i,v+i-start,is);CHKERRQ(ierr);
20409f38230SBarry Smith   }
20509f38230SBarry Smith   ierr = VecRestoreArray(D,&v);CHKERRQ(ierr);
20609f38230SBarry Smith   ierr = MatAssemblyBegin(Y,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
20709f38230SBarry Smith   ierr = MatAssemblyEnd(Y,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
20809f38230SBarry Smith   PetscFunctionReturn(0);
20909f38230SBarry Smith }
21009f38230SBarry Smith 
21109f38230SBarry Smith #undef __FUNCT__
2124a2ae208SSatish Balay #define __FUNCT__ "MatDiagonalSet"
2136d84be18SBarry Smith /*@
214f56f2b3fSBarry Smith    MatDiagonalSet - Computes Y = Y + D, where D is a diagonal matrix
215f56f2b3fSBarry Smith    that is represented as a vector. Or Y[i,i] = D[i] if InsertMode is
216f56f2b3fSBarry Smith    INSERT_VALUES.
2176d84be18SBarry Smith 
2186d84be18SBarry Smith    Input Parameters:
21998a79cdbSBarry Smith +  Y - the input matrix
220f56f2b3fSBarry Smith .  D - the diagonal matrix, represented as a vector
221f56f2b3fSBarry Smith -  i - INSERT_VALUES or ADD_VALUES
2226d84be18SBarry Smith 
2233f9fe445SBarry Smith    Neighbor-wise Collective on Mat and Vec
224fee21e36SBarry Smith 
2252860a424SLois Curfman McInnes    Level: intermediate
2262860a424SLois Curfman McInnes 
2276b9ee512SLois Curfman McInnes .keywords: matrix, add, shift, diagonal
2286b9ee512SLois Curfman McInnes 
2296b9ee512SLois Curfman McInnes .seealso: MatShift()
2306d84be18SBarry Smith @*/
2317087cfbeSBarry Smith PetscErrorCode  MatDiagonalSet(Mat Y,Vec D,InsertMode is)
2326d84be18SBarry Smith {
2336849ba73SBarry Smith   PetscErrorCode ierr;
2346d84be18SBarry Smith 
2353a40ed3dSBarry Smith   PetscFunctionBegin;
2360700a824SBarry Smith   PetscValidHeaderSpecific(Y,MAT_CLASSID,1);
2370700a824SBarry Smith   PetscValidHeaderSpecific(D,VEC_CLASSID,2);
238f56f2b3fSBarry Smith   if (Y->ops->diagonalset) {
239f56f2b3fSBarry Smith     ierr = (*Y->ops->diagonalset)(Y,D,is);CHKERRQ(ierr);
24094d884c6SBarry Smith   } else {
24109f38230SBarry Smith     ierr = MatDiagonalSet_Default(Y,D,is);CHKERRQ(ierr);
2426d84be18SBarry Smith   }
2433a40ed3dSBarry Smith   PetscFunctionReturn(0);
2446d84be18SBarry Smith }
245d4bb536fSBarry Smith 
2464a2ae208SSatish Balay #undef __FUNCT__
2474a2ae208SSatish Balay #define __FUNCT__ "MatAYPX"
248d4bb536fSBarry Smith /*@
24904aac2b0SHong Zhang    MatAYPX - Computes Y = a*Y + X.
250d4bb536fSBarry Smith 
2513f9fe445SBarry Smith    Logically on Mat
252fee21e36SBarry Smith 
25398a79cdbSBarry Smith    Input Parameters:
25404aac2b0SHong Zhang +  a - the PetscScalar multiplier
25504aac2b0SHong Zhang .  Y - the first matrix
25604aac2b0SHong Zhang .  X - the second matrix
25704aac2b0SHong Zhang -  str - either SAME_NONZERO_PATTERN, DIFFERENT_NONZERO_PATTERN or SUBSET_NONZERO_PATTERN
258d4bb536fSBarry Smith 
2592860a424SLois Curfman McInnes    Level: intermediate
2602860a424SLois Curfman McInnes 
261d4bb536fSBarry Smith .keywords: matrix, add
262d4bb536fSBarry Smith 
2632860a424SLois Curfman McInnes .seealso: MatAXPY()
264d4bb536fSBarry Smith  @*/
2657087cfbeSBarry Smith PetscErrorCode  MatAYPX(Mat Y,PetscScalar a,Mat X,MatStructure str)
266d4bb536fSBarry Smith {
26787828ca2SBarry Smith   PetscScalar    one = 1.0;
2686849ba73SBarry Smith   PetscErrorCode ierr;
26938baddfdSBarry Smith   PetscInt       mX,mY,nX,nY;
270d4bb536fSBarry Smith 
2713a40ed3dSBarry Smith   PetscFunctionBegin;
272c5eb9154SBarry Smith   PetscValidHeaderSpecific(X,MAT_CLASSID,3);
2730700a824SBarry Smith   PetscValidHeaderSpecific(Y,MAT_CLASSID,1);
274c5eb9154SBarry Smith   PetscValidLogicalCollectiveScalar(Y,a,2);
275329f5518SBarry Smith   ierr = MatGetSize(X,&mX,&nX);CHKERRQ(ierr);
276329f5518SBarry Smith   ierr = MatGetSize(X,&mY,&nY);CHKERRQ(ierr);
277e32f2f54SBarry Smith   if (mX != mY || nX != nY) SETERRQ4(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Non conforming matrices: %D %D first %D %D second",mX,mY,nX,nY);
278d4bb536fSBarry Smith 
279f4df32b1SMatthew Knepley   ierr = MatScale(Y,a);CHKERRQ(ierr);
280cb9801acSJed Brown   ierr = MatAXPY(Y,one,X,str);CHKERRQ(ierr);
2813a40ed3dSBarry Smith   PetscFunctionReturn(0);
282d4bb536fSBarry Smith }
283b0a32e0cSBarry Smith 
2844a2ae208SSatish Balay #undef __FUNCT__
2854a2ae208SSatish Balay #define __FUNCT__ "MatComputeExplicitOperator"
286b0a32e0cSBarry Smith /*@
287b0a32e0cSBarry Smith     MatComputeExplicitOperator - Computes the explicit matrix
288b0a32e0cSBarry Smith 
289b0a32e0cSBarry Smith     Collective on Mat
290b0a32e0cSBarry Smith 
291b0a32e0cSBarry Smith     Input Parameter:
292b0a32e0cSBarry Smith .   inmat - the matrix
293b0a32e0cSBarry Smith 
294b0a32e0cSBarry Smith     Output Parameter:
295b0a32e0cSBarry Smith .   mat - the explict preconditioned operator
296b0a32e0cSBarry Smith 
297b0a32e0cSBarry Smith     Notes:
298b0a32e0cSBarry Smith     This computation is done by applying the operators to columns of the
299b0a32e0cSBarry Smith     identity matrix.
300b0a32e0cSBarry Smith 
301b0a32e0cSBarry Smith     Currently, this routine uses a dense matrix format when 1 processor
302b0a32e0cSBarry Smith     is used and a sparse format otherwise.  This routine is costly in general,
303b0a32e0cSBarry Smith     and is recommended for use only with relatively small systems.
304b0a32e0cSBarry Smith 
305b0a32e0cSBarry Smith     Level: advanced
306b0a32e0cSBarry Smith 
307b0a32e0cSBarry Smith .keywords: Mat, compute, explicit, operator
308b0a32e0cSBarry Smith @*/
3097087cfbeSBarry Smith PetscErrorCode  MatComputeExplicitOperator(Mat inmat,Mat *mat)
310b0a32e0cSBarry Smith {
311b0a32e0cSBarry Smith   Vec            in,out;
312dfbe8321SBarry Smith   PetscErrorCode ierr;
3130b12b109SJed Brown   PetscInt       i,m,n,M,N,*rows,start,end;
314b0a32e0cSBarry Smith   MPI_Comm       comm;
31587828ca2SBarry Smith   PetscScalar    *array,zero = 0.0,one = 1.0;
31638baddfdSBarry Smith   PetscMPIInt    size;
317b0a32e0cSBarry Smith 
318b0a32e0cSBarry Smith   PetscFunctionBegin;
3190700a824SBarry Smith   PetscValidHeaderSpecific(inmat,MAT_CLASSID,1);
3204482741eSBarry Smith   PetscValidPointer(mat,2);
321b0a32e0cSBarry Smith 
322ce94432eSBarry Smith   ierr = PetscObjectGetComm((PetscObject)inmat,&comm);CHKERRQ(ierr);
323b0a32e0cSBarry Smith   ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr);
324b0a32e0cSBarry Smith 
3250b12b109SJed Brown   ierr = MatGetLocalSize(inmat,&m,&n);CHKERRQ(ierr);
3260b12b109SJed Brown   ierr = MatGetSize(inmat,&M,&N);CHKERRQ(ierr);
3270b12b109SJed Brown   ierr = MatGetVecs(inmat,&in,&out);CHKERRQ(ierr);
3280b12b109SJed Brown   ierr = VecSetOption(in,VEC_IGNORE_OFF_PROC_ENTRIES,PETSC_TRUE);CHKERRQ(ierr);
3290b12b109SJed Brown   ierr = VecGetOwnershipRange(out,&start,&end);CHKERRQ(ierr);
3300b12b109SJed Brown   ierr = PetscMalloc(m*sizeof(PetscInt),&rows);CHKERRQ(ierr);
3318865f1eaSKarl Rupp   for (i=0; i<m; i++) rows[i] = start + i;
332b0a32e0cSBarry Smith 
333f69a0ea3SMatthew Knepley   ierr = MatCreate(comm,mat);CHKERRQ(ierr);
3340b12b109SJed Brown   ierr = MatSetSizes(*mat,m,n,M,N);CHKERRQ(ierr);
335b0a32e0cSBarry Smith   if (size == 1) {
336be5d1d56SKris Buschelman     ierr = MatSetType(*mat,MATSEQDENSE);CHKERRQ(ierr);
3370298fd71SBarry Smith     ierr = MatSeqDenseSetPreallocation(*mat,NULL);CHKERRQ(ierr);
338b0a32e0cSBarry Smith   } else {
339be5d1d56SKris Buschelman     ierr = MatSetType(*mat,MATMPIAIJ);CHKERRQ(ierr);
3400298fd71SBarry Smith     ierr = MatMPIAIJSetPreallocation(*mat,n,NULL,N-n,NULL);CHKERRQ(ierr);
341b0a32e0cSBarry Smith   }
342b0a32e0cSBarry Smith 
3430b12b109SJed Brown   for (i=0; i<N; i++) {
344b0a32e0cSBarry Smith 
3452dcb1b2aSMatthew Knepley     ierr = VecSet(in,zero);CHKERRQ(ierr);
346b0a32e0cSBarry Smith     ierr = VecSetValues(in,1,&i,&one,INSERT_VALUES);CHKERRQ(ierr);
347b0a32e0cSBarry Smith     ierr = VecAssemblyBegin(in);CHKERRQ(ierr);
348b0a32e0cSBarry Smith     ierr = VecAssemblyEnd(in);CHKERRQ(ierr);
349b0a32e0cSBarry Smith 
350b0a32e0cSBarry Smith     ierr = MatMult(inmat,in,out);CHKERRQ(ierr);
351b0a32e0cSBarry Smith 
352b0a32e0cSBarry Smith     ierr = VecGetArray(out,&array);CHKERRQ(ierr);
353b0a32e0cSBarry Smith     ierr = MatSetValues(*mat,m,rows,1,&i,array,INSERT_VALUES);CHKERRQ(ierr);
354b0a32e0cSBarry Smith     ierr = VecRestoreArray(out,&array);CHKERRQ(ierr);
355b0a32e0cSBarry Smith 
356b0a32e0cSBarry Smith   }
357b0a32e0cSBarry Smith   ierr = PetscFree(rows);CHKERRQ(ierr);
3586bf464f9SBarry Smith   ierr = VecDestroy(&out);CHKERRQ(ierr);
3596bf464f9SBarry Smith   ierr = VecDestroy(&in);CHKERRQ(ierr);
360b0a32e0cSBarry Smith   ierr = MatAssemblyBegin(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
361b0a32e0cSBarry Smith   ierr = MatAssemblyEnd(*mat,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
362b0a32e0cSBarry Smith   PetscFunctionReturn(0);
363b0a32e0cSBarry Smith }
364b0a32e0cSBarry Smith 
36524f910e3SHong Zhang /* Get the map xtoy which is used by MatAXPY() in the case of SUBSET_NONZERO_PATTERN */
36624f910e3SHong Zhang #undef __FUNCT__
36724f910e3SHong Zhang #define __FUNCT__ "MatAXPYGetxtoy_Private"
36838baddfdSBarry Smith PetscErrorCode MatAXPYGetxtoy_Private(PetscInt m,PetscInt *xi,PetscInt *xj,PetscInt *xgarray, PetscInt *yi,PetscInt *yj,PetscInt *ygarray, PetscInt **xtoy)
36924f910e3SHong Zhang {
3706849ba73SBarry Smith   PetscErrorCode ierr;
37138baddfdSBarry Smith   PetscInt       row,i,nz,xcol,ycol,jx,jy,*x2y;
37224f910e3SHong Zhang 
37324f910e3SHong Zhang   PetscFunctionBegin;
37438baddfdSBarry Smith   ierr = PetscMalloc(xi[m]*sizeof(PetscInt),&x2y);CHKERRQ(ierr);
37524f910e3SHong Zhang   i    = 0;
37624f910e3SHong Zhang   for (row=0; row<m; row++) {
37724f910e3SHong Zhang     nz = xi[1] - xi[0];
37824f910e3SHong Zhang     jy = 0;
37924f910e3SHong Zhang     for (jx=0; jx<nz; jx++,jy++) {
38024f910e3SHong Zhang       if (xgarray && ygarray) {
38124f910e3SHong Zhang         xcol = xgarray[xj[*xi + jx]];
38224f910e3SHong Zhang         ycol = ygarray[yj[*yi + jy]];
38324f910e3SHong Zhang       } else {
38424f910e3SHong Zhang         xcol = xj[*xi + jx];
38524f910e3SHong Zhang         ycol = yj[*yi + jy];  /* col index for y */
38624f910e3SHong Zhang       }
38724f910e3SHong Zhang       while (ycol < xcol) {
38824f910e3SHong Zhang         jy++;
38924f910e3SHong Zhang         if (ygarray) {
39024f910e3SHong Zhang           ycol = ygarray[yj[*yi + jy]];
39124f910e3SHong Zhang         } else {
39224f910e3SHong Zhang           ycol = yj[*yi + jy];
39324f910e3SHong Zhang         }
39424f910e3SHong Zhang       }
395e32f2f54SBarry Smith       if (xcol != ycol) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"X matrix entry (%D,%D) is not in Y matrix",row,ycol);
39624f910e3SHong Zhang       x2y[i++] = *yi + jy;
39724f910e3SHong Zhang     }
39824f910e3SHong Zhang     xi++; yi++;
39924f910e3SHong Zhang   }
40024f910e3SHong Zhang   *xtoy = x2y;
40124f910e3SHong Zhang   PetscFunctionReturn(0);
40224f910e3SHong Zhang }
4034325cce7SMatthew G Knepley 
4044325cce7SMatthew G Knepley #undef __FUNCT__
4054325cce7SMatthew G Knepley #define __FUNCT__ "MatChop"
4064325cce7SMatthew G Knepley /*@
4074325cce7SMatthew G Knepley   MatChop - Set all values in the matrix less than the tolerance to zero
4084325cce7SMatthew G Knepley 
4094325cce7SMatthew G Knepley   Input Parameters:
4104325cce7SMatthew G Knepley + A   - The matrix
4114325cce7SMatthew G Knepley - tol - The zero tolerance
4124325cce7SMatthew G Knepley 
4134325cce7SMatthew G Knepley   Output Parameters:
4144325cce7SMatthew G Knepley . A - The chopped matrix
4154325cce7SMatthew G Knepley 
4164325cce7SMatthew G Knepley   Level: intermediate
4174325cce7SMatthew G Knepley 
4184325cce7SMatthew G Knepley .seealso: MatCreate(), MatZeroEntries()
4193fc99919SSatish Balay  @*/
4204325cce7SMatthew G Knepley PetscErrorCode MatChop(Mat A, PetscReal tol)
4214325cce7SMatthew G Knepley {
4224325cce7SMatthew G Knepley   PetscScalar    *newVals;
4234325cce7SMatthew G Knepley   PetscInt       *newCols;
4244325cce7SMatthew G Knepley   PetscInt       rStart, rEnd, numRows, maxRows, r, colMax = 0;
4254325cce7SMatthew G Knepley   PetscErrorCode ierr;
4264325cce7SMatthew G Knepley 
4274325cce7SMatthew G Knepley   PetscFunctionBegin;
4284325cce7SMatthew G Knepley   ierr = MatGetOwnershipRange(A, &rStart, &rEnd);CHKERRQ(ierr);
4294325cce7SMatthew G Knepley   for (r = rStart; r < rEnd; ++r) {
4304325cce7SMatthew G Knepley     PetscInt ncols;
4314325cce7SMatthew G Knepley 
4320298fd71SBarry Smith     ierr   = MatGetRow(A, r, &ncols, NULL, NULL);CHKERRQ(ierr);
4334325cce7SMatthew G Knepley     colMax = PetscMax(colMax, ncols);CHKERRQ(ierr);
4340298fd71SBarry Smith     ierr   = MatRestoreRow(A, r, &ncols, NULL, NULL);CHKERRQ(ierr);
4354325cce7SMatthew G Knepley   }
4364325cce7SMatthew G Knepley   numRows = rEnd - rStart;
4375a4c1302SJed Brown   ierr    = MPI_Allreduce(&numRows, &maxRows, 1, MPIU_INT, MPI_MAX, PetscObjectComm((PetscObject)A));CHKERRQ(ierr);
438*dcca6d9dSJed Brown   ierr    = PetscMalloc2(colMax,&newCols,colMax,&newVals);CHKERRQ(ierr);
4394325cce7SMatthew G Knepley   for (r = rStart; r < rStart+maxRows; ++r) {
4404325cce7SMatthew G Knepley     const PetscScalar *vals;
4414325cce7SMatthew G Knepley     const PetscInt    *cols;
442fad45679SMatthew G. Knepley     PetscInt           ncols, newcols, c;
4434325cce7SMatthew G Knepley 
4444325cce7SMatthew G Knepley     if (r < rEnd) {
4454325cce7SMatthew G Knepley       ierr = MatGetRow(A, r, &ncols, &cols, &vals);CHKERRQ(ierr);
4464325cce7SMatthew G Knepley       for (c = 0; c < ncols; ++c) {
4474325cce7SMatthew G Knepley         newCols[c] = cols[c];
4484325cce7SMatthew G Knepley         newVals[c] = PetscAbsScalar(vals[c]) < tol ? 0.0 : vals[c];
4494325cce7SMatthew G Knepley       }
450fad45679SMatthew G. Knepley       newcols = ncols;
4514325cce7SMatthew G Knepley       ierr = MatRestoreRow(A, r, &ncols, &cols, &vals);CHKERRQ(ierr);
452fad45679SMatthew G. Knepley       ierr = MatSetValues(A, 1, &r, newcols, newCols, newVals, INSERT_VALUES);CHKERRQ(ierr);
4534325cce7SMatthew G Knepley     }
4544325cce7SMatthew G Knepley     ierr = MatAssemblyBegin(A, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
4554325cce7SMatthew G Knepley     ierr = MatAssemblyEnd(A, MAT_FINAL_ASSEMBLY);CHKERRQ(ierr);
4564325cce7SMatthew G Knepley   }
4574325cce7SMatthew G Knepley   ierr = PetscFree2(newCols,newVals);CHKERRQ(ierr);
4584325cce7SMatthew G Knepley   PetscFunctionReturn(0);
4594325cce7SMatthew G Knepley }
460