1 2 /* 3 This is where the abstract matrix operations are defined 4 */ 5 6 #include <petsc/private/matimpl.h> /*I "petscmat.h" I*/ 7 #include <petsc/private/isimpl.h> 8 #include <petsc/private/vecimpl.h> 9 10 /* Logging support */ 11 PetscClassId MAT_CLASSID; 12 PetscClassId MAT_COLORING_CLASSID; 13 PetscClassId MAT_FDCOLORING_CLASSID; 14 PetscClassId MAT_TRANSPOSECOLORING_CLASSID; 15 16 PetscLogEvent MAT_Mult, MAT_Mults, MAT_MultConstrained, MAT_MultAdd, MAT_MultTranspose; 17 PetscLogEvent MAT_MultTransposeConstrained, MAT_MultTransposeAdd, MAT_Solve, MAT_Solves, MAT_SolveAdd, MAT_SolveTranspose, MAT_MatSolve; 18 PetscLogEvent MAT_SolveTransposeAdd, MAT_SOR, MAT_ForwardSolve, MAT_BackwardSolve, MAT_LUFactor, MAT_LUFactorSymbolic; 19 PetscLogEvent MAT_LUFactorNumeric, MAT_CholeskyFactor, MAT_CholeskyFactorSymbolic, MAT_CholeskyFactorNumeric, MAT_ILUFactor; 20 PetscLogEvent MAT_ILUFactorSymbolic, MAT_ICCFactorSymbolic, MAT_Copy, MAT_Convert, MAT_Scale, MAT_AssemblyBegin; 21 PetscLogEvent MAT_AssemblyEnd, MAT_SetValues, MAT_GetValues, MAT_GetRow, MAT_GetRowIJ, MAT_CreateSubMats, MAT_GetOrdering, MAT_RedundantMat, MAT_GetSeqNonzeroStructure; 22 PetscLogEvent MAT_IncreaseOverlap, MAT_Partitioning, MAT_Coarsen, MAT_ZeroEntries, MAT_Load, MAT_View, MAT_AXPY, MAT_FDColoringCreate; 23 PetscLogEvent MAT_FDColoringSetUp, MAT_FDColoringApply,MAT_Transpose,MAT_FDColoringFunction, MAT_CreateSubMat; 24 PetscLogEvent MAT_TransposeColoringCreate; 25 PetscLogEvent MAT_MatMult, MAT_MatMultSymbolic, MAT_MatMultNumeric; 26 PetscLogEvent MAT_PtAP, MAT_PtAPSymbolic, MAT_PtAPNumeric,MAT_RARt, MAT_RARtSymbolic, MAT_RARtNumeric; 27 PetscLogEvent MAT_MatTransposeMult, MAT_MatTransposeMultSymbolic, MAT_MatTransposeMultNumeric; 28 PetscLogEvent MAT_TransposeMatMult, MAT_TransposeMatMultSymbolic, MAT_TransposeMatMultNumeric; 29 PetscLogEvent MAT_MatMatMult, MAT_MatMatMultSymbolic, MAT_MatMatMultNumeric; 30 PetscLogEvent MAT_MultHermitianTranspose,MAT_MultHermitianTransposeAdd; 31 PetscLogEvent MAT_Getsymtranspose, MAT_Getsymtransreduced, MAT_Transpose_SeqAIJ, MAT_GetBrowsOfAcols; 32 PetscLogEvent MAT_GetBrowsOfAocols, MAT_Getlocalmat, MAT_Getlocalmatcondensed, MAT_Seqstompi, MAT_Seqstompinum, MAT_Seqstompisym; 33 PetscLogEvent MAT_Applypapt, MAT_Applypapt_numeric, MAT_Applypapt_symbolic, MAT_GetSequentialNonzeroStructure; 34 PetscLogEvent MAT_GetMultiProcBlock; 35 PetscLogEvent MAT_CUSPCopyToGPU, MAT_CUSPARSECopyToGPU, MAT_SetValuesBatch, MAT_SetValuesBatchI, MAT_SetValuesBatchII, MAT_SetValuesBatchIII, MAT_SetValuesBatchIV; 36 PetscLogEvent MAT_ViennaCLCopyToGPU; 37 PetscLogEvent MAT_Merge,MAT_Residual,MAT_SetRandom; 38 PetscLogEvent MATCOLORING_Apply,MATCOLORING_Comm,MATCOLORING_Local,MATCOLORING_ISCreate,MATCOLORING_SetUp,MATCOLORING_Weights; 39 40 const char *const MatFactorTypes[] = {"NONE","LU","CHOLESKY","ILU","ICC","ILUDT","MatFactorType","MAT_FACTOR_",0}; 41 42 /*@ 43 MatSetRandom - Sets all components of a matrix to random numbers. For sparse matrices that have been preallocated it randomly selects appropriate locations 44 45 Logically Collective on Vec 46 47 Input Parameters: 48 + x - the vector 49 - rctx - the random number context, formed by PetscRandomCreate(), or NULL and 50 it will create one internally. 51 52 Output Parameter: 53 . x - the vector 54 55 Example of Usage: 56 .vb 57 PetscRandomCreate(PETSC_COMM_WORLD,&rctx); 58 MatSetRandom(x,rctx); 59 PetscRandomDestroy(rctx); 60 .ve 61 62 Level: intermediate 63 64 Concepts: matrix^setting to random 65 Concepts: random^matrix 66 67 .seealso: MatZeroEntries(), MatSetValues(), PetscRandomCreate(), PetscRandomDestroy() 68 @*/ 69 PetscErrorCode MatSetRandom(Mat x,PetscRandom rctx) 70 { 71 PetscErrorCode ierr; 72 PetscRandom randObj = NULL; 73 74 PetscFunctionBegin; 75 PetscValidHeaderSpecific(x,MAT_CLASSID,1); 76 if (rctx) PetscValidHeaderSpecific(rctx,PETSC_RANDOM_CLASSID,2); 77 PetscValidType(x,1); 78 79 if (!rctx) { 80 MPI_Comm comm; 81 ierr = PetscObjectGetComm((PetscObject)x,&comm);CHKERRQ(ierr); 82 ierr = PetscRandomCreate(comm,&randObj);CHKERRQ(ierr); 83 ierr = PetscRandomSetFromOptions(randObj);CHKERRQ(ierr); 84 rctx = randObj; 85 } 86 87 ierr = PetscLogEventBegin(MAT_SetRandom,x,rctx,0,0);CHKERRQ(ierr); 88 ierr = (*x->ops->setrandom)(x,rctx);CHKERRQ(ierr); 89 ierr = PetscLogEventEnd(MAT_SetRandom,x,rctx,0,0);CHKERRQ(ierr); 90 91 x->assembled = PETSC_TRUE; 92 ierr = PetscRandomDestroy(&randObj);CHKERRQ(ierr); 93 PetscFunctionReturn(0); 94 } 95 96 /*@ 97 MatFactorGetErrorZeroPivot - returns the pivot value that was determined to be zero and the row it occurred in 98 99 Logically Collective on Mat 100 101 Input Parameters: 102 . mat - the factored matrix 103 104 Output Parameter: 105 + pivot - the pivot value computed 106 - row - the row that the zero pivot occurred. Note that this row must be interpreted carefully due to row reorderings and which processes 107 the share the matrix 108 109 Level: advanced 110 111 Notes: This routine does not work for factorizations done with external packages. 112 This routine should only be called if MatGetFactorError() returns a value of MAT_FACTOR_NUMERIC_ZEROPIVOT 113 114 This can be called on non-factored matrices that come from, for example, matrices used in SOR. 115 116 .seealso: MatZeroEntries(), MatFactor(), MatGetFactor(), MatFactorSymbolic(), MatFactorClearError(), MatFactorGetErrorZeroPivot() 117 @*/ 118 PetscErrorCode MatFactorGetErrorZeroPivot(Mat mat,PetscReal *pivot,PetscInt *row) 119 { 120 PetscFunctionBegin; 121 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 122 *pivot = mat->factorerror_zeropivot_value; 123 *row = mat->factorerror_zeropivot_row; 124 PetscFunctionReturn(0); 125 } 126 127 /*@ 128 MatFactorGetError - gets the error code from a factorization 129 130 Logically Collective on Mat 131 132 Input Parameters: 133 . mat - the factored matrix 134 135 Output Parameter: 136 . err - the error code 137 138 Level: advanced 139 140 Notes: This can be called on non-factored matrices that come from, for example, matrices used in SOR. 141 142 .seealso: MatZeroEntries(), MatFactor(), MatGetFactor(), MatFactorSymbolic(), MatFactorClearError(), MatFactorGetErrorZeroPivot() 143 @*/ 144 PetscErrorCode MatFactorGetError(Mat mat,MatFactorError *err) 145 { 146 PetscFunctionBegin; 147 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 148 *err = mat->factorerrortype; 149 PetscFunctionReturn(0); 150 } 151 152 /*@ 153 MatFactorClearError - clears the error code in a factorization 154 155 Logically Collective on Mat 156 157 Input Parameter: 158 . mat - the factored matrix 159 160 Level: developer 161 162 Notes: This can be called on non-factored matrices that come from, for example, matrices used in SOR. 163 164 .seealso: MatZeroEntries(), MatFactor(), MatGetFactor(), MatFactorSymbolic(), MatFactorGetError(), MatFactorGetErrorZeroPivot() 165 @*/ 166 PetscErrorCode MatFactorClearError(Mat mat) 167 { 168 PetscFunctionBegin; 169 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 170 mat->factorerrortype = MAT_FACTOR_NOERROR; 171 mat->factorerror_zeropivot_value = 0.0; 172 mat->factorerror_zeropivot_row = 0; 173 PetscFunctionReturn(0); 174 } 175 176 static PetscErrorCode MatFindNonzeroRows_Basic(Mat mat,IS *keptrows) 177 { 178 PetscErrorCode ierr; 179 Vec r,l; 180 const PetscScalar *al; 181 PetscInt i,nz,gnz,N,n; 182 183 PetscFunctionBegin; 184 ierr = MatGetSize(mat,&N,NULL);CHKERRQ(ierr); 185 ierr = MatGetLocalSize(mat,&n,NULL);CHKERRQ(ierr); 186 ierr = MatCreateVecs(mat,&r,&l);CHKERRQ(ierr); 187 ierr = VecSet(l,0.0);CHKERRQ(ierr); 188 ierr = VecSetRandom(r,NULL);CHKERRQ(ierr); 189 ierr = MatMult(mat,r,l);CHKERRQ(ierr); 190 ierr = VecGetArrayRead(l,&al);CHKERRQ(ierr); 191 for (i=0,nz=0;i<n;i++) if (al[i] != 0.0) nz++; 192 ierr = MPIU_Allreduce(&nz,&gnz,1,MPIU_INT,MPI_SUM,PetscObjectComm((PetscObject)mat));CHKERRQ(ierr); 193 if (gnz != N) { 194 PetscInt *nzr; 195 ierr = PetscMalloc1(nz,&nzr);CHKERRQ(ierr); 196 if (nz) { for (i=0,nz=0;i<n;i++) if (al[i] != 0.0) nzr[nz++] = i; } 197 ierr = ISCreateGeneral(PetscObjectComm((PetscObject)mat),nz,nzr,PETSC_OWN_POINTER,keptrows);CHKERRQ(ierr); 198 } else *keptrows = NULL; 199 ierr = VecRestoreArrayRead(l,&al);CHKERRQ(ierr); 200 ierr = VecDestroy(&l);CHKERRQ(ierr); 201 ierr = VecDestroy(&r);CHKERRQ(ierr); 202 PetscFunctionReturn(0); 203 } 204 205 /*@ 206 MatFindNonzeroRows - Locate all rows that are not completely zero in the matrix 207 208 Input Parameter: 209 . A - the matrix 210 211 Output Parameter: 212 . keptrows - the rows that are not completely zero 213 214 Notes: keptrows is set to NULL if all rows are nonzero. 215 216 Level: intermediate 217 218 @*/ 219 PetscErrorCode MatFindNonzeroRows(Mat mat,IS *keptrows) 220 { 221 PetscErrorCode ierr; 222 223 PetscFunctionBegin; 224 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 225 PetscValidType(mat,1); 226 PetscValidPointer(keptrows,2); 227 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 228 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 229 if (!mat->ops->findnonzerorows) { 230 ierr = MatFindNonzeroRows_Basic(mat,keptrows);CHKERRQ(ierr); 231 } else { 232 ierr = (*mat->ops->findnonzerorows)(mat,keptrows);CHKERRQ(ierr); 233 } 234 PetscFunctionReturn(0); 235 } 236 237 /*@ 238 MatFindZeroRows - Locate all rows that are completely zero in the matrix 239 240 Input Parameter: 241 . A - the matrix 242 243 Output Parameter: 244 . zerorows - the rows that are completely zero 245 246 Notes: zerorows is set to NULL if no rows are zero. 247 248 Level: intermediate 249 250 @*/ 251 PetscErrorCode MatFindZeroRows(Mat mat,IS *zerorows) 252 { 253 PetscErrorCode ierr; 254 IS keptrows; 255 PetscInt m, n; 256 257 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 258 PetscValidType(mat,1); 259 260 ierr = MatFindNonzeroRows(mat, &keptrows);CHKERRQ(ierr); 261 /* MatFindNonzeroRows sets keptrows to NULL if there are no zero rows. 262 In keeping with this convention, we set zerorows to NULL if there are no zero 263 rows. */ 264 if (keptrows == NULL) { 265 *zerorows = NULL; 266 } else { 267 ierr = MatGetOwnershipRange(mat,&m,&n);CHKERRQ(ierr); 268 ierr = ISComplement(keptrows,m,n,zerorows);CHKERRQ(ierr); 269 ierr = ISDestroy(&keptrows);CHKERRQ(ierr); 270 } 271 PetscFunctionReturn(0); 272 } 273 274 /*@ 275 MatGetDiagonalBlock - Returns the part of the matrix associated with the on-process coupling 276 277 Not Collective 278 279 Input Parameters: 280 . A - the matrix 281 282 Output Parameters: 283 . a - the diagonal part (which is a SEQUENTIAL matrix) 284 285 Notes: see the manual page for MatCreateAIJ() for more information on the "diagonal part" of the matrix. 286 Use caution, as the reference count on the returned matrix is not incremented and it is used as 287 part of the containing MPI Mat's normal operation. 288 289 Level: advanced 290 291 @*/ 292 PetscErrorCode MatGetDiagonalBlock(Mat A,Mat *a) 293 { 294 PetscErrorCode ierr; 295 296 PetscFunctionBegin; 297 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 298 PetscValidType(A,1); 299 PetscValidPointer(a,3); 300 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 301 if (!A->ops->getdiagonalblock) { 302 PetscMPIInt size; 303 ierr = MPI_Comm_size(PetscObjectComm((PetscObject)A),&size);CHKERRQ(ierr); 304 if (size == 1) { 305 *a = A; 306 PetscFunctionReturn(0); 307 } else SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Not coded for this matrix type"); 308 } 309 ierr = (*A->ops->getdiagonalblock)(A,a);CHKERRQ(ierr); 310 PetscFunctionReturn(0); 311 } 312 313 /*@ 314 MatGetTrace - Gets the trace of a matrix. The sum of the diagonal entries. 315 316 Collective on Mat 317 318 Input Parameters: 319 . mat - the matrix 320 321 Output Parameter: 322 . trace - the sum of the diagonal entries 323 324 Level: advanced 325 326 @*/ 327 PetscErrorCode MatGetTrace(Mat mat,PetscScalar *trace) 328 { 329 PetscErrorCode ierr; 330 Vec diag; 331 332 PetscFunctionBegin; 333 ierr = MatCreateVecs(mat,&diag,NULL);CHKERRQ(ierr); 334 ierr = MatGetDiagonal(mat,diag);CHKERRQ(ierr); 335 ierr = VecSum(diag,trace);CHKERRQ(ierr); 336 ierr = VecDestroy(&diag);CHKERRQ(ierr); 337 PetscFunctionReturn(0); 338 } 339 340 /*@ 341 MatRealPart - Zeros out the imaginary part of the matrix 342 343 Logically Collective on Mat 344 345 Input Parameters: 346 . mat - the matrix 347 348 Level: advanced 349 350 351 .seealso: MatImaginaryPart() 352 @*/ 353 PetscErrorCode MatRealPart(Mat mat) 354 { 355 PetscErrorCode ierr; 356 357 PetscFunctionBegin; 358 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 359 PetscValidType(mat,1); 360 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 361 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 362 if (!mat->ops->realpart) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 363 MatCheckPreallocated(mat,1); 364 ierr = (*mat->ops->realpart)(mat);CHKERRQ(ierr); 365 #if defined(PETSC_HAVE_CUSP) 366 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 367 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 368 } 369 #elif defined(PETSC_HAVE_VIENNACL) 370 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 371 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 372 } 373 #elif defined(PETSC_HAVE_VECCUDA) 374 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 375 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 376 } 377 #endif 378 PetscFunctionReturn(0); 379 } 380 381 /*@C 382 MatGetGhosts - Get the global index of all ghost nodes defined by the sparse matrix 383 384 Collective on Mat 385 386 Input Parameter: 387 . mat - the matrix 388 389 Output Parameters: 390 + nghosts - number of ghosts (note for BAIJ matrices there is one ghost for each block) 391 - ghosts - the global indices of the ghost points 392 393 Notes: the nghosts and ghosts are suitable to pass into VecCreateGhost() 394 395 Level: advanced 396 397 @*/ 398 PetscErrorCode MatGetGhosts(Mat mat,PetscInt *nghosts,const PetscInt *ghosts[]) 399 { 400 PetscErrorCode ierr; 401 402 PetscFunctionBegin; 403 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 404 PetscValidType(mat,1); 405 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 406 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 407 if (!mat->ops->getghosts) { 408 if (nghosts) *nghosts = 0; 409 if (ghosts) *ghosts = 0; 410 } else { 411 ierr = (*mat->ops->getghosts)(mat,nghosts,ghosts);CHKERRQ(ierr); 412 } 413 PetscFunctionReturn(0); 414 } 415 416 417 /*@ 418 MatImaginaryPart - Moves the imaginary part of the matrix to the real part and zeros the imaginary part 419 420 Logically Collective on Mat 421 422 Input Parameters: 423 . mat - the matrix 424 425 Level: advanced 426 427 428 .seealso: MatRealPart() 429 @*/ 430 PetscErrorCode MatImaginaryPart(Mat mat) 431 { 432 PetscErrorCode ierr; 433 434 PetscFunctionBegin; 435 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 436 PetscValidType(mat,1); 437 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 438 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 439 if (!mat->ops->imaginarypart) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 440 MatCheckPreallocated(mat,1); 441 ierr = (*mat->ops->imaginarypart)(mat);CHKERRQ(ierr); 442 #if defined(PETSC_HAVE_CUSP) 443 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 444 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 445 } 446 #elif defined(PETSC_HAVE_VIENNACL) 447 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 448 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 449 } 450 #elif defined(PETSC_HAVE_VECCUDA) 451 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 452 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 453 } 454 #endif 455 PetscFunctionReturn(0); 456 } 457 458 /*@ 459 MatMissingDiagonal - Determine if sparse matrix is missing a diagonal entry (or block entry for BAIJ matrices) 460 461 Not Collective 462 463 Input Parameter: 464 . mat - the matrix 465 466 Output Parameters: 467 + missing - is any diagonal missing 468 - dd - first diagonal entry that is missing (optional) on this process 469 470 Level: advanced 471 472 473 .seealso: MatRealPart() 474 @*/ 475 PetscErrorCode MatMissingDiagonal(Mat mat,PetscBool *missing,PetscInt *dd) 476 { 477 PetscErrorCode ierr; 478 479 PetscFunctionBegin; 480 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 481 PetscValidType(mat,1); 482 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 483 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 484 if (!mat->ops->missingdiagonal) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 485 ierr = (*mat->ops->missingdiagonal)(mat,missing,dd);CHKERRQ(ierr); 486 PetscFunctionReturn(0); 487 } 488 489 /*@C 490 MatGetRow - Gets a row of a matrix. You MUST call MatRestoreRow() 491 for each row that you get to ensure that your application does 492 not bleed memory. 493 494 Not Collective 495 496 Input Parameters: 497 + mat - the matrix 498 - row - the row to get 499 500 Output Parameters: 501 + ncols - if not NULL, the number of nonzeros in the row 502 . cols - if not NULL, the column numbers 503 - vals - if not NULL, the values 504 505 Notes: 506 This routine is provided for people who need to have direct access 507 to the structure of a matrix. We hope that we provide enough 508 high-level matrix routines that few users will need it. 509 510 MatGetRow() always returns 0-based column indices, regardless of 511 whether the internal representation is 0-based (default) or 1-based. 512 513 For better efficiency, set cols and/or vals to NULL if you do 514 not wish to extract these quantities. 515 516 The user can only examine the values extracted with MatGetRow(); 517 the values cannot be altered. To change the matrix entries, one 518 must use MatSetValues(). 519 520 You can only have one call to MatGetRow() outstanding for a particular 521 matrix at a time, per processor. MatGetRow() can only obtain rows 522 associated with the given processor, it cannot get rows from the 523 other processors; for that we suggest using MatCreateSubMatrices(), then 524 MatGetRow() on the submatrix. The row index passed to MatGetRows() 525 is in the global number of rows. 526 527 Fortran Notes: 528 The calling sequence from Fortran is 529 .vb 530 MatGetRow(matrix,row,ncols,cols,values,ierr) 531 Mat matrix (input) 532 integer row (input) 533 integer ncols (output) 534 integer cols(maxcols) (output) 535 double precision (or double complex) values(maxcols) output 536 .ve 537 where maxcols >= maximum nonzeros in any row of the matrix. 538 539 540 Caution: 541 Do not try to change the contents of the output arrays (cols and vals). 542 In some cases, this may corrupt the matrix. 543 544 Level: advanced 545 546 Concepts: matrices^row access 547 548 .seealso: MatRestoreRow(), MatSetValues(), MatGetValues(), MatCreateSubMatrices(), MatGetDiagonal() 549 @*/ 550 PetscErrorCode MatGetRow(Mat mat,PetscInt row,PetscInt *ncols,const PetscInt *cols[],const PetscScalar *vals[]) 551 { 552 PetscErrorCode ierr; 553 PetscInt incols; 554 555 PetscFunctionBegin; 556 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 557 PetscValidType(mat,1); 558 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 559 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 560 if (!mat->ops->getrow) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 561 MatCheckPreallocated(mat,1); 562 ierr = PetscLogEventBegin(MAT_GetRow,mat,0,0,0);CHKERRQ(ierr); 563 ierr = (*mat->ops->getrow)(mat,row,&incols,(PetscInt**)cols,(PetscScalar**)vals);CHKERRQ(ierr); 564 if (ncols) *ncols = incols; 565 ierr = PetscLogEventEnd(MAT_GetRow,mat,0,0,0);CHKERRQ(ierr); 566 PetscFunctionReturn(0); 567 } 568 569 /*@ 570 MatConjugate - replaces the matrix values with their complex conjugates 571 572 Logically Collective on Mat 573 574 Input Parameters: 575 . mat - the matrix 576 577 Level: advanced 578 579 .seealso: VecConjugate() 580 @*/ 581 PetscErrorCode MatConjugate(Mat mat) 582 { 583 #if defined(PETSC_USE_COMPLEX) 584 PetscErrorCode ierr; 585 586 PetscFunctionBegin; 587 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 588 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 589 if (!mat->ops->conjugate) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Not provided for this matrix format, send email to petsc-maint@mcs.anl.gov"); 590 ierr = (*mat->ops->conjugate)(mat);CHKERRQ(ierr); 591 #if defined(PETSC_HAVE_CUSP) 592 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 593 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 594 } 595 #elif defined(PETSC_HAVE_VIENNACL) 596 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 597 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 598 } 599 #elif defined(PETSC_HAVE_VECCUDA) 600 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 601 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 602 } 603 #endif 604 PetscFunctionReturn(0); 605 #else 606 return 0; 607 #endif 608 } 609 610 /*@C 611 MatRestoreRow - Frees any temporary space allocated by MatGetRow(). 612 613 Not Collective 614 615 Input Parameters: 616 + mat - the matrix 617 . row - the row to get 618 . ncols, cols - the number of nonzeros and their columns 619 - vals - if nonzero the column values 620 621 Notes: 622 This routine should be called after you have finished examining the entries. 623 624 This routine zeros out ncols, cols, and vals. This is to prevent accidental 625 us of the array after it has been restored. If you pass NULL, it will 626 not zero the pointers. Use of cols or vals after MatRestoreRow is invalid. 627 628 Fortran Notes: 629 The calling sequence from Fortran is 630 .vb 631 MatRestoreRow(matrix,row,ncols,cols,values,ierr) 632 Mat matrix (input) 633 integer row (input) 634 integer ncols (output) 635 integer cols(maxcols) (output) 636 double precision (or double complex) values(maxcols) output 637 .ve 638 Where maxcols >= maximum nonzeros in any row of the matrix. 639 640 In Fortran MatRestoreRow() MUST be called after MatGetRow() 641 before another call to MatGetRow() can be made. 642 643 Level: advanced 644 645 .seealso: MatGetRow() 646 @*/ 647 PetscErrorCode MatRestoreRow(Mat mat,PetscInt row,PetscInt *ncols,const PetscInt *cols[],const PetscScalar *vals[]) 648 { 649 PetscErrorCode ierr; 650 651 PetscFunctionBegin; 652 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 653 if (ncols) PetscValidIntPointer(ncols,3); 654 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 655 if (!mat->ops->restorerow) PetscFunctionReturn(0); 656 ierr = (*mat->ops->restorerow)(mat,row,ncols,(PetscInt **)cols,(PetscScalar **)vals);CHKERRQ(ierr); 657 if (ncols) *ncols = 0; 658 if (cols) *cols = NULL; 659 if (vals) *vals = NULL; 660 PetscFunctionReturn(0); 661 } 662 663 /*@ 664 MatGetRowUpperTriangular - Sets a flag to enable calls to MatGetRow() for matrix in MATSBAIJ format. 665 You should call MatRestoreRowUpperTriangular() after calling MatGetRow/MatRestoreRow() to disable the flag. 666 667 Not Collective 668 669 Input Parameters: 670 + mat - the matrix 671 672 Notes: 673 The flag is to ensure that users are aware of MatGetRow() only provides the upper trianglular part of the row for the matrices in MATSBAIJ format. 674 675 Level: advanced 676 677 Concepts: matrices^row access 678 679 .seealso: MatRestoreRowRowUpperTriangular() 680 @*/ 681 PetscErrorCode MatGetRowUpperTriangular(Mat mat) 682 { 683 PetscErrorCode ierr; 684 685 PetscFunctionBegin; 686 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 687 PetscValidType(mat,1); 688 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 689 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 690 if (!mat->ops->getrowuppertriangular) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 691 MatCheckPreallocated(mat,1); 692 ierr = (*mat->ops->getrowuppertriangular)(mat);CHKERRQ(ierr); 693 PetscFunctionReturn(0); 694 } 695 696 /*@ 697 MatRestoreRowUpperTriangular - Disable calls to MatGetRow() for matrix in MATSBAIJ format. 698 699 Not Collective 700 701 Input Parameters: 702 + mat - the matrix 703 704 Notes: 705 This routine should be called after you have finished MatGetRow/MatRestoreRow(). 706 707 708 Level: advanced 709 710 .seealso: MatGetRowUpperTriangular() 711 @*/ 712 PetscErrorCode MatRestoreRowUpperTriangular(Mat mat) 713 { 714 PetscErrorCode ierr; 715 716 PetscFunctionBegin; 717 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 718 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 719 if (!mat->ops->restorerowuppertriangular) PetscFunctionReturn(0); 720 ierr = (*mat->ops->restorerowuppertriangular)(mat);CHKERRQ(ierr); 721 PetscFunctionReturn(0); 722 } 723 724 /*@C 725 MatSetOptionsPrefix - Sets the prefix used for searching for all 726 Mat options in the database. 727 728 Logically Collective on Mat 729 730 Input Parameter: 731 + A - the Mat context 732 - prefix - the prefix to prepend to all option names 733 734 Notes: 735 A hyphen (-) must NOT be given at the beginning of the prefix name. 736 The first character of all runtime options is AUTOMATICALLY the hyphen. 737 738 Level: advanced 739 740 .keywords: Mat, set, options, prefix, database 741 742 .seealso: MatSetFromOptions() 743 @*/ 744 PetscErrorCode MatSetOptionsPrefix(Mat A,const char prefix[]) 745 { 746 PetscErrorCode ierr; 747 748 PetscFunctionBegin; 749 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 750 ierr = PetscObjectSetOptionsPrefix((PetscObject)A,prefix);CHKERRQ(ierr); 751 PetscFunctionReturn(0); 752 } 753 754 /*@C 755 MatAppendOptionsPrefix - Appends to the prefix used for searching for all 756 Mat options in the database. 757 758 Logically Collective on Mat 759 760 Input Parameters: 761 + A - the Mat context 762 - prefix - the prefix to prepend to all option names 763 764 Notes: 765 A hyphen (-) must NOT be given at the beginning of the prefix name. 766 The first character of all runtime options is AUTOMATICALLY the hyphen. 767 768 Level: advanced 769 770 .keywords: Mat, append, options, prefix, database 771 772 .seealso: MatGetOptionsPrefix() 773 @*/ 774 PetscErrorCode MatAppendOptionsPrefix(Mat A,const char prefix[]) 775 { 776 PetscErrorCode ierr; 777 778 PetscFunctionBegin; 779 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 780 ierr = PetscObjectAppendOptionsPrefix((PetscObject)A,prefix);CHKERRQ(ierr); 781 PetscFunctionReturn(0); 782 } 783 784 /*@C 785 MatGetOptionsPrefix - Sets the prefix used for searching for all 786 Mat options in the database. 787 788 Not Collective 789 790 Input Parameter: 791 . A - the Mat context 792 793 Output Parameter: 794 . prefix - pointer to the prefix string used 795 796 Notes: On the fortran side, the user should pass in a string 'prefix' of 797 sufficient length to hold the prefix. 798 799 Level: advanced 800 801 .keywords: Mat, get, options, prefix, database 802 803 .seealso: MatAppendOptionsPrefix() 804 @*/ 805 PetscErrorCode MatGetOptionsPrefix(Mat A,const char *prefix[]) 806 { 807 PetscErrorCode ierr; 808 809 PetscFunctionBegin; 810 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 811 ierr = PetscObjectGetOptionsPrefix((PetscObject)A,prefix);CHKERRQ(ierr); 812 PetscFunctionReturn(0); 813 } 814 815 /*@ 816 MatSetUp - Sets up the internal matrix data structures for the later use. 817 818 Collective on Mat 819 820 Input Parameters: 821 . A - the Mat context 822 823 Notes: 824 If the user has not set preallocation for this matrix then a default preallocation that is likely to be inefficient is used. 825 826 If a suitable preallocation routine is used, this function does not need to be called. 827 828 See the Performance chapter of the PETSc users manual for how to preallocate matrices 829 830 Level: beginner 831 832 .keywords: Mat, setup 833 834 .seealso: MatCreate(), MatDestroy() 835 @*/ 836 PetscErrorCode MatSetUp(Mat A) 837 { 838 PetscMPIInt size; 839 PetscErrorCode ierr; 840 841 PetscFunctionBegin; 842 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 843 if (!((PetscObject)A)->type_name) { 844 ierr = MPI_Comm_size(PetscObjectComm((PetscObject)A), &size);CHKERRQ(ierr); 845 if (size == 1) { 846 ierr = MatSetType(A, MATSEQAIJ);CHKERRQ(ierr); 847 } else { 848 ierr = MatSetType(A, MATMPIAIJ);CHKERRQ(ierr); 849 } 850 } 851 if (!A->preallocated && A->ops->setup) { 852 ierr = PetscInfo(A,"Warning not preallocating matrix storage\n");CHKERRQ(ierr); 853 ierr = (*A->ops->setup)(A);CHKERRQ(ierr); 854 } 855 ierr = PetscLayoutSetUp(A->rmap);CHKERRQ(ierr); 856 ierr = PetscLayoutSetUp(A->cmap);CHKERRQ(ierr); 857 A->preallocated = PETSC_TRUE; 858 PetscFunctionReturn(0); 859 } 860 861 #if defined(PETSC_HAVE_SAWS) 862 #include <petscviewersaws.h> 863 #endif 864 /*@C 865 MatView - Visualizes a matrix object. 866 867 Collective on Mat 868 869 Input Parameters: 870 + mat - the matrix 871 - viewer - visualization context 872 873 Notes: 874 The available visualization contexts include 875 + PETSC_VIEWER_STDOUT_SELF - for sequential matrices 876 . PETSC_VIEWER_STDOUT_WORLD - for parallel matrices created on PETSC_COMM_WORLD 877 . PETSC_VIEWER_STDOUT_(comm) - for matrices created on MPI communicator comm 878 - PETSC_VIEWER_DRAW_WORLD - graphical display of nonzero structure 879 880 The user can open alternative visualization contexts with 881 + PetscViewerASCIIOpen() - Outputs matrix to a specified file 882 . PetscViewerBinaryOpen() - Outputs matrix in binary to a 883 specified file; corresponding input uses MatLoad() 884 . PetscViewerDrawOpen() - Outputs nonzero matrix structure to 885 an X window display 886 - PetscViewerSocketOpen() - Outputs matrix to Socket viewer. 887 Currently only the sequential dense and AIJ 888 matrix types support the Socket viewer. 889 890 The user can call PetscViewerPushFormat() to specify the output 891 format of ASCII printed objects (when using PETSC_VIEWER_STDOUT_SELF, 892 PETSC_VIEWER_STDOUT_WORLD and PetscViewerASCIIOpen). Available formats include 893 + PETSC_VIEWER_DEFAULT - default, prints matrix contents 894 . PETSC_VIEWER_ASCII_MATLAB - prints matrix contents in Matlab format 895 . PETSC_VIEWER_ASCII_DENSE - prints entire matrix including zeros 896 . PETSC_VIEWER_ASCII_COMMON - prints matrix contents, using a sparse 897 format common among all matrix types 898 . PETSC_VIEWER_ASCII_IMPL - prints matrix contents, using an implementation-specific 899 format (which is in many cases the same as the default) 900 . PETSC_VIEWER_ASCII_INFO - prints basic information about the matrix 901 size and structure (not the matrix entries) 902 . PETSC_VIEWER_ASCII_INFO_DETAIL - prints more detailed information about 903 the matrix structure 904 905 Options Database Keys: 906 + -mat_view ::ascii_info - Prints info on matrix at conclusion of MatAssemblyEnd() 907 . -mat_view ::ascii_info_detail - Prints more detailed info 908 . -mat_view - Prints matrix in ASCII format 909 . -mat_view ::ascii_matlab - Prints matrix in Matlab format 910 . -mat_view draw - PetscDraws nonzero structure of matrix, using MatView() and PetscDrawOpenX(). 911 . -display <name> - Sets display name (default is host) 912 . -draw_pause <sec> - Sets number of seconds to pause after display 913 . -mat_view socket - Sends matrix to socket, can be accessed from Matlab (see Users-Manual: ch_matlab for details) 914 . -viewer_socket_machine <machine> - 915 . -viewer_socket_port <port> - 916 . -mat_view binary - save matrix to file in binary format 917 - -viewer_binary_filename <name> - 918 Level: beginner 919 920 Notes: see the manual page for MatLoad() for the exact format of the binary file when the binary 921 viewer is used. 922 923 See share/petsc/matlab/PetscBinaryRead.m for a Matlab code that can read in the binary file when the binary 924 viewer is used. 925 926 One can use '-mat_view draw -draw_pause -1' to pause the graphical display of matrix nonzero structure. 927 And then use the following mouse functions: 928 left mouse: zoom in 929 middle mouse: zoom out 930 right mouse: continue with the simulation 931 932 Concepts: matrices^viewing 933 Concepts: matrices^plotting 934 Concepts: matrices^printing 935 936 .seealso: PetscViewerPushFormat(), PetscViewerASCIIOpen(), PetscViewerDrawOpen(), 937 PetscViewerSocketOpen(), PetscViewerBinaryOpen(), MatLoad() 938 @*/ 939 PetscErrorCode MatView(Mat mat,PetscViewer viewer) 940 { 941 PetscErrorCode ierr; 942 PetscInt rows,cols,rbs,cbs; 943 PetscBool iascii,ibinary; 944 PetscViewerFormat format; 945 #if defined(PETSC_HAVE_SAWS) 946 PetscBool issaws; 947 #endif 948 949 PetscFunctionBegin; 950 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 951 PetscValidType(mat,1); 952 if (!viewer) { 953 ierr = PetscViewerASCIIGetStdout(PetscObjectComm((PetscObject)mat),&viewer);CHKERRQ(ierr); 954 } 955 PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2); 956 PetscCheckSameComm(mat,1,viewer,2); 957 MatCheckPreallocated(mat,1); 958 ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&ibinary);CHKERRQ(ierr); 959 if (ibinary) { 960 PetscBool mpiio; 961 ierr = PetscViewerBinaryGetUseMPIIO(viewer,&mpiio);CHKERRQ(ierr); 962 if (mpiio) SETERRQ(PetscObjectComm((PetscObject)viewer),PETSC_ERR_SUP,"PETSc matrix viewers do not support using MPI-IO, turn off that flag"); 963 } 964 965 ierr = PetscLogEventBegin(MAT_View,mat,viewer,0,0);CHKERRQ(ierr); 966 ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERASCII,&iascii);CHKERRQ(ierr); 967 ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr); 968 if ((!iascii || (format != PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL)) && mat->factortype) { 969 SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"No viewers for factored matrix except ASCII info or info_detailed"); 970 } 971 972 #if defined(PETSC_HAVE_SAWS) 973 ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERSAWS,&issaws);CHKERRQ(ierr); 974 #endif 975 if (iascii) { 976 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ORDER,"Must call MatAssemblyBegin/End() before viewing matrix"); 977 ierr = PetscObjectPrintClassNamePrefixType((PetscObject)mat,viewer);CHKERRQ(ierr); 978 if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) { 979 ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 980 ierr = MatGetSize(mat,&rows,&cols);CHKERRQ(ierr); 981 ierr = MatGetBlockSizes(mat,&rbs,&cbs);CHKERRQ(ierr); 982 if (rbs != 1 || cbs != 1) { 983 if (rbs != cbs) {ierr = PetscViewerASCIIPrintf(viewer,"rows=%D, cols=%D, rbs=%D, cbs = %D\n",rows,cols,rbs,cbs);CHKERRQ(ierr);} 984 else {ierr = PetscViewerASCIIPrintf(viewer,"rows=%D, cols=%D, bs=%D\n",rows,cols,rbs);CHKERRQ(ierr);} 985 } else { 986 ierr = PetscViewerASCIIPrintf(viewer,"rows=%D, cols=%D\n",rows,cols);CHKERRQ(ierr); 987 } 988 if (mat->factortype) { 989 const MatSolverPackage solver; 990 ierr = MatFactorGetSolverPackage(mat,&solver);CHKERRQ(ierr); 991 ierr = PetscViewerASCIIPrintf(viewer,"package used to perform factorization: %s\n",solver);CHKERRQ(ierr); 992 } 993 if (mat->ops->getinfo) { 994 MatInfo info; 995 ierr = MatGetInfo(mat,MAT_GLOBAL_SUM,&info);CHKERRQ(ierr); 996 ierr = PetscViewerASCIIPrintf(viewer,"total: nonzeros=%.f, allocated nonzeros=%.f\n",info.nz_used,info.nz_allocated);CHKERRQ(ierr); 997 ierr = PetscViewerASCIIPrintf(viewer,"total number of mallocs used during MatSetValues calls =%D\n",(PetscInt)info.mallocs);CHKERRQ(ierr); 998 } 999 if (mat->nullsp) {ierr = PetscViewerASCIIPrintf(viewer," has attached null space\n");CHKERRQ(ierr);} 1000 if (mat->nearnullsp) {ierr = PetscViewerASCIIPrintf(viewer," has attached near null space\n");CHKERRQ(ierr);} 1001 } 1002 #if defined(PETSC_HAVE_SAWS) 1003 } else if (issaws) { 1004 PetscMPIInt rank; 1005 1006 ierr = PetscObjectName((PetscObject)mat);CHKERRQ(ierr); 1007 ierr = MPI_Comm_rank(PETSC_COMM_WORLD,&rank);CHKERRQ(ierr); 1008 if (!((PetscObject)mat)->amsmem && !rank) { 1009 ierr = PetscObjectViewSAWs((PetscObject)mat,viewer);CHKERRQ(ierr); 1010 } 1011 #endif 1012 } 1013 if (mat->ops->view) { 1014 ierr = PetscViewerASCIIPushTab(viewer);CHKERRQ(ierr); 1015 ierr = (*mat->ops->view)(mat,viewer);CHKERRQ(ierr); 1016 ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 1017 } 1018 if (iascii) { 1019 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ORDER,"Must call MatAssemblyBegin/End() before viewing matrix"); 1020 ierr = PetscViewerGetFormat(viewer,&format);CHKERRQ(ierr); 1021 if (format == PETSC_VIEWER_ASCII_INFO || format == PETSC_VIEWER_ASCII_INFO_DETAIL) { 1022 ierr = PetscViewerASCIIPopTab(viewer);CHKERRQ(ierr); 1023 } 1024 } 1025 ierr = PetscLogEventEnd(MAT_View,mat,viewer,0,0);CHKERRQ(ierr); 1026 PetscFunctionReturn(0); 1027 } 1028 1029 #if defined(PETSC_USE_DEBUG) 1030 #include <../src/sys/totalview/tv_data_display.h> 1031 PETSC_UNUSED static int TV_display_type(const struct _p_Mat *mat) 1032 { 1033 TV_add_row("Local rows", "int", &mat->rmap->n); 1034 TV_add_row("Local columns", "int", &mat->cmap->n); 1035 TV_add_row("Global rows", "int", &mat->rmap->N); 1036 TV_add_row("Global columns", "int", &mat->cmap->N); 1037 TV_add_row("Typename", TV_ascii_string_type, ((PetscObject)mat)->type_name); 1038 return TV_format_OK; 1039 } 1040 #endif 1041 1042 /*@C 1043 MatLoad - Loads a matrix that has been stored in binary format 1044 with MatView(). The matrix format is determined from the options database. 1045 Generates a parallel MPI matrix if the communicator has more than one 1046 processor. The default matrix type is AIJ. 1047 1048 Collective on PetscViewer 1049 1050 Input Parameters: 1051 + newmat - the newly loaded matrix, this needs to have been created with MatCreate() 1052 or some related function before a call to MatLoad() 1053 - viewer - binary file viewer, created with PetscViewerBinaryOpen() 1054 1055 Options Database Keys: 1056 Used with block matrix formats (MATSEQBAIJ, ...) to specify 1057 block size 1058 . -matload_block_size <bs> 1059 1060 Level: beginner 1061 1062 Notes: 1063 If the Mat type has not yet been given then MATAIJ is used, call MatSetFromOptions() on the 1064 Mat before calling this routine if you wish to set it from the options database. 1065 1066 MatLoad() automatically loads into the options database any options 1067 given in the file filename.info where filename is the name of the file 1068 that was passed to the PetscViewerBinaryOpen(). The options in the info 1069 file will be ignored if you use the -viewer_binary_skip_info option. 1070 1071 If the type or size of newmat is not set before a call to MatLoad, PETSc 1072 sets the default matrix type AIJ and sets the local and global sizes. 1073 If type and/or size is already set, then the same are used. 1074 1075 In parallel, each processor can load a subset of rows (or the 1076 entire matrix). This routine is especially useful when a large 1077 matrix is stored on disk and only part of it is desired on each 1078 processor. For example, a parallel solver may access only some of 1079 the rows from each processor. The algorithm used here reads 1080 relatively small blocks of data rather than reading the entire 1081 matrix and then subsetting it. 1082 1083 Notes for advanced users: 1084 Most users should not need to know the details of the binary storage 1085 format, since MatLoad() and MatView() completely hide these details. 1086 But for anyone who's interested, the standard binary matrix storage 1087 format is 1088 1089 $ int MAT_FILE_CLASSID 1090 $ int number of rows 1091 $ int number of columns 1092 $ int total number of nonzeros 1093 $ int *number nonzeros in each row 1094 $ int *column indices of all nonzeros (starting index is zero) 1095 $ PetscScalar *values of all nonzeros 1096 1097 PETSc automatically does the byte swapping for 1098 machines that store the bytes reversed, e.g. DEC alpha, freebsd, 1099 linux, Windows and the paragon; thus if you write your own binary 1100 read/write routines you have to swap the bytes; see PetscBinaryRead() 1101 and PetscBinaryWrite() to see how this may be done. 1102 1103 .keywords: matrix, load, binary, input 1104 1105 .seealso: PetscViewerBinaryOpen(), MatView(), VecLoad() 1106 1107 @*/ 1108 PetscErrorCode MatLoad(Mat newmat,PetscViewer viewer) 1109 { 1110 PetscErrorCode ierr; 1111 PetscBool isbinary,flg; 1112 1113 PetscFunctionBegin; 1114 PetscValidHeaderSpecific(newmat,MAT_CLASSID,1); 1115 PetscValidHeaderSpecific(viewer,PETSC_VIEWER_CLASSID,2); 1116 ierr = PetscObjectTypeCompare((PetscObject)viewer,PETSCVIEWERBINARY,&isbinary);CHKERRQ(ierr); 1117 if (!isbinary) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Invalid viewer; open viewer with PetscViewerBinaryOpen()"); 1118 1119 if (!((PetscObject)newmat)->type_name) { 1120 ierr = MatSetType(newmat,MATAIJ);CHKERRQ(ierr); 1121 } 1122 1123 if (!newmat->ops->load) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"MatLoad is not supported for type"); 1124 ierr = PetscLogEventBegin(MAT_Load,viewer,0,0,0);CHKERRQ(ierr); 1125 ierr = (*newmat->ops->load)(newmat,viewer);CHKERRQ(ierr); 1126 ierr = PetscLogEventEnd(MAT_Load,viewer,0,0,0);CHKERRQ(ierr); 1127 1128 flg = PETSC_FALSE; 1129 ierr = PetscOptionsGetBool(((PetscObject)newmat)->options,((PetscObject)newmat)->prefix,"-matload_symmetric",&flg,NULL);CHKERRQ(ierr); 1130 if (flg) { 1131 ierr = MatSetOption(newmat,MAT_SYMMETRIC,PETSC_TRUE);CHKERRQ(ierr); 1132 ierr = MatSetOption(newmat,MAT_SYMMETRY_ETERNAL,PETSC_TRUE);CHKERRQ(ierr); 1133 } 1134 flg = PETSC_FALSE; 1135 ierr = PetscOptionsGetBool(((PetscObject)newmat)->options,((PetscObject)newmat)->prefix,"-matload_spd",&flg,NULL);CHKERRQ(ierr); 1136 if (flg) { 1137 ierr = MatSetOption(newmat,MAT_SPD,PETSC_TRUE);CHKERRQ(ierr); 1138 } 1139 PetscFunctionReturn(0); 1140 } 1141 1142 PetscErrorCode MatDestroy_Redundant(Mat_Redundant **redundant) 1143 { 1144 PetscErrorCode ierr; 1145 Mat_Redundant *redund = *redundant; 1146 PetscInt i; 1147 1148 PetscFunctionBegin; 1149 if (redund){ 1150 if (redund->matseq) { /* via MatCreateSubMatrices() */ 1151 ierr = ISDestroy(&redund->isrow);CHKERRQ(ierr); 1152 ierr = ISDestroy(&redund->iscol);CHKERRQ(ierr); 1153 ierr = MatDestroySubMatrices(1,&redund->matseq);CHKERRQ(ierr); 1154 } else { 1155 ierr = PetscFree2(redund->send_rank,redund->recv_rank);CHKERRQ(ierr); 1156 ierr = PetscFree(redund->sbuf_j);CHKERRQ(ierr); 1157 ierr = PetscFree(redund->sbuf_a);CHKERRQ(ierr); 1158 for (i=0; i<redund->nrecvs; i++) { 1159 ierr = PetscFree(redund->rbuf_j[i]);CHKERRQ(ierr); 1160 ierr = PetscFree(redund->rbuf_a[i]);CHKERRQ(ierr); 1161 } 1162 ierr = PetscFree4(redund->sbuf_nz,redund->rbuf_nz,redund->rbuf_j,redund->rbuf_a);CHKERRQ(ierr); 1163 } 1164 1165 if (redund->subcomm) { 1166 ierr = PetscCommDestroy(&redund->subcomm);CHKERRQ(ierr); 1167 } 1168 ierr = PetscFree(redund);CHKERRQ(ierr); 1169 } 1170 PetscFunctionReturn(0); 1171 } 1172 1173 /*@ 1174 MatDestroy - Frees space taken by a matrix. 1175 1176 Collective on Mat 1177 1178 Input Parameter: 1179 . A - the matrix 1180 1181 Level: beginner 1182 1183 @*/ 1184 PetscErrorCode MatDestroy(Mat *A) 1185 { 1186 PetscErrorCode ierr; 1187 1188 PetscFunctionBegin; 1189 if (!*A) PetscFunctionReturn(0); 1190 PetscValidHeaderSpecific(*A,MAT_CLASSID,1); 1191 if (--((PetscObject)(*A))->refct > 0) {*A = NULL; PetscFunctionReturn(0);} 1192 1193 /* if memory was published with SAWs then destroy it */ 1194 ierr = PetscObjectSAWsViewOff((PetscObject)*A);CHKERRQ(ierr); 1195 if ((*A)->ops->destroy) { 1196 ierr = (*(*A)->ops->destroy)(*A);CHKERRQ(ierr); 1197 } 1198 1199 ierr = PetscFree((*A)->solvertype);CHKERRQ(ierr); 1200 ierr = MatDestroy_Redundant(&(*A)->redundant);CHKERRQ(ierr); 1201 ierr = MatNullSpaceDestroy(&(*A)->nullsp);CHKERRQ(ierr); 1202 ierr = MatNullSpaceDestroy(&(*A)->transnullsp);CHKERRQ(ierr); 1203 ierr = MatNullSpaceDestroy(&(*A)->nearnullsp);CHKERRQ(ierr); 1204 ierr = MatDestroy(&(*A)->schur);CHKERRQ(ierr); 1205 ierr = PetscLayoutDestroy(&(*A)->rmap);CHKERRQ(ierr); 1206 ierr = PetscLayoutDestroy(&(*A)->cmap);CHKERRQ(ierr); 1207 ierr = PetscHeaderDestroy(A);CHKERRQ(ierr); 1208 PetscFunctionReturn(0); 1209 } 1210 1211 /*@C 1212 MatSetValues - Inserts or adds a block of values into a matrix. 1213 These values may be cached, so MatAssemblyBegin() and MatAssemblyEnd() 1214 MUST be called after all calls to MatSetValues() have been completed. 1215 1216 Not Collective 1217 1218 Input Parameters: 1219 + mat - the matrix 1220 . v - a logically two-dimensional array of values 1221 . m, idxm - the number of rows and their global indices 1222 . n, idxn - the number of columns and their global indices 1223 - addv - either ADD_VALUES or INSERT_VALUES, where 1224 ADD_VALUES adds values to any existing entries, and 1225 INSERT_VALUES replaces existing entries with new values 1226 1227 Notes: 1228 If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call MatXXXXSetPreallocation() or 1229 MatSetUp() before using this routine 1230 1231 By default the values, v, are row-oriented. See MatSetOption() for other options. 1232 1233 Calls to MatSetValues() with the INSERT_VALUES and ADD_VALUES 1234 options cannot be mixed without intervening calls to the assembly 1235 routines. 1236 1237 MatSetValues() uses 0-based row and column numbers in Fortran 1238 as well as in C. 1239 1240 Negative indices may be passed in idxm and idxn, these rows and columns are 1241 simply ignored. This allows easily inserting element stiffness matrices 1242 with homogeneous Dirchlet boundary conditions that you don't want represented 1243 in the matrix. 1244 1245 Efficiency Alert: 1246 The routine MatSetValuesBlocked() may offer much better efficiency 1247 for users of block sparse formats (MATSEQBAIJ and MATMPIBAIJ). 1248 1249 Level: beginner 1250 1251 Developer Notes: This is labeled with C so does not automatically generate Fortran stubs and interfaces 1252 because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays. 1253 1254 Concepts: matrices^putting entries in 1255 1256 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal(), 1257 InsertMode, INSERT_VALUES, ADD_VALUES 1258 @*/ 1259 PetscErrorCode MatSetValues(Mat mat,PetscInt m,const PetscInt idxm[],PetscInt n,const PetscInt idxn[],const PetscScalar v[],InsertMode addv) 1260 { 1261 PetscErrorCode ierr; 1262 #if defined(PETSC_USE_DEBUG) 1263 PetscInt i,j; 1264 #endif 1265 1266 PetscFunctionBeginHot; 1267 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1268 PetscValidType(mat,1); 1269 if (!m || !n) PetscFunctionReturn(0); /* no values to insert */ 1270 PetscValidIntPointer(idxm,3); 1271 PetscValidIntPointer(idxn,5); 1272 PetscValidScalarPointer(v,6); 1273 MatCheckPreallocated(mat,1); 1274 if (mat->insertmode == NOT_SET_VALUES) { 1275 mat->insertmode = addv; 1276 } 1277 #if defined(PETSC_USE_DEBUG) 1278 else if (mat->insertmode != addv) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Cannot mix add values and insert values"); 1279 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 1280 if (!mat->ops->setvalues) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 1281 1282 for (i=0; i<m; i++) { 1283 for (j=0; j<n; j++) { 1284 if (mat->erroriffailure && PetscIsInfOrNanScalar(v[i*n+j])) 1285 #if defined(PETSC_USE_COMPLEX) 1286 SETERRQ4(PETSC_COMM_SELF,PETSC_ERR_FP,"Inserting %g+ig at matrix entry (%D,%D)",(double)PetscRealPart(v[i*n+j]),(double)PetscImaginaryPart(v[i*n+j]),idxm[i],idxn[j]); 1287 #else 1288 SETERRQ3(PETSC_COMM_SELF,PETSC_ERR_FP,"Inserting %g at matrix entry (%D,%D)",(double)v[i*n+j],idxm[i],idxn[j]); 1289 #endif 1290 } 1291 } 1292 #endif 1293 1294 if (mat->assembled) { 1295 mat->was_assembled = PETSC_TRUE; 1296 mat->assembled = PETSC_FALSE; 1297 } 1298 ierr = PetscLogEventBegin(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 1299 ierr = (*mat->ops->setvalues)(mat,m,idxm,n,idxn,v,addv);CHKERRQ(ierr); 1300 ierr = PetscLogEventEnd(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 1301 #if defined(PETSC_HAVE_CUSP) 1302 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 1303 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 1304 } 1305 #elif defined(PETSC_HAVE_VIENNACL) 1306 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 1307 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 1308 } 1309 #elif defined(PETSC_HAVE_VECCUDA) 1310 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 1311 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 1312 } 1313 #endif 1314 PetscFunctionReturn(0); 1315 } 1316 1317 1318 /*@ 1319 MatSetValuesRowLocal - Inserts a row (block row for BAIJ matrices) of nonzero 1320 values into a matrix 1321 1322 Not Collective 1323 1324 Input Parameters: 1325 + mat - the matrix 1326 . row - the (block) row to set 1327 - v - a logically two-dimensional array of values 1328 1329 Notes: 1330 By the values, v, are column-oriented (for the block version) and sorted 1331 1332 All the nonzeros in the row must be provided 1333 1334 The matrix must have previously had its column indices set 1335 1336 The row must belong to this process 1337 1338 Level: intermediate 1339 1340 Concepts: matrices^putting entries in 1341 1342 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal(), 1343 InsertMode, INSERT_VALUES, ADD_VALUES, MatSetValues(), MatSetValuesRow(), MatSetLocalToGlobalMapping() 1344 @*/ 1345 PetscErrorCode MatSetValuesRowLocal(Mat mat,PetscInt row,const PetscScalar v[]) 1346 { 1347 PetscErrorCode ierr; 1348 PetscInt globalrow; 1349 1350 PetscFunctionBegin; 1351 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1352 PetscValidType(mat,1); 1353 PetscValidScalarPointer(v,2); 1354 ierr = ISLocalToGlobalMappingApply(mat->rmap->mapping,1,&row,&globalrow);CHKERRQ(ierr); 1355 ierr = MatSetValuesRow(mat,globalrow,v);CHKERRQ(ierr); 1356 #if defined(PETSC_HAVE_CUSP) 1357 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 1358 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 1359 } 1360 #elif defined(PETSC_HAVE_VIENNACL) 1361 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 1362 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 1363 } 1364 #elif defined(PETSC_HAVE_VECCUDA) 1365 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 1366 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 1367 } 1368 #endif 1369 PetscFunctionReturn(0); 1370 } 1371 1372 /*@ 1373 MatSetValuesRow - Inserts a row (block row for BAIJ matrices) of nonzero 1374 values into a matrix 1375 1376 Not Collective 1377 1378 Input Parameters: 1379 + mat - the matrix 1380 . row - the (block) row to set 1381 - v - a logically two-dimensional (column major) array of values for block matrices with blocksize larger than one, otherwise a one dimensional array of values 1382 1383 Notes: 1384 The values, v, are column-oriented for the block version. 1385 1386 All the nonzeros in the row must be provided 1387 1388 THE MATRIX MUST HAVE PREVIOUSLY HAD ITS COLUMN INDICES SET. IT IS RARE THAT THIS ROUTINE IS USED, usually MatSetValues() is used. 1389 1390 The row must belong to this process 1391 1392 Level: advanced 1393 1394 Concepts: matrices^putting entries in 1395 1396 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal(), 1397 InsertMode, INSERT_VALUES, ADD_VALUES, MatSetValues() 1398 @*/ 1399 PetscErrorCode MatSetValuesRow(Mat mat,PetscInt row,const PetscScalar v[]) 1400 { 1401 PetscErrorCode ierr; 1402 1403 PetscFunctionBeginHot; 1404 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1405 PetscValidType(mat,1); 1406 MatCheckPreallocated(mat,1); 1407 PetscValidScalarPointer(v,2); 1408 #if defined(PETSC_USE_DEBUG) 1409 if (mat->insertmode == ADD_VALUES) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Cannot mix add and insert values"); 1410 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 1411 #endif 1412 mat->insertmode = INSERT_VALUES; 1413 1414 if (mat->assembled) { 1415 mat->was_assembled = PETSC_TRUE; 1416 mat->assembled = PETSC_FALSE; 1417 } 1418 ierr = PetscLogEventBegin(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 1419 if (!mat->ops->setvaluesrow) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 1420 ierr = (*mat->ops->setvaluesrow)(mat,row,v);CHKERRQ(ierr); 1421 ierr = PetscLogEventEnd(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 1422 #if defined(PETSC_HAVE_CUSP) 1423 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 1424 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 1425 } 1426 #elif defined(PETSC_HAVE_VIENNACL) 1427 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 1428 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 1429 } 1430 #elif defined(PETSC_HAVE_VECCUDA) 1431 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 1432 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 1433 } 1434 #endif 1435 PetscFunctionReturn(0); 1436 } 1437 1438 /*@ 1439 MatSetValuesStencil - Inserts or adds a block of values into a matrix. 1440 Using structured grid indexing 1441 1442 Not Collective 1443 1444 Input Parameters: 1445 + mat - the matrix 1446 . m - number of rows being entered 1447 . idxm - grid coordinates (and component number when dof > 1) for matrix rows being entered 1448 . n - number of columns being entered 1449 . idxn - grid coordinates (and component number when dof > 1) for matrix columns being entered 1450 . v - a logically two-dimensional array of values 1451 - addv - either ADD_VALUES or INSERT_VALUES, where 1452 ADD_VALUES adds values to any existing entries, and 1453 INSERT_VALUES replaces existing entries with new values 1454 1455 Notes: 1456 By default the values, v, are row-oriented. See MatSetOption() for other options. 1457 1458 Calls to MatSetValuesStencil() with the INSERT_VALUES and ADD_VALUES 1459 options cannot be mixed without intervening calls to the assembly 1460 routines. 1461 1462 The grid coordinates are across the entire grid, not just the local portion 1463 1464 MatSetValuesStencil() uses 0-based row and column numbers in Fortran 1465 as well as in C. 1466 1467 For setting/accessing vector values via array coordinates you can use the DMDAVecGetArray() routine 1468 1469 In order to use this routine you must either obtain the matrix with DMCreateMatrix() 1470 or call MatSetLocalToGlobalMapping() and MatSetStencil() first. 1471 1472 The columns and rows in the stencil passed in MUST be contained within the 1473 ghost region of the given process as set with DMDACreateXXX() or MatSetStencil(). For example, 1474 if you create a DMDA with an overlap of one grid level and on a particular process its first 1475 local nonghost x logical coordinate is 6 (so its first ghost x logical coordinate is 5) the 1476 first i index you can use in your column and row indices in MatSetStencil() is 5. 1477 1478 In Fortran idxm and idxn should be declared as 1479 $ MatStencil idxm(4,m),idxn(4,n) 1480 and the values inserted using 1481 $ idxm(MatStencil_i,1) = i 1482 $ idxm(MatStencil_j,1) = j 1483 $ idxm(MatStencil_k,1) = k 1484 $ idxm(MatStencil_c,1) = c 1485 etc 1486 1487 For periodic boundary conditions use negative indices for values to the left (below 0; that are to be 1488 obtained by wrapping values from right edge). For values to the right of the last entry using that index plus one 1489 etc to obtain values that obtained by wrapping the values from the left edge. This does not work for anything but the 1490 DM_BOUNDARY_PERIODIC boundary type. 1491 1492 For indices that don't mean anything for your case (like the k index when working in 2d) or the c index when you have 1493 a single value per point) you can skip filling those indices. 1494 1495 Inspired by the structured grid interface to the HYPRE package 1496 (http://www.llnl.gov/CASC/hypre) 1497 1498 Efficiency Alert: 1499 The routine MatSetValuesBlockedStencil() may offer much better efficiency 1500 for users of block sparse formats (MATSEQBAIJ and MATMPIBAIJ). 1501 1502 Level: beginner 1503 1504 Concepts: matrices^putting entries in 1505 1506 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal() 1507 MatSetValues(), MatSetValuesBlockedStencil(), MatSetStencil(), DMCreateMatrix(), DMDAVecGetArray(), MatStencil 1508 @*/ 1509 PetscErrorCode MatSetValuesStencil(Mat mat,PetscInt m,const MatStencil idxm[],PetscInt n,const MatStencil idxn[],const PetscScalar v[],InsertMode addv) 1510 { 1511 PetscErrorCode ierr; 1512 PetscInt buf[8192],*bufm=0,*bufn=0,*jdxm,*jdxn; 1513 PetscInt j,i,dim = mat->stencil.dim,*dims = mat->stencil.dims+1,tmp; 1514 PetscInt *starts = mat->stencil.starts,*dxm = (PetscInt*)idxm,*dxn = (PetscInt*)idxn,sdim = dim - (1 - (PetscInt)mat->stencil.noc); 1515 1516 PetscFunctionBegin; 1517 if (!m || !n) PetscFunctionReturn(0); /* no values to insert */ 1518 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1519 PetscValidType(mat,1); 1520 PetscValidIntPointer(idxm,3); 1521 PetscValidIntPointer(idxn,5); 1522 PetscValidScalarPointer(v,6); 1523 1524 if ((m+n) <= (PetscInt)(sizeof(buf)/sizeof(PetscInt))) { 1525 jdxm = buf; jdxn = buf+m; 1526 } else { 1527 ierr = PetscMalloc2(m,&bufm,n,&bufn);CHKERRQ(ierr); 1528 jdxm = bufm; jdxn = bufn; 1529 } 1530 for (i=0; i<m; i++) { 1531 for (j=0; j<3-sdim; j++) dxm++; 1532 tmp = *dxm++ - starts[0]; 1533 for (j=0; j<dim-1; j++) { 1534 if ((*dxm++ - starts[j+1]) < 0 || tmp < 0) tmp = -1; 1535 else tmp = tmp*dims[j] + *(dxm-1) - starts[j+1]; 1536 } 1537 if (mat->stencil.noc) dxm++; 1538 jdxm[i] = tmp; 1539 } 1540 for (i=0; i<n; i++) { 1541 for (j=0; j<3-sdim; j++) dxn++; 1542 tmp = *dxn++ - starts[0]; 1543 for (j=0; j<dim-1; j++) { 1544 if ((*dxn++ - starts[j+1]) < 0 || tmp < 0) tmp = -1; 1545 else tmp = tmp*dims[j] + *(dxn-1) - starts[j+1]; 1546 } 1547 if (mat->stencil.noc) dxn++; 1548 jdxn[i] = tmp; 1549 } 1550 ierr = MatSetValuesLocal(mat,m,jdxm,n,jdxn,v,addv);CHKERRQ(ierr); 1551 ierr = PetscFree2(bufm,bufn);CHKERRQ(ierr); 1552 PetscFunctionReturn(0); 1553 } 1554 1555 /*@ 1556 MatSetValuesBlockedStencil - Inserts or adds a block of values into a matrix. 1557 Using structured grid indexing 1558 1559 Not Collective 1560 1561 Input Parameters: 1562 + mat - the matrix 1563 . m - number of rows being entered 1564 . idxm - grid coordinates for matrix rows being entered 1565 . n - number of columns being entered 1566 . idxn - grid coordinates for matrix columns being entered 1567 . v - a logically two-dimensional array of values 1568 - addv - either ADD_VALUES or INSERT_VALUES, where 1569 ADD_VALUES adds values to any existing entries, and 1570 INSERT_VALUES replaces existing entries with new values 1571 1572 Notes: 1573 By default the values, v, are row-oriented and unsorted. 1574 See MatSetOption() for other options. 1575 1576 Calls to MatSetValuesBlockedStencil() with the INSERT_VALUES and ADD_VALUES 1577 options cannot be mixed without intervening calls to the assembly 1578 routines. 1579 1580 The grid coordinates are across the entire grid, not just the local portion 1581 1582 MatSetValuesBlockedStencil() uses 0-based row and column numbers in Fortran 1583 as well as in C. 1584 1585 For setting/accessing vector values via array coordinates you can use the DMDAVecGetArray() routine 1586 1587 In order to use this routine you must either obtain the matrix with DMCreateMatrix() 1588 or call MatSetBlockSize(), MatSetLocalToGlobalMapping() and MatSetStencil() first. 1589 1590 The columns and rows in the stencil passed in MUST be contained within the 1591 ghost region of the given process as set with DMDACreateXXX() or MatSetStencil(). For example, 1592 if you create a DMDA with an overlap of one grid level and on a particular process its first 1593 local nonghost x logical coordinate is 6 (so its first ghost x logical coordinate is 5) the 1594 first i index you can use in your column and row indices in MatSetStencil() is 5. 1595 1596 In Fortran idxm and idxn should be declared as 1597 $ MatStencil idxm(4,m),idxn(4,n) 1598 and the values inserted using 1599 $ idxm(MatStencil_i,1) = i 1600 $ idxm(MatStencil_j,1) = j 1601 $ idxm(MatStencil_k,1) = k 1602 etc 1603 1604 Negative indices may be passed in idxm and idxn, these rows and columns are 1605 simply ignored. This allows easily inserting element stiffness matrices 1606 with homogeneous Dirchlet boundary conditions that you don't want represented 1607 in the matrix. 1608 1609 Inspired by the structured grid interface to the HYPRE package 1610 (http://www.llnl.gov/CASC/hypre) 1611 1612 Level: beginner 1613 1614 Concepts: matrices^putting entries in 1615 1616 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal() 1617 MatSetValues(), MatSetValuesStencil(), MatSetStencil(), DMCreateMatrix(), DMDAVecGetArray(), MatStencil, 1618 MatSetBlockSize(), MatSetLocalToGlobalMapping() 1619 @*/ 1620 PetscErrorCode MatSetValuesBlockedStencil(Mat mat,PetscInt m,const MatStencil idxm[],PetscInt n,const MatStencil idxn[],const PetscScalar v[],InsertMode addv) 1621 { 1622 PetscErrorCode ierr; 1623 PetscInt buf[8192],*bufm=0,*bufn=0,*jdxm,*jdxn; 1624 PetscInt j,i,dim = mat->stencil.dim,*dims = mat->stencil.dims+1,tmp; 1625 PetscInt *starts = mat->stencil.starts,*dxm = (PetscInt*)idxm,*dxn = (PetscInt*)idxn,sdim = dim - (1 - (PetscInt)mat->stencil.noc); 1626 1627 PetscFunctionBegin; 1628 if (!m || !n) PetscFunctionReturn(0); /* no values to insert */ 1629 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1630 PetscValidType(mat,1); 1631 PetscValidIntPointer(idxm,3); 1632 PetscValidIntPointer(idxn,5); 1633 PetscValidScalarPointer(v,6); 1634 1635 if ((m+n) <= (PetscInt)(sizeof(buf)/sizeof(PetscInt))) { 1636 jdxm = buf; jdxn = buf+m; 1637 } else { 1638 ierr = PetscMalloc2(m,&bufm,n,&bufn);CHKERRQ(ierr); 1639 jdxm = bufm; jdxn = bufn; 1640 } 1641 for (i=0; i<m; i++) { 1642 for (j=0; j<3-sdim; j++) dxm++; 1643 tmp = *dxm++ - starts[0]; 1644 for (j=0; j<sdim-1; j++) { 1645 if ((*dxm++ - starts[j+1]) < 0 || tmp < 0) tmp = -1; 1646 else tmp = tmp*dims[j] + *(dxm-1) - starts[j+1]; 1647 } 1648 dxm++; 1649 jdxm[i] = tmp; 1650 } 1651 for (i=0; i<n; i++) { 1652 for (j=0; j<3-sdim; j++) dxn++; 1653 tmp = *dxn++ - starts[0]; 1654 for (j=0; j<sdim-1; j++) { 1655 if ((*dxn++ - starts[j+1]) < 0 || tmp < 0) tmp = -1; 1656 else tmp = tmp*dims[j] + *(dxn-1) - starts[j+1]; 1657 } 1658 dxn++; 1659 jdxn[i] = tmp; 1660 } 1661 ierr = MatSetValuesBlockedLocal(mat,m,jdxm,n,jdxn,v,addv);CHKERRQ(ierr); 1662 ierr = PetscFree2(bufm,bufn);CHKERRQ(ierr); 1663 #if defined(PETSC_HAVE_CUSP) 1664 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 1665 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 1666 } 1667 #elif defined(PETSC_HAVE_VIENNACL) 1668 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 1669 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 1670 } 1671 #elif defined(PETSC_HAVE_VECCUDA) 1672 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 1673 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 1674 } 1675 #endif 1676 PetscFunctionReturn(0); 1677 } 1678 1679 /*@ 1680 MatSetStencil - Sets the grid information for setting values into a matrix via 1681 MatSetValuesStencil() 1682 1683 Not Collective 1684 1685 Input Parameters: 1686 + mat - the matrix 1687 . dim - dimension of the grid 1, 2, or 3 1688 . dims - number of grid points in x, y, and z direction, including ghost points on your processor 1689 . starts - starting point of ghost nodes on your processor in x, y, and z direction 1690 - dof - number of degrees of freedom per node 1691 1692 1693 Inspired by the structured grid interface to the HYPRE package 1694 (www.llnl.gov/CASC/hyper) 1695 1696 For matrices generated with DMCreateMatrix() this routine is automatically called and so not needed by the 1697 user. 1698 1699 Level: beginner 1700 1701 Concepts: matrices^putting entries in 1702 1703 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal() 1704 MatSetValues(), MatSetValuesBlockedStencil(), MatSetValuesStencil() 1705 @*/ 1706 PetscErrorCode MatSetStencil(Mat mat,PetscInt dim,const PetscInt dims[],const PetscInt starts[],PetscInt dof) 1707 { 1708 PetscInt i; 1709 1710 PetscFunctionBegin; 1711 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1712 PetscValidIntPointer(dims,3); 1713 PetscValidIntPointer(starts,4); 1714 1715 mat->stencil.dim = dim + (dof > 1); 1716 for (i=0; i<dim; i++) { 1717 mat->stencil.dims[i] = dims[dim-i-1]; /* copy the values in backwards */ 1718 mat->stencil.starts[i] = starts[dim-i-1]; 1719 } 1720 mat->stencil.dims[dim] = dof; 1721 mat->stencil.starts[dim] = 0; 1722 mat->stencil.noc = (PetscBool)(dof == 1); 1723 PetscFunctionReturn(0); 1724 } 1725 1726 /*@C 1727 MatSetValuesBlocked - Inserts or adds a block of values into a matrix. 1728 1729 Not Collective 1730 1731 Input Parameters: 1732 + mat - the matrix 1733 . v - a logically two-dimensional array of values 1734 . m, idxm - the number of block rows and their global block indices 1735 . n, idxn - the number of block columns and their global block indices 1736 - addv - either ADD_VALUES or INSERT_VALUES, where 1737 ADD_VALUES adds values to any existing entries, and 1738 INSERT_VALUES replaces existing entries with new values 1739 1740 Notes: 1741 If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call 1742 MatXXXXSetPreallocation() or MatSetUp() before using this routine. 1743 1744 The m and n count the NUMBER of blocks in the row direction and column direction, 1745 NOT the total number of rows/columns; for example, if the block size is 2 and 1746 you are passing in values for rows 2,3,4,5 then m would be 2 (not 4). 1747 The values in idxm would be 1 2; that is the first index for each block divided by 1748 the block size. 1749 1750 Note that you must call MatSetBlockSize() when constructing this matrix (before 1751 preallocating it). 1752 1753 By default the values, v, are row-oriented, so the layout of 1754 v is the same as for MatSetValues(). See MatSetOption() for other options. 1755 1756 Calls to MatSetValuesBlocked() with the INSERT_VALUES and ADD_VALUES 1757 options cannot be mixed without intervening calls to the assembly 1758 routines. 1759 1760 MatSetValuesBlocked() uses 0-based row and column numbers in Fortran 1761 as well as in C. 1762 1763 Negative indices may be passed in idxm and idxn, these rows and columns are 1764 simply ignored. This allows easily inserting element stiffness matrices 1765 with homogeneous Dirchlet boundary conditions that you don't want represented 1766 in the matrix. 1767 1768 Each time an entry is set within a sparse matrix via MatSetValues(), 1769 internal searching must be done to determine where to place the 1770 data in the matrix storage space. By instead inserting blocks of 1771 entries via MatSetValuesBlocked(), the overhead of matrix assembly is 1772 reduced. 1773 1774 Example: 1775 $ Suppose m=n=2 and block size(bs) = 2 The array is 1776 $ 1777 $ 1 2 | 3 4 1778 $ 5 6 | 7 8 1779 $ - - - | - - - 1780 $ 9 10 | 11 12 1781 $ 13 14 | 15 16 1782 $ 1783 $ v[] should be passed in like 1784 $ v[] = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16] 1785 $ 1786 $ If you are not using row oriented storage of v (that is you called MatSetOption(mat,MAT_ROW_ORIENTED,PETSC_FALSE)) then 1787 $ v[] = [1,5,9,13,2,6,10,14,3,7,11,15,4,8,12,16] 1788 1789 Level: intermediate 1790 1791 Concepts: matrices^putting entries in blocked 1792 1793 .seealso: MatSetBlockSize(), MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValues(), MatSetValuesBlockedLocal() 1794 @*/ 1795 PetscErrorCode MatSetValuesBlocked(Mat mat,PetscInt m,const PetscInt idxm[],PetscInt n,const PetscInt idxn[],const PetscScalar v[],InsertMode addv) 1796 { 1797 PetscErrorCode ierr; 1798 1799 PetscFunctionBeginHot; 1800 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1801 PetscValidType(mat,1); 1802 if (!m || !n) PetscFunctionReturn(0); /* no values to insert */ 1803 PetscValidIntPointer(idxm,3); 1804 PetscValidIntPointer(idxn,5); 1805 PetscValidScalarPointer(v,6); 1806 MatCheckPreallocated(mat,1); 1807 if (mat->insertmode == NOT_SET_VALUES) { 1808 mat->insertmode = addv; 1809 } 1810 #if defined(PETSC_USE_DEBUG) 1811 else if (mat->insertmode != addv) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Cannot mix add values and insert values"); 1812 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 1813 if (!mat->ops->setvaluesblocked && !mat->ops->setvalues) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 1814 #endif 1815 1816 if (mat->assembled) { 1817 mat->was_assembled = PETSC_TRUE; 1818 mat->assembled = PETSC_FALSE; 1819 } 1820 ierr = PetscLogEventBegin(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 1821 if (mat->ops->setvaluesblocked) { 1822 ierr = (*mat->ops->setvaluesblocked)(mat,m,idxm,n,idxn,v,addv);CHKERRQ(ierr); 1823 } else { 1824 PetscInt buf[8192],*bufr=0,*bufc=0,*iidxm,*iidxn; 1825 PetscInt i,j,bs,cbs; 1826 ierr = MatGetBlockSizes(mat,&bs,&cbs);CHKERRQ(ierr); 1827 if (m*bs+n*cbs <= (PetscInt)(sizeof(buf)/sizeof(PetscInt))) { 1828 iidxm = buf; iidxn = buf + m*bs; 1829 } else { 1830 ierr = PetscMalloc2(m*bs,&bufr,n*cbs,&bufc);CHKERRQ(ierr); 1831 iidxm = bufr; iidxn = bufc; 1832 } 1833 for (i=0; i<m; i++) { 1834 for (j=0; j<bs; j++) { 1835 iidxm[i*bs+j] = bs*idxm[i] + j; 1836 } 1837 } 1838 for (i=0; i<n; i++) { 1839 for (j=0; j<cbs; j++) { 1840 iidxn[i*cbs+j] = cbs*idxn[i] + j; 1841 } 1842 } 1843 ierr = MatSetValues(mat,m*bs,iidxm,n*cbs,iidxn,v,addv);CHKERRQ(ierr); 1844 ierr = PetscFree2(bufr,bufc);CHKERRQ(ierr); 1845 } 1846 ierr = PetscLogEventEnd(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 1847 #if defined(PETSC_HAVE_CUSP) 1848 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 1849 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 1850 } 1851 #elif defined(PETSC_HAVE_VIENNACL) 1852 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 1853 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 1854 } 1855 #elif defined(PETSC_HAVE_VECCUDA) 1856 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 1857 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 1858 } 1859 #endif 1860 PetscFunctionReturn(0); 1861 } 1862 1863 /*@ 1864 MatGetValues - Gets a block of values from a matrix. 1865 1866 Not Collective; currently only returns a local block 1867 1868 Input Parameters: 1869 + mat - the matrix 1870 . v - a logically two-dimensional array for storing the values 1871 . m, idxm - the number of rows and their global indices 1872 - n, idxn - the number of columns and their global indices 1873 1874 Notes: 1875 The user must allocate space (m*n PetscScalars) for the values, v. 1876 The values, v, are then returned in a row-oriented format, 1877 analogous to that used by default in MatSetValues(). 1878 1879 MatGetValues() uses 0-based row and column numbers in 1880 Fortran as well as in C. 1881 1882 MatGetValues() requires that the matrix has been assembled 1883 with MatAssemblyBegin()/MatAssemblyEnd(). Thus, calls to 1884 MatSetValues() and MatGetValues() CANNOT be made in succession 1885 without intermediate matrix assembly. 1886 1887 Negative row or column indices will be ignored and those locations in v[] will be 1888 left unchanged. 1889 1890 Level: advanced 1891 1892 Concepts: matrices^accessing values 1893 1894 .seealso: MatGetRow(), MatCreateSubMatrices(), MatSetValues() 1895 @*/ 1896 PetscErrorCode MatGetValues(Mat mat,PetscInt m,const PetscInt idxm[],PetscInt n,const PetscInt idxn[],PetscScalar v[]) 1897 { 1898 PetscErrorCode ierr; 1899 1900 PetscFunctionBegin; 1901 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1902 PetscValidType(mat,1); 1903 if (!m || !n) PetscFunctionReturn(0); 1904 PetscValidIntPointer(idxm,3); 1905 PetscValidIntPointer(idxn,5); 1906 PetscValidScalarPointer(v,6); 1907 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 1908 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 1909 if (!mat->ops->getvalues) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 1910 MatCheckPreallocated(mat,1); 1911 1912 ierr = PetscLogEventBegin(MAT_GetValues,mat,0,0,0);CHKERRQ(ierr); 1913 ierr = (*mat->ops->getvalues)(mat,m,idxm,n,idxn,v);CHKERRQ(ierr); 1914 ierr = PetscLogEventEnd(MAT_GetValues,mat,0,0,0);CHKERRQ(ierr); 1915 PetscFunctionReturn(0); 1916 } 1917 1918 /*@ 1919 MatSetValuesBatch - Adds (ADD_VALUES) many blocks of values into a matrix at once. The blocks must all be square and 1920 the same size. Currently, this can only be called once and creates the given matrix. 1921 1922 Not Collective 1923 1924 Input Parameters: 1925 + mat - the matrix 1926 . nb - the number of blocks 1927 . bs - the number of rows (and columns) in each block 1928 . rows - a concatenation of the rows for each block 1929 - v - a concatenation of logically two-dimensional arrays of values 1930 1931 Notes: 1932 In the future, we will extend this routine to handle rectangular blocks, and to allow multiple calls for a given matrix. 1933 1934 Level: advanced 1935 1936 Concepts: matrices^putting entries in 1937 1938 .seealso: MatSetOption(), MatAssemblyBegin(), MatAssemblyEnd(), MatSetValuesBlocked(), MatSetValuesLocal(), 1939 InsertMode, INSERT_VALUES, ADD_VALUES, MatSetValues() 1940 @*/ 1941 PetscErrorCode MatSetValuesBatch(Mat mat, PetscInt nb, PetscInt bs, PetscInt rows[], const PetscScalar v[]) 1942 { 1943 PetscErrorCode ierr; 1944 1945 PetscFunctionBegin; 1946 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 1947 PetscValidType(mat,1); 1948 PetscValidScalarPointer(rows,4); 1949 PetscValidScalarPointer(v,5); 1950 #if defined(PETSC_USE_DEBUG) 1951 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 1952 #endif 1953 1954 ierr = PetscLogEventBegin(MAT_SetValuesBatch,mat,0,0,0);CHKERRQ(ierr); 1955 if (mat->ops->setvaluesbatch) { 1956 ierr = (*mat->ops->setvaluesbatch)(mat,nb,bs,rows,v);CHKERRQ(ierr); 1957 } else { 1958 PetscInt b; 1959 for (b = 0; b < nb; ++b) { 1960 ierr = MatSetValues(mat, bs, &rows[b*bs], bs, &rows[b*bs], &v[b*bs*bs], ADD_VALUES);CHKERRQ(ierr); 1961 } 1962 } 1963 ierr = PetscLogEventEnd(MAT_SetValuesBatch,mat,0,0,0);CHKERRQ(ierr); 1964 PetscFunctionReturn(0); 1965 } 1966 1967 /*@ 1968 MatSetLocalToGlobalMapping - Sets a local-to-global numbering for use by 1969 the routine MatSetValuesLocal() to allow users to insert matrix entries 1970 using a local (per-processor) numbering. 1971 1972 Not Collective 1973 1974 Input Parameters: 1975 + x - the matrix 1976 . rmapping - row mapping created with ISLocalToGlobalMappingCreate() or ISLocalToGlobalMappingCreateIS() 1977 - cmapping - column mapping 1978 1979 Level: intermediate 1980 1981 Concepts: matrices^local to global mapping 1982 Concepts: local to global mapping^for matrices 1983 1984 .seealso: MatAssemblyBegin(), MatAssemblyEnd(), MatSetValues(), MatSetValuesLocal() 1985 @*/ 1986 PetscErrorCode MatSetLocalToGlobalMapping(Mat x,ISLocalToGlobalMapping rmapping,ISLocalToGlobalMapping cmapping) 1987 { 1988 PetscErrorCode ierr; 1989 1990 PetscFunctionBegin; 1991 PetscValidHeaderSpecific(x,MAT_CLASSID,1); 1992 PetscValidType(x,1); 1993 PetscValidHeaderSpecific(rmapping,IS_LTOGM_CLASSID,2); 1994 PetscValidHeaderSpecific(cmapping,IS_LTOGM_CLASSID,3); 1995 1996 if (x->ops->setlocaltoglobalmapping) { 1997 ierr = (*x->ops->setlocaltoglobalmapping)(x,rmapping,cmapping);CHKERRQ(ierr); 1998 } else { 1999 ierr = PetscLayoutSetISLocalToGlobalMapping(x->rmap,rmapping);CHKERRQ(ierr); 2000 ierr = PetscLayoutSetISLocalToGlobalMapping(x->cmap,cmapping);CHKERRQ(ierr); 2001 } 2002 PetscFunctionReturn(0); 2003 } 2004 2005 2006 /*@ 2007 MatGetLocalToGlobalMapping - Gets the local-to-global numbering set by MatSetLocalToGlobalMapping() 2008 2009 Not Collective 2010 2011 Input Parameters: 2012 . A - the matrix 2013 2014 Output Parameters: 2015 + rmapping - row mapping 2016 - cmapping - column mapping 2017 2018 Level: advanced 2019 2020 Concepts: matrices^local to global mapping 2021 Concepts: local to global mapping^for matrices 2022 2023 .seealso: MatSetValuesLocal() 2024 @*/ 2025 PetscErrorCode MatGetLocalToGlobalMapping(Mat A,ISLocalToGlobalMapping *rmapping,ISLocalToGlobalMapping *cmapping) 2026 { 2027 PetscFunctionBegin; 2028 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 2029 PetscValidType(A,1); 2030 if (rmapping) PetscValidPointer(rmapping,2); 2031 if (cmapping) PetscValidPointer(cmapping,3); 2032 if (rmapping) *rmapping = A->rmap->mapping; 2033 if (cmapping) *cmapping = A->cmap->mapping; 2034 PetscFunctionReturn(0); 2035 } 2036 2037 /*@ 2038 MatGetLayouts - Gets the PetscLayout objects for rows and columns 2039 2040 Not Collective 2041 2042 Input Parameters: 2043 . A - the matrix 2044 2045 Output Parameters: 2046 + rmap - row layout 2047 - cmap - column layout 2048 2049 Level: advanced 2050 2051 .seealso: MatCreateVecs(), MatGetLocalToGlobalMapping() 2052 @*/ 2053 PetscErrorCode MatGetLayouts(Mat A,PetscLayout *rmap,PetscLayout *cmap) 2054 { 2055 PetscFunctionBegin; 2056 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 2057 PetscValidType(A,1); 2058 if (rmap) PetscValidPointer(rmap,2); 2059 if (cmap) PetscValidPointer(cmap,3); 2060 if (rmap) *rmap = A->rmap; 2061 if (cmap) *cmap = A->cmap; 2062 PetscFunctionReturn(0); 2063 } 2064 2065 /*@C 2066 MatSetValuesLocal - Inserts or adds values into certain locations of a matrix, 2067 using a local ordering of the nodes. 2068 2069 Not Collective 2070 2071 Input Parameters: 2072 + mat - the matrix 2073 . nrow, irow - number of rows and their local indices 2074 . ncol, icol - number of columns and their local indices 2075 . y - a logically two-dimensional array of values 2076 - addv - either INSERT_VALUES or ADD_VALUES, where 2077 ADD_VALUES adds values to any existing entries, and 2078 INSERT_VALUES replaces existing entries with new values 2079 2080 Notes: 2081 If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call MatXXXXSetPreallocation() or 2082 MatSetUp() before using this routine 2083 2084 If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call MatSetLocalToGlobalMapping() before using this routine 2085 2086 Calls to MatSetValuesLocal() with the INSERT_VALUES and ADD_VALUES 2087 options cannot be mixed without intervening calls to the assembly 2088 routines. 2089 2090 These values may be cached, so MatAssemblyBegin() and MatAssemblyEnd() 2091 MUST be called after all calls to MatSetValuesLocal() have been completed. 2092 2093 Level: intermediate 2094 2095 Concepts: matrices^putting entries in with local numbering 2096 2097 Developer Notes: This is labeled with C so does not automatically generate Fortran stubs and interfaces 2098 because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays. 2099 2100 .seealso: MatAssemblyBegin(), MatAssemblyEnd(), MatSetValues(), MatSetLocalToGlobalMapping(), 2101 MatSetValueLocal() 2102 @*/ 2103 PetscErrorCode MatSetValuesLocal(Mat mat,PetscInt nrow,const PetscInt irow[],PetscInt ncol,const PetscInt icol[],const PetscScalar y[],InsertMode addv) 2104 { 2105 PetscErrorCode ierr; 2106 2107 PetscFunctionBeginHot; 2108 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2109 PetscValidType(mat,1); 2110 MatCheckPreallocated(mat,1); 2111 if (!nrow || !ncol) PetscFunctionReturn(0); /* no values to insert */ 2112 PetscValidIntPointer(irow,3); 2113 PetscValidIntPointer(icol,5); 2114 PetscValidScalarPointer(y,6); 2115 if (mat->insertmode == NOT_SET_VALUES) { 2116 mat->insertmode = addv; 2117 } 2118 #if defined(PETSC_USE_DEBUG) 2119 else if (mat->insertmode != addv) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Cannot mix add values and insert values"); 2120 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2121 if (!mat->ops->setvalueslocal && !mat->ops->setvalues) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 2122 #endif 2123 2124 if (mat->assembled) { 2125 mat->was_assembled = PETSC_TRUE; 2126 mat->assembled = PETSC_FALSE; 2127 } 2128 ierr = PetscLogEventBegin(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 2129 if (mat->ops->setvalueslocal) { 2130 ierr = (*mat->ops->setvalueslocal)(mat,nrow,irow,ncol,icol,y,addv);CHKERRQ(ierr); 2131 } else { 2132 PetscInt buf[8192],*bufr=0,*bufc=0,*irowm,*icolm; 2133 if ((nrow+ncol) <= (PetscInt)(sizeof(buf)/sizeof(PetscInt))) { 2134 irowm = buf; icolm = buf+nrow; 2135 } else { 2136 ierr = PetscMalloc2(nrow,&bufr,ncol,&bufc);CHKERRQ(ierr); 2137 irowm = bufr; icolm = bufc; 2138 } 2139 ierr = ISLocalToGlobalMappingApply(mat->rmap->mapping,nrow,irow,irowm);CHKERRQ(ierr); 2140 ierr = ISLocalToGlobalMappingApply(mat->cmap->mapping,ncol,icol,icolm);CHKERRQ(ierr); 2141 ierr = MatSetValues(mat,nrow,irowm,ncol,icolm,y,addv);CHKERRQ(ierr); 2142 ierr = PetscFree2(bufr,bufc);CHKERRQ(ierr); 2143 } 2144 ierr = PetscLogEventEnd(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 2145 #if defined(PETSC_HAVE_CUSP) 2146 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 2147 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 2148 } 2149 #elif defined(PETSC_HAVE_VIENNACL) 2150 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 2151 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 2152 } 2153 #elif defined(PETSC_HAVE_VECCUDA) 2154 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 2155 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 2156 } 2157 #endif 2158 PetscFunctionReturn(0); 2159 } 2160 2161 /*@C 2162 MatSetValuesBlockedLocal - Inserts or adds values into certain locations of a matrix, 2163 using a local ordering of the nodes a block at a time. 2164 2165 Not Collective 2166 2167 Input Parameters: 2168 + x - the matrix 2169 . nrow, irow - number of rows and their local indices 2170 . ncol, icol - number of columns and their local indices 2171 . y - a logically two-dimensional array of values 2172 - addv - either INSERT_VALUES or ADD_VALUES, where 2173 ADD_VALUES adds values to any existing entries, and 2174 INSERT_VALUES replaces existing entries with new values 2175 2176 Notes: 2177 If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call MatXXXXSetPreallocation() or 2178 MatSetUp() before using this routine 2179 2180 If you create the matrix yourself (that is not with a call to DMCreateMatrix()) then you MUST call MatSetBlockSize() and MatSetLocalToGlobalMapping() 2181 before using this routineBefore calling MatSetValuesLocal(), the user must first set the 2182 2183 Calls to MatSetValuesBlockedLocal() with the INSERT_VALUES and ADD_VALUES 2184 options cannot be mixed without intervening calls to the assembly 2185 routines. 2186 2187 These values may be cached, so MatAssemblyBegin() and MatAssemblyEnd() 2188 MUST be called after all calls to MatSetValuesBlockedLocal() have been completed. 2189 2190 Level: intermediate 2191 2192 Developer Notes: This is labeled with C so does not automatically generate Fortran stubs and interfaces 2193 because it requires multiple Fortran interfaces depending on which arguments are scalar or arrays. 2194 2195 Concepts: matrices^putting blocked values in with local numbering 2196 2197 .seealso: MatSetBlockSize(), MatSetLocalToGlobalMapping(), MatAssemblyBegin(), MatAssemblyEnd(), 2198 MatSetValuesLocal(), MatSetValuesBlocked() 2199 @*/ 2200 PetscErrorCode MatSetValuesBlockedLocal(Mat mat,PetscInt nrow,const PetscInt irow[],PetscInt ncol,const PetscInt icol[],const PetscScalar y[],InsertMode addv) 2201 { 2202 PetscErrorCode ierr; 2203 2204 PetscFunctionBeginHot; 2205 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2206 PetscValidType(mat,1); 2207 MatCheckPreallocated(mat,1); 2208 if (!nrow || !ncol) PetscFunctionReturn(0); /* no values to insert */ 2209 PetscValidIntPointer(irow,3); 2210 PetscValidIntPointer(icol,5); 2211 PetscValidScalarPointer(y,6); 2212 if (mat->insertmode == NOT_SET_VALUES) { 2213 mat->insertmode = addv; 2214 } 2215 #if defined(PETSC_USE_DEBUG) 2216 else if (mat->insertmode != addv) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Cannot mix add values and insert values"); 2217 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2218 if (!mat->ops->setvaluesblockedlocal && !mat->ops->setvaluesblocked && !mat->ops->setvalueslocal && !mat->ops->setvalues) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 2219 #endif 2220 2221 if (mat->assembled) { 2222 mat->was_assembled = PETSC_TRUE; 2223 mat->assembled = PETSC_FALSE; 2224 } 2225 ierr = PetscLogEventBegin(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 2226 if (mat->ops->setvaluesblockedlocal) { 2227 ierr = (*mat->ops->setvaluesblockedlocal)(mat,nrow,irow,ncol,icol,y,addv);CHKERRQ(ierr); 2228 } else { 2229 PetscInt buf[8192],*bufr=0,*bufc=0,*irowm,*icolm; 2230 if ((nrow+ncol) <= (PetscInt)(sizeof(buf)/sizeof(PetscInt))) { 2231 irowm = buf; icolm = buf + nrow; 2232 } else { 2233 ierr = PetscMalloc2(nrow,&bufr,ncol,&bufc);CHKERRQ(ierr); 2234 irowm = bufr; icolm = bufc; 2235 } 2236 ierr = ISLocalToGlobalMappingApplyBlock(mat->rmap->mapping,nrow,irow,irowm);CHKERRQ(ierr); 2237 ierr = ISLocalToGlobalMappingApplyBlock(mat->cmap->mapping,ncol,icol,icolm);CHKERRQ(ierr); 2238 ierr = MatSetValuesBlocked(mat,nrow,irowm,ncol,icolm,y,addv);CHKERRQ(ierr); 2239 ierr = PetscFree2(bufr,bufc);CHKERRQ(ierr); 2240 } 2241 ierr = PetscLogEventEnd(MAT_SetValues,mat,0,0,0);CHKERRQ(ierr); 2242 #if defined(PETSC_HAVE_CUSP) 2243 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 2244 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 2245 } 2246 #elif defined(PETSC_HAVE_VIENNACL) 2247 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 2248 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 2249 } 2250 #elif defined(PETSC_HAVE_VECCUDA) 2251 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 2252 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 2253 } 2254 #endif 2255 PetscFunctionReturn(0); 2256 } 2257 2258 /*@ 2259 MatMultDiagonalBlock - Computes the matrix-vector product, y = Dx. Where D is defined by the inode or block structure of the diagonal 2260 2261 Collective on Mat and Vec 2262 2263 Input Parameters: 2264 + mat - the matrix 2265 - x - the vector to be multiplied 2266 2267 Output Parameters: 2268 . y - the result 2269 2270 Notes: 2271 The vectors x and y cannot be the same. I.e., one cannot 2272 call MatMult(A,y,y). 2273 2274 Level: developer 2275 2276 Concepts: matrix-vector product 2277 2278 .seealso: MatMultTranspose(), MatMultAdd(), MatMultTransposeAdd() 2279 @*/ 2280 PetscErrorCode MatMultDiagonalBlock(Mat mat,Vec x,Vec y) 2281 { 2282 PetscErrorCode ierr; 2283 2284 PetscFunctionBegin; 2285 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2286 PetscValidType(mat,1); 2287 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 2288 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 2289 2290 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2291 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2292 if (x == y) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"x and y must be different vectors"); 2293 MatCheckPreallocated(mat,1); 2294 2295 if (!mat->ops->multdiagonalblock) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"This matrix type does not have a multiply defined"); 2296 ierr = (*mat->ops->multdiagonalblock)(mat,x,y);CHKERRQ(ierr); 2297 ierr = PetscObjectStateIncrease((PetscObject)y);CHKERRQ(ierr); 2298 PetscFunctionReturn(0); 2299 } 2300 2301 /* --------------------------------------------------------*/ 2302 /*@ 2303 MatMult - Computes the matrix-vector product, y = Ax. 2304 2305 Neighbor-wise Collective on Mat and Vec 2306 2307 Input Parameters: 2308 + mat - the matrix 2309 - x - the vector to be multiplied 2310 2311 Output Parameters: 2312 . y - the result 2313 2314 Notes: 2315 The vectors x and y cannot be the same. I.e., one cannot 2316 call MatMult(A,y,y). 2317 2318 Level: beginner 2319 2320 Concepts: matrix-vector product 2321 2322 .seealso: MatMultTranspose(), MatMultAdd(), MatMultTransposeAdd() 2323 @*/ 2324 PetscErrorCode MatMult(Mat mat,Vec x,Vec y) 2325 { 2326 PetscErrorCode ierr; 2327 2328 PetscFunctionBegin; 2329 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2330 PetscValidType(mat,1); 2331 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 2332 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 2333 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2334 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2335 if (x == y) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"x and y must be different vectors"); 2336 #if !defined(PETSC_HAVE_CONSTRAINTS) 2337 if (mat->cmap->N != x->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 2338 if (mat->rmap->N != y->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->rmap->N,y->map->N); 2339 if (mat->rmap->n != y->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: local dim %D %D",mat->rmap->n,y->map->n); 2340 #endif 2341 VecLocked(y,3); 2342 if (mat->erroriffailure) {ierr = VecValidValues(x,2,PETSC_TRUE);CHKERRQ(ierr);} 2343 MatCheckPreallocated(mat,1); 2344 2345 ierr = VecLockPush(x);CHKERRQ(ierr); 2346 if (!mat->ops->mult) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"This matrix type does not have a multiply defined"); 2347 ierr = PetscLogEventBegin(MAT_Mult,mat,x,y,0);CHKERRQ(ierr); 2348 ierr = (*mat->ops->mult)(mat,x,y);CHKERRQ(ierr); 2349 ierr = PetscLogEventEnd(MAT_Mult,mat,x,y,0);CHKERRQ(ierr); 2350 if (mat->erroriffailure) {ierr = VecValidValues(y,3,PETSC_FALSE);CHKERRQ(ierr);} 2351 ierr = VecLockPop(x);CHKERRQ(ierr); 2352 PetscFunctionReturn(0); 2353 } 2354 2355 /*@ 2356 MatMultTranspose - Computes matrix transpose times a vector. 2357 2358 Neighbor-wise Collective on Mat and Vec 2359 2360 Input Parameters: 2361 + mat - the matrix 2362 - x - the vector to be multilplied 2363 2364 Output Parameters: 2365 . y - the result 2366 2367 Notes: 2368 The vectors x and y cannot be the same. I.e., one cannot 2369 call MatMultTranspose(A,y,y). 2370 2371 For complex numbers this does NOT compute the Hermitian (complex conjugate) transpose multiple, 2372 use MatMultHermitianTranspose() 2373 2374 Level: beginner 2375 2376 Concepts: matrix vector product^transpose 2377 2378 .seealso: MatMult(), MatMultAdd(), MatMultTransposeAdd(), MatMultHermitianTranspose(), MatTranspose() 2379 @*/ 2380 PetscErrorCode MatMultTranspose(Mat mat,Vec x,Vec y) 2381 { 2382 PetscErrorCode ierr; 2383 2384 PetscFunctionBegin; 2385 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2386 PetscValidType(mat,1); 2387 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 2388 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 2389 2390 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2391 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2392 if (x == y) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"x and y must be different vectors"); 2393 #if !defined(PETSC_HAVE_CONSTRAINTS) 2394 if (mat->rmap->N != x->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->rmap->N,x->map->N); 2395 if (mat->cmap->N != y->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->cmap->N,y->map->N); 2396 #endif 2397 if (mat->erroriffailure) {ierr = VecValidValues(x,2,PETSC_TRUE);CHKERRQ(ierr);} 2398 MatCheckPreallocated(mat,1); 2399 2400 if (!mat->ops->multtranspose) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"This matrix type does not have a multiply tranpose defined"); 2401 ierr = PetscLogEventBegin(MAT_MultTranspose,mat,x,y,0);CHKERRQ(ierr); 2402 ierr = VecLockPush(x);CHKERRQ(ierr); 2403 ierr = (*mat->ops->multtranspose)(mat,x,y);CHKERRQ(ierr); 2404 ierr = VecLockPop(x);CHKERRQ(ierr); 2405 ierr = PetscLogEventEnd(MAT_MultTranspose,mat,x,y,0);CHKERRQ(ierr); 2406 ierr = PetscObjectStateIncrease((PetscObject)y);CHKERRQ(ierr); 2407 if (mat->erroriffailure) {ierr = VecValidValues(y,3,PETSC_FALSE);CHKERRQ(ierr);} 2408 PetscFunctionReturn(0); 2409 } 2410 2411 /*@ 2412 MatMultHermitianTranspose - Computes matrix Hermitian transpose times a vector. 2413 2414 Neighbor-wise Collective on Mat and Vec 2415 2416 Input Parameters: 2417 + mat - the matrix 2418 - x - the vector to be multilplied 2419 2420 Output Parameters: 2421 . y - the result 2422 2423 Notes: 2424 The vectors x and y cannot be the same. I.e., one cannot 2425 call MatMultHermitianTranspose(A,y,y). 2426 2427 Also called the conjugate transpose, complex conjugate transpose, or adjoint. 2428 2429 For real numbers MatMultTranspose() and MatMultHermitianTranspose() are identical. 2430 2431 Level: beginner 2432 2433 Concepts: matrix vector product^transpose 2434 2435 .seealso: MatMult(), MatMultAdd(), MatMultHermitianTransposeAdd(), MatMultTranspose() 2436 @*/ 2437 PetscErrorCode MatMultHermitianTranspose(Mat mat,Vec x,Vec y) 2438 { 2439 PetscErrorCode ierr; 2440 Vec w; 2441 2442 PetscFunctionBegin; 2443 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2444 PetscValidType(mat,1); 2445 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 2446 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 2447 2448 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2449 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2450 if (x == y) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"x and y must be different vectors"); 2451 #if !defined(PETSC_HAVE_CONSTRAINTS) 2452 if (mat->rmap->N != x->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->rmap->N,x->map->N); 2453 if (mat->cmap->N != y->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->cmap->N,y->map->N); 2454 #endif 2455 MatCheckPreallocated(mat,1); 2456 2457 ierr = PetscLogEventBegin(MAT_MultHermitianTranspose,mat,x,y,0);CHKERRQ(ierr); 2458 if (mat->ops->multhermitiantranspose) { 2459 ierr = VecLockPush(x);CHKERRQ(ierr); 2460 ierr = (*mat->ops->multhermitiantranspose)(mat,x,y);CHKERRQ(ierr); 2461 ierr = VecLockPop(x);CHKERRQ(ierr); 2462 } else { 2463 ierr = VecDuplicate(x,&w);CHKERRQ(ierr); 2464 ierr = VecCopy(x,w);CHKERRQ(ierr); 2465 ierr = VecConjugate(w);CHKERRQ(ierr); 2466 ierr = MatMultTranspose(mat,w,y);CHKERRQ(ierr); 2467 ierr = VecDestroy(&w);CHKERRQ(ierr); 2468 ierr = VecConjugate(y);CHKERRQ(ierr); 2469 } 2470 ierr = PetscLogEventEnd(MAT_MultHermitianTranspose,mat,x,y,0);CHKERRQ(ierr); 2471 ierr = PetscObjectStateIncrease((PetscObject)y);CHKERRQ(ierr); 2472 PetscFunctionReturn(0); 2473 } 2474 2475 /*@ 2476 MatMultAdd - Computes v3 = v2 + A * v1. 2477 2478 Neighbor-wise Collective on Mat and Vec 2479 2480 Input Parameters: 2481 + mat - the matrix 2482 - v1, v2 - the vectors 2483 2484 Output Parameters: 2485 . v3 - the result 2486 2487 Notes: 2488 The vectors v1 and v3 cannot be the same. I.e., one cannot 2489 call MatMultAdd(A,v1,v2,v1). 2490 2491 Level: beginner 2492 2493 Concepts: matrix vector product^addition 2494 2495 .seealso: MatMultTranspose(), MatMult(), MatMultTransposeAdd() 2496 @*/ 2497 PetscErrorCode MatMultAdd(Mat mat,Vec v1,Vec v2,Vec v3) 2498 { 2499 PetscErrorCode ierr; 2500 2501 PetscFunctionBegin; 2502 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2503 PetscValidType(mat,1); 2504 PetscValidHeaderSpecific(v1,VEC_CLASSID,2); 2505 PetscValidHeaderSpecific(v2,VEC_CLASSID,3); 2506 PetscValidHeaderSpecific(v3,VEC_CLASSID,4); 2507 2508 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2509 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2510 if (mat->cmap->N != v1->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v1: global dim %D %D",mat->cmap->N,v1->map->N); 2511 /* if (mat->rmap->N != v2->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec v2: global dim %D %D",mat->rmap->N,v2->map->N); 2512 if (mat->rmap->N != v3->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec v3: global dim %D %D",mat->rmap->N,v3->map->N); */ 2513 if (mat->rmap->n != v3->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec v3: local dim %D %D",mat->rmap->n,v3->map->n); 2514 if (mat->rmap->n != v2->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec v2: local dim %D %D",mat->rmap->n,v2->map->n); 2515 if (v1 == v3) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"v1 and v3 must be different vectors"); 2516 MatCheckPreallocated(mat,1); 2517 2518 if (!mat->ops->multadd) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"No MatMultAdd() for matrix type '%s'",((PetscObject)mat)->type_name); 2519 ierr = PetscLogEventBegin(MAT_MultAdd,mat,v1,v2,v3);CHKERRQ(ierr); 2520 ierr = VecLockPush(v1);CHKERRQ(ierr); 2521 ierr = (*mat->ops->multadd)(mat,v1,v2,v3);CHKERRQ(ierr); 2522 ierr = VecLockPop(v1);CHKERRQ(ierr); 2523 ierr = PetscLogEventEnd(MAT_MultAdd,mat,v1,v2,v3);CHKERRQ(ierr); 2524 ierr = PetscObjectStateIncrease((PetscObject)v3);CHKERRQ(ierr); 2525 PetscFunctionReturn(0); 2526 } 2527 2528 /*@ 2529 MatMultTransposeAdd - Computes v3 = v2 + A' * v1. 2530 2531 Neighbor-wise Collective on Mat and Vec 2532 2533 Input Parameters: 2534 + mat - the matrix 2535 - v1, v2 - the vectors 2536 2537 Output Parameters: 2538 . v3 - the result 2539 2540 Notes: 2541 The vectors v1 and v3 cannot be the same. I.e., one cannot 2542 call MatMultTransposeAdd(A,v1,v2,v1). 2543 2544 Level: beginner 2545 2546 Concepts: matrix vector product^transpose and addition 2547 2548 .seealso: MatMultTranspose(), MatMultAdd(), MatMult() 2549 @*/ 2550 PetscErrorCode MatMultTransposeAdd(Mat mat,Vec v1,Vec v2,Vec v3) 2551 { 2552 PetscErrorCode ierr; 2553 2554 PetscFunctionBegin; 2555 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2556 PetscValidType(mat,1); 2557 PetscValidHeaderSpecific(v1,VEC_CLASSID,2); 2558 PetscValidHeaderSpecific(v2,VEC_CLASSID,3); 2559 PetscValidHeaderSpecific(v3,VEC_CLASSID,4); 2560 2561 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2562 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2563 if (!mat->ops->multtransposeadd) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 2564 if (v1 == v3) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"v1 and v3 must be different vectors"); 2565 if (mat->rmap->N != v1->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v1: global dim %D %D",mat->rmap->N,v1->map->N); 2566 if (mat->cmap->N != v2->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v2: global dim %D %D",mat->cmap->N,v2->map->N); 2567 if (mat->cmap->N != v3->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v3: global dim %D %D",mat->cmap->N,v3->map->N); 2568 MatCheckPreallocated(mat,1); 2569 2570 ierr = PetscLogEventBegin(MAT_MultTransposeAdd,mat,v1,v2,v3);CHKERRQ(ierr); 2571 ierr = VecLockPush(v1);CHKERRQ(ierr); 2572 ierr = (*mat->ops->multtransposeadd)(mat,v1,v2,v3);CHKERRQ(ierr); 2573 ierr = VecLockPop(v1);CHKERRQ(ierr); 2574 ierr = PetscLogEventEnd(MAT_MultTransposeAdd,mat,v1,v2,v3);CHKERRQ(ierr); 2575 ierr = PetscObjectStateIncrease((PetscObject)v3);CHKERRQ(ierr); 2576 PetscFunctionReturn(0); 2577 } 2578 2579 /*@ 2580 MatMultHermitianTransposeAdd - Computes v3 = v2 + A^H * v1. 2581 2582 Neighbor-wise Collective on Mat and Vec 2583 2584 Input Parameters: 2585 + mat - the matrix 2586 - v1, v2 - the vectors 2587 2588 Output Parameters: 2589 . v3 - the result 2590 2591 Notes: 2592 The vectors v1 and v3 cannot be the same. I.e., one cannot 2593 call MatMultHermitianTransposeAdd(A,v1,v2,v1). 2594 2595 Level: beginner 2596 2597 Concepts: matrix vector product^transpose and addition 2598 2599 .seealso: MatMultHermitianTranspose(), MatMultTranspose(), MatMultAdd(), MatMult() 2600 @*/ 2601 PetscErrorCode MatMultHermitianTransposeAdd(Mat mat,Vec v1,Vec v2,Vec v3) 2602 { 2603 PetscErrorCode ierr; 2604 2605 PetscFunctionBegin; 2606 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2607 PetscValidType(mat,1); 2608 PetscValidHeaderSpecific(v1,VEC_CLASSID,2); 2609 PetscValidHeaderSpecific(v2,VEC_CLASSID,3); 2610 PetscValidHeaderSpecific(v3,VEC_CLASSID,4); 2611 2612 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2613 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2614 if (v1 == v3) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"v1 and v3 must be different vectors"); 2615 if (mat->rmap->N != v1->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v1: global dim %D %D",mat->rmap->N,v1->map->N); 2616 if (mat->cmap->N != v2->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v2: global dim %D %D",mat->cmap->N,v2->map->N); 2617 if (mat->cmap->N != v3->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec v3: global dim %D %D",mat->cmap->N,v3->map->N); 2618 MatCheckPreallocated(mat,1); 2619 2620 ierr = PetscLogEventBegin(MAT_MultHermitianTransposeAdd,mat,v1,v2,v3);CHKERRQ(ierr); 2621 ierr = VecLockPush(v1);CHKERRQ(ierr); 2622 if (mat->ops->multhermitiantransposeadd) { 2623 ierr = (*mat->ops->multhermitiantransposeadd)(mat,v1,v2,v3);CHKERRQ(ierr); 2624 } else { 2625 Vec w,z; 2626 ierr = VecDuplicate(v1,&w);CHKERRQ(ierr); 2627 ierr = VecCopy(v1,w);CHKERRQ(ierr); 2628 ierr = VecConjugate(w);CHKERRQ(ierr); 2629 ierr = VecDuplicate(v3,&z);CHKERRQ(ierr); 2630 ierr = MatMultTranspose(mat,w,z);CHKERRQ(ierr); 2631 ierr = VecDestroy(&w);CHKERRQ(ierr); 2632 ierr = VecConjugate(z);CHKERRQ(ierr); 2633 ierr = VecWAXPY(v3,1.0,v2,z);CHKERRQ(ierr); 2634 ierr = VecDestroy(&z);CHKERRQ(ierr); 2635 } 2636 ierr = VecLockPop(v1);CHKERRQ(ierr); 2637 ierr = PetscLogEventEnd(MAT_MultHermitianTransposeAdd,mat,v1,v2,v3);CHKERRQ(ierr); 2638 ierr = PetscObjectStateIncrease((PetscObject)v3);CHKERRQ(ierr); 2639 PetscFunctionReturn(0); 2640 } 2641 2642 /*@ 2643 MatMultConstrained - The inner multiplication routine for a 2644 constrained matrix P^T A P. 2645 2646 Neighbor-wise Collective on Mat and Vec 2647 2648 Input Parameters: 2649 + mat - the matrix 2650 - x - the vector to be multilplied 2651 2652 Output Parameters: 2653 . y - the result 2654 2655 Notes: 2656 The vectors x and y cannot be the same. I.e., one cannot 2657 call MatMult(A,y,y). 2658 2659 Level: beginner 2660 2661 .keywords: matrix, multiply, matrix-vector product, constraint 2662 .seealso: MatMult(), MatMultTranspose(), MatMultAdd(), MatMultTransposeAdd() 2663 @*/ 2664 PetscErrorCode MatMultConstrained(Mat mat,Vec x,Vec y) 2665 { 2666 PetscErrorCode ierr; 2667 2668 PetscFunctionBegin; 2669 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2670 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 2671 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 2672 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2673 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2674 if (x == y) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"x and y must be different vectors"); 2675 if (mat->cmap->N != x->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 2676 if (mat->rmap->N != y->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->rmap->N,y->map->N); 2677 if (mat->rmap->n != y->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: local dim %D %D",mat->rmap->n,y->map->n); 2678 2679 ierr = PetscLogEventBegin(MAT_MultConstrained,mat,x,y,0);CHKERRQ(ierr); 2680 ierr = VecLockPush(x);CHKERRQ(ierr); 2681 ierr = (*mat->ops->multconstrained)(mat,x,y);CHKERRQ(ierr); 2682 ierr = VecLockPop(x);CHKERRQ(ierr); 2683 ierr = PetscLogEventEnd(MAT_MultConstrained,mat,x,y,0);CHKERRQ(ierr); 2684 ierr = PetscObjectStateIncrease((PetscObject)y);CHKERRQ(ierr); 2685 PetscFunctionReturn(0); 2686 } 2687 2688 /*@ 2689 MatMultTransposeConstrained - The inner multiplication routine for a 2690 constrained matrix P^T A^T P. 2691 2692 Neighbor-wise Collective on Mat and Vec 2693 2694 Input Parameters: 2695 + mat - the matrix 2696 - x - the vector to be multilplied 2697 2698 Output Parameters: 2699 . y - the result 2700 2701 Notes: 2702 The vectors x and y cannot be the same. I.e., one cannot 2703 call MatMult(A,y,y). 2704 2705 Level: beginner 2706 2707 .keywords: matrix, multiply, matrix-vector product, constraint 2708 .seealso: MatMult(), MatMultTranspose(), MatMultAdd(), MatMultTransposeAdd() 2709 @*/ 2710 PetscErrorCode MatMultTransposeConstrained(Mat mat,Vec x,Vec y) 2711 { 2712 PetscErrorCode ierr; 2713 2714 PetscFunctionBegin; 2715 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2716 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 2717 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 2718 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2719 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2720 if (x == y) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"x and y must be different vectors"); 2721 if (mat->rmap->N != x->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 2722 if (mat->cmap->N != y->map->N) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->rmap->N,y->map->N); 2723 2724 ierr = PetscLogEventBegin(MAT_MultConstrained,mat,x,y,0);CHKERRQ(ierr); 2725 ierr = (*mat->ops->multtransposeconstrained)(mat,x,y);CHKERRQ(ierr); 2726 ierr = PetscLogEventEnd(MAT_MultConstrained,mat,x,y,0);CHKERRQ(ierr); 2727 ierr = PetscObjectStateIncrease((PetscObject)y);CHKERRQ(ierr); 2728 PetscFunctionReturn(0); 2729 } 2730 2731 /*@C 2732 MatGetFactorType - gets the type of factorization it is 2733 2734 Note Collective 2735 as the flag 2736 2737 Input Parameters: 2738 . mat - the matrix 2739 2740 Output Parameters: 2741 . t - the type, one of MAT_FACTOR_NONE, MAT_FACTOR_LU, MAT_FACTOR_CHOLESKY, MAT_FACTOR_ILU, MAT_FACTOR_ICC,MAT_FACTOR_ILUDT 2742 2743 Level: intermediate 2744 2745 .seealso: MatFactorType, MatGetFactor() 2746 @*/ 2747 PetscErrorCode MatGetFactorType(Mat mat,MatFactorType *t) 2748 { 2749 PetscFunctionBegin; 2750 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2751 PetscValidType(mat,1); 2752 *t = mat->factortype; 2753 PetscFunctionReturn(0); 2754 } 2755 2756 /* ------------------------------------------------------------*/ 2757 /*@C 2758 MatGetInfo - Returns information about matrix storage (number of 2759 nonzeros, memory, etc.). 2760 2761 Collective on Mat if MAT_GLOBAL_MAX or MAT_GLOBAL_SUM is used as the flag 2762 2763 Input Parameters: 2764 . mat - the matrix 2765 2766 Output Parameters: 2767 + flag - flag indicating the type of parameters to be returned 2768 (MAT_LOCAL - local matrix, MAT_GLOBAL_MAX - maximum over all processors, 2769 MAT_GLOBAL_SUM - sum over all processors) 2770 - info - matrix information context 2771 2772 Notes: 2773 The MatInfo context contains a variety of matrix data, including 2774 number of nonzeros allocated and used, number of mallocs during 2775 matrix assembly, etc. Additional information for factored matrices 2776 is provided (such as the fill ratio, number of mallocs during 2777 factorization, etc.). Much of this info is printed to PETSC_STDOUT 2778 when using the runtime options 2779 $ -info -mat_view ::ascii_info 2780 2781 Example for C/C++ Users: 2782 See the file ${PETSC_DIR}/include/petscmat.h for a complete list of 2783 data within the MatInfo context. For example, 2784 .vb 2785 MatInfo info; 2786 Mat A; 2787 double mal, nz_a, nz_u; 2788 2789 MatGetInfo(A,MAT_LOCAL,&info); 2790 mal = info.mallocs; 2791 nz_a = info.nz_allocated; 2792 .ve 2793 2794 Example for Fortran Users: 2795 Fortran users should declare info as a double precision 2796 array of dimension MAT_INFO_SIZE, and then extract the parameters 2797 of interest. See the file ${PETSC_DIR}/include/petsc/finclude/petscmat.h 2798 a complete list of parameter names. 2799 .vb 2800 double precision info(MAT_INFO_SIZE) 2801 double precision mal, nz_a 2802 Mat A 2803 integer ierr 2804 2805 call MatGetInfo(A,MAT_LOCAL,info,ierr) 2806 mal = info(MAT_INFO_MALLOCS) 2807 nz_a = info(MAT_INFO_NZ_ALLOCATED) 2808 .ve 2809 2810 Level: intermediate 2811 2812 Concepts: matrices^getting information on 2813 2814 Developer Note: fortran interface is not autogenerated as the f90 2815 interface defintion cannot be generated correctly [due to MatInfo] 2816 2817 .seealso: MatStashGetInfo() 2818 2819 @*/ 2820 PetscErrorCode MatGetInfo(Mat mat,MatInfoType flag,MatInfo *info) 2821 { 2822 PetscErrorCode ierr; 2823 2824 PetscFunctionBegin; 2825 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2826 PetscValidType(mat,1); 2827 PetscValidPointer(info,3); 2828 if (!mat->ops->getinfo) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 2829 MatCheckPreallocated(mat,1); 2830 ierr = (*mat->ops->getinfo)(mat,flag,info);CHKERRQ(ierr); 2831 PetscFunctionReturn(0); 2832 } 2833 2834 /* 2835 This is used by external packages where it is not easy to get the info from the actual 2836 matrix factorization. 2837 */ 2838 PetscErrorCode MatGetInfo_External(Mat A,MatInfoType flag,MatInfo *info) 2839 { 2840 PetscErrorCode ierr; 2841 2842 PetscFunctionBegin; 2843 ierr = PetscMemzero(info,sizeof(MatInfo));CHKERRQ(ierr); 2844 PetscFunctionReturn(0); 2845 } 2846 2847 /* ----------------------------------------------------------*/ 2848 2849 /*@C 2850 MatLUFactor - Performs in-place LU factorization of matrix. 2851 2852 Collective on Mat 2853 2854 Input Parameters: 2855 + mat - the matrix 2856 . row - row permutation 2857 . col - column permutation 2858 - info - options for factorization, includes 2859 $ fill - expected fill as ratio of original fill. 2860 $ dtcol - pivot tolerance (0 no pivot, 1 full column pivoting) 2861 $ Run with the option -info to determine an optimal value to use 2862 2863 Notes: 2864 Most users should employ the simplified KSP interface for linear solvers 2865 instead of working directly with matrix algebra routines such as this. 2866 See, e.g., KSPCreate(). 2867 2868 This changes the state of the matrix to a factored matrix; it cannot be used 2869 for example with MatSetValues() unless one first calls MatSetUnfactored(). 2870 2871 Level: developer 2872 2873 Concepts: matrices^LU factorization 2874 2875 .seealso: MatLUFactorSymbolic(), MatLUFactorNumeric(), MatCholeskyFactor(), 2876 MatGetOrdering(), MatSetUnfactored(), MatFactorInfo, MatGetFactor() 2877 2878 Developer Note: fortran interface is not autogenerated as the f90 2879 interface defintion cannot be generated correctly [due to MatFactorInfo] 2880 2881 @*/ 2882 PetscErrorCode MatLUFactor(Mat mat,IS row,IS col,const MatFactorInfo *info) 2883 { 2884 PetscErrorCode ierr; 2885 MatFactorInfo tinfo; 2886 2887 PetscFunctionBegin; 2888 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2889 if (row) PetscValidHeaderSpecific(row,IS_CLASSID,2); 2890 if (col) PetscValidHeaderSpecific(col,IS_CLASSID,3); 2891 if (info) PetscValidPointer(info,4); 2892 PetscValidType(mat,1); 2893 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2894 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2895 if (!mat->ops->lufactor) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 2896 MatCheckPreallocated(mat,1); 2897 if (!info) { 2898 ierr = MatFactorInfoInitialize(&tinfo);CHKERRQ(ierr); 2899 info = &tinfo; 2900 } 2901 2902 ierr = PetscLogEventBegin(MAT_LUFactor,mat,row,col,0);CHKERRQ(ierr); 2903 ierr = (*mat->ops->lufactor)(mat,row,col,info);CHKERRQ(ierr); 2904 ierr = PetscLogEventEnd(MAT_LUFactor,mat,row,col,0);CHKERRQ(ierr); 2905 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 2906 PetscFunctionReturn(0); 2907 } 2908 2909 /*@C 2910 MatILUFactor - Performs in-place ILU factorization of matrix. 2911 2912 Collective on Mat 2913 2914 Input Parameters: 2915 + mat - the matrix 2916 . row - row permutation 2917 . col - column permutation 2918 - info - structure containing 2919 $ levels - number of levels of fill. 2920 $ expected fill - as ratio of original fill. 2921 $ 1 or 0 - indicating force fill on diagonal (improves robustness for matrices 2922 missing diagonal entries) 2923 2924 Notes: 2925 Probably really in-place only when level of fill is zero, otherwise allocates 2926 new space to store factored matrix and deletes previous memory. 2927 2928 Most users should employ the simplified KSP interface for linear solvers 2929 instead of working directly with matrix algebra routines such as this. 2930 See, e.g., KSPCreate(). 2931 2932 Level: developer 2933 2934 Concepts: matrices^ILU factorization 2935 2936 .seealso: MatILUFactorSymbolic(), MatLUFactorNumeric(), MatCholeskyFactor(), MatFactorInfo 2937 2938 Developer Note: fortran interface is not autogenerated as the f90 2939 interface defintion cannot be generated correctly [due to MatFactorInfo] 2940 2941 @*/ 2942 PetscErrorCode MatILUFactor(Mat mat,IS row,IS col,const MatFactorInfo *info) 2943 { 2944 PetscErrorCode ierr; 2945 2946 PetscFunctionBegin; 2947 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 2948 if (row) PetscValidHeaderSpecific(row,IS_CLASSID,2); 2949 if (col) PetscValidHeaderSpecific(col,IS_CLASSID,3); 2950 PetscValidPointer(info,4); 2951 PetscValidType(mat,1); 2952 if (mat->rmap->N != mat->cmap->N) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONG,"matrix must be square"); 2953 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 2954 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 2955 if (!mat->ops->ilufactor) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 2956 MatCheckPreallocated(mat,1); 2957 2958 ierr = PetscLogEventBegin(MAT_ILUFactor,mat,row,col,0);CHKERRQ(ierr); 2959 ierr = (*mat->ops->ilufactor)(mat,row,col,info);CHKERRQ(ierr); 2960 ierr = PetscLogEventEnd(MAT_ILUFactor,mat,row,col,0);CHKERRQ(ierr); 2961 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 2962 PetscFunctionReturn(0); 2963 } 2964 2965 /*@C 2966 MatLUFactorSymbolic - Performs symbolic LU factorization of matrix. 2967 Call this routine before calling MatLUFactorNumeric(). 2968 2969 Collective on Mat 2970 2971 Input Parameters: 2972 + fact - the factor matrix obtained with MatGetFactor() 2973 . mat - the matrix 2974 . row, col - row and column permutations 2975 - info - options for factorization, includes 2976 $ fill - expected fill as ratio of original fill. 2977 $ dtcol - pivot tolerance (0 no pivot, 1 full column pivoting) 2978 $ Run with the option -info to determine an optimal value to use 2979 2980 2981 Notes: See Users-Manual: ch_mat for additional information about choosing the fill factor for better efficiency. 2982 2983 Most users should employ the simplified KSP interface for linear solvers 2984 instead of working directly with matrix algebra routines such as this. 2985 See, e.g., KSPCreate(). 2986 2987 Level: developer 2988 2989 Concepts: matrices^LU symbolic factorization 2990 2991 .seealso: MatLUFactor(), MatLUFactorNumeric(), MatCholeskyFactor(), MatFactorInfo, MatFactorInfoInitialize() 2992 2993 Developer Note: fortran interface is not autogenerated as the f90 2994 interface defintion cannot be generated correctly [due to MatFactorInfo] 2995 2996 @*/ 2997 PetscErrorCode MatLUFactorSymbolic(Mat fact,Mat mat,IS row,IS col,const MatFactorInfo *info) 2998 { 2999 PetscErrorCode ierr; 3000 3001 PetscFunctionBegin; 3002 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3003 if (row) PetscValidHeaderSpecific(row,IS_CLASSID,2); 3004 if (col) PetscValidHeaderSpecific(col,IS_CLASSID,3); 3005 if (info) PetscValidPointer(info,4); 3006 PetscValidType(mat,1); 3007 PetscValidPointer(fact,5); 3008 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3009 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 3010 if (!(fact)->ops->lufactorsymbolic) { 3011 const MatSolverPackage spackage; 3012 ierr = MatFactorGetSolverPackage(fact,&spackage);CHKERRQ(ierr); 3013 SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Matrix type %s symbolic LU using solver package %s",((PetscObject)mat)->type_name,spackage); 3014 } 3015 MatCheckPreallocated(mat,2); 3016 3017 ierr = PetscLogEventBegin(MAT_LUFactorSymbolic,mat,row,col,0);CHKERRQ(ierr); 3018 ierr = (fact->ops->lufactorsymbolic)(fact,mat,row,col,info);CHKERRQ(ierr); 3019 ierr = PetscLogEventEnd(MAT_LUFactorSymbolic,mat,row,col,0);CHKERRQ(ierr); 3020 ierr = PetscObjectStateIncrease((PetscObject)fact);CHKERRQ(ierr); 3021 PetscFunctionReturn(0); 3022 } 3023 3024 /*@C 3025 MatLUFactorNumeric - Performs numeric LU factorization of a matrix. 3026 Call this routine after first calling MatLUFactorSymbolic(). 3027 3028 Collective on Mat 3029 3030 Input Parameters: 3031 + fact - the factor matrix obtained with MatGetFactor() 3032 . mat - the matrix 3033 - info - options for factorization 3034 3035 Notes: 3036 See MatLUFactor() for in-place factorization. See 3037 MatCholeskyFactorNumeric() for the symmetric, positive definite case. 3038 3039 Most users should employ the simplified KSP interface for linear solvers 3040 instead of working directly with matrix algebra routines such as this. 3041 See, e.g., KSPCreate(). 3042 3043 Level: developer 3044 3045 Concepts: matrices^LU numeric factorization 3046 3047 .seealso: MatLUFactorSymbolic(), MatLUFactor(), MatCholeskyFactor() 3048 3049 Developer Note: fortran interface is not autogenerated as the f90 3050 interface defintion cannot be generated correctly [due to MatFactorInfo] 3051 3052 @*/ 3053 PetscErrorCode MatLUFactorNumeric(Mat fact,Mat mat,const MatFactorInfo *info) 3054 { 3055 PetscErrorCode ierr; 3056 3057 PetscFunctionBegin; 3058 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3059 PetscValidType(mat,1); 3060 PetscValidPointer(fact,2); 3061 PetscValidHeaderSpecific(fact,MAT_CLASSID,2); 3062 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3063 if (mat->rmap->N != (fact)->rmap->N || mat->cmap->N != (fact)->cmap->N) SETERRQ4(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Mat fact: global dimensions are different %D should = %D %D should = %D",mat->rmap->N,(fact)->rmap->N,mat->cmap->N,(fact)->cmap->N); 3064 3065 if (!(fact)->ops->lufactornumeric) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s numeric LU",((PetscObject)mat)->type_name); 3066 MatCheckPreallocated(mat,2); 3067 ierr = PetscLogEventBegin(MAT_LUFactorNumeric,mat,fact,0,0);CHKERRQ(ierr); 3068 ierr = (fact->ops->lufactornumeric)(fact,mat,info);CHKERRQ(ierr); 3069 ierr = PetscLogEventEnd(MAT_LUFactorNumeric,mat,fact,0,0);CHKERRQ(ierr); 3070 ierr = MatViewFromOptions(fact,NULL,"-mat_factor_view");CHKERRQ(ierr); 3071 ierr = PetscObjectStateIncrease((PetscObject)fact);CHKERRQ(ierr); 3072 PetscFunctionReturn(0); 3073 } 3074 3075 /*@C 3076 MatCholeskyFactor - Performs in-place Cholesky factorization of a 3077 symmetric matrix. 3078 3079 Collective on Mat 3080 3081 Input Parameters: 3082 + mat - the matrix 3083 . perm - row and column permutations 3084 - f - expected fill as ratio of original fill 3085 3086 Notes: 3087 See MatLUFactor() for the nonsymmetric case. See also 3088 MatCholeskyFactorSymbolic(), and MatCholeskyFactorNumeric(). 3089 3090 Most users should employ the simplified KSP interface for linear solvers 3091 instead of working directly with matrix algebra routines such as this. 3092 See, e.g., KSPCreate(). 3093 3094 Level: developer 3095 3096 Concepts: matrices^Cholesky factorization 3097 3098 .seealso: MatLUFactor(), MatCholeskyFactorSymbolic(), MatCholeskyFactorNumeric() 3099 MatGetOrdering() 3100 3101 Developer Note: fortran interface is not autogenerated as the f90 3102 interface defintion cannot be generated correctly [due to MatFactorInfo] 3103 3104 @*/ 3105 PetscErrorCode MatCholeskyFactor(Mat mat,IS perm,const MatFactorInfo *info) 3106 { 3107 PetscErrorCode ierr; 3108 3109 PetscFunctionBegin; 3110 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3111 PetscValidType(mat,1); 3112 if (perm) PetscValidHeaderSpecific(perm,IS_CLASSID,2); 3113 if (info) PetscValidPointer(info,3); 3114 if (mat->rmap->N != mat->cmap->N) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONG,"Matrix must be square"); 3115 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3116 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 3117 if (!mat->ops->choleskyfactor) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"In-place factorization for Mat type %s is not supported, try out-of-place factorization. See MatCholeskyFactorSymbolic/Numeric",((PetscObject)mat)->type_name); 3118 MatCheckPreallocated(mat,1); 3119 3120 ierr = PetscLogEventBegin(MAT_CholeskyFactor,mat,perm,0,0);CHKERRQ(ierr); 3121 ierr = (*mat->ops->choleskyfactor)(mat,perm,info);CHKERRQ(ierr); 3122 ierr = PetscLogEventEnd(MAT_CholeskyFactor,mat,perm,0,0);CHKERRQ(ierr); 3123 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 3124 PetscFunctionReturn(0); 3125 } 3126 3127 /*@C 3128 MatCholeskyFactorSymbolic - Performs symbolic Cholesky factorization 3129 of a symmetric matrix. 3130 3131 Collective on Mat 3132 3133 Input Parameters: 3134 + fact - the factor matrix obtained with MatGetFactor() 3135 . mat - the matrix 3136 . perm - row and column permutations 3137 - info - options for factorization, includes 3138 $ fill - expected fill as ratio of original fill. 3139 $ dtcol - pivot tolerance (0 no pivot, 1 full column pivoting) 3140 $ Run with the option -info to determine an optimal value to use 3141 3142 Notes: 3143 See MatLUFactorSymbolic() for the nonsymmetric case. See also 3144 MatCholeskyFactor() and MatCholeskyFactorNumeric(). 3145 3146 Most users should employ the simplified KSP interface for linear solvers 3147 instead of working directly with matrix algebra routines such as this. 3148 See, e.g., KSPCreate(). 3149 3150 Level: developer 3151 3152 Concepts: matrices^Cholesky symbolic factorization 3153 3154 .seealso: MatLUFactorSymbolic(), MatCholeskyFactor(), MatCholeskyFactorNumeric() 3155 MatGetOrdering() 3156 3157 Developer Note: fortran interface is not autogenerated as the f90 3158 interface defintion cannot be generated correctly [due to MatFactorInfo] 3159 3160 @*/ 3161 PetscErrorCode MatCholeskyFactorSymbolic(Mat fact,Mat mat,IS perm,const MatFactorInfo *info) 3162 { 3163 PetscErrorCode ierr; 3164 3165 PetscFunctionBegin; 3166 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3167 PetscValidType(mat,1); 3168 if (perm) PetscValidHeaderSpecific(perm,IS_CLASSID,2); 3169 if (info) PetscValidPointer(info,3); 3170 PetscValidPointer(fact,4); 3171 if (mat->rmap->N != mat->cmap->N) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONG,"Matrix must be square"); 3172 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3173 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 3174 if (!(fact)->ops->choleskyfactorsymbolic) { 3175 const MatSolverPackage spackage; 3176 ierr = MatFactorGetSolverPackage(fact,&spackage);CHKERRQ(ierr); 3177 SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s symbolic factor Cholesky using solver package %s",((PetscObject)mat)->type_name,spackage); 3178 } 3179 MatCheckPreallocated(mat,2); 3180 3181 ierr = PetscLogEventBegin(MAT_CholeskyFactorSymbolic,mat,perm,0,0);CHKERRQ(ierr); 3182 ierr = (fact->ops->choleskyfactorsymbolic)(fact,mat,perm,info);CHKERRQ(ierr); 3183 ierr = PetscLogEventEnd(MAT_CholeskyFactorSymbolic,mat,perm,0,0);CHKERRQ(ierr); 3184 ierr = PetscObjectStateIncrease((PetscObject)fact);CHKERRQ(ierr); 3185 PetscFunctionReturn(0); 3186 } 3187 3188 /*@C 3189 MatCholeskyFactorNumeric - Performs numeric Cholesky factorization 3190 of a symmetric matrix. Call this routine after first calling 3191 MatCholeskyFactorSymbolic(). 3192 3193 Collective on Mat 3194 3195 Input Parameters: 3196 + fact - the factor matrix obtained with MatGetFactor() 3197 . mat - the initial matrix 3198 . info - options for factorization 3199 - fact - the symbolic factor of mat 3200 3201 3202 Notes: 3203 Most users should employ the simplified KSP interface for linear solvers 3204 instead of working directly with matrix algebra routines such as this. 3205 See, e.g., KSPCreate(). 3206 3207 Level: developer 3208 3209 Concepts: matrices^Cholesky numeric factorization 3210 3211 .seealso: MatCholeskyFactorSymbolic(), MatCholeskyFactor(), MatLUFactorNumeric() 3212 3213 Developer Note: fortran interface is not autogenerated as the f90 3214 interface defintion cannot be generated correctly [due to MatFactorInfo] 3215 3216 @*/ 3217 PetscErrorCode MatCholeskyFactorNumeric(Mat fact,Mat mat,const MatFactorInfo *info) 3218 { 3219 PetscErrorCode ierr; 3220 3221 PetscFunctionBegin; 3222 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3223 PetscValidType(mat,1); 3224 PetscValidPointer(fact,2); 3225 PetscValidHeaderSpecific(fact,MAT_CLASSID,2); 3226 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3227 if (!(fact)->ops->choleskyfactornumeric) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s numeric factor Cholesky",((PetscObject)mat)->type_name); 3228 if (mat->rmap->N != (fact)->rmap->N || mat->cmap->N != (fact)->cmap->N) SETERRQ4(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Mat fact: global dim %D should = %D %D should = %D",mat->rmap->N,(fact)->rmap->N,mat->cmap->N,(fact)->cmap->N); 3229 MatCheckPreallocated(mat,2); 3230 3231 ierr = PetscLogEventBegin(MAT_CholeskyFactorNumeric,mat,fact,0,0);CHKERRQ(ierr); 3232 ierr = (fact->ops->choleskyfactornumeric)(fact,mat,info);CHKERRQ(ierr); 3233 ierr = PetscLogEventEnd(MAT_CholeskyFactorNumeric,mat,fact,0,0);CHKERRQ(ierr); 3234 ierr = MatViewFromOptions(fact,NULL,"-mat_factor_view");CHKERRQ(ierr); 3235 ierr = PetscObjectStateIncrease((PetscObject)fact);CHKERRQ(ierr); 3236 PetscFunctionReturn(0); 3237 } 3238 3239 /* ----------------------------------------------------------------*/ 3240 /*@ 3241 MatSolve - Solves A x = b, given a factored matrix. 3242 3243 Neighbor-wise Collective on Mat and Vec 3244 3245 Input Parameters: 3246 + mat - the factored matrix 3247 - b - the right-hand-side vector 3248 3249 Output Parameter: 3250 . x - the result vector 3251 3252 Notes: 3253 The vectors b and x cannot be the same. I.e., one cannot 3254 call MatSolve(A,x,x). 3255 3256 Notes: 3257 Most users should employ the simplified KSP interface for linear solvers 3258 instead of working directly with matrix algebra routines such as this. 3259 See, e.g., KSPCreate(). 3260 3261 Level: developer 3262 3263 Concepts: matrices^triangular solves 3264 3265 .seealso: MatSolveAdd(), MatSolveTranspose(), MatSolveTransposeAdd() 3266 @*/ 3267 PetscErrorCode MatSolve(Mat mat,Vec b,Vec x) 3268 { 3269 PetscErrorCode ierr; 3270 3271 PetscFunctionBegin; 3272 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3273 PetscValidType(mat,1); 3274 PetscValidHeaderSpecific(b,VEC_CLASSID,2); 3275 PetscValidHeaderSpecific(x,VEC_CLASSID,3); 3276 PetscCheckSameComm(mat,1,b,2); 3277 PetscCheckSameComm(mat,1,x,3); 3278 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 3279 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3280 if (mat->cmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 3281 if (mat->rmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->rmap->N,b->map->N); 3282 if (mat->rmap->n != b->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: local dim %D %D",mat->rmap->n,b->map->n); 3283 if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(0); 3284 if (!mat->ops->solve) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 3285 MatCheckPreallocated(mat,1); 3286 3287 ierr = PetscLogEventBegin(MAT_Solve,mat,b,x,0);CHKERRQ(ierr); 3288 if (mat->factorerrortype) { 3289 ierr = PetscInfo1(mat,"MatFactorError %D\n",mat->factorerrortype);CHKERRQ(ierr); 3290 ierr = VecSetInf(x);CHKERRQ(ierr); 3291 } else { 3292 ierr = (*mat->ops->solve)(mat,b,x);CHKERRQ(ierr); 3293 } 3294 ierr = PetscLogEventEnd(MAT_Solve,mat,b,x,0);CHKERRQ(ierr); 3295 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3296 PetscFunctionReturn(0); 3297 } 3298 3299 static PetscErrorCode MatMatSolve_Basic(Mat A,Mat B,Mat X, PetscBool trans) 3300 { 3301 PetscErrorCode ierr; 3302 Vec b,x; 3303 PetscInt m,N,i; 3304 PetscScalar *bb,*xx; 3305 PetscBool flg; 3306 3307 PetscFunctionBegin; 3308 ierr = PetscObjectTypeCompareAny((PetscObject)B,&flg,MATSEQDENSE,MATMPIDENSE,NULL);CHKERRQ(ierr); 3309 if (!flg) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONG,"Matrix B must be MATDENSE matrix"); 3310 ierr = PetscObjectTypeCompareAny((PetscObject)X,&flg,MATSEQDENSE,MATMPIDENSE,NULL);CHKERRQ(ierr); 3311 if (!flg) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONG,"Matrix X must be MATDENSE matrix"); 3312 3313 ierr = MatDenseGetArray(B,&bb);CHKERRQ(ierr); 3314 ierr = MatDenseGetArray(X,&xx);CHKERRQ(ierr); 3315 ierr = MatGetLocalSize(B,&m,NULL);CHKERRQ(ierr); /* number local rows */ 3316 ierr = MatGetSize(B,NULL,&N);CHKERRQ(ierr); /* total columns in dense matrix */ 3317 ierr = MatCreateVecs(A,&x,&b);CHKERRQ(ierr); 3318 for (i=0; i<N; i++) { 3319 ierr = VecPlaceArray(b,bb + i*m);CHKERRQ(ierr); 3320 ierr = VecPlaceArray(x,xx + i*m);CHKERRQ(ierr); 3321 if (trans) { 3322 ierr = MatSolveTranspose(A,b,x);CHKERRQ(ierr); 3323 } else { 3324 ierr = MatSolve(A,b,x);CHKERRQ(ierr); 3325 } 3326 ierr = VecResetArray(x);CHKERRQ(ierr); 3327 ierr = VecResetArray(b);CHKERRQ(ierr); 3328 } 3329 ierr = VecDestroy(&b);CHKERRQ(ierr); 3330 ierr = VecDestroy(&x);CHKERRQ(ierr); 3331 ierr = MatDenseRestoreArray(B,&bb);CHKERRQ(ierr); 3332 ierr = MatDenseRestoreArray(X,&xx);CHKERRQ(ierr); 3333 PetscFunctionReturn(0); 3334 } 3335 3336 /*@ 3337 MatMatSolve - Solves A X = B, given a factored matrix. 3338 3339 Neighbor-wise Collective on Mat 3340 3341 Input Parameters: 3342 + A - the factored matrix 3343 - B - the right-hand-side matrix (dense matrix) 3344 3345 Output Parameter: 3346 . X - the result matrix (dense matrix) 3347 3348 Notes: 3349 The matrices b and x cannot be the same. I.e., one cannot 3350 call MatMatSolve(A,x,x). 3351 3352 Notes: 3353 Most users should usually employ the simplified KSP interface for linear solvers 3354 instead of working directly with matrix algebra routines such as this. 3355 See, e.g., KSPCreate(). However KSP can only solve for one vector (column of X) 3356 at a time. 3357 3358 When using SuperLU_Dist as a parallel solver PETSc will use the SuperLU_Dist functionality to solve multiple right hand sides simultaneously. For MUMPS 3359 it calls a separate solve for each right hand side since MUMPS does not yet support distributed right hand sides. 3360 3361 Since the resulting matrix X must always be dense we do not support sparse representation of the matrix B. 3362 3363 Level: developer 3364 3365 Concepts: matrices^triangular solves 3366 3367 .seealso: MatMatSolveTranspose(), MatLUFactor(), MatCholeskyFactor() 3368 @*/ 3369 PetscErrorCode MatMatSolve(Mat A,Mat B,Mat X) 3370 { 3371 PetscErrorCode ierr; 3372 3373 PetscFunctionBegin; 3374 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 3375 PetscValidType(A,1); 3376 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 3377 PetscValidHeaderSpecific(X,MAT_CLASSID,3); 3378 PetscCheckSameComm(A,1,B,2); 3379 PetscCheckSameComm(A,1,X,3); 3380 if (X == B) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_IDN,"X and B must be different matrices"); 3381 if (!A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3382 if (A->cmap->N != X->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Mat A,Mat X: global dim %D %D",A->cmap->N,X->rmap->N); 3383 if (A->rmap->N != B->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Mat A,Mat B: global dim %D %D",A->rmap->N,B->rmap->N); 3384 if (A->rmap->n != B->rmap->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat A,Mat B: local dim %D %D",A->rmap->n,B->rmap->n); 3385 if (X->cmap->N < B->cmap->N) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Solution matrix must have same number of columns as rhs matrix"); 3386 if (!A->rmap->N && !A->cmap->N) PetscFunctionReturn(0); 3387 MatCheckPreallocated(A,1); 3388 3389 ierr = PetscLogEventBegin(MAT_MatSolve,A,B,X,0);CHKERRQ(ierr); 3390 if (!A->ops->matsolve) { 3391 ierr = PetscInfo1(A,"Mat type %s using basic MatMatSolve\n",((PetscObject)A)->type_name);CHKERRQ(ierr); 3392 ierr = MatMatSolve_Basic(A,B,X,PETSC_FALSE);CHKERRQ(ierr); 3393 } else { 3394 ierr = (*A->ops->matsolve)(A,B,X);CHKERRQ(ierr); 3395 } 3396 ierr = PetscLogEventEnd(MAT_MatSolve,A,B,X,0);CHKERRQ(ierr); 3397 ierr = PetscObjectStateIncrease((PetscObject)X);CHKERRQ(ierr); 3398 PetscFunctionReturn(0); 3399 } 3400 3401 /*@ 3402 MatMatSolveTranspose - Solves A^T X = B, given a factored matrix. 3403 3404 Neighbor-wise Collective on Mat 3405 3406 Input Parameters: 3407 + A - the factored matrix 3408 - B - the right-hand-side matrix (dense matrix) 3409 3410 Output Parameter: 3411 . X - the result matrix (dense matrix) 3412 3413 Notes: 3414 The matrices b and x cannot be the same. I.e., one cannot 3415 call MatMatSolveTranspose(A,x,x). 3416 3417 Notes: 3418 Most users should usually employ the simplified KSP interface for linear solvers 3419 instead of working directly with matrix algebra routines such as this. 3420 See, e.g., KSPCreate(). However KSP can only solve for one vector (column of X) 3421 at a time. 3422 3423 When using SuperLU_Dist as a parallel solver PETSc will use the SuperLU_Dist functionality to solve multiple right hand sides simultaneously. For MUMPS 3424 it calls a separate solve for each right hand side since MUMPS does not yet support distributed right hand sides. 3425 3426 Since the resulting matrix X must always be dense we do not support sparse representation of the matrix B. 3427 3428 Level: developer 3429 3430 Concepts: matrices^triangular solves 3431 3432 .seealso: MatMatSolveTranspose(), MatLUFactor(), MatCholeskyFactor() 3433 @*/ 3434 PetscErrorCode MatMatSolveTranspose(Mat A,Mat B,Mat X) 3435 { 3436 PetscErrorCode ierr; 3437 3438 PetscFunctionBegin; 3439 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 3440 PetscValidType(A,1); 3441 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 3442 PetscValidHeaderSpecific(X,MAT_CLASSID,3); 3443 PetscCheckSameComm(A,1,B,2); 3444 PetscCheckSameComm(A,1,X,3); 3445 if (X == B) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_IDN,"X and B must be different matrices"); 3446 if (!A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3447 if (A->cmap->N != X->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Mat A,Mat X: global dim %D %D",A->cmap->N,X->rmap->N); 3448 if (A->rmap->N != B->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Mat A,Mat B: global dim %D %D",A->rmap->N,B->rmap->N); 3449 if (A->rmap->n != B->rmap->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat A,Mat B: local dim %D %D",A->rmap->n,B->rmap->n); 3450 if (X->cmap->N < B->cmap->N) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Solution matrix must have same number of columns as rhs matrix"); 3451 if (!A->rmap->N && !A->cmap->N) PetscFunctionReturn(0); 3452 MatCheckPreallocated(A,1); 3453 3454 ierr = PetscLogEventBegin(MAT_MatSolve,A,B,X,0);CHKERRQ(ierr); 3455 if (!A->ops->matsolvetranspose) { 3456 ierr = PetscInfo1(A,"Mat type %s using basic MatMatSolveTranspose\n",((PetscObject)A)->type_name);CHKERRQ(ierr); 3457 ierr = MatMatSolve_Basic(A,B,X,PETSC_TRUE);CHKERRQ(ierr); 3458 } else { 3459 ierr = (*A->ops->matsolvetranspose)(A,B,X);CHKERRQ(ierr); 3460 } 3461 ierr = PetscLogEventEnd(MAT_MatSolve,A,B,X,0);CHKERRQ(ierr); 3462 ierr = PetscObjectStateIncrease((PetscObject)X);CHKERRQ(ierr); 3463 PetscFunctionReturn(0); 3464 } 3465 3466 /*@ 3467 MatForwardSolve - Solves L x = b, given a factored matrix, A = LU, or 3468 U^T*D^(1/2) x = b, given a factored symmetric matrix, A = U^T*D*U, 3469 3470 Neighbor-wise Collective on Mat and Vec 3471 3472 Input Parameters: 3473 + mat - the factored matrix 3474 - b - the right-hand-side vector 3475 3476 Output Parameter: 3477 . x - the result vector 3478 3479 Notes: 3480 MatSolve() should be used for most applications, as it performs 3481 a forward solve followed by a backward solve. 3482 3483 The vectors b and x cannot be the same, i.e., one cannot 3484 call MatForwardSolve(A,x,x). 3485 3486 For matrix in seqsbaij format with block size larger than 1, 3487 the diagonal blocks are not implemented as D = D^(1/2) * D^(1/2) yet. 3488 MatForwardSolve() solves U^T*D y = b, and 3489 MatBackwardSolve() solves U x = y. 3490 Thus they do not provide a symmetric preconditioner. 3491 3492 Most users should employ the simplified KSP interface for linear solvers 3493 instead of working directly with matrix algebra routines such as this. 3494 See, e.g., KSPCreate(). 3495 3496 Level: developer 3497 3498 Concepts: matrices^forward solves 3499 3500 .seealso: MatSolve(), MatBackwardSolve() 3501 @*/ 3502 PetscErrorCode MatForwardSolve(Mat mat,Vec b,Vec x) 3503 { 3504 PetscErrorCode ierr; 3505 3506 PetscFunctionBegin; 3507 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3508 PetscValidType(mat,1); 3509 PetscValidHeaderSpecific(b,VEC_CLASSID,2); 3510 PetscValidHeaderSpecific(x,VEC_CLASSID,3); 3511 PetscCheckSameComm(mat,1,b,2); 3512 PetscCheckSameComm(mat,1,x,3); 3513 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 3514 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3515 if (!mat->ops->forwardsolve) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 3516 if (mat->cmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 3517 if (mat->rmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->rmap->N,b->map->N); 3518 if (mat->rmap->n != b->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: local dim %D %D",mat->rmap->n,b->map->n); 3519 MatCheckPreallocated(mat,1); 3520 ierr = PetscLogEventBegin(MAT_ForwardSolve,mat,b,x,0);CHKERRQ(ierr); 3521 ierr = (*mat->ops->forwardsolve)(mat,b,x);CHKERRQ(ierr); 3522 ierr = PetscLogEventEnd(MAT_ForwardSolve,mat,b,x,0);CHKERRQ(ierr); 3523 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3524 PetscFunctionReturn(0); 3525 } 3526 3527 /*@ 3528 MatBackwardSolve - Solves U x = b, given a factored matrix, A = LU. 3529 D^(1/2) U x = b, given a factored symmetric matrix, A = U^T*D*U, 3530 3531 Neighbor-wise Collective on Mat and Vec 3532 3533 Input Parameters: 3534 + mat - the factored matrix 3535 - b - the right-hand-side vector 3536 3537 Output Parameter: 3538 . x - the result vector 3539 3540 Notes: 3541 MatSolve() should be used for most applications, as it performs 3542 a forward solve followed by a backward solve. 3543 3544 The vectors b and x cannot be the same. I.e., one cannot 3545 call MatBackwardSolve(A,x,x). 3546 3547 For matrix in seqsbaij format with block size larger than 1, 3548 the diagonal blocks are not implemented as D = D^(1/2) * D^(1/2) yet. 3549 MatForwardSolve() solves U^T*D y = b, and 3550 MatBackwardSolve() solves U x = y. 3551 Thus they do not provide a symmetric preconditioner. 3552 3553 Most users should employ the simplified KSP interface for linear solvers 3554 instead of working directly with matrix algebra routines such as this. 3555 See, e.g., KSPCreate(). 3556 3557 Level: developer 3558 3559 Concepts: matrices^backward solves 3560 3561 .seealso: MatSolve(), MatForwardSolve() 3562 @*/ 3563 PetscErrorCode MatBackwardSolve(Mat mat,Vec b,Vec x) 3564 { 3565 PetscErrorCode ierr; 3566 3567 PetscFunctionBegin; 3568 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3569 PetscValidType(mat,1); 3570 PetscValidHeaderSpecific(b,VEC_CLASSID,2); 3571 PetscValidHeaderSpecific(x,VEC_CLASSID,3); 3572 PetscCheckSameComm(mat,1,b,2); 3573 PetscCheckSameComm(mat,1,x,3); 3574 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 3575 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3576 if (!mat->ops->backwardsolve) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 3577 if (mat->cmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 3578 if (mat->rmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->rmap->N,b->map->N); 3579 if (mat->rmap->n != b->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: local dim %D %D",mat->rmap->n,b->map->n); 3580 MatCheckPreallocated(mat,1); 3581 3582 ierr = PetscLogEventBegin(MAT_BackwardSolve,mat,b,x,0);CHKERRQ(ierr); 3583 ierr = (*mat->ops->backwardsolve)(mat,b,x);CHKERRQ(ierr); 3584 ierr = PetscLogEventEnd(MAT_BackwardSolve,mat,b,x,0);CHKERRQ(ierr); 3585 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3586 PetscFunctionReturn(0); 3587 } 3588 3589 /*@ 3590 MatSolveAdd - Computes x = y + inv(A)*b, given a factored matrix. 3591 3592 Neighbor-wise Collective on Mat and Vec 3593 3594 Input Parameters: 3595 + mat - the factored matrix 3596 . b - the right-hand-side vector 3597 - y - the vector to be added to 3598 3599 Output Parameter: 3600 . x - the result vector 3601 3602 Notes: 3603 The vectors b and x cannot be the same. I.e., one cannot 3604 call MatSolveAdd(A,x,y,x). 3605 3606 Most users should employ the simplified KSP interface for linear solvers 3607 instead of working directly with matrix algebra routines such as this. 3608 See, e.g., KSPCreate(). 3609 3610 Level: developer 3611 3612 Concepts: matrices^triangular solves 3613 3614 .seealso: MatSolve(), MatSolveTranspose(), MatSolveTransposeAdd() 3615 @*/ 3616 PetscErrorCode MatSolveAdd(Mat mat,Vec b,Vec y,Vec x) 3617 { 3618 PetscScalar one = 1.0; 3619 Vec tmp; 3620 PetscErrorCode ierr; 3621 3622 PetscFunctionBegin; 3623 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3624 PetscValidType(mat,1); 3625 PetscValidHeaderSpecific(y,VEC_CLASSID,2); 3626 PetscValidHeaderSpecific(b,VEC_CLASSID,3); 3627 PetscValidHeaderSpecific(x,VEC_CLASSID,4); 3628 PetscCheckSameComm(mat,1,b,2); 3629 PetscCheckSameComm(mat,1,y,2); 3630 PetscCheckSameComm(mat,1,x,3); 3631 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 3632 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3633 if (mat->cmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 3634 if (mat->rmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->rmap->N,b->map->N); 3635 if (mat->rmap->N != y->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->rmap->N,y->map->N); 3636 if (mat->rmap->n != b->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: local dim %D %D",mat->rmap->n,b->map->n); 3637 if (x->map->n != y->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Vec x,Vec y: local dim %D %D",x->map->n,y->map->n); 3638 MatCheckPreallocated(mat,1); 3639 3640 ierr = PetscLogEventBegin(MAT_SolveAdd,mat,b,x,y);CHKERRQ(ierr); 3641 if (mat->ops->solveadd) { 3642 ierr = (*mat->ops->solveadd)(mat,b,y,x);CHKERRQ(ierr); 3643 } else { 3644 /* do the solve then the add manually */ 3645 if (x != y) { 3646 ierr = MatSolve(mat,b,x);CHKERRQ(ierr); 3647 ierr = VecAXPY(x,one,y);CHKERRQ(ierr); 3648 } else { 3649 ierr = VecDuplicate(x,&tmp);CHKERRQ(ierr); 3650 ierr = PetscLogObjectParent((PetscObject)mat,(PetscObject)tmp);CHKERRQ(ierr); 3651 ierr = VecCopy(x,tmp);CHKERRQ(ierr); 3652 ierr = MatSolve(mat,b,x);CHKERRQ(ierr); 3653 ierr = VecAXPY(x,one,tmp);CHKERRQ(ierr); 3654 ierr = VecDestroy(&tmp);CHKERRQ(ierr); 3655 } 3656 } 3657 ierr = PetscLogEventEnd(MAT_SolveAdd,mat,b,x,y);CHKERRQ(ierr); 3658 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3659 PetscFunctionReturn(0); 3660 } 3661 3662 /*@ 3663 MatSolveTranspose - Solves A' x = b, given a factored matrix. 3664 3665 Neighbor-wise Collective on Mat and Vec 3666 3667 Input Parameters: 3668 + mat - the factored matrix 3669 - b - the right-hand-side vector 3670 3671 Output Parameter: 3672 . x - the result vector 3673 3674 Notes: 3675 The vectors b and x cannot be the same. I.e., one cannot 3676 call MatSolveTranspose(A,x,x). 3677 3678 Most users should employ the simplified KSP interface for linear solvers 3679 instead of working directly with matrix algebra routines such as this. 3680 See, e.g., KSPCreate(). 3681 3682 Level: developer 3683 3684 Concepts: matrices^triangular solves 3685 3686 .seealso: MatSolve(), MatSolveAdd(), MatSolveTransposeAdd() 3687 @*/ 3688 PetscErrorCode MatSolveTranspose(Mat mat,Vec b,Vec x) 3689 { 3690 PetscErrorCode ierr; 3691 3692 PetscFunctionBegin; 3693 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3694 PetscValidType(mat,1); 3695 PetscValidHeaderSpecific(b,VEC_CLASSID,2); 3696 PetscValidHeaderSpecific(x,VEC_CLASSID,3); 3697 PetscCheckSameComm(mat,1,b,2); 3698 PetscCheckSameComm(mat,1,x,3); 3699 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3700 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 3701 if (!mat->ops->solvetranspose) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Matrix type %s",((PetscObject)mat)->type_name); 3702 if (mat->rmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->rmap->N,x->map->N); 3703 if (mat->cmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->cmap->N,b->map->N); 3704 MatCheckPreallocated(mat,1); 3705 ierr = PetscLogEventBegin(MAT_SolveTranspose,mat,b,x,0);CHKERRQ(ierr); 3706 if (mat->factorerrortype) { 3707 ierr = PetscInfo1(mat,"MatFactorError %D\n",mat->factorerrortype);CHKERRQ(ierr); 3708 ierr = VecSetInf(x);CHKERRQ(ierr); 3709 } else { 3710 ierr = (*mat->ops->solvetranspose)(mat,b,x);CHKERRQ(ierr); 3711 } 3712 ierr = PetscLogEventEnd(MAT_SolveTranspose,mat,b,x,0);CHKERRQ(ierr); 3713 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3714 PetscFunctionReturn(0); 3715 } 3716 3717 /*@ 3718 MatSolveTransposeAdd - Computes x = y + inv(Transpose(A)) b, given a 3719 factored matrix. 3720 3721 Neighbor-wise Collective on Mat and Vec 3722 3723 Input Parameters: 3724 + mat - the factored matrix 3725 . b - the right-hand-side vector 3726 - y - the vector to be added to 3727 3728 Output Parameter: 3729 . x - the result vector 3730 3731 Notes: 3732 The vectors b and x cannot be the same. I.e., one cannot 3733 call MatSolveTransposeAdd(A,x,y,x). 3734 3735 Most users should employ the simplified KSP interface for linear solvers 3736 instead of working directly with matrix algebra routines such as this. 3737 See, e.g., KSPCreate(). 3738 3739 Level: developer 3740 3741 Concepts: matrices^triangular solves 3742 3743 .seealso: MatSolve(), MatSolveAdd(), MatSolveTranspose() 3744 @*/ 3745 PetscErrorCode MatSolveTransposeAdd(Mat mat,Vec b,Vec y,Vec x) 3746 { 3747 PetscScalar one = 1.0; 3748 PetscErrorCode ierr; 3749 Vec tmp; 3750 3751 PetscFunctionBegin; 3752 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3753 PetscValidType(mat,1); 3754 PetscValidHeaderSpecific(y,VEC_CLASSID,2); 3755 PetscValidHeaderSpecific(b,VEC_CLASSID,3); 3756 PetscValidHeaderSpecific(x,VEC_CLASSID,4); 3757 PetscCheckSameComm(mat,1,b,2); 3758 PetscCheckSameComm(mat,1,y,3); 3759 PetscCheckSameComm(mat,1,x,4); 3760 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 3761 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 3762 if (mat->rmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->rmap->N,x->map->N); 3763 if (mat->cmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->cmap->N,b->map->N); 3764 if (mat->cmap->N != y->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec y: global dim %D %D",mat->cmap->N,y->map->N); 3765 if (x->map->n != y->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Vec x,Vec y: local dim %D %D",x->map->n,y->map->n); 3766 MatCheckPreallocated(mat,1); 3767 3768 ierr = PetscLogEventBegin(MAT_SolveTransposeAdd,mat,b,x,y);CHKERRQ(ierr); 3769 if (mat->ops->solvetransposeadd) { 3770 if (mat->factorerrortype) { 3771 ierr = PetscInfo1(mat,"MatFactorError %D\n",mat->factorerrortype);CHKERRQ(ierr); 3772 ierr = VecSetInf(x);CHKERRQ(ierr); 3773 } else { 3774 ierr = (*mat->ops->solvetransposeadd)(mat,b,y,x);CHKERRQ(ierr); 3775 } 3776 } else { 3777 /* do the solve then the add manually */ 3778 if (x != y) { 3779 ierr = MatSolveTranspose(mat,b,x);CHKERRQ(ierr); 3780 ierr = VecAXPY(x,one,y);CHKERRQ(ierr); 3781 } else { 3782 ierr = VecDuplicate(x,&tmp);CHKERRQ(ierr); 3783 ierr = PetscLogObjectParent((PetscObject)mat,(PetscObject)tmp);CHKERRQ(ierr); 3784 ierr = VecCopy(x,tmp);CHKERRQ(ierr); 3785 ierr = MatSolveTranspose(mat,b,x);CHKERRQ(ierr); 3786 ierr = VecAXPY(x,one,tmp);CHKERRQ(ierr); 3787 ierr = VecDestroy(&tmp);CHKERRQ(ierr); 3788 } 3789 } 3790 ierr = PetscLogEventEnd(MAT_SolveTransposeAdd,mat,b,x,y);CHKERRQ(ierr); 3791 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3792 PetscFunctionReturn(0); 3793 } 3794 /* ----------------------------------------------------------------*/ 3795 3796 /*@ 3797 MatSOR - Computes relaxation (SOR, Gauss-Seidel) sweeps. 3798 3799 Neighbor-wise Collective on Mat and Vec 3800 3801 Input Parameters: 3802 + mat - the matrix 3803 . b - the right hand side 3804 . omega - the relaxation factor 3805 . flag - flag indicating the type of SOR (see below) 3806 . shift - diagonal shift 3807 . its - the number of iterations 3808 - lits - the number of local iterations 3809 3810 Output Parameters: 3811 . x - the solution (can contain an initial guess, use option SOR_ZERO_INITIAL_GUESS to indicate no guess) 3812 3813 SOR Flags: 3814 . SOR_FORWARD_SWEEP - forward SOR 3815 . SOR_BACKWARD_SWEEP - backward SOR 3816 . SOR_SYMMETRIC_SWEEP - SSOR (symmetric SOR) 3817 . SOR_LOCAL_FORWARD_SWEEP - local forward SOR 3818 . SOR_LOCAL_BACKWARD_SWEEP - local forward SOR 3819 . SOR_LOCAL_SYMMETRIC_SWEEP - local SSOR 3820 . SOR_APPLY_UPPER, SOR_APPLY_LOWER - applies 3821 upper/lower triangular part of matrix to 3822 vector (with omega) 3823 . SOR_ZERO_INITIAL_GUESS - zero initial guess 3824 3825 Notes: 3826 SOR_LOCAL_FORWARD_SWEEP, SOR_LOCAL_BACKWARD_SWEEP, and 3827 SOR_LOCAL_SYMMETRIC_SWEEP perform separate independent smoothings 3828 on each processor. 3829 3830 Application programmers will not generally use MatSOR() directly, 3831 but instead will employ the KSP/PC interface. 3832 3833 Notes: for BAIJ, SBAIJ, and AIJ matrices with Inodes this does a block SOR smoothing, otherwise it does a pointwise smoothing 3834 3835 Notes for Advanced Users: 3836 The flags are implemented as bitwise inclusive or operations. 3837 For example, use (SOR_ZERO_INITIAL_GUESS | SOR_SYMMETRIC_SWEEP) 3838 to specify a zero initial guess for SSOR. 3839 3840 Most users should employ the simplified KSP interface for linear solvers 3841 instead of working directly with matrix algebra routines such as this. 3842 See, e.g., KSPCreate(). 3843 3844 Vectors x and b CANNOT be the same 3845 3846 Developer Note: We should add block SOR support for AIJ matrices with block size set to great than one and no inodes 3847 3848 Level: developer 3849 3850 Concepts: matrices^relaxation 3851 Concepts: matrices^SOR 3852 Concepts: matrices^Gauss-Seidel 3853 3854 @*/ 3855 PetscErrorCode MatSOR(Mat mat,Vec b,PetscReal omega,MatSORType flag,PetscReal shift,PetscInt its,PetscInt lits,Vec x) 3856 { 3857 PetscErrorCode ierr; 3858 3859 PetscFunctionBegin; 3860 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 3861 PetscValidType(mat,1); 3862 PetscValidHeaderSpecific(b,VEC_CLASSID,2); 3863 PetscValidHeaderSpecific(x,VEC_CLASSID,8); 3864 PetscCheckSameComm(mat,1,b,2); 3865 PetscCheckSameComm(mat,1,x,8); 3866 if (!mat->ops->sor) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 3867 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3868 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 3869 if (mat->cmap->N != x->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec x: global dim %D %D",mat->cmap->N,x->map->N); 3870 if (mat->rmap->N != b->map->N) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: global dim %D %D",mat->rmap->N,b->map->N); 3871 if (mat->rmap->n != b->map->n) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"Mat mat,Vec b: local dim %D %D",mat->rmap->n,b->map->n); 3872 if (its <= 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Relaxation requires global its %D positive",its); 3873 if (lits <= 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"Relaxation requires local its %D positive",lits); 3874 if (b == x) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_IDN,"b and x vector cannot be the same"); 3875 3876 MatCheckPreallocated(mat,1); 3877 ierr = PetscLogEventBegin(MAT_SOR,mat,b,x,0);CHKERRQ(ierr); 3878 ierr =(*mat->ops->sor)(mat,b,omega,flag,shift,its,lits,x);CHKERRQ(ierr); 3879 ierr = PetscLogEventEnd(MAT_SOR,mat,b,x,0);CHKERRQ(ierr); 3880 ierr = PetscObjectStateIncrease((PetscObject)x);CHKERRQ(ierr); 3881 PetscFunctionReturn(0); 3882 } 3883 3884 /* 3885 Default matrix copy routine. 3886 */ 3887 PetscErrorCode MatCopy_Basic(Mat A,Mat B,MatStructure str) 3888 { 3889 PetscErrorCode ierr; 3890 PetscInt i,rstart = 0,rend = 0,nz; 3891 const PetscInt *cwork; 3892 const PetscScalar *vwork; 3893 3894 PetscFunctionBegin; 3895 if (B->assembled) { 3896 ierr = MatZeroEntries(B);CHKERRQ(ierr); 3897 } 3898 ierr = MatGetOwnershipRange(A,&rstart,&rend);CHKERRQ(ierr); 3899 for (i=rstart; i<rend; i++) { 3900 ierr = MatGetRow(A,i,&nz,&cwork,&vwork);CHKERRQ(ierr); 3901 ierr = MatSetValues(B,1,&i,nz,cwork,vwork,INSERT_VALUES);CHKERRQ(ierr); 3902 ierr = MatRestoreRow(A,i,&nz,&cwork,&vwork);CHKERRQ(ierr); 3903 } 3904 ierr = MatAssemblyBegin(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 3905 ierr = MatAssemblyEnd(B,MAT_FINAL_ASSEMBLY);CHKERRQ(ierr); 3906 PetscFunctionReturn(0); 3907 } 3908 3909 /*@ 3910 MatCopy - Copys a matrix to another matrix. 3911 3912 Collective on Mat 3913 3914 Input Parameters: 3915 + A - the matrix 3916 - str - SAME_NONZERO_PATTERN or DIFFERENT_NONZERO_PATTERN 3917 3918 Output Parameter: 3919 . B - where the copy is put 3920 3921 Notes: 3922 If you use SAME_NONZERO_PATTERN then the two matrices had better have the 3923 same nonzero pattern or the routine will crash. 3924 3925 MatCopy() copies the matrix entries of a matrix to another existing 3926 matrix (after first zeroing the second matrix). A related routine is 3927 MatConvert(), which first creates a new matrix and then copies the data. 3928 3929 Level: intermediate 3930 3931 Concepts: matrices^copying 3932 3933 .seealso: MatConvert(), MatDuplicate() 3934 3935 @*/ 3936 PetscErrorCode MatCopy(Mat A,Mat B,MatStructure str) 3937 { 3938 PetscErrorCode ierr; 3939 PetscInt i; 3940 3941 PetscFunctionBegin; 3942 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 3943 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 3944 PetscValidType(A,1); 3945 PetscValidType(B,2); 3946 PetscCheckSameComm(A,1,B,2); 3947 MatCheckPreallocated(B,2); 3948 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 3949 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 3950 if (A->rmap->N != B->rmap->N || A->cmap->N != B->cmap->N) SETERRQ4(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Mat A,Mat B: global dim (%D,%D) (%D,%D)",A->rmap->N,B->rmap->N,A->cmap->N,B->cmap->N); 3951 MatCheckPreallocated(A,1); 3952 if (A == B) PetscFunctionReturn(0); 3953 3954 ierr = PetscLogEventBegin(MAT_Copy,A,B,0,0);CHKERRQ(ierr); 3955 if (A->ops->copy) { 3956 ierr = (*A->ops->copy)(A,B,str);CHKERRQ(ierr); 3957 } else { /* generic conversion */ 3958 ierr = MatCopy_Basic(A,B,str);CHKERRQ(ierr); 3959 } 3960 3961 B->stencil.dim = A->stencil.dim; 3962 B->stencil.noc = A->stencil.noc; 3963 for (i=0; i<=A->stencil.dim; i++) { 3964 B->stencil.dims[i] = A->stencil.dims[i]; 3965 B->stencil.starts[i] = A->stencil.starts[i]; 3966 } 3967 3968 ierr = PetscLogEventEnd(MAT_Copy,A,B,0,0);CHKERRQ(ierr); 3969 ierr = PetscObjectStateIncrease((PetscObject)B);CHKERRQ(ierr); 3970 PetscFunctionReturn(0); 3971 } 3972 3973 /*@C 3974 MatConvert - Converts a matrix to another matrix, either of the same 3975 or different type. 3976 3977 Collective on Mat 3978 3979 Input Parameters: 3980 + mat - the matrix 3981 . newtype - new matrix type. Use MATSAME to create a new matrix of the 3982 same type as the original matrix. 3983 - reuse - denotes if the destination matrix is to be created or reused. 3984 Use MAT_INPLACE_MATRIX for inplace conversion (that is when you want the input mat to be changed to contain the matrix in the new format), otherwise use 3985 MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX (can only be used after the first call was made with MAT_INITIAL_MATRIX, causes the matrix space in M to be reused). 3986 3987 Output Parameter: 3988 . M - pointer to place new matrix 3989 3990 Notes: 3991 MatConvert() first creates a new matrix and then copies the data from 3992 the first matrix. A related routine is MatCopy(), which copies the matrix 3993 entries of one matrix to another already existing matrix context. 3994 3995 Cannot be used to convert a sequential matrix to parallel or parallel to sequential, 3996 the MPI communicator of the generated matrix is always the same as the communicator 3997 of the input matrix. 3998 3999 Level: intermediate 4000 4001 Concepts: matrices^converting between storage formats 4002 4003 .seealso: MatCopy(), MatDuplicate() 4004 @*/ 4005 PetscErrorCode MatConvert(Mat mat, MatType newtype,MatReuse reuse,Mat *M) 4006 { 4007 PetscErrorCode ierr; 4008 PetscBool sametype,issame,flg; 4009 char convname[256],mtype[256]; 4010 Mat B; 4011 4012 PetscFunctionBegin; 4013 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4014 PetscValidType(mat,1); 4015 PetscValidPointer(M,3); 4016 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4017 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4018 MatCheckPreallocated(mat,1); 4019 ierr = MatSetOption(mat,MAT_NEW_NONZERO_LOCATION_ERR,PETSC_FALSE);CHKERRQ(ierr); 4020 4021 ierr = PetscOptionsGetString(((PetscObject)mat)->options,((PetscObject)mat)->prefix,"-matconvert_type",mtype,256,&flg);CHKERRQ(ierr); 4022 if (flg) { 4023 newtype = mtype; 4024 } 4025 ierr = PetscObjectTypeCompare((PetscObject)mat,newtype,&sametype);CHKERRQ(ierr); 4026 ierr = PetscStrcmp(newtype,"same",&issame);CHKERRQ(ierr); 4027 if ((reuse == MAT_INPLACE_MATRIX) && (mat != *M)) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"MAT_INPLACE_MATRIX requires same input and output matrix"); 4028 if ((reuse == MAT_REUSE_MATRIX) && (mat == *M)) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"MAT_REUSE_MATRIX means reuse matrix in final argument, perhaps you mean MAT_INPLACE_MATRIX"); 4029 4030 if ((reuse == MAT_INPLACE_MATRIX) && (issame || sametype)) PetscFunctionReturn(0); 4031 4032 if ((sametype || issame) && (reuse==MAT_INITIAL_MATRIX) && mat->ops->duplicate) { 4033 ierr = (*mat->ops->duplicate)(mat,MAT_COPY_VALUES,M);CHKERRQ(ierr); 4034 } else { 4035 PetscErrorCode (*conv)(Mat, MatType,MatReuse,Mat*)=NULL; 4036 const char *prefix[3] = {"seq","mpi",""}; 4037 PetscInt i; 4038 /* 4039 Order of precedence: 4040 1) See if a specialized converter is known to the current matrix. 4041 2) See if a specialized converter is known to the desired matrix class. 4042 3) See if a good general converter is registered for the desired class 4043 (as of 6/27/03 only MATMPIADJ falls into this category). 4044 4) See if a good general converter is known for the current matrix. 4045 5) Use a really basic converter. 4046 */ 4047 4048 /* 1) See if a specialized converter is known to the current matrix and the desired class */ 4049 for (i=0; i<3; i++) { 4050 ierr = PetscStrcpy(convname,"MatConvert_");CHKERRQ(ierr); 4051 ierr = PetscStrcat(convname,((PetscObject)mat)->type_name);CHKERRQ(ierr); 4052 ierr = PetscStrcat(convname,"_");CHKERRQ(ierr); 4053 ierr = PetscStrcat(convname,prefix[i]);CHKERRQ(ierr); 4054 ierr = PetscStrcat(convname,issame ? ((PetscObject)mat)->type_name : newtype);CHKERRQ(ierr); 4055 ierr = PetscStrcat(convname,"_C");CHKERRQ(ierr); 4056 ierr = PetscObjectQueryFunction((PetscObject)mat,convname,&conv);CHKERRQ(ierr); 4057 if (conv) goto foundconv; 4058 } 4059 4060 /* 2) See if a specialized converter is known to the desired matrix class. */ 4061 ierr = MatCreate(PetscObjectComm((PetscObject)mat),&B);CHKERRQ(ierr); 4062 ierr = MatSetSizes(B,mat->rmap->n,mat->cmap->n,mat->rmap->N,mat->cmap->N);CHKERRQ(ierr); 4063 ierr = MatSetType(B,newtype);CHKERRQ(ierr); 4064 for (i=0; i<3; i++) { 4065 ierr = PetscStrcpy(convname,"MatConvert_");CHKERRQ(ierr); 4066 ierr = PetscStrcat(convname,((PetscObject)mat)->type_name);CHKERRQ(ierr); 4067 ierr = PetscStrcat(convname,"_");CHKERRQ(ierr); 4068 ierr = PetscStrcat(convname,prefix[i]);CHKERRQ(ierr); 4069 ierr = PetscStrcat(convname,newtype);CHKERRQ(ierr); 4070 ierr = PetscStrcat(convname,"_C");CHKERRQ(ierr); 4071 ierr = PetscObjectQueryFunction((PetscObject)B,convname,&conv);CHKERRQ(ierr); 4072 if (conv) { 4073 ierr = MatDestroy(&B);CHKERRQ(ierr); 4074 goto foundconv; 4075 } 4076 } 4077 4078 /* 3) See if a good general converter is registered for the desired class */ 4079 conv = B->ops->convertfrom; 4080 ierr = MatDestroy(&B);CHKERRQ(ierr); 4081 if (conv) goto foundconv; 4082 4083 /* 4) See if a good general converter is known for the current matrix */ 4084 if (mat->ops->convert) { 4085 conv = mat->ops->convert; 4086 } 4087 if (conv) goto foundconv; 4088 4089 /* 5) Use a really basic converter. */ 4090 conv = MatConvert_Basic; 4091 4092 foundconv: 4093 ierr = PetscLogEventBegin(MAT_Convert,mat,0,0,0);CHKERRQ(ierr); 4094 ierr = (*conv)(mat,newtype,reuse,M);CHKERRQ(ierr); 4095 ierr = PetscLogEventEnd(MAT_Convert,mat,0,0,0);CHKERRQ(ierr); 4096 } 4097 ierr = PetscObjectStateIncrease((PetscObject)*M);CHKERRQ(ierr); 4098 4099 /* Copy Mat options */ 4100 if (mat->symmetric) {ierr = MatSetOption(*M,MAT_SYMMETRIC,PETSC_TRUE);CHKERRQ(ierr);} 4101 if (mat->hermitian) {ierr = MatSetOption(*M,MAT_HERMITIAN,PETSC_TRUE);CHKERRQ(ierr);} 4102 PetscFunctionReturn(0); 4103 } 4104 4105 /*@C 4106 MatFactorGetSolverPackage - Returns name of the package providing the factorization routines 4107 4108 Not Collective 4109 4110 Input Parameter: 4111 . mat - the matrix, must be a factored matrix 4112 4113 Output Parameter: 4114 . type - the string name of the package (do not free this string) 4115 4116 Notes: 4117 In Fortran you pass in a empty string and the package name will be copied into it. 4118 (Make sure the string is long enough) 4119 4120 Level: intermediate 4121 4122 .seealso: MatCopy(), MatDuplicate(), MatGetFactorAvailable(), MatGetFactor() 4123 @*/ 4124 PetscErrorCode MatFactorGetSolverPackage(Mat mat, const MatSolverPackage *type) 4125 { 4126 PetscErrorCode ierr, (*conv)(Mat,const MatSolverPackage*); 4127 4128 PetscFunctionBegin; 4129 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4130 PetscValidType(mat,1); 4131 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Only for factored matrix"); 4132 ierr = PetscObjectQueryFunction((PetscObject)mat,"MatFactorGetSolverPackage_C",&conv);CHKERRQ(ierr); 4133 if (!conv) { 4134 *type = MATSOLVERPETSC; 4135 } else { 4136 ierr = (*conv)(mat,type);CHKERRQ(ierr); 4137 } 4138 PetscFunctionReturn(0); 4139 } 4140 4141 typedef struct _MatSolverPackageForSpecifcType* MatSolverPackageForSpecifcType; 4142 struct _MatSolverPackageForSpecifcType { 4143 MatType mtype; 4144 PetscErrorCode (*getfactor[4])(Mat,MatFactorType,Mat*); 4145 MatSolverPackageForSpecifcType next; 4146 }; 4147 4148 typedef struct _MatSolverPackageHolder* MatSolverPackageHolder; 4149 struct _MatSolverPackageHolder { 4150 char *name; 4151 MatSolverPackageForSpecifcType handlers; 4152 MatSolverPackageHolder next; 4153 }; 4154 4155 static MatSolverPackageHolder MatSolverPackageHolders = NULL; 4156 4157 /*@C 4158 MatSolvePackageRegister - Registers a MatSolverPackage that works for a particular matrix type 4159 4160 Input Parameters: 4161 + package - name of the package, for example petsc or superlu 4162 . mtype - the matrix type that works with this package 4163 . ftype - the type of factorization supported by the package 4164 - getfactor - routine that will create the factored matrix ready to be used 4165 4166 Level: intermediate 4167 4168 .seealso: MatCopy(), MatDuplicate(), MatGetFactorAvailable() 4169 @*/ 4170 PetscErrorCode MatSolverPackageRegister(const MatSolverPackage package,const MatType mtype,MatFactorType ftype,PetscErrorCode (*getfactor)(Mat,MatFactorType,Mat*)) 4171 { 4172 PetscErrorCode ierr; 4173 MatSolverPackageHolder next = MatSolverPackageHolders,prev; 4174 PetscBool flg; 4175 MatSolverPackageForSpecifcType inext,iprev = NULL; 4176 4177 PetscFunctionBegin; 4178 if (!next) { 4179 ierr = PetscNew(&MatSolverPackageHolders);CHKERRQ(ierr); 4180 ierr = PetscStrallocpy(package,&MatSolverPackageHolders->name);CHKERRQ(ierr); 4181 ierr = PetscNew(&MatSolverPackageHolders->handlers);CHKERRQ(ierr); 4182 ierr = PetscStrallocpy(mtype,(char **)&MatSolverPackageHolders->handlers->mtype);CHKERRQ(ierr); 4183 MatSolverPackageHolders->handlers->getfactor[(int)ftype-1] = getfactor; 4184 PetscFunctionReturn(0); 4185 } 4186 while (next) { 4187 ierr = PetscStrcasecmp(package,next->name,&flg);CHKERRQ(ierr); 4188 if (flg) { 4189 if (!next->handlers) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_PLIB,"MatSolverPackageHolder is missing handlers"); 4190 inext = next->handlers; 4191 while (inext) { 4192 ierr = PetscStrcasecmp(mtype,inext->mtype,&flg);CHKERRQ(ierr); 4193 if (flg) { 4194 inext->getfactor[(int)ftype-1] = getfactor; 4195 PetscFunctionReturn(0); 4196 } 4197 iprev = inext; 4198 inext = inext->next; 4199 } 4200 ierr = PetscNew(&iprev->next);CHKERRQ(ierr); 4201 ierr = PetscStrallocpy(mtype,(char **)&iprev->next->mtype);CHKERRQ(ierr); 4202 iprev->next->getfactor[(int)ftype-1] = getfactor; 4203 PetscFunctionReturn(0); 4204 } 4205 prev = next; 4206 next = next->next; 4207 } 4208 ierr = PetscNew(&prev->next);CHKERRQ(ierr); 4209 ierr = PetscStrallocpy(package,&prev->next->name);CHKERRQ(ierr); 4210 ierr = PetscNew(&prev->next->handlers);CHKERRQ(ierr); 4211 ierr = PetscStrallocpy(mtype,(char **)&prev->next->handlers->mtype);CHKERRQ(ierr); 4212 prev->next->handlers->getfactor[(int)ftype-1] = getfactor; 4213 PetscFunctionReturn(0); 4214 } 4215 4216 /*@C 4217 MatSolvePackageGet - Get's the function that creates the factor matrix if it exist 4218 4219 Input Parameters: 4220 + package - name of the package, for example petsc or superlu 4221 . ftype - the type of factorization supported by the package 4222 - mtype - the matrix type that works with this package 4223 4224 Output Parameters: 4225 + foundpackage - PETSC_TRUE if the package was registered 4226 . foundmtype - PETSC_TRUE if the package supports the requested mtype 4227 - getfactor - routine that will create the factored matrix ready to be used or NULL if not found 4228 4229 Level: intermediate 4230 4231 .seealso: MatCopy(), MatDuplicate(), MatGetFactorAvailable() 4232 @*/ 4233 PetscErrorCode MatSolverPackageGet(const MatSolverPackage package,const MatType mtype,MatFactorType ftype,PetscBool *foundpackage,PetscBool *foundmtype,PetscErrorCode (**getfactor)(Mat,MatFactorType,Mat*)) 4234 { 4235 PetscErrorCode ierr; 4236 MatSolverPackageHolder next = MatSolverPackageHolders; 4237 PetscBool flg; 4238 MatSolverPackageForSpecifcType inext; 4239 4240 PetscFunctionBegin; 4241 if (foundpackage) *foundpackage = PETSC_FALSE; 4242 if (foundmtype) *foundmtype = PETSC_FALSE; 4243 if (getfactor) *getfactor = NULL; 4244 4245 if (package) { 4246 while (next) { 4247 ierr = PetscStrcasecmp(package,next->name,&flg);CHKERRQ(ierr); 4248 if (flg) { 4249 if (foundpackage) *foundpackage = PETSC_TRUE; 4250 inext = next->handlers; 4251 while (inext) { 4252 ierr = PetscStrbeginswith(mtype,inext->mtype,&flg);CHKERRQ(ierr); 4253 if (flg) { 4254 if (foundmtype) *foundmtype = PETSC_TRUE; 4255 if (getfactor) *getfactor = inext->getfactor[(int)ftype-1]; 4256 PetscFunctionReturn(0); 4257 } 4258 inext = inext->next; 4259 } 4260 } 4261 next = next->next; 4262 } 4263 } else { 4264 while (next) { 4265 inext = next->handlers; 4266 while (inext) { 4267 ierr = PetscStrbeginswith(mtype,inext->mtype,&flg);CHKERRQ(ierr); 4268 if (flg && inext->getfactor[(int)ftype-1]) { 4269 if (foundpackage) *foundpackage = PETSC_TRUE; 4270 if (foundmtype) *foundmtype = PETSC_TRUE; 4271 if (getfactor) *getfactor = inext->getfactor[(int)ftype-1]; 4272 PetscFunctionReturn(0); 4273 } 4274 inext = inext->next; 4275 } 4276 next = next->next; 4277 } 4278 } 4279 PetscFunctionReturn(0); 4280 } 4281 4282 PetscErrorCode MatSolverPackageDestroy(void) 4283 { 4284 PetscErrorCode ierr; 4285 MatSolverPackageHolder next = MatSolverPackageHolders,prev; 4286 MatSolverPackageForSpecifcType inext,iprev; 4287 4288 PetscFunctionBegin; 4289 while (next) { 4290 ierr = PetscFree(next->name);CHKERRQ(ierr); 4291 inext = next->handlers; 4292 while (inext) { 4293 ierr = PetscFree(inext->mtype);CHKERRQ(ierr); 4294 iprev = inext; 4295 inext = inext->next; 4296 ierr = PetscFree(iprev);CHKERRQ(ierr); 4297 } 4298 prev = next; 4299 next = next->next; 4300 ierr = PetscFree(prev);CHKERRQ(ierr); 4301 } 4302 MatSolverPackageHolders = NULL; 4303 PetscFunctionReturn(0); 4304 } 4305 4306 /*@C 4307 MatGetFactor - Returns a matrix suitable to calls to MatXXFactorSymbolic() 4308 4309 Collective on Mat 4310 4311 Input Parameters: 4312 + mat - the matrix 4313 . type - name of solver type, for example, superlu, petsc (to use PETSc's default) 4314 - ftype - factor type, MAT_FACTOR_LU, MAT_FACTOR_CHOLESKY, MAT_FACTOR_ICC, MAT_FACTOR_ILU, 4315 4316 Output Parameters: 4317 . f - the factor matrix used with MatXXFactorSymbolic() calls 4318 4319 Notes: 4320 Some PETSc matrix formats have alternative solvers available that are contained in alternative packages 4321 such as pastix, superlu, mumps etc. 4322 4323 PETSc must have been ./configure to use the external solver, using the option --download-package 4324 4325 Level: intermediate 4326 4327 .seealso: MatCopy(), MatDuplicate(), MatGetFactorAvailable() 4328 @*/ 4329 PetscErrorCode MatGetFactor(Mat mat, const MatSolverPackage type,MatFactorType ftype,Mat *f) 4330 { 4331 PetscErrorCode ierr,(*conv)(Mat,MatFactorType,Mat*); 4332 PetscBool foundpackage,foundmtype; 4333 4334 PetscFunctionBegin; 4335 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4336 PetscValidType(mat,1); 4337 4338 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4339 MatCheckPreallocated(mat,1); 4340 4341 ierr = MatSolverPackageGet(type,((PetscObject)mat)->type_name,ftype,&foundpackage,&foundmtype,&conv);CHKERRQ(ierr); 4342 if (!foundpackage) { 4343 if (type) { 4344 SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_MISSING_FACTOR,"Could not locate solver package %s. Perhaps you must ./configure with --download-%s",type,type); 4345 } else { 4346 SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_MISSING_FACTOR,"Could not locate a solver package. Perhaps you must ./configure with --download-<package>"); 4347 } 4348 } 4349 4350 if (!foundmtype) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_MISSING_FACTOR,"MatSolverPackage %s does not support matrix type %s",type,((PetscObject)mat)->type_name); 4351 if (!conv) SETERRQ3(PetscObjectComm((PetscObject)mat),PETSC_ERR_MISSING_FACTOR,"MatSolverPackage %s does not support factorization type %s for matrix type %s",type,MatFactorTypes[ftype],((PetscObject)mat)->type_name); 4352 4353 ierr = (*conv)(mat,ftype,f);CHKERRQ(ierr); 4354 PetscFunctionReturn(0); 4355 } 4356 4357 /*@C 4358 MatGetFactorAvailable - Returns a a flag if matrix supports particular package and factor type 4359 4360 Not Collective 4361 4362 Input Parameters: 4363 + mat - the matrix 4364 . type - name of solver type, for example, superlu, petsc (to use PETSc's default) 4365 - ftype - factor type, MAT_FACTOR_LU, MAT_FACTOR_CHOLESKY, MAT_FACTOR_ICC, MAT_FACTOR_ILU, 4366 4367 Output Parameter: 4368 . flg - PETSC_TRUE if the factorization is available 4369 4370 Notes: 4371 Some PETSc matrix formats have alternative solvers available that are contained in alternative packages 4372 such as pastix, superlu, mumps etc. 4373 4374 PETSc must have been ./configure to use the external solver, using the option --download-package 4375 4376 Level: intermediate 4377 4378 .seealso: MatCopy(), MatDuplicate(), MatGetFactor() 4379 @*/ 4380 PetscErrorCode MatGetFactorAvailable(Mat mat, const MatSolverPackage type,MatFactorType ftype,PetscBool *flg) 4381 { 4382 PetscErrorCode ierr, (*gconv)(Mat,MatFactorType,Mat*); 4383 4384 PetscFunctionBegin; 4385 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4386 PetscValidType(mat,1); 4387 4388 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4389 MatCheckPreallocated(mat,1); 4390 4391 *flg = PETSC_FALSE; 4392 ierr = MatSolverPackageGet(type,((PetscObject)mat)->type_name,ftype,NULL,NULL,&gconv);CHKERRQ(ierr); 4393 if (gconv) { 4394 *flg = PETSC_TRUE; 4395 } 4396 PetscFunctionReturn(0); 4397 } 4398 4399 #include <petscdmtypes.h> 4400 4401 /*@ 4402 MatDuplicate - Duplicates a matrix including the non-zero structure. 4403 4404 Collective on Mat 4405 4406 Input Parameters: 4407 + mat - the matrix 4408 - op - One of MAT_DO_NOT_COPY_VALUES, MAT_COPY_VALUES, or MAT_SHARE_NONZERO_PATTERN. 4409 See the manual page for MatDuplicateOption for an explanation of these options. 4410 4411 Output Parameter: 4412 . M - pointer to place new matrix 4413 4414 Level: intermediate 4415 4416 Concepts: matrices^duplicating 4417 4418 Notes: You cannot change the nonzero pattern for the parent or child matrix if you use MAT_SHARE_NONZERO_PATTERN. 4419 4420 .seealso: MatCopy(), MatConvert(), MatDuplicateOption 4421 @*/ 4422 PetscErrorCode MatDuplicate(Mat mat,MatDuplicateOption op,Mat *M) 4423 { 4424 PetscErrorCode ierr; 4425 Mat B; 4426 PetscInt i; 4427 DM dm; 4428 4429 PetscFunctionBegin; 4430 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4431 PetscValidType(mat,1); 4432 PetscValidPointer(M,3); 4433 if (op == MAT_COPY_VALUES && !mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"MAT_COPY_VALUES not allowed for unassembled matrix"); 4434 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4435 MatCheckPreallocated(mat,1); 4436 4437 *M = 0; 4438 if (!mat->ops->duplicate) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Not written for this matrix type"); 4439 ierr = PetscLogEventBegin(MAT_Convert,mat,0,0,0);CHKERRQ(ierr); 4440 ierr = (*mat->ops->duplicate)(mat,op,M);CHKERRQ(ierr); 4441 B = *M; 4442 4443 B->stencil.dim = mat->stencil.dim; 4444 B->stencil.noc = mat->stencil.noc; 4445 for (i=0; i<=mat->stencil.dim; i++) { 4446 B->stencil.dims[i] = mat->stencil.dims[i]; 4447 B->stencil.starts[i] = mat->stencil.starts[i]; 4448 } 4449 4450 B->nooffproczerorows = mat->nooffproczerorows; 4451 B->nooffprocentries = mat->nooffprocentries; 4452 4453 ierr = PetscObjectQuery((PetscObject) mat, "__PETSc_dm", (PetscObject*) &dm);CHKERRQ(ierr); 4454 if (dm) { 4455 ierr = PetscObjectCompose((PetscObject) B, "__PETSc_dm", (PetscObject) dm);CHKERRQ(ierr); 4456 } 4457 ierr = PetscLogEventEnd(MAT_Convert,mat,0,0,0);CHKERRQ(ierr); 4458 ierr = PetscObjectStateIncrease((PetscObject)B);CHKERRQ(ierr); 4459 PetscFunctionReturn(0); 4460 } 4461 4462 /*@ 4463 MatGetDiagonal - Gets the diagonal of a matrix. 4464 4465 Logically Collective on Mat and Vec 4466 4467 Input Parameters: 4468 + mat - the matrix 4469 - v - the vector for storing the diagonal 4470 4471 Output Parameter: 4472 . v - the diagonal of the matrix 4473 4474 Level: intermediate 4475 4476 Note: 4477 Currently only correct in parallel for square matrices. 4478 4479 Concepts: matrices^accessing diagonals 4480 4481 .seealso: MatGetRow(), MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRowMaxAbs() 4482 @*/ 4483 PetscErrorCode MatGetDiagonal(Mat mat,Vec v) 4484 { 4485 PetscErrorCode ierr; 4486 4487 PetscFunctionBegin; 4488 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4489 PetscValidType(mat,1); 4490 PetscValidHeaderSpecific(v,VEC_CLASSID,2); 4491 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4492 if (!mat->ops->getdiagonal) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4493 MatCheckPreallocated(mat,1); 4494 4495 ierr = (*mat->ops->getdiagonal)(mat,v);CHKERRQ(ierr); 4496 ierr = PetscObjectStateIncrease((PetscObject)v);CHKERRQ(ierr); 4497 PetscFunctionReturn(0); 4498 } 4499 4500 /*@C 4501 MatGetRowMin - Gets the minimum value (of the real part) of each 4502 row of the matrix 4503 4504 Logically Collective on Mat and Vec 4505 4506 Input Parameters: 4507 . mat - the matrix 4508 4509 Output Parameter: 4510 + v - the vector for storing the maximums 4511 - idx - the indices of the column found for each row (optional) 4512 4513 Level: intermediate 4514 4515 Notes: The result of this call are the same as if one converted the matrix to dense format 4516 and found the minimum value in each row (i.e. the implicit zeros are counted as zeros). 4517 4518 This code is only implemented for a couple of matrix formats. 4519 4520 Concepts: matrices^getting row maximums 4521 4522 .seealso: MatGetDiagonal(), MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRowMaxAbs(), 4523 MatGetRowMax() 4524 @*/ 4525 PetscErrorCode MatGetRowMin(Mat mat,Vec v,PetscInt idx[]) 4526 { 4527 PetscErrorCode ierr; 4528 4529 PetscFunctionBegin; 4530 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4531 PetscValidType(mat,1); 4532 PetscValidHeaderSpecific(v,VEC_CLASSID,2); 4533 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4534 if (!mat->ops->getrowmax) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4535 MatCheckPreallocated(mat,1); 4536 4537 ierr = (*mat->ops->getrowmin)(mat,v,idx);CHKERRQ(ierr); 4538 ierr = PetscObjectStateIncrease((PetscObject)v);CHKERRQ(ierr); 4539 PetscFunctionReturn(0); 4540 } 4541 4542 /*@C 4543 MatGetRowMinAbs - Gets the minimum value (in absolute value) of each 4544 row of the matrix 4545 4546 Logically Collective on Mat and Vec 4547 4548 Input Parameters: 4549 . mat - the matrix 4550 4551 Output Parameter: 4552 + v - the vector for storing the minimums 4553 - idx - the indices of the column found for each row (or NULL if not needed) 4554 4555 Level: intermediate 4556 4557 Notes: if a row is completely empty or has only 0.0 values then the idx[] value for that 4558 row is 0 (the first column). 4559 4560 This code is only implemented for a couple of matrix formats. 4561 4562 Concepts: matrices^getting row maximums 4563 4564 .seealso: MatGetDiagonal(), MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRowMax(), MatGetRowMaxAbs(), MatGetRowMin() 4565 @*/ 4566 PetscErrorCode MatGetRowMinAbs(Mat mat,Vec v,PetscInt idx[]) 4567 { 4568 PetscErrorCode ierr; 4569 4570 PetscFunctionBegin; 4571 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4572 PetscValidType(mat,1); 4573 PetscValidHeaderSpecific(v,VEC_CLASSID,2); 4574 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4575 if (!mat->ops->getrowminabs) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4576 MatCheckPreallocated(mat,1); 4577 if (idx) {ierr = PetscMemzero(idx,mat->rmap->n*sizeof(PetscInt));CHKERRQ(ierr);} 4578 4579 ierr = (*mat->ops->getrowminabs)(mat,v,idx);CHKERRQ(ierr); 4580 ierr = PetscObjectStateIncrease((PetscObject)v);CHKERRQ(ierr); 4581 PetscFunctionReturn(0); 4582 } 4583 4584 /*@C 4585 MatGetRowMax - Gets the maximum value (of the real part) of each 4586 row of the matrix 4587 4588 Logically Collective on Mat and Vec 4589 4590 Input Parameters: 4591 . mat - the matrix 4592 4593 Output Parameter: 4594 + v - the vector for storing the maximums 4595 - idx - the indices of the column found for each row (optional) 4596 4597 Level: intermediate 4598 4599 Notes: The result of this call are the same as if one converted the matrix to dense format 4600 and found the minimum value in each row (i.e. the implicit zeros are counted as zeros). 4601 4602 This code is only implemented for a couple of matrix formats. 4603 4604 Concepts: matrices^getting row maximums 4605 4606 .seealso: MatGetDiagonal(), MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRowMaxAbs(), MatGetRowMin() 4607 @*/ 4608 PetscErrorCode MatGetRowMax(Mat mat,Vec v,PetscInt idx[]) 4609 { 4610 PetscErrorCode ierr; 4611 4612 PetscFunctionBegin; 4613 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4614 PetscValidType(mat,1); 4615 PetscValidHeaderSpecific(v,VEC_CLASSID,2); 4616 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4617 if (!mat->ops->getrowmax) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4618 MatCheckPreallocated(mat,1); 4619 4620 ierr = (*mat->ops->getrowmax)(mat,v,idx);CHKERRQ(ierr); 4621 ierr = PetscObjectStateIncrease((PetscObject)v);CHKERRQ(ierr); 4622 PetscFunctionReturn(0); 4623 } 4624 4625 /*@C 4626 MatGetRowMaxAbs - Gets the maximum value (in absolute value) of each 4627 row of the matrix 4628 4629 Logically Collective on Mat and Vec 4630 4631 Input Parameters: 4632 . mat - the matrix 4633 4634 Output Parameter: 4635 + v - the vector for storing the maximums 4636 - idx - the indices of the column found for each row (or NULL if not needed) 4637 4638 Level: intermediate 4639 4640 Notes: if a row is completely empty or has only 0.0 values then the idx[] value for that 4641 row is 0 (the first column). 4642 4643 This code is only implemented for a couple of matrix formats. 4644 4645 Concepts: matrices^getting row maximums 4646 4647 .seealso: MatGetDiagonal(), MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRowMax(), MatGetRowMin() 4648 @*/ 4649 PetscErrorCode MatGetRowMaxAbs(Mat mat,Vec v,PetscInt idx[]) 4650 { 4651 PetscErrorCode ierr; 4652 4653 PetscFunctionBegin; 4654 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4655 PetscValidType(mat,1); 4656 PetscValidHeaderSpecific(v,VEC_CLASSID,2); 4657 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4658 if (!mat->ops->getrowmaxabs) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4659 MatCheckPreallocated(mat,1); 4660 if (idx) {ierr = PetscMemzero(idx,mat->rmap->n*sizeof(PetscInt));CHKERRQ(ierr);} 4661 4662 ierr = (*mat->ops->getrowmaxabs)(mat,v,idx);CHKERRQ(ierr); 4663 ierr = PetscObjectStateIncrease((PetscObject)v);CHKERRQ(ierr); 4664 PetscFunctionReturn(0); 4665 } 4666 4667 /*@ 4668 MatGetRowSum - Gets the sum of each row of the matrix 4669 4670 Logically or Neighborhood Collective on Mat and Vec 4671 4672 Input Parameters: 4673 . mat - the matrix 4674 4675 Output Parameter: 4676 . v - the vector for storing the sum of rows 4677 4678 Level: intermediate 4679 4680 Notes: This code is slow since it is not currently specialized for different formats 4681 4682 Concepts: matrices^getting row sums 4683 4684 .seealso: MatGetDiagonal(), MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRowMax(), MatGetRowMin() 4685 @*/ 4686 PetscErrorCode MatGetRowSum(Mat mat, Vec v) 4687 { 4688 Vec ones; 4689 PetscErrorCode ierr; 4690 4691 PetscFunctionBegin; 4692 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4693 PetscValidType(mat,1); 4694 PetscValidHeaderSpecific(v,VEC_CLASSID,2); 4695 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4696 MatCheckPreallocated(mat,1); 4697 ierr = MatCreateVecs(mat,&ones,NULL);CHKERRQ(ierr); 4698 ierr = VecSet(ones,1.);CHKERRQ(ierr); 4699 ierr = MatMult(mat,ones,v);CHKERRQ(ierr); 4700 ierr = VecDestroy(&ones);CHKERRQ(ierr); 4701 PetscFunctionReturn(0); 4702 } 4703 4704 /*@ 4705 MatTranspose - Computes an in-place or out-of-place transpose of a matrix. 4706 4707 Collective on Mat 4708 4709 Input Parameter: 4710 + mat - the matrix to transpose 4711 - reuse - either MAT_INITIAL_MATRIX, MAT_REUSE_MATRIX, or MAT_INPLACE_MATRIX 4712 4713 Output Parameters: 4714 . B - the transpose 4715 4716 Notes: 4717 If you use MAT_INPLACE_MATRIX then you must pass in &mat for B 4718 4719 MAT_REUSE_MATRIX causes the B matrix from a previous call to this function with MAT_INITIAL_MATRIX to be used 4720 4721 Consider using MatCreateTranspose() instead if you only need a matrix that behaves like the transpose, but don't need the storage to be changed. 4722 4723 Level: intermediate 4724 4725 Concepts: matrices^transposing 4726 4727 .seealso: MatMultTranspose(), MatMultTransposeAdd(), MatIsTranspose(), MatReuse 4728 @*/ 4729 PetscErrorCode MatTranspose(Mat mat,MatReuse reuse,Mat *B) 4730 { 4731 PetscErrorCode ierr; 4732 4733 PetscFunctionBegin; 4734 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4735 PetscValidType(mat,1); 4736 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4737 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4738 if (!mat->ops->transpose) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4739 if (reuse == MAT_INPLACE_MATRIX && mat != *B) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"MAT_INPLACE_MATRIX requires last matrix to match first"); 4740 if (reuse == MAT_REUSE_MATRIX && mat == *B) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Perhaps you mean MAT_INPLACE_MATRIX"); 4741 MatCheckPreallocated(mat,1); 4742 4743 ierr = PetscLogEventBegin(MAT_Transpose,mat,0,0,0);CHKERRQ(ierr); 4744 ierr = (*mat->ops->transpose)(mat,reuse,B);CHKERRQ(ierr); 4745 ierr = PetscLogEventEnd(MAT_Transpose,mat,0,0,0);CHKERRQ(ierr); 4746 if (B) {ierr = PetscObjectStateIncrease((PetscObject)*B);CHKERRQ(ierr);} 4747 PetscFunctionReturn(0); 4748 } 4749 4750 /*@ 4751 MatIsTranspose - Test whether a matrix is another one's transpose, 4752 or its own, in which case it tests symmetry. 4753 4754 Collective on Mat 4755 4756 Input Parameter: 4757 + A - the matrix to test 4758 - B - the matrix to test against, this can equal the first parameter 4759 4760 Output Parameters: 4761 . flg - the result 4762 4763 Notes: 4764 Only available for SeqAIJ/MPIAIJ matrices. The sequential algorithm 4765 has a running time of the order of the number of nonzeros; the parallel 4766 test involves parallel copies of the block-offdiagonal parts of the matrix. 4767 4768 Level: intermediate 4769 4770 Concepts: matrices^transposing, matrix^symmetry 4771 4772 .seealso: MatTranspose(), MatIsSymmetric(), MatIsHermitian() 4773 @*/ 4774 PetscErrorCode MatIsTranspose(Mat A,Mat B,PetscReal tol,PetscBool *flg) 4775 { 4776 PetscErrorCode ierr,(*f)(Mat,Mat,PetscReal,PetscBool*),(*g)(Mat,Mat,PetscReal,PetscBool*); 4777 4778 PetscFunctionBegin; 4779 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 4780 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 4781 PetscValidPointer(flg,3); 4782 ierr = PetscObjectQueryFunction((PetscObject)A,"MatIsTranspose_C",&f);CHKERRQ(ierr); 4783 ierr = PetscObjectQueryFunction((PetscObject)B,"MatIsTranspose_C",&g);CHKERRQ(ierr); 4784 *flg = PETSC_FALSE; 4785 if (f && g) { 4786 if (f == g) { 4787 ierr = (*f)(A,B,tol,flg);CHKERRQ(ierr); 4788 } else SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_NOTSAMETYPE,"Matrices do not have the same comparator for symmetry test"); 4789 } else { 4790 MatType mattype; 4791 if (!f) { 4792 ierr = MatGetType(A,&mattype);CHKERRQ(ierr); 4793 } else { 4794 ierr = MatGetType(B,&mattype);CHKERRQ(ierr); 4795 } 4796 SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix of type <%s> does not support checking for transpose",mattype); 4797 } 4798 PetscFunctionReturn(0); 4799 } 4800 4801 /*@ 4802 MatHermitianTranspose - Computes an in-place or out-of-place transpose of a matrix in complex conjugate. 4803 4804 Collective on Mat 4805 4806 Input Parameter: 4807 + mat - the matrix to transpose and complex conjugate 4808 - reuse - MAT_INITIAL_MATRIX to create a new matrix, MAT_INPLACE_MATRIX to reuse the first argument to store the transpose 4809 4810 Output Parameters: 4811 . B - the Hermitian 4812 4813 Level: intermediate 4814 4815 Concepts: matrices^transposing, complex conjugatex 4816 4817 .seealso: MatTranspose(), MatMultTranspose(), MatMultTransposeAdd(), MatIsTranspose(), MatReuse 4818 @*/ 4819 PetscErrorCode MatHermitianTranspose(Mat mat,MatReuse reuse,Mat *B) 4820 { 4821 PetscErrorCode ierr; 4822 4823 PetscFunctionBegin; 4824 ierr = MatTranspose(mat,reuse,B);CHKERRQ(ierr); 4825 #if defined(PETSC_USE_COMPLEX) 4826 ierr = MatConjugate(*B);CHKERRQ(ierr); 4827 #endif 4828 PetscFunctionReturn(0); 4829 } 4830 4831 /*@ 4832 MatIsHermitianTranspose - Test whether a matrix is another one's Hermitian transpose, 4833 4834 Collective on Mat 4835 4836 Input Parameter: 4837 + A - the matrix to test 4838 - B - the matrix to test against, this can equal the first parameter 4839 4840 Output Parameters: 4841 . flg - the result 4842 4843 Notes: 4844 Only available for SeqAIJ/MPIAIJ matrices. The sequential algorithm 4845 has a running time of the order of the number of nonzeros; the parallel 4846 test involves parallel copies of the block-offdiagonal parts of the matrix. 4847 4848 Level: intermediate 4849 4850 Concepts: matrices^transposing, matrix^symmetry 4851 4852 .seealso: MatTranspose(), MatIsSymmetric(), MatIsHermitian(), MatIsTranspose() 4853 @*/ 4854 PetscErrorCode MatIsHermitianTranspose(Mat A,Mat B,PetscReal tol,PetscBool *flg) 4855 { 4856 PetscErrorCode ierr,(*f)(Mat,Mat,PetscReal,PetscBool*),(*g)(Mat,Mat,PetscReal,PetscBool*); 4857 4858 PetscFunctionBegin; 4859 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 4860 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 4861 PetscValidPointer(flg,3); 4862 ierr = PetscObjectQueryFunction((PetscObject)A,"MatIsHermitianTranspose_C",&f);CHKERRQ(ierr); 4863 ierr = PetscObjectQueryFunction((PetscObject)B,"MatIsHermitianTranspose_C",&g);CHKERRQ(ierr); 4864 if (f && g) { 4865 if (f==g) { 4866 ierr = (*f)(A,B,tol,flg);CHKERRQ(ierr); 4867 } else SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_NOTSAMETYPE,"Matrices do not have the same comparator for Hermitian test"); 4868 } 4869 PetscFunctionReturn(0); 4870 } 4871 4872 /*@ 4873 MatPermute - Creates a new matrix with rows and columns permuted from the 4874 original. 4875 4876 Collective on Mat 4877 4878 Input Parameters: 4879 + mat - the matrix to permute 4880 . row - row permutation, each processor supplies only the permutation for its rows 4881 - col - column permutation, each processor supplies only the permutation for its columns 4882 4883 Output Parameters: 4884 . B - the permuted matrix 4885 4886 Level: advanced 4887 4888 Note: 4889 The index sets map from row/col of permuted matrix to row/col of original matrix. 4890 The index sets should be on the same communicator as Mat and have the same local sizes. 4891 4892 Concepts: matrices^permuting 4893 4894 .seealso: MatGetOrdering(), ISAllGather() 4895 4896 @*/ 4897 PetscErrorCode MatPermute(Mat mat,IS row,IS col,Mat *B) 4898 { 4899 PetscErrorCode ierr; 4900 4901 PetscFunctionBegin; 4902 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4903 PetscValidType(mat,1); 4904 PetscValidHeaderSpecific(row,IS_CLASSID,2); 4905 PetscValidHeaderSpecific(col,IS_CLASSID,3); 4906 PetscValidPointer(B,4); 4907 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4908 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4909 if (!mat->ops->permute) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"MatPermute not available for Mat type %s",((PetscObject)mat)->type_name); 4910 MatCheckPreallocated(mat,1); 4911 4912 ierr = (*mat->ops->permute)(mat,row,col,B);CHKERRQ(ierr); 4913 ierr = PetscObjectStateIncrease((PetscObject)*B);CHKERRQ(ierr); 4914 PetscFunctionReturn(0); 4915 } 4916 4917 /*@ 4918 MatEqual - Compares two matrices. 4919 4920 Collective on Mat 4921 4922 Input Parameters: 4923 + A - the first matrix 4924 - B - the second matrix 4925 4926 Output Parameter: 4927 . flg - PETSC_TRUE if the matrices are equal; PETSC_FALSE otherwise. 4928 4929 Level: intermediate 4930 4931 Concepts: matrices^equality between 4932 @*/ 4933 PetscErrorCode MatEqual(Mat A,Mat B,PetscBool *flg) 4934 { 4935 PetscErrorCode ierr; 4936 4937 PetscFunctionBegin; 4938 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 4939 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 4940 PetscValidType(A,1); 4941 PetscValidType(B,2); 4942 PetscValidIntPointer(flg,3); 4943 PetscCheckSameComm(A,1,B,2); 4944 MatCheckPreallocated(B,2); 4945 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4946 if (!B->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4947 if (A->rmap->N != B->rmap->N || A->cmap->N != B->cmap->N) SETERRQ4(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Mat A,Mat B: global dim %D %D %D %D",A->rmap->N,B->rmap->N,A->cmap->N,B->cmap->N); 4948 if (!A->ops->equal) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Mat type %s",((PetscObject)A)->type_name); 4949 if (!B->ops->equal) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Mat type %s",((PetscObject)B)->type_name); 4950 if (A->ops->equal != B->ops->equal) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"A is type: %s\nB is type: %s",((PetscObject)A)->type_name,((PetscObject)B)->type_name); 4951 MatCheckPreallocated(A,1); 4952 4953 ierr = (*A->ops->equal)(A,B,flg);CHKERRQ(ierr); 4954 PetscFunctionReturn(0); 4955 } 4956 4957 /*@C 4958 MatDiagonalScale - Scales a matrix on the left and right by diagonal 4959 matrices that are stored as vectors. Either of the two scaling 4960 matrices can be NULL. 4961 4962 Collective on Mat 4963 4964 Input Parameters: 4965 + mat - the matrix to be scaled 4966 . l - the left scaling vector (or NULL) 4967 - r - the right scaling vector (or NULL) 4968 4969 Notes: 4970 MatDiagonalScale() computes A = LAR, where 4971 L = a diagonal matrix (stored as a vector), R = a diagonal matrix (stored as a vector) 4972 The L scales the rows of the matrix, the R scales the columns of the matrix. 4973 4974 Level: intermediate 4975 4976 Concepts: matrices^diagonal scaling 4977 Concepts: diagonal scaling of matrices 4978 4979 .seealso: MatScale() 4980 @*/ 4981 PetscErrorCode MatDiagonalScale(Mat mat,Vec l,Vec r) 4982 { 4983 PetscErrorCode ierr; 4984 4985 PetscFunctionBegin; 4986 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 4987 PetscValidType(mat,1); 4988 if (!mat->ops->diagonalscale) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 4989 if (l) {PetscValidHeaderSpecific(l,VEC_CLASSID,2);PetscCheckSameComm(mat,1,l,2);} 4990 if (r) {PetscValidHeaderSpecific(r,VEC_CLASSID,3);PetscCheckSameComm(mat,1,r,3);} 4991 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 4992 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 4993 MatCheckPreallocated(mat,1); 4994 4995 ierr = PetscLogEventBegin(MAT_Scale,mat,0,0,0);CHKERRQ(ierr); 4996 ierr = (*mat->ops->diagonalscale)(mat,l,r);CHKERRQ(ierr); 4997 ierr = PetscLogEventEnd(MAT_Scale,mat,0,0,0);CHKERRQ(ierr); 4998 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 4999 #if defined(PETSC_HAVE_CUSP) 5000 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 5001 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 5002 } 5003 #elif defined(PETSC_HAVE_VIENNACL) 5004 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 5005 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 5006 } 5007 #elif defined(PETSC_HAVE_VECCUDA) 5008 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 5009 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 5010 } 5011 #endif 5012 PetscFunctionReturn(0); 5013 } 5014 5015 /*@ 5016 MatScale - Scales all elements of a matrix by a given number. 5017 5018 Logically Collective on Mat 5019 5020 Input Parameters: 5021 + mat - the matrix to be scaled 5022 - a - the scaling value 5023 5024 Output Parameter: 5025 . mat - the scaled matrix 5026 5027 Level: intermediate 5028 5029 Concepts: matrices^scaling all entries 5030 5031 .seealso: MatDiagonalScale() 5032 @*/ 5033 PetscErrorCode MatScale(Mat mat,PetscScalar a) 5034 { 5035 PetscErrorCode ierr; 5036 5037 PetscFunctionBegin; 5038 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5039 PetscValidType(mat,1); 5040 if (a != (PetscScalar)1.0 && !mat->ops->scale) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 5041 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 5042 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 5043 PetscValidLogicalCollectiveScalar(mat,a,2); 5044 MatCheckPreallocated(mat,1); 5045 5046 ierr = PetscLogEventBegin(MAT_Scale,mat,0,0,0);CHKERRQ(ierr); 5047 if (a != (PetscScalar)1.0) { 5048 ierr = (*mat->ops->scale)(mat,a);CHKERRQ(ierr); 5049 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 5050 #if defined(PETSC_HAVE_CUSP) 5051 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 5052 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 5053 } 5054 #elif defined(PETSC_HAVE_VIENNACL) 5055 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 5056 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 5057 } 5058 #elif defined(PETSC_HAVE_VECCUDA) 5059 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 5060 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 5061 } 5062 #endif 5063 } 5064 ierr = PetscLogEventEnd(MAT_Scale,mat,0,0,0);CHKERRQ(ierr); 5065 PetscFunctionReturn(0); 5066 } 5067 5068 /*@ 5069 MatNorm - Calculates various norms of a matrix. 5070 5071 Collective on Mat 5072 5073 Input Parameters: 5074 + mat - the matrix 5075 - type - the type of norm, NORM_1, NORM_FROBENIUS, NORM_INFINITY 5076 5077 Output Parameters: 5078 . nrm - the resulting norm 5079 5080 Level: intermediate 5081 5082 Concepts: matrices^norm 5083 Concepts: norm^of matrix 5084 @*/ 5085 PetscErrorCode MatNorm(Mat mat,NormType type,PetscReal *nrm) 5086 { 5087 PetscErrorCode ierr; 5088 5089 PetscFunctionBegin; 5090 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5091 PetscValidType(mat,1); 5092 PetscValidScalarPointer(nrm,3); 5093 5094 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 5095 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 5096 if (!mat->ops->norm) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 5097 MatCheckPreallocated(mat,1); 5098 5099 ierr = (*mat->ops->norm)(mat,type,nrm);CHKERRQ(ierr); 5100 PetscFunctionReturn(0); 5101 } 5102 5103 /* 5104 This variable is used to prevent counting of MatAssemblyBegin() that 5105 are called from within a MatAssemblyEnd(). 5106 */ 5107 static PetscInt MatAssemblyEnd_InUse = 0; 5108 /*@ 5109 MatAssemblyBegin - Begins assembling the matrix. This routine should 5110 be called after completing all calls to MatSetValues(). 5111 5112 Collective on Mat 5113 5114 Input Parameters: 5115 + mat - the matrix 5116 - type - type of assembly, either MAT_FLUSH_ASSEMBLY or MAT_FINAL_ASSEMBLY 5117 5118 Notes: 5119 MatSetValues() generally caches the values. The matrix is ready to 5120 use only after MatAssemblyBegin() and MatAssemblyEnd() have been called. 5121 Use MAT_FLUSH_ASSEMBLY when switching between ADD_VALUES and INSERT_VALUES 5122 in MatSetValues(); use MAT_FINAL_ASSEMBLY for the final assembly before 5123 using the matrix. 5124 5125 ALL processes that share a matrix MUST call MatAssemblyBegin() and MatAssemblyEnd() the SAME NUMBER of times, and each time with the 5126 same flag of MAT_FLUSH_ASSEMBLY or MAT_FINAL_ASSEMBLY for all processes. Thus you CANNOT locally change from ADD_VALUES to INSERT_VALUES, that is 5127 a global collective operation requring all processes that share the matrix. 5128 5129 Space for preallocated nonzeros that is not filled by a call to MatSetValues() or a related routine are compressed 5130 out by assembly. If you intend to use that extra space on a subsequent assembly, be sure to insert explicit zeros 5131 before MAT_FINAL_ASSEMBLY so the space is not compressed out. 5132 5133 Level: beginner 5134 5135 Concepts: matrices^assembling 5136 5137 .seealso: MatAssemblyEnd(), MatSetValues(), MatAssembled() 5138 @*/ 5139 PetscErrorCode MatAssemblyBegin(Mat mat,MatAssemblyType type) 5140 { 5141 PetscErrorCode ierr; 5142 5143 PetscFunctionBegin; 5144 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5145 PetscValidType(mat,1); 5146 MatCheckPreallocated(mat,1); 5147 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix.\nDid you forget to call MatSetUnfactored()?"); 5148 if (mat->assembled) { 5149 mat->was_assembled = PETSC_TRUE; 5150 mat->assembled = PETSC_FALSE; 5151 } 5152 if (!MatAssemblyEnd_InUse) { 5153 ierr = PetscLogEventBegin(MAT_AssemblyBegin,mat,0,0,0);CHKERRQ(ierr); 5154 if (mat->ops->assemblybegin) {ierr = (*mat->ops->assemblybegin)(mat,type);CHKERRQ(ierr);} 5155 ierr = PetscLogEventEnd(MAT_AssemblyBegin,mat,0,0,0);CHKERRQ(ierr); 5156 } else if (mat->ops->assemblybegin) { 5157 ierr = (*mat->ops->assemblybegin)(mat,type);CHKERRQ(ierr); 5158 } 5159 PetscFunctionReturn(0); 5160 } 5161 5162 /*@ 5163 MatAssembled - Indicates if a matrix has been assembled and is ready for 5164 use; for example, in matrix-vector product. 5165 5166 Not Collective 5167 5168 Input Parameter: 5169 . mat - the matrix 5170 5171 Output Parameter: 5172 . assembled - PETSC_TRUE or PETSC_FALSE 5173 5174 Level: advanced 5175 5176 Concepts: matrices^assembled? 5177 5178 .seealso: MatAssemblyEnd(), MatSetValues(), MatAssemblyBegin() 5179 @*/ 5180 PetscErrorCode MatAssembled(Mat mat,PetscBool *assembled) 5181 { 5182 PetscFunctionBegin; 5183 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5184 PetscValidType(mat,1); 5185 PetscValidPointer(assembled,2); 5186 *assembled = mat->assembled; 5187 PetscFunctionReturn(0); 5188 } 5189 5190 /*@ 5191 MatAssemblyEnd - Completes assembling the matrix. This routine should 5192 be called after MatAssemblyBegin(). 5193 5194 Collective on Mat 5195 5196 Input Parameters: 5197 + mat - the matrix 5198 - type - type of assembly, either MAT_FLUSH_ASSEMBLY or MAT_FINAL_ASSEMBLY 5199 5200 Options Database Keys: 5201 + -mat_view ::ascii_info - Prints info on matrix at conclusion of MatEndAssembly() 5202 . -mat_view ::ascii_info_detail - Prints more detailed info 5203 . -mat_view - Prints matrix in ASCII format 5204 . -mat_view ::ascii_matlab - Prints matrix in Matlab format 5205 . -mat_view draw - PetscDraws nonzero structure of matrix, using MatView() and PetscDrawOpenX(). 5206 . -display <name> - Sets display name (default is host) 5207 . -draw_pause <sec> - Sets number of seconds to pause after display 5208 . -mat_view socket - Sends matrix to socket, can be accessed from Matlab (See Users-Manual: ch_matlab ) 5209 . -viewer_socket_machine <machine> - Machine to use for socket 5210 . -viewer_socket_port <port> - Port number to use for socket 5211 - -mat_view binary:filename[:append] - Save matrix to file in binary format 5212 5213 Notes: 5214 MatSetValues() generally caches the values. The matrix is ready to 5215 use only after MatAssemblyBegin() and MatAssemblyEnd() have been called. 5216 Use MAT_FLUSH_ASSEMBLY when switching between ADD_VALUES and INSERT_VALUES 5217 in MatSetValues(); use MAT_FINAL_ASSEMBLY for the final assembly before 5218 using the matrix. 5219 5220 Space for preallocated nonzeros that is not filled by a call to MatSetValues() or a related routine are compressed 5221 out by assembly. If you intend to use that extra space on a subsequent assembly, be sure to insert explicit zeros 5222 before MAT_FINAL_ASSEMBLY so the space is not compressed out. 5223 5224 Level: beginner 5225 5226 .seealso: MatAssemblyBegin(), MatSetValues(), PetscDrawOpenX(), PetscDrawCreate(), MatView(), MatAssembled(), PetscViewerSocketOpen() 5227 @*/ 5228 PetscErrorCode MatAssemblyEnd(Mat mat,MatAssemblyType type) 5229 { 5230 PetscErrorCode ierr; 5231 static PetscInt inassm = 0; 5232 PetscBool flg = PETSC_FALSE; 5233 5234 PetscFunctionBegin; 5235 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5236 PetscValidType(mat,1); 5237 5238 inassm++; 5239 MatAssemblyEnd_InUse++; 5240 if (MatAssemblyEnd_InUse == 1) { /* Do the logging only the first time through */ 5241 ierr = PetscLogEventBegin(MAT_AssemblyEnd,mat,0,0,0);CHKERRQ(ierr); 5242 if (mat->ops->assemblyend) { 5243 ierr = (*mat->ops->assemblyend)(mat,type);CHKERRQ(ierr); 5244 } 5245 ierr = PetscLogEventEnd(MAT_AssemblyEnd,mat,0,0,0);CHKERRQ(ierr); 5246 } else if (mat->ops->assemblyend) { 5247 ierr = (*mat->ops->assemblyend)(mat,type);CHKERRQ(ierr); 5248 } 5249 5250 /* Flush assembly is not a true assembly */ 5251 if (type != MAT_FLUSH_ASSEMBLY) { 5252 mat->assembled = PETSC_TRUE; mat->num_ass++; 5253 } 5254 mat->insertmode = NOT_SET_VALUES; 5255 MatAssemblyEnd_InUse--; 5256 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 5257 if (!mat->symmetric_eternal) { 5258 mat->symmetric_set = PETSC_FALSE; 5259 mat->hermitian_set = PETSC_FALSE; 5260 mat->structurally_symmetric_set = PETSC_FALSE; 5261 } 5262 #if defined(PETSC_HAVE_CUSP) 5263 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 5264 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 5265 } 5266 #elif defined(PETSC_HAVE_VIENNACL) 5267 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 5268 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 5269 } 5270 #elif defined(PETSC_HAVE_VECCUDA) 5271 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 5272 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 5273 } 5274 #endif 5275 if (inassm == 1 && type != MAT_FLUSH_ASSEMBLY) { 5276 ierr = MatViewFromOptions(mat,NULL,"-mat_view");CHKERRQ(ierr); 5277 5278 if (mat->checksymmetryonassembly) { 5279 ierr = MatIsSymmetric(mat,mat->checksymmetrytol,&flg);CHKERRQ(ierr); 5280 if (flg) { 5281 ierr = PetscPrintf(PetscObjectComm((PetscObject)mat),"Matrix is symmetric (tolerance %g)\n",(double)mat->checksymmetrytol);CHKERRQ(ierr); 5282 } else { 5283 ierr = PetscPrintf(PetscObjectComm((PetscObject)mat),"Matrix is not symmetric (tolerance %g)\n",(double)mat->checksymmetrytol);CHKERRQ(ierr); 5284 } 5285 } 5286 if (mat->nullsp && mat->checknullspaceonassembly) { 5287 ierr = MatNullSpaceTest(mat->nullsp,mat,NULL);CHKERRQ(ierr); 5288 } 5289 } 5290 inassm--; 5291 PetscFunctionReturn(0); 5292 } 5293 5294 /*@ 5295 MatSetOption - Sets a parameter option for a matrix. Some options 5296 may be specific to certain storage formats. Some options 5297 determine how values will be inserted (or added). Sorted, 5298 row-oriented input will generally assemble the fastest. The default 5299 is row-oriented. 5300 5301 Logically Collective on Mat for certain operations, such as MAT_SPD, not collective for MAT_ROW_ORIENTED, see MatOption 5302 5303 Input Parameters: 5304 + mat - the matrix 5305 . option - the option, one of those listed below (and possibly others), 5306 - flg - turn the option on (PETSC_TRUE) or off (PETSC_FALSE) 5307 5308 Options Describing Matrix Structure: 5309 + MAT_SPD - symmetric positive definite 5310 . MAT_SYMMETRIC - symmetric in terms of both structure and value 5311 . MAT_HERMITIAN - transpose is the complex conjugation 5312 . MAT_STRUCTURALLY_SYMMETRIC - symmetric nonzero structure 5313 - MAT_SYMMETRY_ETERNAL - if you would like the symmetry/Hermitian flag 5314 you set to be kept with all future use of the matrix 5315 including after MatAssemblyBegin/End() which could 5316 potentially change the symmetry structure, i.e. you 5317 KNOW the matrix will ALWAYS have the property you set. 5318 5319 5320 Options For Use with MatSetValues(): 5321 Insert a logically dense subblock, which can be 5322 . MAT_ROW_ORIENTED - row-oriented (default) 5323 5324 Note these options reflect the data you pass in with MatSetValues(); it has 5325 nothing to do with how the data is stored internally in the matrix 5326 data structure. 5327 5328 When (re)assembling a matrix, we can restrict the input for 5329 efficiency/debugging purposes. These options include: 5330 + MAT_NEW_NONZERO_LOCATIONS - additional insertions will be allowed if they generate a new nonzero (slow) 5331 . MAT_NEW_DIAGONALS - new diagonals will be allowed (for block diagonal format only) 5332 . MAT_IGNORE_OFF_PROC_ENTRIES - drops off-processor entries 5333 . MAT_NEW_NONZERO_LOCATION_ERR - generates an error for new matrix entry 5334 . MAT_USE_HASH_TABLE - uses a hash table to speed up matrix assembly 5335 . MAT_NO_OFF_PROC_ENTRIES - you know each process will only set values for its own rows, will generate an error if 5336 any process sets values for another process. This avoids all reductions in the MatAssembly routines and thus improves 5337 performance for very large process counts. 5338 - MAT_SUBSET_OFF_PROC_ENTRIES - you know that the first assembly after setting this flag will set a superset 5339 of the off-process entries required for all subsequent assemblies. This avoids a rendezvous step in the MatAssembly 5340 functions, instead sending only neighbor messages. 5341 5342 Notes: 5343 Except for MAT_UNUSED_NONZERO_LOCATION_ERR and MAT_ROW_ORIENTED all processes that share the matrix must pass the same value in flg! 5344 5345 Some options are relevant only for particular matrix types and 5346 are thus ignored by others. Other options are not supported by 5347 certain matrix types and will generate an error message if set. 5348 5349 If using a Fortran 77 module to compute a matrix, one may need to 5350 use the column-oriented option (or convert to the row-oriented 5351 format). 5352 5353 MAT_NEW_NONZERO_LOCATIONS set to PETSC_FALSE indicates that any add or insertion 5354 that would generate a new entry in the nonzero structure is instead 5355 ignored. Thus, if memory has not alredy been allocated for this particular 5356 data, then the insertion is ignored. For dense matrices, in which 5357 the entire array is allocated, no entries are ever ignored. 5358 Set after the first MatAssemblyEnd(). If this option is set then the MatAssemblyBegin/End() processes has one less global reduction 5359 5360 MAT_NEW_NONZERO_LOCATION_ERR set to PETSC_TRUE indicates that any add or insertion 5361 that would generate a new entry in the nonzero structure instead produces 5362 an error. (Currently supported for AIJ and BAIJ formats only.) If this option is set then the MatAssemblyBegin/End() processes has one less global reduction 5363 5364 MAT_NEW_NONZERO_ALLOCATION_ERR set to PETSC_TRUE indicates that any add or insertion 5365 that would generate a new entry that has not been preallocated will 5366 instead produce an error. (Currently supported for AIJ and BAIJ formats 5367 only.) This is a useful flag when debugging matrix memory preallocation. 5368 If this option is set then the MatAssemblyBegin/End() processes has one less global reduction 5369 5370 MAT_IGNORE_OFF_PROC_ENTRIES set to PETSC_TRUE indicates entries destined for 5371 other processors should be dropped, rather than stashed. 5372 This is useful if you know that the "owning" processor is also 5373 always generating the correct matrix entries, so that PETSc need 5374 not transfer duplicate entries generated on another processor. 5375 5376 MAT_USE_HASH_TABLE indicates that a hash table be used to improve the 5377 searches during matrix assembly. When this flag is set, the hash table 5378 is created during the first Matrix Assembly. This hash table is 5379 used the next time through, during MatSetVaules()/MatSetVaulesBlocked() 5380 to improve the searching of indices. MAT_NEW_NONZERO_LOCATIONS flag 5381 should be used with MAT_USE_HASH_TABLE flag. This option is currently 5382 supported by MATMPIBAIJ format only. 5383 5384 MAT_KEEP_NONZERO_PATTERN indicates when MatZeroRows() is called the zeroed entries 5385 are kept in the nonzero structure 5386 5387 MAT_IGNORE_ZERO_ENTRIES - for AIJ/IS matrices this will stop zero values from creating 5388 a zero location in the matrix 5389 5390 MAT_USE_INODES - indicates using inode version of the code - works with AIJ matrix types 5391 5392 MAT_NO_OFF_PROC_ZERO_ROWS - you know each process will only zero its own rows. This avoids all reductions in the 5393 zero row routines and thus improves performance for very large process counts. 5394 5395 MAT_IGNORE_LOWER_TRIANGULAR - For SBAIJ matrices will ignore any insertions you make in the lower triangular 5396 part of the matrix (since they should match the upper triangular part). 5397 5398 Notes: Can only be called after MatSetSizes() and MatSetType() have been set. 5399 5400 Level: intermediate 5401 5402 Concepts: matrices^setting options 5403 5404 .seealso: MatOption, Mat 5405 5406 @*/ 5407 PetscErrorCode MatSetOption(Mat mat,MatOption op,PetscBool flg) 5408 { 5409 PetscErrorCode ierr; 5410 5411 PetscFunctionBegin; 5412 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5413 PetscValidType(mat,1); 5414 if (op > 0) { 5415 PetscValidLogicalCollectiveEnum(mat,op,2); 5416 PetscValidLogicalCollectiveBool(mat,flg,3); 5417 } 5418 5419 if (((int) op) <= MAT_OPTION_MIN || ((int) op) >= MAT_OPTION_MAX) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Options %d is out of range",(int)op); 5420 if (!((PetscObject)mat)->type_name) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_TYPENOTSET,"Cannot set options until type and size have been set, see MatSetType() and MatSetSizes()"); 5421 5422 switch (op) { 5423 case MAT_NO_OFF_PROC_ENTRIES: 5424 mat->nooffprocentries = flg; 5425 PetscFunctionReturn(0); 5426 break; 5427 case MAT_SUBSET_OFF_PROC_ENTRIES: 5428 mat->subsetoffprocentries = flg; 5429 PetscFunctionReturn(0); 5430 case MAT_NO_OFF_PROC_ZERO_ROWS: 5431 mat->nooffproczerorows = flg; 5432 PetscFunctionReturn(0); 5433 break; 5434 case MAT_SPD: 5435 mat->spd_set = PETSC_TRUE; 5436 mat->spd = flg; 5437 if (flg) { 5438 mat->symmetric = PETSC_TRUE; 5439 mat->structurally_symmetric = PETSC_TRUE; 5440 mat->symmetric_set = PETSC_TRUE; 5441 mat->structurally_symmetric_set = PETSC_TRUE; 5442 } 5443 break; 5444 case MAT_SYMMETRIC: 5445 mat->symmetric = flg; 5446 if (flg) mat->structurally_symmetric = PETSC_TRUE; 5447 mat->symmetric_set = PETSC_TRUE; 5448 mat->structurally_symmetric_set = flg; 5449 #if !defined(PETSC_USE_COMPLEX) 5450 mat->hermitian = flg; 5451 mat->hermitian_set = PETSC_TRUE; 5452 #endif 5453 break; 5454 case MAT_HERMITIAN: 5455 mat->hermitian = flg; 5456 if (flg) mat->structurally_symmetric = PETSC_TRUE; 5457 mat->hermitian_set = PETSC_TRUE; 5458 mat->structurally_symmetric_set = flg; 5459 #if !defined(PETSC_USE_COMPLEX) 5460 mat->symmetric = flg; 5461 mat->symmetric_set = PETSC_TRUE; 5462 #endif 5463 break; 5464 case MAT_STRUCTURALLY_SYMMETRIC: 5465 mat->structurally_symmetric = flg; 5466 mat->structurally_symmetric_set = PETSC_TRUE; 5467 break; 5468 case MAT_SYMMETRY_ETERNAL: 5469 mat->symmetric_eternal = flg; 5470 break; 5471 case MAT_STRUCTURE_ONLY: 5472 mat->structure_only = flg; 5473 break; 5474 default: 5475 break; 5476 } 5477 if (mat->ops->setoption) { 5478 ierr = (*mat->ops->setoption)(mat,op,flg);CHKERRQ(ierr); 5479 } 5480 PetscFunctionReturn(0); 5481 } 5482 5483 /*@ 5484 MatGetOption - Gets a parameter option that has been set for a matrix. 5485 5486 Logically Collective on Mat for certain operations, such as MAT_SPD, not collective for MAT_ROW_ORIENTED, see MatOption 5487 5488 Input Parameters: 5489 + mat - the matrix 5490 - option - the option, this only responds to certain options, check the code for which ones 5491 5492 Output Parameter: 5493 . flg - turn the option on (PETSC_TRUE) or off (PETSC_FALSE) 5494 5495 Notes: Can only be called after MatSetSizes() and MatSetType() have been set. 5496 5497 Level: intermediate 5498 5499 Concepts: matrices^setting options 5500 5501 .seealso: MatOption, MatSetOption() 5502 5503 @*/ 5504 PetscErrorCode MatGetOption(Mat mat,MatOption op,PetscBool *flg) 5505 { 5506 PetscFunctionBegin; 5507 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5508 PetscValidType(mat,1); 5509 5510 if (((int) op) <= MAT_OPTION_MIN || ((int) op) >= MAT_OPTION_MAX) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Options %d is out of range",(int)op); 5511 if (!((PetscObject)mat)->type_name) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_TYPENOTSET,"Cannot get options until type and size have been set, see MatSetType() and MatSetSizes()"); 5512 5513 switch (op) { 5514 case MAT_NO_OFF_PROC_ENTRIES: 5515 *flg = mat->nooffprocentries; 5516 break; 5517 case MAT_NO_OFF_PROC_ZERO_ROWS: 5518 *flg = mat->nooffproczerorows; 5519 break; 5520 case MAT_SYMMETRIC: 5521 *flg = mat->symmetric; 5522 break; 5523 case MAT_HERMITIAN: 5524 *flg = mat->hermitian; 5525 break; 5526 case MAT_STRUCTURALLY_SYMMETRIC: 5527 *flg = mat->structurally_symmetric; 5528 break; 5529 case MAT_SYMMETRY_ETERNAL: 5530 *flg = mat->symmetric_eternal; 5531 break; 5532 case MAT_SPD: 5533 *flg = mat->spd; 5534 break; 5535 default: 5536 break; 5537 } 5538 PetscFunctionReturn(0); 5539 } 5540 5541 /*@ 5542 MatZeroEntries - Zeros all entries of a matrix. For sparse matrices 5543 this routine retains the old nonzero structure. 5544 5545 Logically Collective on Mat 5546 5547 Input Parameters: 5548 . mat - the matrix 5549 5550 Level: intermediate 5551 5552 Notes: If the matrix was not preallocated then a default, likely poor preallocation will be set in the matrix, so this should be called after the preallocation phase. 5553 See the Performance chapter of the users manual for information on preallocating matrices. 5554 5555 Concepts: matrices^zeroing 5556 5557 .seealso: MatZeroRows() 5558 @*/ 5559 PetscErrorCode MatZeroEntries(Mat mat) 5560 { 5561 PetscErrorCode ierr; 5562 5563 PetscFunctionBegin; 5564 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5565 PetscValidType(mat,1); 5566 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 5567 if (mat->insertmode != NOT_SET_VALUES) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for matrices where you have set values but not yet assembled"); 5568 if (!mat->ops->zeroentries) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 5569 MatCheckPreallocated(mat,1); 5570 5571 ierr = PetscLogEventBegin(MAT_ZeroEntries,mat,0,0,0);CHKERRQ(ierr); 5572 ierr = (*mat->ops->zeroentries)(mat);CHKERRQ(ierr); 5573 ierr = PetscLogEventEnd(MAT_ZeroEntries,mat,0,0,0);CHKERRQ(ierr); 5574 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 5575 #if defined(PETSC_HAVE_CUSP) 5576 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 5577 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 5578 } 5579 #elif defined(PETSC_HAVE_VIENNACL) 5580 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 5581 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 5582 } 5583 #elif defined(PETSC_HAVE_VECCUDA) 5584 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 5585 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 5586 } 5587 #endif 5588 PetscFunctionReturn(0); 5589 } 5590 5591 /*@C 5592 MatZeroRowsColumns - Zeros all entries (except possibly the main diagonal) 5593 of a set of rows and columns of a matrix. 5594 5595 Collective on Mat 5596 5597 Input Parameters: 5598 + mat - the matrix 5599 . numRows - the number of rows to remove 5600 . rows - the global row indices 5601 . diag - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry) 5602 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 5603 - b - optional vector of right hand side, that will be adjusted by provided solution 5604 5605 Notes: 5606 This does not change the nonzero structure of the matrix, it merely zeros those entries in the matrix. 5607 5608 The user can set a value in the diagonal entry (or for the AIJ and 5609 row formats can optionally remove the main diagonal entry from the 5610 nonzero structure as well, by passing 0.0 as the final argument). 5611 5612 For the parallel case, all processes that share the matrix (i.e., 5613 those in the communicator used for matrix creation) MUST call this 5614 routine, regardless of whether any rows being zeroed are owned by 5615 them. 5616 5617 Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to 5618 list only rows local to itself). 5619 5620 The option MAT_NO_OFF_PROC_ZERO_ROWS does not apply to this routine. 5621 5622 Level: intermediate 5623 5624 Concepts: matrices^zeroing rows 5625 5626 .seealso: MatZeroRowsIS(), MatZeroRows(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 5627 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 5628 @*/ 5629 PetscErrorCode MatZeroRowsColumns(Mat mat,PetscInt numRows,const PetscInt rows[],PetscScalar diag,Vec x,Vec b) 5630 { 5631 PetscErrorCode ierr; 5632 5633 PetscFunctionBegin; 5634 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5635 PetscValidType(mat,1); 5636 if (numRows) PetscValidIntPointer(rows,3); 5637 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 5638 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 5639 if (!mat->ops->zerorowscolumns) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 5640 MatCheckPreallocated(mat,1); 5641 5642 ierr = (*mat->ops->zerorowscolumns)(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 5643 ierr = MatViewFromOptions(mat,NULL,"-mat_view");CHKERRQ(ierr); 5644 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 5645 #if defined(PETSC_HAVE_CUSP) 5646 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 5647 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 5648 } 5649 #elif defined(PETSC_HAVE_VIENNACL) 5650 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 5651 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 5652 } 5653 #elif defined(PETSC_HAVE_VECCUDA) 5654 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 5655 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 5656 } 5657 #endif 5658 PetscFunctionReturn(0); 5659 } 5660 5661 /*@C 5662 MatZeroRowsColumnsIS - Zeros all entries (except possibly the main diagonal) 5663 of a set of rows and columns of a matrix. 5664 5665 Collective on Mat 5666 5667 Input Parameters: 5668 + mat - the matrix 5669 . is - the rows to zero 5670 . diag - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry) 5671 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 5672 - b - optional vector of right hand side, that will be adjusted by provided solution 5673 5674 Notes: 5675 This does not change the nonzero structure of the matrix, it merely zeros those entries in the matrix. 5676 5677 The user can set a value in the diagonal entry (or for the AIJ and 5678 row formats can optionally remove the main diagonal entry from the 5679 nonzero structure as well, by passing 0.0 as the final argument). 5680 5681 For the parallel case, all processes that share the matrix (i.e., 5682 those in the communicator used for matrix creation) MUST call this 5683 routine, regardless of whether any rows being zeroed are owned by 5684 them. 5685 5686 Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to 5687 list only rows local to itself). 5688 5689 The option MAT_NO_OFF_PROC_ZERO_ROWS does not apply to this routine. 5690 5691 Level: intermediate 5692 5693 Concepts: matrices^zeroing rows 5694 5695 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 5696 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRows(), MatZeroRowsColumnsStencil() 5697 @*/ 5698 PetscErrorCode MatZeroRowsColumnsIS(Mat mat,IS is,PetscScalar diag,Vec x,Vec b) 5699 { 5700 PetscErrorCode ierr; 5701 PetscInt numRows; 5702 const PetscInt *rows; 5703 5704 PetscFunctionBegin; 5705 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5706 PetscValidHeaderSpecific(is,IS_CLASSID,2); 5707 PetscValidType(mat,1); 5708 PetscValidType(is,2); 5709 ierr = ISGetLocalSize(is,&numRows);CHKERRQ(ierr); 5710 ierr = ISGetIndices(is,&rows);CHKERRQ(ierr); 5711 ierr = MatZeroRowsColumns(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 5712 ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr); 5713 PetscFunctionReturn(0); 5714 } 5715 5716 /*@C 5717 MatZeroRows - Zeros all entries (except possibly the main diagonal) 5718 of a set of rows of a matrix. 5719 5720 Collective on Mat 5721 5722 Input Parameters: 5723 + mat - the matrix 5724 . numRows - the number of rows to remove 5725 . rows - the global row indices 5726 . diag - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry) 5727 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 5728 - b - optional vector of right hand side, that will be adjusted by provided solution 5729 5730 Notes: 5731 For the AIJ and BAIJ matrix formats this removes the old nonzero structure, 5732 but does not release memory. For the dense and block diagonal 5733 formats this does not alter the nonzero structure. 5734 5735 If the option MatSetOption(mat,MAT_KEEP_NONZERO_PATTERN,PETSC_TRUE) the nonzero structure 5736 of the matrix is not changed (even for AIJ and BAIJ matrices) the values are 5737 merely zeroed. 5738 5739 The user can set a value in the diagonal entry (or for the AIJ and 5740 row formats can optionally remove the main diagonal entry from the 5741 nonzero structure as well, by passing 0.0 as the final argument). 5742 5743 For the parallel case, all processes that share the matrix (i.e., 5744 those in the communicator used for matrix creation) MUST call this 5745 routine, regardless of whether any rows being zeroed are owned by 5746 them. 5747 5748 Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to 5749 list only rows local to itself). 5750 5751 You can call MatSetOption(mat,MAT_NO_OFF_PROC_ZERO_ROWS,PETSC_TRUE) if each process indicates only rows it 5752 owns that are to be zeroed. This saves a global synchronization in the implementation. 5753 5754 Level: intermediate 5755 5756 Concepts: matrices^zeroing rows 5757 5758 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 5759 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 5760 @*/ 5761 PetscErrorCode MatZeroRows(Mat mat,PetscInt numRows,const PetscInt rows[],PetscScalar diag,Vec x,Vec b) 5762 { 5763 PetscErrorCode ierr; 5764 5765 PetscFunctionBegin; 5766 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5767 PetscValidType(mat,1); 5768 if (numRows) PetscValidIntPointer(rows,3); 5769 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 5770 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 5771 if (!mat->ops->zerorows) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 5772 MatCheckPreallocated(mat,1); 5773 5774 ierr = (*mat->ops->zerorows)(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 5775 ierr = MatViewFromOptions(mat,NULL,"-mat_view");CHKERRQ(ierr); 5776 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 5777 #if defined(PETSC_HAVE_CUSP) 5778 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 5779 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 5780 } 5781 #elif defined(PETSC_HAVE_VIENNACL) 5782 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 5783 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 5784 } 5785 #elif defined(PETSC_HAVE_VECCUDA) 5786 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 5787 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 5788 } 5789 #endif 5790 PetscFunctionReturn(0); 5791 } 5792 5793 /*@C 5794 MatZeroRowsIS - Zeros all entries (except possibly the main diagonal) 5795 of a set of rows of a matrix. 5796 5797 Collective on Mat 5798 5799 Input Parameters: 5800 + mat - the matrix 5801 . is - index set of rows to remove 5802 . diag - value put in all diagonals of eliminated rows 5803 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 5804 - b - optional vector of right hand side, that will be adjusted by provided solution 5805 5806 Notes: 5807 For the AIJ and BAIJ matrix formats this removes the old nonzero structure, 5808 but does not release memory. For the dense and block diagonal 5809 formats this does not alter the nonzero structure. 5810 5811 If the option MatSetOption(mat,MAT_KEEP_NONZERO_PATTERN,PETSC_TRUE) the nonzero structure 5812 of the matrix is not changed (even for AIJ and BAIJ matrices) the values are 5813 merely zeroed. 5814 5815 The user can set a value in the diagonal entry (or for the AIJ and 5816 row formats can optionally remove the main diagonal entry from the 5817 nonzero structure as well, by passing 0.0 as the final argument). 5818 5819 For the parallel case, all processes that share the matrix (i.e., 5820 those in the communicator used for matrix creation) MUST call this 5821 routine, regardless of whether any rows being zeroed are owned by 5822 them. 5823 5824 Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to 5825 list only rows local to itself). 5826 5827 You can call MatSetOption(mat,MAT_NO_OFF_PROC_ZERO_ROWS,PETSC_TRUE) if each process indicates only rows it 5828 owns that are to be zeroed. This saves a global synchronization in the implementation. 5829 5830 Level: intermediate 5831 5832 Concepts: matrices^zeroing rows 5833 5834 .seealso: MatZeroRows(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 5835 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 5836 @*/ 5837 PetscErrorCode MatZeroRowsIS(Mat mat,IS is,PetscScalar diag,Vec x,Vec b) 5838 { 5839 PetscInt numRows; 5840 const PetscInt *rows; 5841 PetscErrorCode ierr; 5842 5843 PetscFunctionBegin; 5844 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5845 PetscValidType(mat,1); 5846 PetscValidHeaderSpecific(is,IS_CLASSID,2); 5847 ierr = ISGetLocalSize(is,&numRows);CHKERRQ(ierr); 5848 ierr = ISGetIndices(is,&rows);CHKERRQ(ierr); 5849 ierr = MatZeroRows(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 5850 ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr); 5851 PetscFunctionReturn(0); 5852 } 5853 5854 /*@C 5855 MatZeroRowsStencil - Zeros all entries (except possibly the main diagonal) 5856 of a set of rows of a matrix. These rows must be local to the process. 5857 5858 Collective on Mat 5859 5860 Input Parameters: 5861 + mat - the matrix 5862 . numRows - the number of rows to remove 5863 . rows - the grid coordinates (and component number when dof > 1) for matrix rows 5864 . diag - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry) 5865 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 5866 - b - optional vector of right hand side, that will be adjusted by provided solution 5867 5868 Notes: 5869 For the AIJ and BAIJ matrix formats this removes the old nonzero structure, 5870 but does not release memory. For the dense and block diagonal 5871 formats this does not alter the nonzero structure. 5872 5873 If the option MatSetOption(mat,MAT_KEEP_NONZERO_PATTERN,PETSC_TRUE) the nonzero structure 5874 of the matrix is not changed (even for AIJ and BAIJ matrices) the values are 5875 merely zeroed. 5876 5877 The user can set a value in the diagonal entry (or for the AIJ and 5878 row formats can optionally remove the main diagonal entry from the 5879 nonzero structure as well, by passing 0.0 as the final argument). 5880 5881 For the parallel case, all processes that share the matrix (i.e., 5882 those in the communicator used for matrix creation) MUST call this 5883 routine, regardless of whether any rows being zeroed are owned by 5884 them. 5885 5886 Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to 5887 list only rows local to itself). 5888 5889 The grid coordinates are across the entire grid, not just the local portion 5890 5891 In Fortran idxm and idxn should be declared as 5892 $ MatStencil idxm(4,m) 5893 and the values inserted using 5894 $ idxm(MatStencil_i,1) = i 5895 $ idxm(MatStencil_j,1) = j 5896 $ idxm(MatStencil_k,1) = k 5897 $ idxm(MatStencil_c,1) = c 5898 etc 5899 5900 For periodic boundary conditions use negative indices for values to the left (below 0; that are to be 5901 obtained by wrapping values from right edge). For values to the right of the last entry using that index plus one 5902 etc to obtain values that obtained by wrapping the values from the left edge. This does not work for anything but the 5903 DM_BOUNDARY_PERIODIC boundary type. 5904 5905 For indices that don't mean anything for your case (like the k index when working in 2d) or the c index when you have 5906 a single value per point) you can skip filling those indices. 5907 5908 Level: intermediate 5909 5910 Concepts: matrices^zeroing rows 5911 5912 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsl(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 5913 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 5914 @*/ 5915 PetscErrorCode MatZeroRowsStencil(Mat mat,PetscInt numRows,const MatStencil rows[],PetscScalar diag,Vec x,Vec b) 5916 { 5917 PetscInt dim = mat->stencil.dim; 5918 PetscInt sdim = dim - (1 - (PetscInt) mat->stencil.noc); 5919 PetscInt *dims = mat->stencil.dims+1; 5920 PetscInt *starts = mat->stencil.starts; 5921 PetscInt *dxm = (PetscInt*) rows; 5922 PetscInt *jdxm, i, j, tmp, numNewRows = 0; 5923 PetscErrorCode ierr; 5924 5925 PetscFunctionBegin; 5926 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 5927 PetscValidType(mat,1); 5928 if (numRows) PetscValidIntPointer(rows,3); 5929 5930 ierr = PetscMalloc1(numRows, &jdxm);CHKERRQ(ierr); 5931 for (i = 0; i < numRows; ++i) { 5932 /* Skip unused dimensions (they are ordered k, j, i, c) */ 5933 for (j = 0; j < 3-sdim; ++j) dxm++; 5934 /* Local index in X dir */ 5935 tmp = *dxm++ - starts[0]; 5936 /* Loop over remaining dimensions */ 5937 for (j = 0; j < dim-1; ++j) { 5938 /* If nonlocal, set index to be negative */ 5939 if ((*dxm++ - starts[j+1]) < 0 || tmp < 0) tmp = PETSC_MIN_INT; 5940 /* Update local index */ 5941 else tmp = tmp*dims[j] + *(dxm-1) - starts[j+1]; 5942 } 5943 /* Skip component slot if necessary */ 5944 if (mat->stencil.noc) dxm++; 5945 /* Local row number */ 5946 if (tmp >= 0) { 5947 jdxm[numNewRows++] = tmp; 5948 } 5949 } 5950 ierr = MatZeroRowsLocal(mat,numNewRows,jdxm,diag,x,b);CHKERRQ(ierr); 5951 ierr = PetscFree(jdxm);CHKERRQ(ierr); 5952 PetscFunctionReturn(0); 5953 } 5954 5955 /*@C 5956 MatZeroRowsColumnsStencil - Zeros all row and column entries (except possibly the main diagonal) 5957 of a set of rows and columns of a matrix. 5958 5959 Collective on Mat 5960 5961 Input Parameters: 5962 + mat - the matrix 5963 . numRows - the number of rows/columns to remove 5964 . rows - the grid coordinates (and component number when dof > 1) for matrix rows 5965 . diag - value put in all diagonals of eliminated rows (0.0 will even eliminate diagonal entry) 5966 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 5967 - b - optional vector of right hand side, that will be adjusted by provided solution 5968 5969 Notes: 5970 For the AIJ and BAIJ matrix formats this removes the old nonzero structure, 5971 but does not release memory. For the dense and block diagonal 5972 formats this does not alter the nonzero structure. 5973 5974 If the option MatSetOption(mat,MAT_KEEP_NONZERO_PATTERN,PETSC_TRUE) the nonzero structure 5975 of the matrix is not changed (even for AIJ and BAIJ matrices) the values are 5976 merely zeroed. 5977 5978 The user can set a value in the diagonal entry (or for the AIJ and 5979 row formats can optionally remove the main diagonal entry from the 5980 nonzero structure as well, by passing 0.0 as the final argument). 5981 5982 For the parallel case, all processes that share the matrix (i.e., 5983 those in the communicator used for matrix creation) MUST call this 5984 routine, regardless of whether any rows being zeroed are owned by 5985 them. 5986 5987 Each processor can indicate any rows in the entire matrix to be zeroed (i.e. each process does NOT have to 5988 list only rows local to itself, but the row/column numbers are given in local numbering). 5989 5990 The grid coordinates are across the entire grid, not just the local portion 5991 5992 In Fortran idxm and idxn should be declared as 5993 $ MatStencil idxm(4,m) 5994 and the values inserted using 5995 $ idxm(MatStencil_i,1) = i 5996 $ idxm(MatStencil_j,1) = j 5997 $ idxm(MatStencil_k,1) = k 5998 $ idxm(MatStencil_c,1) = c 5999 etc 6000 6001 For periodic boundary conditions use negative indices for values to the left (below 0; that are to be 6002 obtained by wrapping values from right edge). For values to the right of the last entry using that index plus one 6003 etc to obtain values that obtained by wrapping the values from the left edge. This does not work for anything but the 6004 DM_BOUNDARY_PERIODIC boundary type. 6005 6006 For indices that don't mean anything for your case (like the k index when working in 2d) or the c index when you have 6007 a single value per point) you can skip filling those indices. 6008 6009 Level: intermediate 6010 6011 Concepts: matrices^zeroing rows 6012 6013 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 6014 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRows() 6015 @*/ 6016 PetscErrorCode MatZeroRowsColumnsStencil(Mat mat,PetscInt numRows,const MatStencil rows[],PetscScalar diag,Vec x,Vec b) 6017 { 6018 PetscInt dim = mat->stencil.dim; 6019 PetscInt sdim = dim - (1 - (PetscInt) mat->stencil.noc); 6020 PetscInt *dims = mat->stencil.dims+1; 6021 PetscInt *starts = mat->stencil.starts; 6022 PetscInt *dxm = (PetscInt*) rows; 6023 PetscInt *jdxm, i, j, tmp, numNewRows = 0; 6024 PetscErrorCode ierr; 6025 6026 PetscFunctionBegin; 6027 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6028 PetscValidType(mat,1); 6029 if (numRows) PetscValidIntPointer(rows,3); 6030 6031 ierr = PetscMalloc1(numRows, &jdxm);CHKERRQ(ierr); 6032 for (i = 0; i < numRows; ++i) { 6033 /* Skip unused dimensions (they are ordered k, j, i, c) */ 6034 for (j = 0; j < 3-sdim; ++j) dxm++; 6035 /* Local index in X dir */ 6036 tmp = *dxm++ - starts[0]; 6037 /* Loop over remaining dimensions */ 6038 for (j = 0; j < dim-1; ++j) { 6039 /* If nonlocal, set index to be negative */ 6040 if ((*dxm++ - starts[j+1]) < 0 || tmp < 0) tmp = PETSC_MIN_INT; 6041 /* Update local index */ 6042 else tmp = tmp*dims[j] + *(dxm-1) - starts[j+1]; 6043 } 6044 /* Skip component slot if necessary */ 6045 if (mat->stencil.noc) dxm++; 6046 /* Local row number */ 6047 if (tmp >= 0) { 6048 jdxm[numNewRows++] = tmp; 6049 } 6050 } 6051 ierr = MatZeroRowsColumnsLocal(mat,numNewRows,jdxm,diag,x,b);CHKERRQ(ierr); 6052 ierr = PetscFree(jdxm);CHKERRQ(ierr); 6053 PetscFunctionReturn(0); 6054 } 6055 6056 /*@C 6057 MatZeroRowsLocal - Zeros all entries (except possibly the main diagonal) 6058 of a set of rows of a matrix; using local numbering of rows. 6059 6060 Collective on Mat 6061 6062 Input Parameters: 6063 + mat - the matrix 6064 . numRows - the number of rows to remove 6065 . rows - the global row indices 6066 . diag - value put in all diagonals of eliminated rows 6067 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 6068 - b - optional vector of right hand side, that will be adjusted by provided solution 6069 6070 Notes: 6071 Before calling MatZeroRowsLocal(), the user must first set the 6072 local-to-global mapping by calling MatSetLocalToGlobalMapping(). 6073 6074 For the AIJ matrix formats this removes the old nonzero structure, 6075 but does not release memory. For the dense and block diagonal 6076 formats this does not alter the nonzero structure. 6077 6078 If the option MatSetOption(mat,MAT_KEEP_NONZERO_PATTERN,PETSC_TRUE) the nonzero structure 6079 of the matrix is not changed (even for AIJ and BAIJ matrices) the values are 6080 merely zeroed. 6081 6082 The user can set a value in the diagonal entry (or for the AIJ and 6083 row formats can optionally remove the main diagonal entry from the 6084 nonzero structure as well, by passing 0.0 as the final argument). 6085 6086 You can call MatSetOption(mat,MAT_NO_OFF_PROC_ZERO_ROWS,PETSC_TRUE) if each process indicates only rows it 6087 owns that are to be zeroed. This saves a global synchronization in the implementation. 6088 6089 Level: intermediate 6090 6091 Concepts: matrices^zeroing 6092 6093 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRows(), MatSetOption(), 6094 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 6095 @*/ 6096 PetscErrorCode MatZeroRowsLocal(Mat mat,PetscInt numRows,const PetscInt rows[],PetscScalar diag,Vec x,Vec b) 6097 { 6098 PetscErrorCode ierr; 6099 6100 PetscFunctionBegin; 6101 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6102 PetscValidType(mat,1); 6103 if (numRows) PetscValidIntPointer(rows,3); 6104 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6105 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6106 MatCheckPreallocated(mat,1); 6107 6108 if (mat->ops->zerorowslocal) { 6109 ierr = (*mat->ops->zerorowslocal)(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 6110 } else { 6111 IS is, newis; 6112 const PetscInt *newRows; 6113 6114 if (!mat->rmap->mapping) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Need to provide local to global mapping to matrix first"); 6115 ierr = ISCreateGeneral(PETSC_COMM_SELF,numRows,rows,PETSC_COPY_VALUES,&is);CHKERRQ(ierr); 6116 ierr = ISLocalToGlobalMappingApplyIS(mat->rmap->mapping,is,&newis);CHKERRQ(ierr); 6117 ierr = ISGetIndices(newis,&newRows);CHKERRQ(ierr); 6118 ierr = (*mat->ops->zerorows)(mat,numRows,newRows,diag,x,b);CHKERRQ(ierr); 6119 ierr = ISRestoreIndices(newis,&newRows);CHKERRQ(ierr); 6120 ierr = ISDestroy(&newis);CHKERRQ(ierr); 6121 ierr = ISDestroy(&is);CHKERRQ(ierr); 6122 } 6123 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 6124 #if defined(PETSC_HAVE_CUSP) 6125 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 6126 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 6127 } 6128 #elif defined(PETSC_HAVE_VIENNACL) 6129 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 6130 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 6131 } 6132 #elif defined(PETSC_HAVE_VECCUDA) 6133 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 6134 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 6135 } 6136 #endif 6137 PetscFunctionReturn(0); 6138 } 6139 6140 /*@C 6141 MatZeroRowsLocalIS - Zeros all entries (except possibly the main diagonal) 6142 of a set of rows of a matrix; using local numbering of rows. 6143 6144 Collective on Mat 6145 6146 Input Parameters: 6147 + mat - the matrix 6148 . is - index set of rows to remove 6149 . diag - value put in all diagonals of eliminated rows 6150 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 6151 - b - optional vector of right hand side, that will be adjusted by provided solution 6152 6153 Notes: 6154 Before calling MatZeroRowsLocalIS(), the user must first set the 6155 local-to-global mapping by calling MatSetLocalToGlobalMapping(). 6156 6157 For the AIJ matrix formats this removes the old nonzero structure, 6158 but does not release memory. For the dense and block diagonal 6159 formats this does not alter the nonzero structure. 6160 6161 If the option MatSetOption(mat,MAT_KEEP_NONZERO_PATTERN,PETSC_TRUE) the nonzero structure 6162 of the matrix is not changed (even for AIJ and BAIJ matrices) the values are 6163 merely zeroed. 6164 6165 The user can set a value in the diagonal entry (or for the AIJ and 6166 row formats can optionally remove the main diagonal entry from the 6167 nonzero structure as well, by passing 0.0 as the final argument). 6168 6169 You can call MatSetOption(mat,MAT_NO_OFF_PROC_ZERO_ROWS,PETSC_TRUE) if each process indicates only rows it 6170 owns that are to be zeroed. This saves a global synchronization in the implementation. 6171 6172 Level: intermediate 6173 6174 Concepts: matrices^zeroing 6175 6176 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRows(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 6177 MatZeroRowsColumnsLocal(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 6178 @*/ 6179 PetscErrorCode MatZeroRowsLocalIS(Mat mat,IS is,PetscScalar diag,Vec x,Vec b) 6180 { 6181 PetscErrorCode ierr; 6182 PetscInt numRows; 6183 const PetscInt *rows; 6184 6185 PetscFunctionBegin; 6186 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6187 PetscValidType(mat,1); 6188 PetscValidHeaderSpecific(is,IS_CLASSID,2); 6189 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6190 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6191 MatCheckPreallocated(mat,1); 6192 6193 ierr = ISGetLocalSize(is,&numRows);CHKERRQ(ierr); 6194 ierr = ISGetIndices(is,&rows);CHKERRQ(ierr); 6195 ierr = MatZeroRowsLocal(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 6196 ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr); 6197 PetscFunctionReturn(0); 6198 } 6199 6200 /*@C 6201 MatZeroRowsColumnsLocal - Zeros all entries (except possibly the main diagonal) 6202 of a set of rows and columns of a matrix; using local numbering of rows. 6203 6204 Collective on Mat 6205 6206 Input Parameters: 6207 + mat - the matrix 6208 . numRows - the number of rows to remove 6209 . rows - the global row indices 6210 . diag - value put in all diagonals of eliminated rows 6211 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 6212 - b - optional vector of right hand side, that will be adjusted by provided solution 6213 6214 Notes: 6215 Before calling MatZeroRowsColumnsLocal(), the user must first set the 6216 local-to-global mapping by calling MatSetLocalToGlobalMapping(). 6217 6218 The user can set a value in the diagonal entry (or for the AIJ and 6219 row formats can optionally remove the main diagonal entry from the 6220 nonzero structure as well, by passing 0.0 as the final argument). 6221 6222 Level: intermediate 6223 6224 Concepts: matrices^zeroing 6225 6226 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 6227 MatZeroRows(), MatZeroRowsColumnsLocalIS(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 6228 @*/ 6229 PetscErrorCode MatZeroRowsColumnsLocal(Mat mat,PetscInt numRows,const PetscInt rows[],PetscScalar diag,Vec x,Vec b) 6230 { 6231 PetscErrorCode ierr; 6232 IS is, newis; 6233 const PetscInt *newRows; 6234 6235 PetscFunctionBegin; 6236 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6237 PetscValidType(mat,1); 6238 if (numRows) PetscValidIntPointer(rows,3); 6239 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6240 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6241 MatCheckPreallocated(mat,1); 6242 6243 if (!mat->cmap->mapping) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Need to provide local to global mapping to matrix first"); 6244 ierr = ISCreateGeneral(PETSC_COMM_SELF,numRows,rows,PETSC_COPY_VALUES,&is);CHKERRQ(ierr); 6245 ierr = ISLocalToGlobalMappingApplyIS(mat->cmap->mapping,is,&newis);CHKERRQ(ierr); 6246 ierr = ISGetIndices(newis,&newRows);CHKERRQ(ierr); 6247 ierr = (*mat->ops->zerorowscolumns)(mat,numRows,newRows,diag,x,b);CHKERRQ(ierr); 6248 ierr = ISRestoreIndices(newis,&newRows);CHKERRQ(ierr); 6249 ierr = ISDestroy(&newis);CHKERRQ(ierr); 6250 ierr = ISDestroy(&is);CHKERRQ(ierr); 6251 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 6252 #if defined(PETSC_HAVE_CUSP) 6253 if (mat->valid_GPU_matrix != PETSC_CUSP_UNALLOCATED) { 6254 mat->valid_GPU_matrix = PETSC_CUSP_CPU; 6255 } 6256 #elif defined(PETSC_HAVE_VIENNACL) 6257 if (mat->valid_GPU_matrix != PETSC_VIENNACL_UNALLOCATED) { 6258 mat->valid_GPU_matrix = PETSC_VIENNACL_CPU; 6259 } 6260 #elif defined(PETSC_HAVE_VECCUDA) 6261 if (mat->valid_GPU_matrix != PETSC_CUDA_UNALLOCATED) { 6262 mat->valid_GPU_matrix = PETSC_CUDA_CPU; 6263 } 6264 #endif 6265 PetscFunctionReturn(0); 6266 } 6267 6268 /*@C 6269 MatZeroRowsColumnsLocalIS - Zeros all entries (except possibly the main diagonal) 6270 of a set of rows and columns of a matrix; using local numbering of rows. 6271 6272 Collective on Mat 6273 6274 Input Parameters: 6275 + mat - the matrix 6276 . is - index set of rows to remove 6277 . diag - value put in all diagonals of eliminated rows 6278 . x - optional vector of solutions for zeroed rows (other entries in vector are not used) 6279 - b - optional vector of right hand side, that will be adjusted by provided solution 6280 6281 Notes: 6282 Before calling MatZeroRowsColumnsLocalIS(), the user must first set the 6283 local-to-global mapping by calling MatSetLocalToGlobalMapping(). 6284 6285 The user can set a value in the diagonal entry (or for the AIJ and 6286 row formats can optionally remove the main diagonal entry from the 6287 nonzero structure as well, by passing 0.0 as the final argument). 6288 6289 Level: intermediate 6290 6291 Concepts: matrices^zeroing 6292 6293 .seealso: MatZeroRowsIS(), MatZeroRowsColumns(), MatZeroRowsLocalIS(), MatZeroRowsStencil(), MatZeroEntries(), MatZeroRowsLocal(), MatSetOption(), 6294 MatZeroRowsColumnsLocal(), MatZeroRows(), MatZeroRowsColumnsIS(), MatZeroRowsColumnsStencil() 6295 @*/ 6296 PetscErrorCode MatZeroRowsColumnsLocalIS(Mat mat,IS is,PetscScalar diag,Vec x,Vec b) 6297 { 6298 PetscErrorCode ierr; 6299 PetscInt numRows; 6300 const PetscInt *rows; 6301 6302 PetscFunctionBegin; 6303 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6304 PetscValidType(mat,1); 6305 PetscValidHeaderSpecific(is,IS_CLASSID,2); 6306 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6307 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6308 MatCheckPreallocated(mat,1); 6309 6310 ierr = ISGetLocalSize(is,&numRows);CHKERRQ(ierr); 6311 ierr = ISGetIndices(is,&rows);CHKERRQ(ierr); 6312 ierr = MatZeroRowsColumnsLocal(mat,numRows,rows,diag,x,b);CHKERRQ(ierr); 6313 ierr = ISRestoreIndices(is,&rows);CHKERRQ(ierr); 6314 PetscFunctionReturn(0); 6315 } 6316 6317 /*@C 6318 MatGetSize - Returns the numbers of rows and columns in a matrix. 6319 6320 Not Collective 6321 6322 Input Parameter: 6323 . mat - the matrix 6324 6325 Output Parameters: 6326 + m - the number of global rows 6327 - n - the number of global columns 6328 6329 Note: both output parameters can be NULL on input. 6330 6331 Level: beginner 6332 6333 Concepts: matrices^size 6334 6335 .seealso: MatGetLocalSize() 6336 @*/ 6337 PetscErrorCode MatGetSize(Mat mat,PetscInt *m,PetscInt *n) 6338 { 6339 PetscFunctionBegin; 6340 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6341 if (m) *m = mat->rmap->N; 6342 if (n) *n = mat->cmap->N; 6343 PetscFunctionReturn(0); 6344 } 6345 6346 /*@C 6347 MatGetLocalSize - Returns the number of rows and columns in a matrix 6348 stored locally. This information may be implementation dependent, so 6349 use with care. 6350 6351 Not Collective 6352 6353 Input Parameters: 6354 . mat - the matrix 6355 6356 Output Parameters: 6357 + m - the number of local rows 6358 - n - the number of local columns 6359 6360 Note: both output parameters can be NULL on input. 6361 6362 Level: beginner 6363 6364 Concepts: matrices^local size 6365 6366 .seealso: MatGetSize() 6367 @*/ 6368 PetscErrorCode MatGetLocalSize(Mat mat,PetscInt *m,PetscInt *n) 6369 { 6370 PetscFunctionBegin; 6371 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6372 if (m) PetscValidIntPointer(m,2); 6373 if (n) PetscValidIntPointer(n,3); 6374 if (m) *m = mat->rmap->n; 6375 if (n) *n = mat->cmap->n; 6376 PetscFunctionReturn(0); 6377 } 6378 6379 /*@ 6380 MatGetOwnershipRangeColumn - Returns the range of matrix columns associated with rows of a vector one multiplies by that owned by 6381 this processor. (The columns of the "diagonal block") 6382 6383 Not Collective, unless matrix has not been allocated, then collective on Mat 6384 6385 Input Parameters: 6386 . mat - the matrix 6387 6388 Output Parameters: 6389 + m - the global index of the first local column 6390 - n - one more than the global index of the last local column 6391 6392 Notes: both output parameters can be NULL on input. 6393 6394 Level: developer 6395 6396 Concepts: matrices^column ownership 6397 6398 .seealso: MatGetOwnershipRange(), MatGetOwnershipRanges(), MatGetOwnershipRangesColumn() 6399 6400 @*/ 6401 PetscErrorCode MatGetOwnershipRangeColumn(Mat mat,PetscInt *m,PetscInt *n) 6402 { 6403 PetscFunctionBegin; 6404 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6405 PetscValidType(mat,1); 6406 if (m) PetscValidIntPointer(m,2); 6407 if (n) PetscValidIntPointer(n,3); 6408 MatCheckPreallocated(mat,1); 6409 if (m) *m = mat->cmap->rstart; 6410 if (n) *n = mat->cmap->rend; 6411 PetscFunctionReturn(0); 6412 } 6413 6414 /*@ 6415 MatGetOwnershipRange - Returns the range of matrix rows owned by 6416 this processor, assuming that the matrix is laid out with the first 6417 n1 rows on the first processor, the next n2 rows on the second, etc. 6418 For certain parallel layouts this range may not be well defined. 6419 6420 Not Collective 6421 6422 Input Parameters: 6423 . mat - the matrix 6424 6425 Output Parameters: 6426 + m - the global index of the first local row 6427 - n - one more than the global index of the last local row 6428 6429 Note: Both output parameters can be NULL on input. 6430 $ This function requires that the matrix be preallocated. If you have not preallocated, consider using 6431 $ PetscSplitOwnership(MPI_Comm comm, PetscInt *n, PetscInt *N) 6432 $ and then MPI_Scan() to calculate prefix sums of the local sizes. 6433 6434 Level: beginner 6435 6436 Concepts: matrices^row ownership 6437 6438 .seealso: MatGetOwnershipRanges(), MatGetOwnershipRangeColumn(), MatGetOwnershipRangesColumn(), PetscSplitOwnership(), PetscSplitOwnershipBlock() 6439 6440 @*/ 6441 PetscErrorCode MatGetOwnershipRange(Mat mat,PetscInt *m,PetscInt *n) 6442 { 6443 PetscFunctionBegin; 6444 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6445 PetscValidType(mat,1); 6446 if (m) PetscValidIntPointer(m,2); 6447 if (n) PetscValidIntPointer(n,3); 6448 MatCheckPreallocated(mat,1); 6449 if (m) *m = mat->rmap->rstart; 6450 if (n) *n = mat->rmap->rend; 6451 PetscFunctionReturn(0); 6452 } 6453 6454 /*@C 6455 MatGetOwnershipRanges - Returns the range of matrix rows owned by 6456 each process 6457 6458 Not Collective, unless matrix has not been allocated, then collective on Mat 6459 6460 Input Parameters: 6461 . mat - the matrix 6462 6463 Output Parameters: 6464 . ranges - start of each processors portion plus one more than the total length at the end 6465 6466 Level: beginner 6467 6468 Concepts: matrices^row ownership 6469 6470 .seealso: MatGetOwnershipRange(), MatGetOwnershipRangeColumn(), MatGetOwnershipRangesColumn() 6471 6472 @*/ 6473 PetscErrorCode MatGetOwnershipRanges(Mat mat,const PetscInt **ranges) 6474 { 6475 PetscErrorCode ierr; 6476 6477 PetscFunctionBegin; 6478 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6479 PetscValidType(mat,1); 6480 MatCheckPreallocated(mat,1); 6481 ierr = PetscLayoutGetRanges(mat->rmap,ranges);CHKERRQ(ierr); 6482 PetscFunctionReturn(0); 6483 } 6484 6485 /*@C 6486 MatGetOwnershipRangesColumn - Returns the range of matrix columns associated with rows of a vector one multiplies by that owned by 6487 this processor. (The columns of the "diagonal blocks" for each process) 6488 6489 Not Collective, unless matrix has not been allocated, then collective on Mat 6490 6491 Input Parameters: 6492 . mat - the matrix 6493 6494 Output Parameters: 6495 . ranges - start of each processors portion plus one more then the total length at the end 6496 6497 Level: beginner 6498 6499 Concepts: matrices^column ownership 6500 6501 .seealso: MatGetOwnershipRange(), MatGetOwnershipRangeColumn(), MatGetOwnershipRanges() 6502 6503 @*/ 6504 PetscErrorCode MatGetOwnershipRangesColumn(Mat mat,const PetscInt **ranges) 6505 { 6506 PetscErrorCode ierr; 6507 6508 PetscFunctionBegin; 6509 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6510 PetscValidType(mat,1); 6511 MatCheckPreallocated(mat,1); 6512 ierr = PetscLayoutGetRanges(mat->cmap,ranges);CHKERRQ(ierr); 6513 PetscFunctionReturn(0); 6514 } 6515 6516 /*@C 6517 MatGetOwnershipIS - Get row and column ownership as index sets 6518 6519 Not Collective 6520 6521 Input Arguments: 6522 . A - matrix of type Elemental 6523 6524 Output Arguments: 6525 + rows - rows in which this process owns elements 6526 . cols - columns in which this process owns elements 6527 6528 Level: intermediate 6529 6530 .seealso: MatGetOwnershipRange(), MatGetOwnershipRangeColumn(), MatSetValues(), MATELEMENTAL 6531 @*/ 6532 PetscErrorCode MatGetOwnershipIS(Mat A,IS *rows,IS *cols) 6533 { 6534 PetscErrorCode ierr,(*f)(Mat,IS*,IS*); 6535 6536 PetscFunctionBegin; 6537 MatCheckPreallocated(A,1); 6538 ierr = PetscObjectQueryFunction((PetscObject)A,"MatGetOwnershipIS_C",&f);CHKERRQ(ierr); 6539 if (f) { 6540 ierr = (*f)(A,rows,cols);CHKERRQ(ierr); 6541 } else { /* Create a standard row-based partition, each process is responsible for ALL columns in their row block */ 6542 if (rows) {ierr = ISCreateStride(PETSC_COMM_SELF,A->rmap->n,A->rmap->rstart,1,rows);CHKERRQ(ierr);} 6543 if (cols) {ierr = ISCreateStride(PETSC_COMM_SELF,A->cmap->N,0,1,cols);CHKERRQ(ierr);} 6544 } 6545 PetscFunctionReturn(0); 6546 } 6547 6548 /*@C 6549 MatILUFactorSymbolic - Performs symbolic ILU factorization of a matrix. 6550 Uses levels of fill only, not drop tolerance. Use MatLUFactorNumeric() 6551 to complete the factorization. 6552 6553 Collective on Mat 6554 6555 Input Parameters: 6556 + mat - the matrix 6557 . row - row permutation 6558 . column - column permutation 6559 - info - structure containing 6560 $ levels - number of levels of fill. 6561 $ expected fill - as ratio of original fill. 6562 $ 1 or 0 - indicating force fill on diagonal (improves robustness for matrices 6563 missing diagonal entries) 6564 6565 Output Parameters: 6566 . fact - new matrix that has been symbolically factored 6567 6568 Notes: See Users-Manual: ch_mat for additional information about choosing the fill factor for better efficiency. 6569 6570 Most users should employ the simplified KSP interface for linear solvers 6571 instead of working directly with matrix algebra routines such as this. 6572 See, e.g., KSPCreate(). 6573 6574 Level: developer 6575 6576 Concepts: matrices^symbolic LU factorization 6577 Concepts: matrices^factorization 6578 Concepts: LU^symbolic factorization 6579 6580 .seealso: MatLUFactorSymbolic(), MatLUFactorNumeric(), MatCholeskyFactor() 6581 MatGetOrdering(), MatFactorInfo 6582 6583 Developer Note: fortran interface is not autogenerated as the f90 6584 interface defintion cannot be generated correctly [due to MatFactorInfo] 6585 6586 @*/ 6587 PetscErrorCode MatILUFactorSymbolic(Mat fact,Mat mat,IS row,IS col,const MatFactorInfo *info) 6588 { 6589 PetscErrorCode ierr; 6590 6591 PetscFunctionBegin; 6592 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6593 PetscValidType(mat,1); 6594 PetscValidHeaderSpecific(row,IS_CLASSID,2); 6595 PetscValidHeaderSpecific(col,IS_CLASSID,3); 6596 PetscValidPointer(info,4); 6597 PetscValidPointer(fact,5); 6598 if (info->levels < 0) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Levels of fill negative %D",(PetscInt)info->levels); 6599 if (info->fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Expected fill less than 1.0 %g",(double)info->fill); 6600 if (!(fact)->ops->ilufactorsymbolic) { 6601 const MatSolverPackage spackage; 6602 ierr = MatFactorGetSolverPackage(fact,&spackage);CHKERRQ(ierr); 6603 SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Matrix type %s symbolic ILU using solver package %s",((PetscObject)mat)->type_name,spackage); 6604 } 6605 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6606 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6607 MatCheckPreallocated(mat,2); 6608 6609 ierr = PetscLogEventBegin(MAT_ILUFactorSymbolic,mat,row,col,0);CHKERRQ(ierr); 6610 ierr = (fact->ops->ilufactorsymbolic)(fact,mat,row,col,info);CHKERRQ(ierr); 6611 ierr = PetscLogEventEnd(MAT_ILUFactorSymbolic,mat,row,col,0);CHKERRQ(ierr); 6612 PetscFunctionReturn(0); 6613 } 6614 6615 /*@C 6616 MatICCFactorSymbolic - Performs symbolic incomplete 6617 Cholesky factorization for a symmetric matrix. Use 6618 MatCholeskyFactorNumeric() to complete the factorization. 6619 6620 Collective on Mat 6621 6622 Input Parameters: 6623 + mat - the matrix 6624 . perm - row and column permutation 6625 - info - structure containing 6626 $ levels - number of levels of fill. 6627 $ expected fill - as ratio of original fill. 6628 6629 Output Parameter: 6630 . fact - the factored matrix 6631 6632 Notes: 6633 Most users should employ the KSP interface for linear solvers 6634 instead of working directly with matrix algebra routines such as this. 6635 See, e.g., KSPCreate(). 6636 6637 Level: developer 6638 6639 Concepts: matrices^symbolic incomplete Cholesky factorization 6640 Concepts: matrices^factorization 6641 Concepts: Cholsky^symbolic factorization 6642 6643 .seealso: MatCholeskyFactorNumeric(), MatCholeskyFactor(), MatFactorInfo 6644 6645 Developer Note: fortran interface is not autogenerated as the f90 6646 interface defintion cannot be generated correctly [due to MatFactorInfo] 6647 6648 @*/ 6649 PetscErrorCode MatICCFactorSymbolic(Mat fact,Mat mat,IS perm,const MatFactorInfo *info) 6650 { 6651 PetscErrorCode ierr; 6652 6653 PetscFunctionBegin; 6654 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6655 PetscValidType(mat,1); 6656 PetscValidHeaderSpecific(perm,IS_CLASSID,2); 6657 PetscValidPointer(info,3); 6658 PetscValidPointer(fact,4); 6659 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6660 if (info->levels < 0) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Levels negative %D",(PetscInt) info->levels); 6661 if (info->fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Expected fill less than 1.0 %g",(double)info->fill); 6662 if (!(fact)->ops->iccfactorsymbolic) { 6663 const MatSolverPackage spackage; 6664 ierr = MatFactorGetSolverPackage(fact,&spackage);CHKERRQ(ierr); 6665 SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Matrix type %s symbolic ICC using solver package %s",((PetscObject)mat)->type_name,spackage); 6666 } 6667 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6668 MatCheckPreallocated(mat,2); 6669 6670 ierr = PetscLogEventBegin(MAT_ICCFactorSymbolic,mat,perm,0,0);CHKERRQ(ierr); 6671 ierr = (fact->ops->iccfactorsymbolic)(fact,mat,perm,info);CHKERRQ(ierr); 6672 ierr = PetscLogEventEnd(MAT_ICCFactorSymbolic,mat,perm,0,0);CHKERRQ(ierr); 6673 PetscFunctionReturn(0); 6674 } 6675 6676 /*@C 6677 MatCreateSubMatrices - Extracts several submatrices from a matrix. If submat 6678 points to an array of valid matrices, they may be reused to store the new 6679 submatrices. 6680 6681 Collective on Mat 6682 6683 Input Parameters: 6684 + mat - the matrix 6685 . n - the number of submatrixes to be extracted (on this processor, may be zero) 6686 . irow, icol - index sets of rows and columns to extract 6687 - scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 6688 6689 Output Parameter: 6690 . submat - the array of submatrices 6691 6692 Notes: 6693 MatCreateSubMatrices() can extract ONLY sequential submatrices 6694 (from both sequential and parallel matrices). Use MatCreateSubMatrix() 6695 to extract a parallel submatrix. 6696 6697 Some matrix types place restrictions on the row and column 6698 indices, such as that they be sorted or that they be equal to each other. 6699 6700 The index sets may not have duplicate entries. 6701 6702 When extracting submatrices from a parallel matrix, each processor can 6703 form a different submatrix by setting the rows and columns of its 6704 individual index sets according to the local submatrix desired. 6705 6706 When finished using the submatrices, the user should destroy 6707 them with MatDestroyMatrices(). 6708 6709 MAT_REUSE_MATRIX can only be used when the nonzero structure of the 6710 original matrix has not changed from that last call to MatCreateSubMatrices(). 6711 6712 This routine creates the matrices in submat; you should NOT create them before 6713 calling it. It also allocates the array of matrix pointers submat. 6714 6715 For BAIJ matrices the index sets must respect the block structure, that is if they 6716 request one row/column in a block, they must request all rows/columns that are in 6717 that block. For example, if the block size is 2 you cannot request just row 0 and 6718 column 0. 6719 6720 Fortran Note: 6721 The Fortran interface is slightly different from that given below; it 6722 requires one to pass in as submat a Mat (integer) array of size at least m. 6723 6724 Level: advanced 6725 6726 Concepts: matrices^accessing submatrices 6727 Concepts: submatrices 6728 6729 .seealso: MatDestroySubMatrices(), MatCreateSubMatrix(), MatGetRow(), MatGetDiagonal(), MatReuse 6730 @*/ 6731 PetscErrorCode MatCreateSubMatrices(Mat mat,PetscInt n,const IS irow[],const IS icol[],MatReuse scall,Mat *submat[]) 6732 { 6733 PetscErrorCode ierr; 6734 PetscInt i; 6735 PetscBool eq; 6736 6737 PetscFunctionBegin; 6738 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6739 PetscValidType(mat,1); 6740 if (n) { 6741 PetscValidPointer(irow,3); 6742 PetscValidHeaderSpecific(*irow,IS_CLASSID,3); 6743 PetscValidPointer(icol,4); 6744 PetscValidHeaderSpecific(*icol,IS_CLASSID,4); 6745 } 6746 PetscValidPointer(submat,6); 6747 if (n && scall == MAT_REUSE_MATRIX) { 6748 PetscValidPointer(*submat,6); 6749 PetscValidHeaderSpecific(**submat,MAT_CLASSID,6); 6750 } 6751 if (!mat->ops->createsubmatrices) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 6752 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6753 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6754 MatCheckPreallocated(mat,1); 6755 6756 ierr = PetscLogEventBegin(MAT_CreateSubMats,mat,0,0,0);CHKERRQ(ierr); 6757 ierr = (*mat->ops->createsubmatrices)(mat,n,irow,icol,scall,submat);CHKERRQ(ierr); 6758 ierr = PetscLogEventEnd(MAT_CreateSubMats,mat,0,0,0);CHKERRQ(ierr); 6759 for (i=0; i<n; i++) { 6760 (*submat)[i]->factortype = MAT_FACTOR_NONE; /* in case in place factorization was previously done on submatrix */ 6761 if (mat->symmetric || mat->structurally_symmetric || mat->hermitian) { 6762 ierr = ISEqual(irow[i],icol[i],&eq);CHKERRQ(ierr); 6763 if (eq) { 6764 if (mat->symmetric) { 6765 ierr = MatSetOption((*submat)[i],MAT_SYMMETRIC,PETSC_TRUE);CHKERRQ(ierr); 6766 } else if (mat->hermitian) { 6767 ierr = MatSetOption((*submat)[i],MAT_HERMITIAN,PETSC_TRUE);CHKERRQ(ierr); 6768 } else if (mat->structurally_symmetric) { 6769 ierr = MatSetOption((*submat)[i],MAT_STRUCTURALLY_SYMMETRIC,PETSC_TRUE);CHKERRQ(ierr); 6770 } 6771 } 6772 } 6773 } 6774 PetscFunctionReturn(0); 6775 } 6776 6777 /*@C 6778 MatCreateSubMatricesMPI - Extracts MPI submatrices across a sub communicator of mat (by pairs of IS that may live on subcomms). 6779 6780 Collective on Mat 6781 6782 Input Parameters: 6783 + mat - the matrix 6784 . n - the number of submatrixes to be extracted 6785 . irow, icol - index sets of rows and columns to extract 6786 - scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 6787 6788 Output Parameter: 6789 . submat - the array of submatrices 6790 6791 Level: advanced 6792 6793 Concepts: matrices^accessing submatrices 6794 Concepts: submatrices 6795 6796 .seealso: MatCreateSubMatrices(), MatCreateSubMatrix(), MatGetRow(), MatGetDiagonal(), MatReuse 6797 @*/ 6798 PetscErrorCode MatCreateSubMatricesMPI(Mat mat,PetscInt n,const IS irow[],const IS icol[],MatReuse scall,Mat *submat[]) 6799 { 6800 PetscErrorCode ierr; 6801 PetscInt i; 6802 PetscBool eq; 6803 6804 PetscFunctionBegin; 6805 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6806 PetscValidType(mat,1); 6807 if (n) { 6808 PetscValidPointer(irow,3); 6809 PetscValidHeaderSpecific(*irow,IS_CLASSID,3); 6810 PetscValidPointer(icol,4); 6811 PetscValidHeaderSpecific(*icol,IS_CLASSID,4); 6812 } 6813 PetscValidPointer(submat,6); 6814 if (n && scall == MAT_REUSE_MATRIX) { 6815 PetscValidPointer(*submat,6); 6816 PetscValidHeaderSpecific(**submat,MAT_CLASSID,6); 6817 } 6818 if (!mat->ops->createsubmatricesmpi) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 6819 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 6820 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6821 MatCheckPreallocated(mat,1); 6822 6823 ierr = PetscLogEventBegin(MAT_CreateSubMats,mat,0,0,0);CHKERRQ(ierr); 6824 ierr = (*mat->ops->createsubmatricesmpi)(mat,n,irow,icol,scall,submat);CHKERRQ(ierr); 6825 ierr = PetscLogEventEnd(MAT_CreateSubMats,mat,0,0,0);CHKERRQ(ierr); 6826 for (i=0; i<n; i++) { 6827 if (mat->symmetric || mat->structurally_symmetric || mat->hermitian) { 6828 ierr = ISEqual(irow[i],icol[i],&eq);CHKERRQ(ierr); 6829 if (eq) { 6830 if (mat->symmetric) { 6831 ierr = MatSetOption((*submat)[i],MAT_SYMMETRIC,PETSC_TRUE);CHKERRQ(ierr); 6832 } else if (mat->hermitian) { 6833 ierr = MatSetOption((*submat)[i],MAT_HERMITIAN,PETSC_TRUE);CHKERRQ(ierr); 6834 } else if (mat->structurally_symmetric) { 6835 ierr = MatSetOption((*submat)[i],MAT_STRUCTURALLY_SYMMETRIC,PETSC_TRUE);CHKERRQ(ierr); 6836 } 6837 } 6838 } 6839 } 6840 PetscFunctionReturn(0); 6841 } 6842 6843 /*@C 6844 MatDestroyMatrices - Destroys an array of matrices. 6845 6846 Collective on Mat 6847 6848 Input Parameters: 6849 + n - the number of local matrices 6850 - mat - the matrices (note that this is a pointer to the array of matrices) 6851 6852 Level: advanced 6853 6854 Notes: Frees not only the matrices, but also the array that contains the matrices 6855 In Fortran will not free the array. 6856 6857 .seealso: MatCreateSubMatrices() MatDestroySubMatrices() 6858 @*/ 6859 PetscErrorCode MatDestroyMatrices(PetscInt n,Mat *mat[]) 6860 { 6861 PetscErrorCode ierr; 6862 PetscInt i; 6863 6864 PetscFunctionBegin; 6865 if (!*mat) PetscFunctionReturn(0); 6866 if (n < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Trying to destroy negative number of matrices %D",n); 6867 PetscValidPointer(mat,2); 6868 6869 for (i=0; i<n; i++) { 6870 ierr = MatDestroy(&(*mat)[i]);CHKERRQ(ierr); 6871 } 6872 6873 /* memory is allocated even if n = 0 */ 6874 ierr = PetscFree(*mat);CHKERRQ(ierr); 6875 PetscFunctionReturn(0); 6876 } 6877 6878 /*@C 6879 MatDestroySubMatrices - Destroys a set of matrices obtained with MatCreateSubMatrices(). 6880 6881 Collective on Mat 6882 6883 Input Parameters: 6884 + n - the number of local matrices 6885 - mat - the matrices (note that this is a pointer to the array of matrices, just to match the calling 6886 sequence of MatCreateSubMatrices()) 6887 6888 Level: advanced 6889 6890 Notes: Frees not only the matrices, but also the array that contains the matrices 6891 In Fortran will not free the array. 6892 6893 .seealso: MatCreateSubMatrices() 6894 @*/ 6895 PetscErrorCode MatDestroySubMatrices(PetscInt n,Mat *mat[]) 6896 { 6897 PetscErrorCode ierr; 6898 Mat mat0; 6899 6900 PetscFunctionBegin; 6901 if (!*mat) PetscFunctionReturn(0); 6902 /* mat[] is an array of length n+1, see MatCreateSubMatrices_xxx() */ 6903 if (n < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Trying to destroy negative number of matrices %D",n); 6904 PetscValidPointer(mat,2); 6905 6906 mat0 = (*mat)[0]; 6907 if (mat0 && mat0->ops->destroysubmatrices) { 6908 ierr = (mat0->ops->destroysubmatrices)(n,mat);CHKERRQ(ierr); 6909 } else { 6910 ierr = MatDestroyMatrices(n,mat);CHKERRQ(ierr); 6911 } 6912 PetscFunctionReturn(0); 6913 } 6914 6915 /*@C 6916 MatGetSeqNonzeroStructure - Extracts the sequential nonzero structure from a matrix. 6917 6918 Collective on Mat 6919 6920 Input Parameters: 6921 . mat - the matrix 6922 6923 Output Parameter: 6924 . matstruct - the sequential matrix with the nonzero structure of mat 6925 6926 Level: intermediate 6927 6928 .seealso: MatDestroySeqNonzeroStructure(), MatCreateSubMatrices(), MatDestroyMatrices() 6929 @*/ 6930 PetscErrorCode MatGetSeqNonzeroStructure(Mat mat,Mat *matstruct) 6931 { 6932 PetscErrorCode ierr; 6933 6934 PetscFunctionBegin; 6935 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 6936 PetscValidPointer(matstruct,2); 6937 6938 PetscValidType(mat,1); 6939 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 6940 MatCheckPreallocated(mat,1); 6941 6942 if (!mat->ops->getseqnonzerostructure) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Not for matrix type %s\n",((PetscObject)mat)->type_name); 6943 ierr = PetscLogEventBegin(MAT_GetSeqNonzeroStructure,mat,0,0,0);CHKERRQ(ierr); 6944 ierr = (*mat->ops->getseqnonzerostructure)(mat,matstruct);CHKERRQ(ierr); 6945 ierr = PetscLogEventEnd(MAT_GetSeqNonzeroStructure,mat,0,0,0);CHKERRQ(ierr); 6946 PetscFunctionReturn(0); 6947 } 6948 6949 /*@C 6950 MatDestroySeqNonzeroStructure - Destroys matrix obtained with MatGetSeqNonzeroStructure(). 6951 6952 Collective on Mat 6953 6954 Input Parameters: 6955 . mat - the matrix (note that this is a pointer to the array of matrices, just to match the calling 6956 sequence of MatGetSequentialNonzeroStructure()) 6957 6958 Level: advanced 6959 6960 Notes: Frees not only the matrices, but also the array that contains the matrices 6961 6962 .seealso: MatGetSeqNonzeroStructure() 6963 @*/ 6964 PetscErrorCode MatDestroySeqNonzeroStructure(Mat *mat) 6965 { 6966 PetscErrorCode ierr; 6967 6968 PetscFunctionBegin; 6969 PetscValidPointer(mat,1); 6970 ierr = MatDestroy(mat);CHKERRQ(ierr); 6971 PetscFunctionReturn(0); 6972 } 6973 6974 /*@ 6975 MatIncreaseOverlap - Given a set of submatrices indicated by index sets, 6976 replaces the index sets by larger ones that represent submatrices with 6977 additional overlap. 6978 6979 Collective on Mat 6980 6981 Input Parameters: 6982 + mat - the matrix 6983 . n - the number of index sets 6984 . is - the array of index sets (these index sets will changed during the call) 6985 - ov - the additional overlap requested 6986 6987 Options Database: 6988 . -mat_increase_overlap_scalable - use a scalable algorithm to compute the overlap (supported by MPIAIJ matrix) 6989 6990 Level: developer 6991 6992 Concepts: overlap 6993 Concepts: ASM^computing overlap 6994 6995 .seealso: MatCreateSubMatrices() 6996 @*/ 6997 PetscErrorCode MatIncreaseOverlap(Mat mat,PetscInt n,IS is[],PetscInt ov) 6998 { 6999 PetscErrorCode ierr; 7000 7001 PetscFunctionBegin; 7002 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7003 PetscValidType(mat,1); 7004 if (n < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Must have one or more domains, you have %D",n); 7005 if (n) { 7006 PetscValidPointer(is,3); 7007 PetscValidHeaderSpecific(*is,IS_CLASSID,3); 7008 } 7009 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 7010 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 7011 MatCheckPreallocated(mat,1); 7012 7013 if (!ov) PetscFunctionReturn(0); 7014 if (!mat->ops->increaseoverlap) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 7015 ierr = PetscLogEventBegin(MAT_IncreaseOverlap,mat,0,0,0);CHKERRQ(ierr); 7016 ierr = (*mat->ops->increaseoverlap)(mat,n,is,ov);CHKERRQ(ierr); 7017 ierr = PetscLogEventEnd(MAT_IncreaseOverlap,mat,0,0,0);CHKERRQ(ierr); 7018 PetscFunctionReturn(0); 7019 } 7020 7021 7022 PetscErrorCode MatIncreaseOverlapSplit_Single(Mat,IS*,PetscInt); 7023 7024 /*@ 7025 MatIncreaseOverlapSplit - Given a set of submatrices indicated by index sets across 7026 a sub communicator, replaces the index sets by larger ones that represent submatrices with 7027 additional overlap. 7028 7029 Collective on Mat 7030 7031 Input Parameters: 7032 + mat - the matrix 7033 . n - the number of index sets 7034 . is - the array of index sets (these index sets will changed during the call) 7035 - ov - the additional overlap requested 7036 7037 Options Database: 7038 . -mat_increase_overlap_scalable - use a scalable algorithm to compute the overlap (supported by MPIAIJ matrix) 7039 7040 Level: developer 7041 7042 Concepts: overlap 7043 Concepts: ASM^computing overlap 7044 7045 .seealso: MatCreateSubMatrices() 7046 @*/ 7047 PetscErrorCode MatIncreaseOverlapSplit(Mat mat,PetscInt n,IS is[],PetscInt ov) 7048 { 7049 PetscInt i; 7050 PetscErrorCode ierr; 7051 7052 PetscFunctionBegin; 7053 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7054 PetscValidType(mat,1); 7055 if (n < 0) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_OUTOFRANGE,"Must have one or more domains, you have %D",n); 7056 if (n) { 7057 PetscValidPointer(is,3); 7058 PetscValidHeaderSpecific(*is,IS_CLASSID,3); 7059 } 7060 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 7061 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 7062 MatCheckPreallocated(mat,1); 7063 if (!ov) PetscFunctionReturn(0); 7064 ierr = PetscLogEventBegin(MAT_IncreaseOverlap,mat,0,0,0);CHKERRQ(ierr); 7065 for(i=0; i<n; i++){ 7066 ierr = MatIncreaseOverlapSplit_Single(mat,&is[i],ov);CHKERRQ(ierr); 7067 } 7068 ierr = PetscLogEventEnd(MAT_IncreaseOverlap,mat,0,0,0);CHKERRQ(ierr); 7069 PetscFunctionReturn(0); 7070 } 7071 7072 7073 7074 7075 /*@ 7076 MatGetBlockSize - Returns the matrix block size. 7077 7078 Not Collective 7079 7080 Input Parameter: 7081 . mat - the matrix 7082 7083 Output Parameter: 7084 . bs - block size 7085 7086 Notes: 7087 Block row formats are MATSEQBAIJ, MATMPIBAIJ, MATSEQSBAIJ, MATMPISBAIJ. These formats ALWAYS have square block storage in the matrix. 7088 7089 If the block size has not been set yet this routine returns 1. 7090 7091 Level: intermediate 7092 7093 Concepts: matrices^block size 7094 7095 .seealso: MatCreateSeqBAIJ(), MatCreateBAIJ(), MatGetBlockSizes() 7096 @*/ 7097 PetscErrorCode MatGetBlockSize(Mat mat,PetscInt *bs) 7098 { 7099 PetscFunctionBegin; 7100 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7101 PetscValidIntPointer(bs,2); 7102 *bs = PetscAbs(mat->rmap->bs); 7103 PetscFunctionReturn(0); 7104 } 7105 7106 /*@ 7107 MatGetBlockSizes - Returns the matrix block row and column sizes. 7108 7109 Not Collective 7110 7111 Input Parameter: 7112 . mat - the matrix 7113 7114 Output Parameter: 7115 . rbs - row block size 7116 . cbs - column block size 7117 7118 Notes: 7119 Block row formats are MATSEQBAIJ, MATMPIBAIJ, MATSEQSBAIJ, MATMPISBAIJ. These formats ALWAYS have square block storage in the matrix. 7120 If you pass a different block size for the columns than the rows, the row block size determines the square block storage. 7121 7122 If a block size has not been set yet this routine returns 1. 7123 7124 Level: intermediate 7125 7126 Concepts: matrices^block size 7127 7128 .seealso: MatCreateSeqBAIJ(), MatCreateBAIJ(), MatGetBlockSize(), MatSetBlockSize(), MatSetBlockSizes() 7129 @*/ 7130 PetscErrorCode MatGetBlockSizes(Mat mat,PetscInt *rbs, PetscInt *cbs) 7131 { 7132 PetscFunctionBegin; 7133 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7134 if (rbs) PetscValidIntPointer(rbs,2); 7135 if (cbs) PetscValidIntPointer(cbs,3); 7136 if (rbs) *rbs = PetscAbs(mat->rmap->bs); 7137 if (cbs) *cbs = PetscAbs(mat->cmap->bs); 7138 PetscFunctionReturn(0); 7139 } 7140 7141 /*@ 7142 MatSetBlockSize - Sets the matrix block size. 7143 7144 Logically Collective on Mat 7145 7146 Input Parameters: 7147 + mat - the matrix 7148 - bs - block size 7149 7150 Notes: 7151 Block row formats are MATSEQBAIJ, MATMPIBAIJ, MATSEQSBAIJ, MATMPISBAIJ. These formats ALWAYS have square block storage in the matrix. 7152 This must be called before MatSetUp() or MatXXXSetPreallocation() (or will default to 1) and the block size cannot be changed later. 7153 7154 For MATMPIAIJ and MATSEQAIJ matrix formats, this function can be called at a later stage, provided that the specified block size 7155 is compatible with the matrix local sizes. 7156 7157 Level: intermediate 7158 7159 Concepts: matrices^block size 7160 7161 .seealso: MatCreateSeqBAIJ(), MatCreateBAIJ(), MatGetBlockSize(), MatSetBlockSizes(), MatGetBlockSizes() 7162 @*/ 7163 PetscErrorCode MatSetBlockSize(Mat mat,PetscInt bs) 7164 { 7165 PetscErrorCode ierr; 7166 7167 PetscFunctionBegin; 7168 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7169 PetscValidLogicalCollectiveInt(mat,bs,2); 7170 ierr = MatSetBlockSizes(mat,bs,bs);CHKERRQ(ierr); 7171 PetscFunctionReturn(0); 7172 } 7173 7174 /*@ 7175 MatSetBlockSizes - Sets the matrix block row and column sizes. 7176 7177 Logically Collective on Mat 7178 7179 Input Parameters: 7180 + mat - the matrix 7181 - rbs - row block size 7182 - cbs - column block size 7183 7184 Notes: 7185 Block row formats are MATSEQBAIJ, MATMPIBAIJ, MATSEQSBAIJ, MATMPISBAIJ. These formats ALWAYS have square block storage in the matrix. 7186 If you pass a different block size for the columns than the rows, the row block size determines the square block storage. 7187 This must be called before MatSetUp() or MatXXXSetPreallocation() (or will default to 1) and the block size cannot be changed later 7188 7189 For MATMPIAIJ and MATSEQAIJ matrix formats, this function can be called at a later stage, provided that the specified block sizes 7190 are compatible with the matrix local sizes. 7191 7192 The row and column block size determine the blocksize of the "row" and "column" vectors returned by MatCreateVecs(). 7193 7194 Level: intermediate 7195 7196 Concepts: matrices^block size 7197 7198 .seealso: MatCreateSeqBAIJ(), MatCreateBAIJ(), MatGetBlockSize(), MatSetBlockSize(), MatGetBlockSizes() 7199 @*/ 7200 PetscErrorCode MatSetBlockSizes(Mat mat,PetscInt rbs,PetscInt cbs) 7201 { 7202 PetscErrorCode ierr; 7203 7204 PetscFunctionBegin; 7205 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7206 PetscValidLogicalCollectiveInt(mat,rbs,2); 7207 PetscValidLogicalCollectiveInt(mat,cbs,3); 7208 if (mat->ops->setblocksizes) { 7209 ierr = (*mat->ops->setblocksizes)(mat,rbs,cbs);CHKERRQ(ierr); 7210 } 7211 if (mat->rmap->refcnt) { 7212 ISLocalToGlobalMapping l2g = NULL; 7213 PetscLayout nmap = NULL; 7214 7215 ierr = PetscLayoutDuplicate(mat->rmap,&nmap);CHKERRQ(ierr); 7216 if (mat->rmap->mapping) { 7217 ierr = ISLocalToGlobalMappingDuplicate(mat->rmap->mapping,&l2g);CHKERRQ(ierr); 7218 } 7219 ierr = PetscLayoutDestroy(&mat->rmap);CHKERRQ(ierr); 7220 mat->rmap = nmap; 7221 mat->rmap->mapping = l2g; 7222 } 7223 if (mat->cmap->refcnt) { 7224 ISLocalToGlobalMapping l2g = NULL; 7225 PetscLayout nmap = NULL; 7226 7227 ierr = PetscLayoutDuplicate(mat->cmap,&nmap);CHKERRQ(ierr); 7228 if (mat->cmap->mapping) { 7229 ierr = ISLocalToGlobalMappingDuplicate(mat->cmap->mapping,&l2g);CHKERRQ(ierr); 7230 } 7231 ierr = PetscLayoutDestroy(&mat->cmap);CHKERRQ(ierr); 7232 mat->cmap = nmap; 7233 mat->cmap->mapping = l2g; 7234 } 7235 ierr = PetscLayoutSetBlockSize(mat->rmap,rbs);CHKERRQ(ierr); 7236 ierr = PetscLayoutSetBlockSize(mat->cmap,cbs);CHKERRQ(ierr); 7237 PetscFunctionReturn(0); 7238 } 7239 7240 /*@ 7241 MatSetBlockSizesFromMats - Sets the matrix block row and column sizes to match a pair of matrices 7242 7243 Logically Collective on Mat 7244 7245 Input Parameters: 7246 + mat - the matrix 7247 . fromRow - matrix from which to copy row block size 7248 - fromCol - matrix from which to copy column block size (can be same as fromRow) 7249 7250 Level: developer 7251 7252 Concepts: matrices^block size 7253 7254 .seealso: MatCreateSeqBAIJ(), MatCreateBAIJ(), MatGetBlockSize(), MatSetBlockSizes() 7255 @*/ 7256 PetscErrorCode MatSetBlockSizesFromMats(Mat mat,Mat fromRow,Mat fromCol) 7257 { 7258 PetscErrorCode ierr; 7259 7260 PetscFunctionBegin; 7261 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7262 PetscValidHeaderSpecific(fromRow,MAT_CLASSID,2); 7263 PetscValidHeaderSpecific(fromCol,MAT_CLASSID,3); 7264 if (fromRow->rmap->bs > 0) {ierr = PetscLayoutSetBlockSize(mat->rmap,fromRow->rmap->bs);CHKERRQ(ierr);} 7265 if (fromCol->cmap->bs > 0) {ierr = PetscLayoutSetBlockSize(mat->cmap,fromCol->cmap->bs);CHKERRQ(ierr);} 7266 PetscFunctionReturn(0); 7267 } 7268 7269 /*@ 7270 MatResidual - Default routine to calculate the residual. 7271 7272 Collective on Mat and Vec 7273 7274 Input Parameters: 7275 + mat - the matrix 7276 . b - the right-hand-side 7277 - x - the approximate solution 7278 7279 Output Parameter: 7280 . r - location to store the residual 7281 7282 Level: developer 7283 7284 .keywords: MG, default, multigrid, residual 7285 7286 .seealso: PCMGSetResidual() 7287 @*/ 7288 PetscErrorCode MatResidual(Mat mat,Vec b,Vec x,Vec r) 7289 { 7290 PetscErrorCode ierr; 7291 7292 PetscFunctionBegin; 7293 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7294 PetscValidHeaderSpecific(b,VEC_CLASSID,2); 7295 PetscValidHeaderSpecific(x,VEC_CLASSID,3); 7296 PetscValidHeaderSpecific(r,VEC_CLASSID,4); 7297 PetscValidType(mat,1); 7298 MatCheckPreallocated(mat,1); 7299 ierr = PetscLogEventBegin(MAT_Residual,mat,0,0,0);CHKERRQ(ierr); 7300 if (!mat->ops->residual) { 7301 ierr = MatMult(mat,x,r);CHKERRQ(ierr); 7302 ierr = VecAYPX(r,-1.0,b);CHKERRQ(ierr); 7303 } else { 7304 ierr = (*mat->ops->residual)(mat,b,x,r);CHKERRQ(ierr); 7305 } 7306 ierr = PetscLogEventEnd(MAT_Residual,mat,0,0,0);CHKERRQ(ierr); 7307 PetscFunctionReturn(0); 7308 } 7309 7310 /*@C 7311 MatGetRowIJ - Returns the compressed row storage i and j indices for sequential matrices. 7312 7313 Collective on Mat 7314 7315 Input Parameters: 7316 + mat - the matrix 7317 . shift - 0 or 1 indicating we want the indices starting at 0 or 1 7318 . symmetric - PETSC_TRUE or PETSC_FALSE indicating the matrix data structure should be symmetrized 7319 - inodecompressed - PETSC_TRUE or PETSC_FALSE indicating if the nonzero structure of the 7320 inodes or the nonzero elements is wanted. For BAIJ matrices the compressed version is 7321 always used. 7322 7323 Output Parameters: 7324 + n - number of rows in the (possibly compressed) matrix 7325 . ia - the row pointers [of length n+1] 7326 . ja - the column indices 7327 - done - indicates if the routine actually worked and returned appropriate ia[] and ja[] arrays; callers 7328 are responsible for handling the case when done == PETSC_FALSE and ia and ja are not set 7329 7330 Level: developer 7331 7332 Notes: You CANNOT change any of the ia[] or ja[] values. 7333 7334 Use MatRestoreRowIJ() when you are finished accessing the ia[] and ja[] values 7335 7336 Fortran Node 7337 7338 In Fortran use 7339 $ PetscInt ia(1), ja(1) 7340 $ PetscOffset iia, jja 7341 $ call MatGetRowIJ(mat,shift,symmetric,inodecompressed,n,ia,iia,ja,jja,done,ierr) 7342 $ Acess the ith and jth entries via ia(iia + i) and ja(jja + j) 7343 $ 7344 $ or 7345 $ 7346 $ PetscInt, pointer :: ia(:),ja(:) 7347 $ call MatGetRowIJF90(mat,shift,symmetric,inodecompressed,n,ia,ja,done,ierr) 7348 $ Acess the ith and jth entries via ia(i) and ja(j) 7349 7350 7351 7352 .seealso: MatGetColumnIJ(), MatRestoreRowIJ(), MatSeqAIJGetArray() 7353 @*/ 7354 PetscErrorCode MatGetRowIJ(Mat mat,PetscInt shift,PetscBool symmetric,PetscBool inodecompressed,PetscInt *n,const PetscInt *ia[],const PetscInt *ja[],PetscBool *done) 7355 { 7356 PetscErrorCode ierr; 7357 7358 PetscFunctionBegin; 7359 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7360 PetscValidType(mat,1); 7361 PetscValidIntPointer(n,5); 7362 if (ia) PetscValidIntPointer(ia,6); 7363 if (ja) PetscValidIntPointer(ja,7); 7364 PetscValidIntPointer(done,8); 7365 MatCheckPreallocated(mat,1); 7366 if (!mat->ops->getrowij) *done = PETSC_FALSE; 7367 else { 7368 *done = PETSC_TRUE; 7369 ierr = PetscLogEventBegin(MAT_GetRowIJ,mat,0,0,0);CHKERRQ(ierr); 7370 ierr = (*mat->ops->getrowij)(mat,shift,symmetric,inodecompressed,n,ia,ja,done);CHKERRQ(ierr); 7371 ierr = PetscLogEventEnd(MAT_GetRowIJ,mat,0,0,0);CHKERRQ(ierr); 7372 } 7373 PetscFunctionReturn(0); 7374 } 7375 7376 /*@C 7377 MatGetColumnIJ - Returns the compressed column storage i and j indices for sequential matrices. 7378 7379 Collective on Mat 7380 7381 Input Parameters: 7382 + mat - the matrix 7383 . shift - 1 or zero indicating we want the indices starting at 0 or 1 7384 . symmetric - PETSC_TRUE or PETSC_FALSE indicating the matrix data structure should be 7385 symmetrized 7386 . inodecompressed - PETSC_TRUE or PETSC_FALSE indicating if the nonzero structure of the 7387 inodes or the nonzero elements is wanted. For BAIJ matrices the compressed version is 7388 always used. 7389 . n - number of columns in the (possibly compressed) matrix 7390 . ia - the column pointers 7391 - ja - the row indices 7392 7393 Output Parameters: 7394 . done - PETSC_TRUE or PETSC_FALSE, indicating whether the values have been returned 7395 7396 Note: 7397 This routine zeros out n, ia, and ja. This is to prevent accidental 7398 us of the array after it has been restored. If you pass NULL, it will 7399 not zero the pointers. Use of ia or ja after MatRestoreColumnIJ() is invalid. 7400 7401 Level: developer 7402 7403 .seealso: MatGetRowIJ(), MatRestoreColumnIJ() 7404 @*/ 7405 PetscErrorCode MatGetColumnIJ(Mat mat,PetscInt shift,PetscBool symmetric,PetscBool inodecompressed,PetscInt *n,const PetscInt *ia[],const PetscInt *ja[],PetscBool *done) 7406 { 7407 PetscErrorCode ierr; 7408 7409 PetscFunctionBegin; 7410 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7411 PetscValidType(mat,1); 7412 PetscValidIntPointer(n,4); 7413 if (ia) PetscValidIntPointer(ia,5); 7414 if (ja) PetscValidIntPointer(ja,6); 7415 PetscValidIntPointer(done,7); 7416 MatCheckPreallocated(mat,1); 7417 if (!mat->ops->getcolumnij) *done = PETSC_FALSE; 7418 else { 7419 *done = PETSC_TRUE; 7420 ierr = (*mat->ops->getcolumnij)(mat,shift,symmetric,inodecompressed,n,ia,ja,done);CHKERRQ(ierr); 7421 } 7422 PetscFunctionReturn(0); 7423 } 7424 7425 /*@C 7426 MatRestoreRowIJ - Call after you are completed with the ia,ja indices obtained with 7427 MatGetRowIJ(). 7428 7429 Collective on Mat 7430 7431 Input Parameters: 7432 + mat - the matrix 7433 . shift - 1 or zero indicating we want the indices starting at 0 or 1 7434 . symmetric - PETSC_TRUE or PETSC_FALSE indicating the matrix data structure should be 7435 symmetrized 7436 . inodecompressed - PETSC_TRUE or PETSC_FALSE indicating if the nonzero structure of the 7437 inodes or the nonzero elements is wanted. For BAIJ matrices the compressed version is 7438 always used. 7439 . n - size of (possibly compressed) matrix 7440 . ia - the row pointers 7441 - ja - the column indices 7442 7443 Output Parameters: 7444 . done - PETSC_TRUE or PETSC_FALSE indicated that the values have been returned 7445 7446 Note: 7447 This routine zeros out n, ia, and ja. This is to prevent accidental 7448 us of the array after it has been restored. If you pass NULL, it will 7449 not zero the pointers. Use of ia or ja after MatRestoreRowIJ() is invalid. 7450 7451 Level: developer 7452 7453 .seealso: MatGetRowIJ(), MatRestoreColumnIJ() 7454 @*/ 7455 PetscErrorCode MatRestoreRowIJ(Mat mat,PetscInt shift,PetscBool symmetric,PetscBool inodecompressed,PetscInt *n,const PetscInt *ia[],const PetscInt *ja[],PetscBool *done) 7456 { 7457 PetscErrorCode ierr; 7458 7459 PetscFunctionBegin; 7460 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7461 PetscValidType(mat,1); 7462 if (ia) PetscValidIntPointer(ia,6); 7463 if (ja) PetscValidIntPointer(ja,7); 7464 PetscValidIntPointer(done,8); 7465 MatCheckPreallocated(mat,1); 7466 7467 if (!mat->ops->restorerowij) *done = PETSC_FALSE; 7468 else { 7469 *done = PETSC_TRUE; 7470 ierr = (*mat->ops->restorerowij)(mat,shift,symmetric,inodecompressed,n,ia,ja,done);CHKERRQ(ierr); 7471 if (n) *n = 0; 7472 if (ia) *ia = NULL; 7473 if (ja) *ja = NULL; 7474 } 7475 PetscFunctionReturn(0); 7476 } 7477 7478 /*@C 7479 MatRestoreColumnIJ - Call after you are completed with the ia,ja indices obtained with 7480 MatGetColumnIJ(). 7481 7482 Collective on Mat 7483 7484 Input Parameters: 7485 + mat - the matrix 7486 . shift - 1 or zero indicating we want the indices starting at 0 or 1 7487 - symmetric - PETSC_TRUE or PETSC_FALSE indicating the matrix data structure should be 7488 symmetrized 7489 - inodecompressed - PETSC_TRUE or PETSC_FALSE indicating if the nonzero structure of the 7490 inodes or the nonzero elements is wanted. For BAIJ matrices the compressed version is 7491 always used. 7492 7493 Output Parameters: 7494 + n - size of (possibly compressed) matrix 7495 . ia - the column pointers 7496 . ja - the row indices 7497 - done - PETSC_TRUE or PETSC_FALSE indicated that the values have been returned 7498 7499 Level: developer 7500 7501 .seealso: MatGetColumnIJ(), MatRestoreRowIJ() 7502 @*/ 7503 PetscErrorCode MatRestoreColumnIJ(Mat mat,PetscInt shift,PetscBool symmetric,PetscBool inodecompressed,PetscInt *n,const PetscInt *ia[],const PetscInt *ja[],PetscBool *done) 7504 { 7505 PetscErrorCode ierr; 7506 7507 PetscFunctionBegin; 7508 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7509 PetscValidType(mat,1); 7510 if (ia) PetscValidIntPointer(ia,5); 7511 if (ja) PetscValidIntPointer(ja,6); 7512 PetscValidIntPointer(done,7); 7513 MatCheckPreallocated(mat,1); 7514 7515 if (!mat->ops->restorecolumnij) *done = PETSC_FALSE; 7516 else { 7517 *done = PETSC_TRUE; 7518 ierr = (*mat->ops->restorecolumnij)(mat,shift,symmetric,inodecompressed,n,ia,ja,done);CHKERRQ(ierr); 7519 if (n) *n = 0; 7520 if (ia) *ia = NULL; 7521 if (ja) *ja = NULL; 7522 } 7523 PetscFunctionReturn(0); 7524 } 7525 7526 /*@C 7527 MatColoringPatch -Used inside matrix coloring routines that 7528 use MatGetRowIJ() and/or MatGetColumnIJ(). 7529 7530 Collective on Mat 7531 7532 Input Parameters: 7533 + mat - the matrix 7534 . ncolors - max color value 7535 . n - number of entries in colorarray 7536 - colorarray - array indicating color for each column 7537 7538 Output Parameters: 7539 . iscoloring - coloring generated using colorarray information 7540 7541 Level: developer 7542 7543 .seealso: MatGetRowIJ(), MatGetColumnIJ() 7544 7545 @*/ 7546 PetscErrorCode MatColoringPatch(Mat mat,PetscInt ncolors,PetscInt n,ISColoringValue colorarray[],ISColoring *iscoloring) 7547 { 7548 PetscErrorCode ierr; 7549 7550 PetscFunctionBegin; 7551 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7552 PetscValidType(mat,1); 7553 PetscValidIntPointer(colorarray,4); 7554 PetscValidPointer(iscoloring,5); 7555 MatCheckPreallocated(mat,1); 7556 7557 if (!mat->ops->coloringpatch) { 7558 ierr = ISColoringCreate(PetscObjectComm((PetscObject)mat),ncolors,n,colorarray,PETSC_OWN_POINTER,iscoloring);CHKERRQ(ierr); 7559 } else { 7560 ierr = (*mat->ops->coloringpatch)(mat,ncolors,n,colorarray,iscoloring);CHKERRQ(ierr); 7561 } 7562 PetscFunctionReturn(0); 7563 } 7564 7565 7566 /*@ 7567 MatSetUnfactored - Resets a factored matrix to be treated as unfactored. 7568 7569 Logically Collective on Mat 7570 7571 Input Parameter: 7572 . mat - the factored matrix to be reset 7573 7574 Notes: 7575 This routine should be used only with factored matrices formed by in-place 7576 factorization via ILU(0) (or by in-place LU factorization for the MATSEQDENSE 7577 format). This option can save memory, for example, when solving nonlinear 7578 systems with a matrix-free Newton-Krylov method and a matrix-based, in-place 7579 ILU(0) preconditioner. 7580 7581 Note that one can specify in-place ILU(0) factorization by calling 7582 .vb 7583 PCType(pc,PCILU); 7584 PCFactorSeUseInPlace(pc); 7585 .ve 7586 or by using the options -pc_type ilu -pc_factor_in_place 7587 7588 In-place factorization ILU(0) can also be used as a local 7589 solver for the blocks within the block Jacobi or additive Schwarz 7590 methods (runtime option: -sub_pc_factor_in_place). See Users-Manual: ch_pc 7591 for details on setting local solver options. 7592 7593 Most users should employ the simplified KSP interface for linear solvers 7594 instead of working directly with matrix algebra routines such as this. 7595 See, e.g., KSPCreate(). 7596 7597 Level: developer 7598 7599 .seealso: PCFactorSetUseInPlace(), PCFactorGetUseInPlace() 7600 7601 Concepts: matrices^unfactored 7602 7603 @*/ 7604 PetscErrorCode MatSetUnfactored(Mat mat) 7605 { 7606 PetscErrorCode ierr; 7607 7608 PetscFunctionBegin; 7609 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7610 PetscValidType(mat,1); 7611 MatCheckPreallocated(mat,1); 7612 mat->factortype = MAT_FACTOR_NONE; 7613 if (!mat->ops->setunfactored) PetscFunctionReturn(0); 7614 ierr = (*mat->ops->setunfactored)(mat);CHKERRQ(ierr); 7615 PetscFunctionReturn(0); 7616 } 7617 7618 /*MC 7619 MatDenseGetArrayF90 - Accesses a matrix array from Fortran90. 7620 7621 Synopsis: 7622 MatDenseGetArrayF90(Mat x,{Scalar, pointer :: xx_v(:,:)},integer ierr) 7623 7624 Not collective 7625 7626 Input Parameter: 7627 . x - matrix 7628 7629 Output Parameters: 7630 + xx_v - the Fortran90 pointer to the array 7631 - ierr - error code 7632 7633 Example of Usage: 7634 .vb 7635 PetscScalar, pointer xx_v(:,:) 7636 .... 7637 call MatDenseGetArrayF90(x,xx_v,ierr) 7638 a = xx_v(3) 7639 call MatDenseRestoreArrayF90(x,xx_v,ierr) 7640 .ve 7641 7642 Level: advanced 7643 7644 .seealso: MatDenseRestoreArrayF90(), MatDenseGetArray(), MatDenseRestoreArray(), MatSeqAIJGetArrayF90() 7645 7646 Concepts: matrices^accessing array 7647 7648 M*/ 7649 7650 /*MC 7651 MatDenseRestoreArrayF90 - Restores a matrix array that has been 7652 accessed with MatDenseGetArrayF90(). 7653 7654 Synopsis: 7655 MatDenseRestoreArrayF90(Mat x,{Scalar, pointer :: xx_v(:,:)},integer ierr) 7656 7657 Not collective 7658 7659 Input Parameters: 7660 + x - matrix 7661 - xx_v - the Fortran90 pointer to the array 7662 7663 Output Parameter: 7664 . ierr - error code 7665 7666 Example of Usage: 7667 .vb 7668 PetscScalar, pointer xx_v(:,:) 7669 .... 7670 call MatDenseGetArrayF90(x,xx_v,ierr) 7671 a = xx_v(3) 7672 call MatDenseRestoreArrayF90(x,xx_v,ierr) 7673 .ve 7674 7675 Level: advanced 7676 7677 .seealso: MatDenseGetArrayF90(), MatDenseGetArray(), MatDenseRestoreArray(), MatSeqAIJRestoreArrayF90() 7678 7679 M*/ 7680 7681 7682 /*MC 7683 MatSeqAIJGetArrayF90 - Accesses a matrix array from Fortran90. 7684 7685 Synopsis: 7686 MatSeqAIJGetArrayF90(Mat x,{Scalar, pointer :: xx_v(:)},integer ierr) 7687 7688 Not collective 7689 7690 Input Parameter: 7691 . x - matrix 7692 7693 Output Parameters: 7694 + xx_v - the Fortran90 pointer to the array 7695 - ierr - error code 7696 7697 Example of Usage: 7698 .vb 7699 PetscScalar, pointer xx_v(:) 7700 .... 7701 call MatSeqAIJGetArrayF90(x,xx_v,ierr) 7702 a = xx_v(3) 7703 call MatSeqAIJRestoreArrayF90(x,xx_v,ierr) 7704 .ve 7705 7706 Level: advanced 7707 7708 .seealso: MatSeqAIJRestoreArrayF90(), MatSeqAIJGetArray(), MatSeqAIJRestoreArray(), MatDenseGetArrayF90() 7709 7710 Concepts: matrices^accessing array 7711 7712 M*/ 7713 7714 /*MC 7715 MatSeqAIJRestoreArrayF90 - Restores a matrix array that has been 7716 accessed with MatSeqAIJGetArrayF90(). 7717 7718 Synopsis: 7719 MatSeqAIJRestoreArrayF90(Mat x,{Scalar, pointer :: xx_v(:)},integer ierr) 7720 7721 Not collective 7722 7723 Input Parameters: 7724 + x - matrix 7725 - xx_v - the Fortran90 pointer to the array 7726 7727 Output Parameter: 7728 . ierr - error code 7729 7730 Example of Usage: 7731 .vb 7732 PetscScalar, pointer xx_v(:) 7733 .... 7734 call MatSeqAIJGetArrayF90(x,xx_v,ierr) 7735 a = xx_v(3) 7736 call MatSeqAIJRestoreArrayF90(x,xx_v,ierr) 7737 .ve 7738 7739 Level: advanced 7740 7741 .seealso: MatSeqAIJGetArrayF90(), MatSeqAIJGetArray(), MatSeqAIJRestoreArray(), MatDenseRestoreArrayF90() 7742 7743 M*/ 7744 7745 7746 /*@ 7747 MatCreateSubMatrix - Gets a single submatrix on the same number of processors 7748 as the original matrix. 7749 7750 Collective on Mat 7751 7752 Input Parameters: 7753 + mat - the original matrix 7754 . isrow - parallel IS containing the rows this processor should obtain 7755 . iscol - parallel IS containing all columns you wish to keep. Each process should list the columns that will be in IT's "diagonal part" in the new matrix. 7756 - cll - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 7757 7758 Output Parameter: 7759 . newmat - the new submatrix, of the same type as the old 7760 7761 Level: advanced 7762 7763 Notes: 7764 The submatrix will be able to be multiplied with vectors using the same layout as iscol. 7765 7766 Some matrix types place restrictions on the row and column indices, such 7767 as that they be sorted or that they be equal to each other. 7768 7769 The index sets may not have duplicate entries. 7770 7771 The first time this is called you should use a cll of MAT_INITIAL_MATRIX, 7772 the MatCreateSubMatrix() routine will create the newmat for you. Any additional calls 7773 to this routine with a mat of the same nonzero structure and with a call of MAT_REUSE_MATRIX 7774 will reuse the matrix generated the first time. You should call MatDestroy() on newmat when 7775 you are finished using it. 7776 7777 The communicator of the newly obtained matrix is ALWAYS the same as the communicator of 7778 the input matrix. 7779 7780 If iscol is NULL then all columns are obtained (not supported in Fortran). 7781 7782 Example usage: 7783 Consider the following 8x8 matrix with 34 non-zero values, that is 7784 assembled across 3 processors. Let's assume that proc0 owns 3 rows, 7785 proc1 owns 3 rows, proc2 owns 2 rows. This division can be shown 7786 as follows: 7787 7788 .vb 7789 1 2 0 | 0 3 0 | 0 4 7790 Proc0 0 5 6 | 7 0 0 | 8 0 7791 9 0 10 | 11 0 0 | 12 0 7792 ------------------------------------- 7793 13 0 14 | 15 16 17 | 0 0 7794 Proc1 0 18 0 | 19 20 21 | 0 0 7795 0 0 0 | 22 23 0 | 24 0 7796 ------------------------------------- 7797 Proc2 25 26 27 | 0 0 28 | 29 0 7798 30 0 0 | 31 32 33 | 0 34 7799 .ve 7800 7801 Suppose isrow = [0 1 | 4 | 6 7] and iscol = [1 2 | 3 4 5 | 6]. The resulting submatrix is 7802 7803 .vb 7804 2 0 | 0 3 0 | 0 7805 Proc0 5 6 | 7 0 0 | 8 7806 ------------------------------- 7807 Proc1 18 0 | 19 20 21 | 0 7808 ------------------------------- 7809 Proc2 26 27 | 0 0 28 | 29 7810 0 0 | 31 32 33 | 0 7811 .ve 7812 7813 7814 Concepts: matrices^submatrices 7815 7816 .seealso: MatCreateSubMatrices() 7817 @*/ 7818 PetscErrorCode MatCreateSubMatrix(Mat mat,IS isrow,IS iscol,MatReuse cll,Mat *newmat) 7819 { 7820 PetscErrorCode ierr; 7821 PetscMPIInt size; 7822 Mat *local; 7823 IS iscoltmp; 7824 7825 PetscFunctionBegin; 7826 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7827 PetscValidHeaderSpecific(isrow,IS_CLASSID,2); 7828 if (iscol) PetscValidHeaderSpecific(iscol,IS_CLASSID,3); 7829 PetscValidPointer(newmat,5); 7830 if (cll == MAT_REUSE_MATRIX) PetscValidHeaderSpecific(*newmat,MAT_CLASSID,5); 7831 PetscValidType(mat,1); 7832 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 7833 if (cll == MAT_IGNORE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Cannot use MAT_IGNORE_MATRIX"); 7834 7835 MatCheckPreallocated(mat,1); 7836 ierr = MPI_Comm_size(PetscObjectComm((PetscObject)mat),&size);CHKERRQ(ierr); 7837 7838 if (!iscol || isrow == iscol) { 7839 PetscBool stride; 7840 PetscMPIInt grabentirematrix = 0,grab; 7841 ierr = PetscObjectTypeCompare((PetscObject)isrow,ISSTRIDE,&stride);CHKERRQ(ierr); 7842 if (stride) { 7843 PetscInt first,step,n,rstart,rend; 7844 ierr = ISStrideGetInfo(isrow,&first,&step);CHKERRQ(ierr); 7845 if (step == 1) { 7846 ierr = MatGetOwnershipRange(mat,&rstart,&rend);CHKERRQ(ierr); 7847 if (rstart == first) { 7848 ierr = ISGetLocalSize(isrow,&n);CHKERRQ(ierr); 7849 if (n == rend-rstart) { 7850 grabentirematrix = 1; 7851 } 7852 } 7853 } 7854 } 7855 ierr = MPIU_Allreduce(&grabentirematrix,&grab,1,MPI_INT,MPI_MIN,PetscObjectComm((PetscObject)mat));CHKERRQ(ierr); 7856 if (grab) { 7857 ierr = PetscInfo(mat,"Getting entire matrix as submatrix\n");CHKERRQ(ierr); 7858 if (cll == MAT_INITIAL_MATRIX) { 7859 *newmat = mat; 7860 ierr = PetscObjectReference((PetscObject)mat);CHKERRQ(ierr); 7861 } 7862 PetscFunctionReturn(0); 7863 } 7864 } 7865 7866 if (!iscol) { 7867 ierr = ISCreateStride(PetscObjectComm((PetscObject)mat),mat->cmap->n,mat->cmap->rstart,1,&iscoltmp);CHKERRQ(ierr); 7868 } else { 7869 iscoltmp = iscol; 7870 } 7871 7872 /* if original matrix is on just one processor then use submatrix generated */ 7873 if (mat->ops->createsubmatrices && !mat->ops->createsubmatrix && size == 1 && cll == MAT_REUSE_MATRIX) { 7874 ierr = MatCreateSubMatrices(mat,1,&isrow,&iscoltmp,MAT_REUSE_MATRIX,&newmat);CHKERRQ(ierr); 7875 if (!iscol) {ierr = ISDestroy(&iscoltmp);CHKERRQ(ierr);} 7876 PetscFunctionReturn(0); 7877 } else if (mat->ops->createsubmatrices && !mat->ops->createsubmatrix && size == 1) { 7878 ierr = MatCreateSubMatrices(mat,1,&isrow,&iscoltmp,MAT_INITIAL_MATRIX,&local);CHKERRQ(ierr); 7879 *newmat = *local; 7880 ierr = PetscFree(local);CHKERRQ(ierr); 7881 if (!iscol) {ierr = ISDestroy(&iscoltmp);CHKERRQ(ierr);} 7882 PetscFunctionReturn(0); 7883 } else if (!mat->ops->createsubmatrix) { 7884 /* Create a new matrix type that implements the operation using the full matrix */ 7885 ierr = PetscLogEventBegin(MAT_CreateSubMat,mat,0,0,0);CHKERRQ(ierr); 7886 switch (cll) { 7887 case MAT_INITIAL_MATRIX: 7888 ierr = MatCreateSubMatrixVirtual(mat,isrow,iscoltmp,newmat);CHKERRQ(ierr); 7889 break; 7890 case MAT_REUSE_MATRIX: 7891 ierr = MatSubMatrixVirtualUpdate(*newmat,mat,isrow,iscoltmp);CHKERRQ(ierr); 7892 break; 7893 default: SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"Invalid MatReuse, must be either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX"); 7894 } 7895 ierr = PetscLogEventEnd(MAT_CreateSubMat,mat,0,0,0);CHKERRQ(ierr); 7896 if (!iscol) {ierr = ISDestroy(&iscoltmp);CHKERRQ(ierr);} 7897 PetscFunctionReturn(0); 7898 } 7899 7900 if (!mat->ops->createsubmatrix) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 7901 ierr = PetscLogEventBegin(MAT_CreateSubMat,mat,0,0,0);CHKERRQ(ierr); 7902 ierr = (*mat->ops->createsubmatrix)(mat,isrow,iscoltmp,cll,newmat);CHKERRQ(ierr); 7903 ierr = PetscLogEventEnd(MAT_CreateSubMat,mat,0,0,0);CHKERRQ(ierr); 7904 if (!iscol) {ierr = ISDestroy(&iscoltmp);CHKERRQ(ierr);} 7905 if (*newmat && cll == MAT_INITIAL_MATRIX) {ierr = PetscObjectStateIncrease((PetscObject)*newmat);CHKERRQ(ierr);} 7906 PetscFunctionReturn(0); 7907 } 7908 7909 /*@ 7910 MatStashSetInitialSize - sets the sizes of the matrix stash, that is 7911 used during the assembly process to store values that belong to 7912 other processors. 7913 7914 Not Collective 7915 7916 Input Parameters: 7917 + mat - the matrix 7918 . size - the initial size of the stash. 7919 - bsize - the initial size of the block-stash(if used). 7920 7921 Options Database Keys: 7922 + -matstash_initial_size <size> or <size0,size1,...sizep-1> 7923 - -matstash_block_initial_size <bsize> or <bsize0,bsize1,...bsizep-1> 7924 7925 Level: intermediate 7926 7927 Notes: 7928 The block-stash is used for values set with MatSetValuesBlocked() while 7929 the stash is used for values set with MatSetValues() 7930 7931 Run with the option -info and look for output of the form 7932 MatAssemblyBegin_MPIXXX:Stash has MM entries, uses nn mallocs. 7933 to determine the appropriate value, MM, to use for size and 7934 MatAssemblyBegin_MPIXXX:Block-Stash has BMM entries, uses nn mallocs. 7935 to determine the value, BMM to use for bsize 7936 7937 Concepts: stash^setting matrix size 7938 Concepts: matrices^stash 7939 7940 .seealso: MatAssemblyBegin(), MatAssemblyEnd(), Mat, MatStashGetInfo() 7941 7942 @*/ 7943 PetscErrorCode MatStashSetInitialSize(Mat mat,PetscInt size, PetscInt bsize) 7944 { 7945 PetscErrorCode ierr; 7946 7947 PetscFunctionBegin; 7948 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 7949 PetscValidType(mat,1); 7950 ierr = MatStashSetInitialSize_Private(&mat->stash,size);CHKERRQ(ierr); 7951 ierr = MatStashSetInitialSize_Private(&mat->bstash,bsize);CHKERRQ(ierr); 7952 PetscFunctionReturn(0); 7953 } 7954 7955 /*@ 7956 MatInterpolateAdd - w = y + A*x or A'*x depending on the shape of 7957 the matrix 7958 7959 Neighbor-wise Collective on Mat 7960 7961 Input Parameters: 7962 + mat - the matrix 7963 . x,y - the vectors 7964 - w - where the result is stored 7965 7966 Level: intermediate 7967 7968 Notes: 7969 w may be the same vector as y. 7970 7971 This allows one to use either the restriction or interpolation (its transpose) 7972 matrix to do the interpolation 7973 7974 Concepts: interpolation 7975 7976 .seealso: MatMultAdd(), MatMultTransposeAdd(), MatRestrict() 7977 7978 @*/ 7979 PetscErrorCode MatInterpolateAdd(Mat A,Vec x,Vec y,Vec w) 7980 { 7981 PetscErrorCode ierr; 7982 PetscInt M,N,Ny; 7983 7984 PetscFunctionBegin; 7985 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 7986 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 7987 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 7988 PetscValidHeaderSpecific(w,VEC_CLASSID,4); 7989 PetscValidType(A,1); 7990 MatCheckPreallocated(A,1); 7991 ierr = MatGetSize(A,&M,&N);CHKERRQ(ierr); 7992 ierr = VecGetSize(y,&Ny);CHKERRQ(ierr); 7993 if (M == Ny) { 7994 ierr = MatMultAdd(A,x,y,w);CHKERRQ(ierr); 7995 } else { 7996 ierr = MatMultTransposeAdd(A,x,y,w);CHKERRQ(ierr); 7997 } 7998 PetscFunctionReturn(0); 7999 } 8000 8001 /*@ 8002 MatInterpolate - y = A*x or A'*x depending on the shape of 8003 the matrix 8004 8005 Neighbor-wise Collective on Mat 8006 8007 Input Parameters: 8008 + mat - the matrix 8009 - x,y - the vectors 8010 8011 Level: intermediate 8012 8013 Notes: 8014 This allows one to use either the restriction or interpolation (its transpose) 8015 matrix to do the interpolation 8016 8017 Concepts: matrices^interpolation 8018 8019 .seealso: MatMultAdd(), MatMultTransposeAdd(), MatRestrict() 8020 8021 @*/ 8022 PetscErrorCode MatInterpolate(Mat A,Vec x,Vec y) 8023 { 8024 PetscErrorCode ierr; 8025 PetscInt M,N,Ny; 8026 8027 PetscFunctionBegin; 8028 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8029 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 8030 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 8031 PetscValidType(A,1); 8032 MatCheckPreallocated(A,1); 8033 ierr = MatGetSize(A,&M,&N);CHKERRQ(ierr); 8034 ierr = VecGetSize(y,&Ny);CHKERRQ(ierr); 8035 if (M == Ny) { 8036 ierr = MatMult(A,x,y);CHKERRQ(ierr); 8037 } else { 8038 ierr = MatMultTranspose(A,x,y);CHKERRQ(ierr); 8039 } 8040 PetscFunctionReturn(0); 8041 } 8042 8043 /*@ 8044 MatRestrict - y = A*x or A'*x 8045 8046 Neighbor-wise Collective on Mat 8047 8048 Input Parameters: 8049 + mat - the matrix 8050 - x,y - the vectors 8051 8052 Level: intermediate 8053 8054 Notes: 8055 This allows one to use either the restriction or interpolation (its transpose) 8056 matrix to do the restriction 8057 8058 Concepts: matrices^restriction 8059 8060 .seealso: MatMultAdd(), MatMultTransposeAdd(), MatInterpolate() 8061 8062 @*/ 8063 PetscErrorCode MatRestrict(Mat A,Vec x,Vec y) 8064 { 8065 PetscErrorCode ierr; 8066 PetscInt M,N,Ny; 8067 8068 PetscFunctionBegin; 8069 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8070 PetscValidHeaderSpecific(x,VEC_CLASSID,2); 8071 PetscValidHeaderSpecific(y,VEC_CLASSID,3); 8072 PetscValidType(A,1); 8073 MatCheckPreallocated(A,1); 8074 8075 ierr = MatGetSize(A,&M,&N);CHKERRQ(ierr); 8076 ierr = VecGetSize(y,&Ny);CHKERRQ(ierr); 8077 if (M == Ny) { 8078 ierr = MatMult(A,x,y);CHKERRQ(ierr); 8079 } else { 8080 ierr = MatMultTranspose(A,x,y);CHKERRQ(ierr); 8081 } 8082 PetscFunctionReturn(0); 8083 } 8084 8085 /*@ 8086 MatGetNullSpace - retrieves the null space to a matrix. 8087 8088 Logically Collective on Mat and MatNullSpace 8089 8090 Input Parameters: 8091 + mat - the matrix 8092 - nullsp - the null space object 8093 8094 Level: developer 8095 8096 Concepts: null space^attaching to matrix 8097 8098 .seealso: MatCreate(), MatNullSpaceCreate(), MatSetNearNullSpace(), MatSetNullSpace() 8099 @*/ 8100 PetscErrorCode MatGetNullSpace(Mat mat, MatNullSpace *nullsp) 8101 { 8102 PetscFunctionBegin; 8103 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8104 PetscValidType(mat,1); 8105 PetscValidPointer(nullsp,2); 8106 *nullsp = mat->nullsp; 8107 PetscFunctionReturn(0); 8108 } 8109 8110 /*@ 8111 MatSetNullSpace - attaches a null space to a matrix. 8112 8113 Logically Collective on Mat and MatNullSpace 8114 8115 Input Parameters: 8116 + mat - the matrix 8117 - nullsp - the null space object 8118 8119 Level: advanced 8120 8121 Notes: 8122 This null space is used by the linear solvers. Overwrites any previous null space that may have been attached 8123 8124 For inconsistent singular systems (linear systems where the right hand side is not in the range of the operator) you also likely should 8125 call MatSetTransposeNullSpace(). This allows the linear system to be solved in a least squares sense. 8126 8127 You can remove the null space by calling this routine with an nullsp of NULL 8128 8129 8130 The fundamental theorem of linear algebra (Gilbert Strang, Introduction to Applied Mathematics, page 72) states that 8131 the domain of a matrix A (from R^n to R^m (m rows, n columns) R^n = the direct sum of the null space of A, n(A), + the range of A^T, R(A^T). 8132 Similarly R^m = direct sum n(A^T) + R(A). Hence the linear system A x = b has a solution only if b in R(A) (or correspondingly b is orthogonal to 8133 n(A^T)) and if x is a solution then x + alpha n(A) is a solution for any alpha. The minimum norm solution is orthogonal to n(A). For problems without a solution 8134 the solution that minimizes the norm of the residual (the least squares solution) can be obtained by solving A x = \hat{b} where \hat{b} is b orthogonalized to the n(A^T). 8135 8136 Krylov solvers can produce the minimal norm solution to the least squares problem by utilizing MatNullSpaceRemove(). 8137 8138 If the matrix is known to be symmetric because it is an SBAIJ matrix or one as called MatSetOption(mat,MAT_SYMMETRIC or MAT_SYMMETRIC_ETERNAL,PETSC_TRUE); this 8139 routine also automatically calls MatSetTransposeNullSpace(). 8140 8141 Concepts: null space^attaching to matrix 8142 8143 .seealso: MatCreate(), MatNullSpaceCreate(), MatSetNearNullSpace(), MatGetNullSpace(), MatSetTransposeNullSpace(), MatGetTransposeNullSpace(), MatNullSpaceRemove() 8144 @*/ 8145 PetscErrorCode MatSetNullSpace(Mat mat,MatNullSpace nullsp) 8146 { 8147 PetscErrorCode ierr; 8148 8149 PetscFunctionBegin; 8150 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8151 PetscValidType(mat,1); 8152 if (nullsp) PetscValidHeaderSpecific(nullsp,MAT_NULLSPACE_CLASSID,2); 8153 MatCheckPreallocated(mat,1); 8154 if (nullsp) {ierr = PetscObjectReference((PetscObject)nullsp);CHKERRQ(ierr);} 8155 ierr = MatNullSpaceDestroy(&mat->nullsp);CHKERRQ(ierr); 8156 mat->nullsp = nullsp; 8157 if (mat->symmetric_set && mat->symmetric) { 8158 ierr = MatSetTransposeNullSpace(mat,nullsp);CHKERRQ(ierr); 8159 } 8160 PetscFunctionReturn(0); 8161 } 8162 8163 /*@ 8164 MatGetTransposeNullSpace - retrieves the null space of the transpose of a matrix. 8165 8166 Logically Collective on Mat and MatNullSpace 8167 8168 Input Parameters: 8169 + mat - the matrix 8170 - nullsp - the null space object 8171 8172 Level: developer 8173 8174 Concepts: null space^attaching to matrix 8175 8176 .seealso: MatCreate(), MatNullSpaceCreate(), MatSetNearNullSpace(), MatSetTransposeNullSpace(), MatSetNullSpace(), MatGetNullSpace() 8177 @*/ 8178 PetscErrorCode MatGetTransposeNullSpace(Mat mat, MatNullSpace *nullsp) 8179 { 8180 PetscFunctionBegin; 8181 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8182 PetscValidType(mat,1); 8183 PetscValidPointer(nullsp,2); 8184 *nullsp = mat->transnullsp; 8185 PetscFunctionReturn(0); 8186 } 8187 8188 /*@ 8189 MatSetTransposeNullSpace - attaches a null space to a matrix. 8190 8191 Logically Collective on Mat and MatNullSpace 8192 8193 Input Parameters: 8194 + mat - the matrix 8195 - nullsp - the null space object 8196 8197 Level: advanced 8198 8199 Notes: 8200 For inconsistent singular systems (linear systems where the right hand side is not in the range of the operator) this allows the linear system to be solved in a least squares sense. 8201 You must also call MatSetNullSpace() 8202 8203 8204 The fundamental theorem of linear algebra (Gilbert Strang, Introduction to Applied Mathematics, page 72) states that 8205 the domain of a matrix A (from R^n to R^m (m rows, n columns) R^n = the direct sum of the null space of A, n(A), + the range of A^T, R(A^T). 8206 Similarly R^m = direct sum n(A^T) + R(A). Hence the linear system A x = b has a solution only if b in R(A) (or correspondingly b is orthogonal to 8207 n(A^T)) and if x is a solution then x + alpha n(A) is a solution for any alpha. The minimum norm solution is orthogonal to n(A). For problems without a solution 8208 the solution that minimizes the norm of the residual (the least squares solution) can be obtained by solving A x = \hat{b} where \hat{b} is b orthogonalized to the n(A^T). 8209 8210 Krylov solvers can produce the minimal norm solution to the least squares problem by utilizing MatNullSpaceRemove(). 8211 8212 Concepts: null space^attaching to matrix 8213 8214 .seealso: MatCreate(), MatNullSpaceCreate(), MatSetNearNullSpace(), MatGetNullSpace(), MatSetNullSpace(), MatGetTransposeNullSpace(), MatNullSpaceRemove() 8215 @*/ 8216 PetscErrorCode MatSetTransposeNullSpace(Mat mat,MatNullSpace nullsp) 8217 { 8218 PetscErrorCode ierr; 8219 8220 PetscFunctionBegin; 8221 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8222 PetscValidType(mat,1); 8223 PetscValidHeaderSpecific(nullsp,MAT_NULLSPACE_CLASSID,2); 8224 MatCheckPreallocated(mat,1); 8225 ierr = PetscObjectReference((PetscObject)nullsp);CHKERRQ(ierr); 8226 ierr = MatNullSpaceDestroy(&mat->transnullsp);CHKERRQ(ierr); 8227 mat->transnullsp = nullsp; 8228 PetscFunctionReturn(0); 8229 } 8230 8231 /*@ 8232 MatSetNearNullSpace - attaches a null space to a matrix, which is often the null space (rigid body modes) of the operator without boundary conditions 8233 This null space will be used to provide near null space vectors to a multigrid preconditioner built from this matrix. 8234 8235 Logically Collective on Mat and MatNullSpace 8236 8237 Input Parameters: 8238 + mat - the matrix 8239 - nullsp - the null space object 8240 8241 Level: advanced 8242 8243 Notes: 8244 Overwrites any previous near null space that may have been attached 8245 8246 You can remove the null space by calling this routine with an nullsp of NULL 8247 8248 Concepts: null space^attaching to matrix 8249 8250 .seealso: MatCreate(), MatNullSpaceCreate(), MatSetNullSpace(), MatNullSpaceCreateRigidBody(), MatGetNearNullSpace() 8251 @*/ 8252 PetscErrorCode MatSetNearNullSpace(Mat mat,MatNullSpace nullsp) 8253 { 8254 PetscErrorCode ierr; 8255 8256 PetscFunctionBegin; 8257 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8258 PetscValidType(mat,1); 8259 if (nullsp) PetscValidHeaderSpecific(nullsp,MAT_NULLSPACE_CLASSID,2); 8260 MatCheckPreallocated(mat,1); 8261 if (nullsp) {ierr = PetscObjectReference((PetscObject)nullsp);CHKERRQ(ierr);} 8262 ierr = MatNullSpaceDestroy(&mat->nearnullsp);CHKERRQ(ierr); 8263 mat->nearnullsp = nullsp; 8264 PetscFunctionReturn(0); 8265 } 8266 8267 /*@ 8268 MatGetNearNullSpace -Get null space attached with MatSetNearNullSpace() 8269 8270 Not Collective 8271 8272 Input Parameters: 8273 . mat - the matrix 8274 8275 Output Parameters: 8276 . nullsp - the null space object, NULL if not set 8277 8278 Level: developer 8279 8280 Concepts: null space^attaching to matrix 8281 8282 .seealso: MatSetNearNullSpace(), MatGetNullSpace(), MatNullSpaceCreate() 8283 @*/ 8284 PetscErrorCode MatGetNearNullSpace(Mat mat,MatNullSpace *nullsp) 8285 { 8286 PetscFunctionBegin; 8287 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8288 PetscValidType(mat,1); 8289 PetscValidPointer(nullsp,2); 8290 MatCheckPreallocated(mat,1); 8291 *nullsp = mat->nearnullsp; 8292 PetscFunctionReturn(0); 8293 } 8294 8295 /*@C 8296 MatICCFactor - Performs in-place incomplete Cholesky factorization of matrix. 8297 8298 Collective on Mat 8299 8300 Input Parameters: 8301 + mat - the matrix 8302 . row - row/column permutation 8303 . fill - expected fill factor >= 1.0 8304 - level - level of fill, for ICC(k) 8305 8306 Notes: 8307 Probably really in-place only when level of fill is zero, otherwise allocates 8308 new space to store factored matrix and deletes previous memory. 8309 8310 Most users should employ the simplified KSP interface for linear solvers 8311 instead of working directly with matrix algebra routines such as this. 8312 See, e.g., KSPCreate(). 8313 8314 Level: developer 8315 8316 Concepts: matrices^incomplete Cholesky factorization 8317 Concepts: Cholesky factorization 8318 8319 .seealso: MatICCFactorSymbolic(), MatLUFactorNumeric(), MatCholeskyFactor() 8320 8321 Developer Note: fortran interface is not autogenerated as the f90 8322 interface defintion cannot be generated correctly [due to MatFactorInfo] 8323 8324 @*/ 8325 PetscErrorCode MatICCFactor(Mat mat,IS row,const MatFactorInfo *info) 8326 { 8327 PetscErrorCode ierr; 8328 8329 PetscFunctionBegin; 8330 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8331 PetscValidType(mat,1); 8332 if (row) PetscValidHeaderSpecific(row,IS_CLASSID,2); 8333 PetscValidPointer(info,3); 8334 if (mat->rmap->N != mat->cmap->N) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONG,"matrix must be square"); 8335 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 8336 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 8337 if (!mat->ops->iccfactor) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 8338 MatCheckPreallocated(mat,1); 8339 ierr = (*mat->ops->iccfactor)(mat,row,info);CHKERRQ(ierr); 8340 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 8341 PetscFunctionReturn(0); 8342 } 8343 8344 /*@ 8345 MatDiagonalScaleLocal - Scales columns of a matrix given the scaling values including the 8346 ghosted ones. 8347 8348 Not Collective 8349 8350 Input Parameters: 8351 + mat - the matrix 8352 - diag = the diagonal values, including ghost ones 8353 8354 Level: developer 8355 8356 Notes: Works only for MPIAIJ and MPIBAIJ matrices 8357 8358 .seealso: MatDiagonalScale() 8359 @*/ 8360 PetscErrorCode MatDiagonalScaleLocal(Mat mat,Vec diag) 8361 { 8362 PetscErrorCode ierr; 8363 PetscMPIInt size; 8364 8365 PetscFunctionBegin; 8366 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8367 PetscValidHeaderSpecific(diag,VEC_CLASSID,2); 8368 PetscValidType(mat,1); 8369 8370 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Matrix must be already assembled"); 8371 ierr = PetscLogEventBegin(MAT_Scale,mat,0,0,0);CHKERRQ(ierr); 8372 ierr = MPI_Comm_size(PetscObjectComm((PetscObject)mat),&size);CHKERRQ(ierr); 8373 if (size == 1) { 8374 PetscInt n,m; 8375 ierr = VecGetSize(diag,&n);CHKERRQ(ierr); 8376 ierr = MatGetSize(mat,0,&m);CHKERRQ(ierr); 8377 if (m == n) { 8378 ierr = MatDiagonalScale(mat,0,diag);CHKERRQ(ierr); 8379 } else SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Only supported for sequential matrices when no ghost points/periodic conditions"); 8380 } else { 8381 ierr = PetscUseMethod(mat,"MatDiagonalScaleLocal_C",(Mat,Vec),(mat,diag));CHKERRQ(ierr); 8382 } 8383 ierr = PetscLogEventEnd(MAT_Scale,mat,0,0,0);CHKERRQ(ierr); 8384 ierr = PetscObjectStateIncrease((PetscObject)mat);CHKERRQ(ierr); 8385 PetscFunctionReturn(0); 8386 } 8387 8388 /*@ 8389 MatGetInertia - Gets the inertia from a factored matrix 8390 8391 Collective on Mat 8392 8393 Input Parameter: 8394 . mat - the matrix 8395 8396 Output Parameters: 8397 + nneg - number of negative eigenvalues 8398 . nzero - number of zero eigenvalues 8399 - npos - number of positive eigenvalues 8400 8401 Level: advanced 8402 8403 Notes: Matrix must have been factored by MatCholeskyFactor() 8404 8405 8406 @*/ 8407 PetscErrorCode MatGetInertia(Mat mat,PetscInt *nneg,PetscInt *nzero,PetscInt *npos) 8408 { 8409 PetscErrorCode ierr; 8410 8411 PetscFunctionBegin; 8412 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8413 PetscValidType(mat,1); 8414 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 8415 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Numeric factor mat is not assembled"); 8416 if (!mat->ops->getinertia) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 8417 ierr = (*mat->ops->getinertia)(mat,nneg,nzero,npos);CHKERRQ(ierr); 8418 PetscFunctionReturn(0); 8419 } 8420 8421 /* ----------------------------------------------------------------*/ 8422 /*@C 8423 MatSolves - Solves A x = b, given a factored matrix, for a collection of vectors 8424 8425 Neighbor-wise Collective on Mat and Vecs 8426 8427 Input Parameters: 8428 + mat - the factored matrix 8429 - b - the right-hand-side vectors 8430 8431 Output Parameter: 8432 . x - the result vectors 8433 8434 Notes: 8435 The vectors b and x cannot be the same. I.e., one cannot 8436 call MatSolves(A,x,x). 8437 8438 Notes: 8439 Most users should employ the simplified KSP interface for linear solvers 8440 instead of working directly with matrix algebra routines such as this. 8441 See, e.g., KSPCreate(). 8442 8443 Level: developer 8444 8445 Concepts: matrices^triangular solves 8446 8447 .seealso: MatSolveAdd(), MatSolveTranspose(), MatSolveTransposeAdd(), MatSolve() 8448 @*/ 8449 PetscErrorCode MatSolves(Mat mat,Vecs b,Vecs x) 8450 { 8451 PetscErrorCode ierr; 8452 8453 PetscFunctionBegin; 8454 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8455 PetscValidType(mat,1); 8456 if (x == b) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_IDN,"x and b must be different vectors"); 8457 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Unfactored matrix"); 8458 if (!mat->rmap->N && !mat->cmap->N) PetscFunctionReturn(0); 8459 8460 if (!mat->ops->solves) SETERRQ1(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)mat)->type_name); 8461 MatCheckPreallocated(mat,1); 8462 ierr = PetscLogEventBegin(MAT_Solves,mat,0,0,0);CHKERRQ(ierr); 8463 ierr = (*mat->ops->solves)(mat,b,x);CHKERRQ(ierr); 8464 ierr = PetscLogEventEnd(MAT_Solves,mat,0,0,0);CHKERRQ(ierr); 8465 PetscFunctionReturn(0); 8466 } 8467 8468 /*@ 8469 MatIsSymmetric - Test whether a matrix is symmetric 8470 8471 Collective on Mat 8472 8473 Input Parameter: 8474 + A - the matrix to test 8475 - tol - difference between value and its transpose less than this amount counts as equal (use 0.0 for exact transpose) 8476 8477 Output Parameters: 8478 . flg - the result 8479 8480 Notes: For real numbers MatIsSymmetric() and MatIsHermitian() return identical results 8481 8482 Level: intermediate 8483 8484 Concepts: matrix^symmetry 8485 8486 .seealso: MatTranspose(), MatIsTranspose(), MatIsHermitian(), MatIsStructurallySymmetric(), MatSetOption(), MatIsSymmetricKnown() 8487 @*/ 8488 PetscErrorCode MatIsSymmetric(Mat A,PetscReal tol,PetscBool *flg) 8489 { 8490 PetscErrorCode ierr; 8491 8492 PetscFunctionBegin; 8493 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8494 PetscValidPointer(flg,2); 8495 8496 if (!A->symmetric_set) { 8497 if (!A->ops->issymmetric) { 8498 MatType mattype; 8499 ierr = MatGetType(A,&mattype);CHKERRQ(ierr); 8500 SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix of type <%s> does not support checking for symmetric",mattype); 8501 } 8502 ierr = (*A->ops->issymmetric)(A,tol,flg);CHKERRQ(ierr); 8503 if (!tol) { 8504 A->symmetric_set = PETSC_TRUE; 8505 A->symmetric = *flg; 8506 if (A->symmetric) { 8507 A->structurally_symmetric_set = PETSC_TRUE; 8508 A->structurally_symmetric = PETSC_TRUE; 8509 } 8510 } 8511 } else if (A->symmetric) { 8512 *flg = PETSC_TRUE; 8513 } else if (!tol) { 8514 *flg = PETSC_FALSE; 8515 } else { 8516 if (!A->ops->issymmetric) { 8517 MatType mattype; 8518 ierr = MatGetType(A,&mattype);CHKERRQ(ierr); 8519 SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix of type <%s> does not support checking for symmetric",mattype); 8520 } 8521 ierr = (*A->ops->issymmetric)(A,tol,flg);CHKERRQ(ierr); 8522 } 8523 PetscFunctionReturn(0); 8524 } 8525 8526 /*@ 8527 MatIsHermitian - Test whether a matrix is Hermitian 8528 8529 Collective on Mat 8530 8531 Input Parameter: 8532 + A - the matrix to test 8533 - tol - difference between value and its transpose less than this amount counts as equal (use 0.0 for exact Hermitian) 8534 8535 Output Parameters: 8536 . flg - the result 8537 8538 Level: intermediate 8539 8540 Concepts: matrix^symmetry 8541 8542 .seealso: MatTranspose(), MatIsTranspose(), MatIsHermitian(), MatIsStructurallySymmetric(), MatSetOption(), 8543 MatIsSymmetricKnown(), MatIsSymmetric() 8544 @*/ 8545 PetscErrorCode MatIsHermitian(Mat A,PetscReal tol,PetscBool *flg) 8546 { 8547 PetscErrorCode ierr; 8548 8549 PetscFunctionBegin; 8550 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8551 PetscValidPointer(flg,2); 8552 8553 if (!A->hermitian_set) { 8554 if (!A->ops->ishermitian) { 8555 MatType mattype; 8556 ierr = MatGetType(A,&mattype);CHKERRQ(ierr); 8557 SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix of type <%s> does not support checking for hermitian",mattype); 8558 } 8559 ierr = (*A->ops->ishermitian)(A,tol,flg);CHKERRQ(ierr); 8560 if (!tol) { 8561 A->hermitian_set = PETSC_TRUE; 8562 A->hermitian = *flg; 8563 if (A->hermitian) { 8564 A->structurally_symmetric_set = PETSC_TRUE; 8565 A->structurally_symmetric = PETSC_TRUE; 8566 } 8567 } 8568 } else if (A->hermitian) { 8569 *flg = PETSC_TRUE; 8570 } else if (!tol) { 8571 *flg = PETSC_FALSE; 8572 } else { 8573 if (!A->ops->ishermitian) { 8574 MatType mattype; 8575 ierr = MatGetType(A,&mattype);CHKERRQ(ierr); 8576 SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Matrix of type <%s> does not support checking for hermitian",mattype); 8577 } 8578 ierr = (*A->ops->ishermitian)(A,tol,flg);CHKERRQ(ierr); 8579 } 8580 PetscFunctionReturn(0); 8581 } 8582 8583 /*@ 8584 MatIsSymmetricKnown - Checks the flag on the matrix to see if it is symmetric. 8585 8586 Not Collective 8587 8588 Input Parameter: 8589 . A - the matrix to check 8590 8591 Output Parameters: 8592 + set - if the symmetric flag is set (this tells you if the next flag is valid) 8593 - flg - the result 8594 8595 Level: advanced 8596 8597 Concepts: matrix^symmetry 8598 8599 Note: Does not check the matrix values directly, so this may return unknown (set = PETSC_FALSE). Use MatIsSymmetric() 8600 if you want it explicitly checked 8601 8602 .seealso: MatTranspose(), MatIsTranspose(), MatIsHermitian(), MatIsStructurallySymmetric(), MatSetOption(), MatIsSymmetric() 8603 @*/ 8604 PetscErrorCode MatIsSymmetricKnown(Mat A,PetscBool *set,PetscBool *flg) 8605 { 8606 PetscFunctionBegin; 8607 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8608 PetscValidPointer(set,2); 8609 PetscValidPointer(flg,3); 8610 if (A->symmetric_set) { 8611 *set = PETSC_TRUE; 8612 *flg = A->symmetric; 8613 } else { 8614 *set = PETSC_FALSE; 8615 } 8616 PetscFunctionReturn(0); 8617 } 8618 8619 /*@ 8620 MatIsHermitianKnown - Checks the flag on the matrix to see if it is hermitian. 8621 8622 Not Collective 8623 8624 Input Parameter: 8625 . A - the matrix to check 8626 8627 Output Parameters: 8628 + set - if the hermitian flag is set (this tells you if the next flag is valid) 8629 - flg - the result 8630 8631 Level: advanced 8632 8633 Concepts: matrix^symmetry 8634 8635 Note: Does not check the matrix values directly, so this may return unknown (set = PETSC_FALSE). Use MatIsHermitian() 8636 if you want it explicitly checked 8637 8638 .seealso: MatTranspose(), MatIsTranspose(), MatIsHermitian(), MatIsStructurallySymmetric(), MatSetOption(), MatIsSymmetric() 8639 @*/ 8640 PetscErrorCode MatIsHermitianKnown(Mat A,PetscBool *set,PetscBool *flg) 8641 { 8642 PetscFunctionBegin; 8643 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8644 PetscValidPointer(set,2); 8645 PetscValidPointer(flg,3); 8646 if (A->hermitian_set) { 8647 *set = PETSC_TRUE; 8648 *flg = A->hermitian; 8649 } else { 8650 *set = PETSC_FALSE; 8651 } 8652 PetscFunctionReturn(0); 8653 } 8654 8655 /*@ 8656 MatIsStructurallySymmetric - Test whether a matrix is structurally symmetric 8657 8658 Collective on Mat 8659 8660 Input Parameter: 8661 . A - the matrix to test 8662 8663 Output Parameters: 8664 . flg - the result 8665 8666 Level: intermediate 8667 8668 Concepts: matrix^symmetry 8669 8670 .seealso: MatTranspose(), MatIsTranspose(), MatIsHermitian(), MatIsSymmetric(), MatSetOption() 8671 @*/ 8672 PetscErrorCode MatIsStructurallySymmetric(Mat A,PetscBool *flg) 8673 { 8674 PetscErrorCode ierr; 8675 8676 PetscFunctionBegin; 8677 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 8678 PetscValidPointer(flg,2); 8679 if (!A->structurally_symmetric_set) { 8680 if (!A->ops->isstructurallysymmetric) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Matrix does not support checking for structural symmetric"); 8681 ierr = (*A->ops->isstructurallysymmetric)(A,&A->structurally_symmetric);CHKERRQ(ierr); 8682 8683 A->structurally_symmetric_set = PETSC_TRUE; 8684 } 8685 *flg = A->structurally_symmetric; 8686 PetscFunctionReturn(0); 8687 } 8688 8689 /*@ 8690 MatStashGetInfo - Gets how many values are currently in the matrix stash, i.e. need 8691 to be communicated to other processors during the MatAssemblyBegin/End() process 8692 8693 Not collective 8694 8695 Input Parameter: 8696 . vec - the vector 8697 8698 Output Parameters: 8699 + nstash - the size of the stash 8700 . reallocs - the number of additional mallocs incurred. 8701 . bnstash - the size of the block stash 8702 - breallocs - the number of additional mallocs incurred.in the block stash 8703 8704 Level: advanced 8705 8706 .seealso: MatAssemblyBegin(), MatAssemblyEnd(), Mat, MatStashSetInitialSize() 8707 8708 @*/ 8709 PetscErrorCode MatStashGetInfo(Mat mat,PetscInt *nstash,PetscInt *reallocs,PetscInt *bnstash,PetscInt *breallocs) 8710 { 8711 PetscErrorCode ierr; 8712 8713 PetscFunctionBegin; 8714 ierr = MatStashGetInfo_Private(&mat->stash,nstash,reallocs);CHKERRQ(ierr); 8715 ierr = MatStashGetInfo_Private(&mat->bstash,bnstash,breallocs);CHKERRQ(ierr); 8716 PetscFunctionReturn(0); 8717 } 8718 8719 /*@C 8720 MatCreateVecs - Get vector(s) compatible with the matrix, i.e. with the same 8721 parallel layout 8722 8723 Collective on Mat 8724 8725 Input Parameter: 8726 . mat - the matrix 8727 8728 Output Parameter: 8729 + right - (optional) vector that the matrix can be multiplied against 8730 - left - (optional) vector that the matrix vector product can be stored in 8731 8732 Notes: 8733 The blocksize of the returned vectors is determined by the row and column block sizes set with MatSetBlockSizes() or the single blocksize (same for both) set by MatSetBlockSize(). 8734 8735 Notes: These are new vectors which are not owned by the Mat, they should be destroyed in VecDestroy() when no longer needed 8736 8737 Level: advanced 8738 8739 .seealso: MatCreate(), VecDestroy() 8740 @*/ 8741 PetscErrorCode MatCreateVecs(Mat mat,Vec *right,Vec *left) 8742 { 8743 PetscErrorCode ierr; 8744 8745 PetscFunctionBegin; 8746 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8747 PetscValidType(mat,1); 8748 if (mat->ops->getvecs) { 8749 ierr = (*mat->ops->getvecs)(mat,right,left);CHKERRQ(ierr); 8750 } else { 8751 PetscInt rbs,cbs; 8752 ierr = MatGetBlockSizes(mat,&rbs,&cbs);CHKERRQ(ierr); 8753 if (right) { 8754 if (mat->cmap->n < 0) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"PetscLayout for columns not yet setup"); 8755 ierr = VecCreate(PetscObjectComm((PetscObject)mat),right);CHKERRQ(ierr); 8756 ierr = VecSetSizes(*right,mat->cmap->n,PETSC_DETERMINE);CHKERRQ(ierr); 8757 ierr = VecSetBlockSize(*right,cbs);CHKERRQ(ierr); 8758 ierr = VecSetType(*right,VECSTANDARD);CHKERRQ(ierr); 8759 ierr = PetscLayoutReference(mat->cmap,&(*right)->map);CHKERRQ(ierr); 8760 } 8761 if (left) { 8762 if (mat->rmap->n < 0) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"PetscLayout for rows not yet setup"); 8763 ierr = VecCreate(PetscObjectComm((PetscObject)mat),left);CHKERRQ(ierr); 8764 ierr = VecSetSizes(*left,mat->rmap->n,PETSC_DETERMINE);CHKERRQ(ierr); 8765 ierr = VecSetBlockSize(*left,rbs);CHKERRQ(ierr); 8766 ierr = VecSetType(*left,VECSTANDARD);CHKERRQ(ierr); 8767 ierr = PetscLayoutReference(mat->rmap,&(*left)->map);CHKERRQ(ierr); 8768 } 8769 } 8770 PetscFunctionReturn(0); 8771 } 8772 8773 /*@C 8774 MatFactorInfoInitialize - Initializes a MatFactorInfo data structure 8775 with default values. 8776 8777 Not Collective 8778 8779 Input Parameters: 8780 . info - the MatFactorInfo data structure 8781 8782 8783 Notes: The solvers are generally used through the KSP and PC objects, for example 8784 PCLU, PCILU, PCCHOLESKY, PCICC 8785 8786 Level: developer 8787 8788 .seealso: MatFactorInfo 8789 8790 Developer Note: fortran interface is not autogenerated as the f90 8791 interface defintion cannot be generated correctly [due to MatFactorInfo] 8792 8793 @*/ 8794 8795 PetscErrorCode MatFactorInfoInitialize(MatFactorInfo *info) 8796 { 8797 PetscErrorCode ierr; 8798 8799 PetscFunctionBegin; 8800 ierr = PetscMemzero(info,sizeof(MatFactorInfo));CHKERRQ(ierr); 8801 PetscFunctionReturn(0); 8802 } 8803 8804 /*@ 8805 MatFactorSetSchurIS - Set indices corresponding to the Schur complement you wish to have computed 8806 8807 Collective on Mat 8808 8809 Input Parameters: 8810 + mat - the factored matrix 8811 - is - the index set defining the Schur indices (0-based) 8812 8813 Notes: Call MatFactorSolveSchurComplement() or MatFactorSolveSchurComplementTranspose() after this call to solve a Schur complement system. 8814 8815 You can call MatFactorGetSchurComplement() or MatFactorCreateSchurComplement() after this call. 8816 8817 Level: developer 8818 8819 Concepts: 8820 8821 .seealso: MatGetFactor(), MatFactorGetSchurComplement(), MatFactorRestoreSchurComplement(), MatFactorCreateSchurComplement(), MatFactorSolveSchurComplement(), 8822 MatFactorSolveSchurComplementTranspose(), MatFactorSolveSchurComplement() 8823 8824 @*/ 8825 PetscErrorCode MatFactorSetSchurIS(Mat mat,IS is) 8826 { 8827 PetscErrorCode ierr,(*f)(Mat,IS); 8828 8829 PetscFunctionBegin; 8830 PetscValidType(mat,1); 8831 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 8832 PetscValidType(is,2); 8833 PetscValidHeaderSpecific(is,IS_CLASSID,2); 8834 PetscCheckSameComm(mat,1,is,2); 8835 if (!mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Only for factored matrix"); 8836 ierr = PetscObjectQueryFunction((PetscObject)mat,"MatFactorSetSchurIS_C",&f);CHKERRQ(ierr); 8837 if (!f) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"The selected MatSolverPackage does not support Schur complement computation. You should use MATSOLVERMUMPS or MATSOLVERMKL_PARDISO"); 8838 if (mat->schur) { 8839 ierr = MatDestroy(&mat->schur);CHKERRQ(ierr); 8840 } 8841 ierr = (*f)(mat,is);CHKERRQ(ierr); 8842 if (!mat->schur) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_PLIB,"Schur complement has not been created"); 8843 ierr = MatFactorSetUpInPlaceSchur_Private(mat);CHKERRQ(ierr); 8844 PetscFunctionReturn(0); 8845 } 8846 8847 /*@ 8848 MatFactorCreateSchurComplement - Create a Schur complement matrix object using Schur data computed during the factorization step 8849 8850 Logically Collective on Mat 8851 8852 Input Parameters: 8853 + F - the factored matrix obtained by calling MatGetFactor() from PETSc-MUMPS interface 8854 . S - location where to return the Schur complement, can be NULL 8855 - status - the status of the Schur complement matrix, can be NULL 8856 8857 Notes: 8858 You must call MatFactorSetSchurIS() before calling this routine. 8859 8860 The routine provides a copy of the Schur matrix stored within the solver data structures. 8861 The caller must destroy the object when it is no longer needed. 8862 If MatFactorInvertSchurComplement() has been called, the routine gets back the inverse. 8863 8864 Use MatFactorGetSchurComplement() to get access to the Schur complement matrix inside the factored matrix instead of making a copy of it (which this function does) 8865 8866 Developer Notes: The reason this routine exists is because the representation of the Schur complement within the factor matrix may be different than a standard PETSc 8867 matrix representation and we normally do not want to use the time or memory to make a copy as a regular PETSc matrix. 8868 8869 See MatCreateSchurComplement() or MatGetSchurComplement() for ways to create virtual or approximate Schur complements. 8870 8871 Level: advanced 8872 8873 References: 8874 8875 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorGetSchurComplement(), MatFactorSchurStatus 8876 @*/ 8877 PetscErrorCode MatFactorCreateSchurComplement(Mat F,Mat* S,MatFactorSchurStatus* status) 8878 { 8879 PetscErrorCode ierr; 8880 8881 PetscFunctionBegin; 8882 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 8883 if (S) PetscValidPointer(S,2); 8884 if (status) PetscValidPointer(status,3); 8885 if (S) { 8886 PetscErrorCode (*f)(Mat,Mat*); 8887 8888 ierr = PetscObjectQueryFunction((PetscObject)F,"MatFactorCreateSchurComplement_C",&f);CHKERRQ(ierr); 8889 if (f) { 8890 ierr = (*f)(F,S);CHKERRQ(ierr); 8891 } else { 8892 ierr = MatDuplicate(F->schur,MAT_COPY_VALUES,S);CHKERRQ(ierr); 8893 } 8894 } 8895 if (status) *status = F->schur_status; 8896 PetscFunctionReturn(0); 8897 } 8898 8899 /*@ 8900 MatFactorGetSchurComplement - Gets access to a Schur complement matrix using the current Schur data within a factored matrix 8901 8902 Logically Collective on Mat 8903 8904 Input Parameters: 8905 + F - the factored matrix obtained by calling MatGetFactor() 8906 . *S - location where to return the Schur complement, can be NULL 8907 - status - the status of the Schur complement matrix, can be NULL 8908 8909 Notes: 8910 You must call MatFactorSetSchurIS() before calling this routine. 8911 8912 Schur complement mode is currently implemented for sequential matrices. 8913 The routine returns a the Schur Complement stored within the data strutures of the solver. 8914 If MatFactorInvertSchurComplement() has previously been called, the returned matrix is actually the inverse of the Schur complement. 8915 The returned matrix should not be destroyed; the caller should call MatFactorRestoreSchurComplement() when the object is no longer needed. 8916 8917 Use MatFactorCreateSchurComplement() to create a copy of the Schur complement matrix that is within a factored matrix 8918 8919 See MatCreateSchurComplement() or MatGetSchurComplement() for ways to create virtual or approximate Schur complements. 8920 8921 Level: advanced 8922 8923 References: 8924 8925 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorRestoreSchurComplement(), MatFactorCreateSchurComplement(), MatFactorSchurStatus 8926 @*/ 8927 PetscErrorCode MatFactorGetSchurComplement(Mat F,Mat* S,MatFactorSchurStatus* status) 8928 { 8929 PetscFunctionBegin; 8930 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 8931 if (S) PetscValidPointer(S,2); 8932 if (status) PetscValidPointer(status,3); 8933 if (S) *S = F->schur; 8934 if (status) *status = F->schur_status; 8935 PetscFunctionReturn(0); 8936 } 8937 8938 /*@ 8939 MatFactorRestoreSchurComplement - Restore the Schur complement matrix object obtained from a call to MatFactorGetSchurComplement 8940 8941 Logically Collective on Mat 8942 8943 Input Parameters: 8944 + F - the factored matrix obtained by calling MatGetFactor() 8945 . *S - location where the Schur complement is stored 8946 - status - the status of the Schur complement matrix (see MatFactorSchurStatus) 8947 8948 Notes: 8949 8950 Level: advanced 8951 8952 References: 8953 8954 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorRestoreSchurComplement(), MatFactorCreateSchurComplement(), MatFactorSchurStatus 8955 @*/ 8956 PetscErrorCode MatFactorRestoreSchurComplement(Mat F,Mat* S,MatFactorSchurStatus status) 8957 { 8958 PetscErrorCode ierr; 8959 8960 PetscFunctionBegin; 8961 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 8962 if (S) { 8963 PetscValidHeaderSpecific(*S,MAT_CLASSID,2); 8964 *S = NULL; 8965 } 8966 F->schur_status = status; 8967 ierr = MatFactorUpdateSchurStatus_Private(F);CHKERRQ(ierr); 8968 PetscFunctionReturn(0); 8969 } 8970 8971 /*@ 8972 MatFactorSolveSchurComplementTranspose - Solve the transpose of the Schur complement system computed during the factorization step 8973 8974 Logically Collective on Mat 8975 8976 Input Parameters: 8977 + F - the factored matrix obtained by calling MatGetFactor() 8978 . rhs - location where the right hand side of the Schur complement system is stored 8979 - sol - location where the solution of the Schur complement system has to be returned 8980 8981 Notes: 8982 The sizes of the vectors should match the size of the Schur complement 8983 8984 Must be called after MatFactorSetSchurIS() 8985 8986 Level: advanced 8987 8988 References: 8989 8990 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorSolveSchurComplement() 8991 @*/ 8992 PetscErrorCode MatFactorSolveSchurComplementTranspose(Mat F, Vec rhs, Vec sol) 8993 { 8994 PetscErrorCode ierr; 8995 8996 PetscFunctionBegin; 8997 PetscValidType(F,1); 8998 PetscValidType(rhs,2); 8999 PetscValidType(sol,3); 9000 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 9001 PetscValidHeaderSpecific(rhs,VEC_CLASSID,2); 9002 PetscValidHeaderSpecific(sol,VEC_CLASSID,3); 9003 PetscCheckSameComm(F,1,rhs,2); 9004 PetscCheckSameComm(F,1,sol,3); 9005 ierr = MatFactorFactorizeSchurComplement(F);CHKERRQ(ierr); 9006 switch (F->schur_status) { 9007 case MAT_FACTOR_SCHUR_FACTORED: 9008 ierr = MatSolveTranspose(F->schur,rhs,sol);CHKERRQ(ierr); 9009 break; 9010 case MAT_FACTOR_SCHUR_INVERTED: 9011 ierr = MatMultTranspose(F->schur,rhs,sol);CHKERRQ(ierr); 9012 break; 9013 default: 9014 SETERRQ1(PetscObjectComm((PetscObject)F),PETSC_ERR_SUP,"Unhandled MatFactorSchurStatus %D",F->schur_status); 9015 break; 9016 } 9017 PetscFunctionReturn(0); 9018 } 9019 9020 /*@ 9021 MatFactorSolveSchurComplement - Solve the Schur complement system computed during the factorization step 9022 9023 Logically Collective on Mat 9024 9025 Input Parameters: 9026 + F - the factored matrix obtained by calling MatGetFactor() 9027 . rhs - location where the right hand side of the Schur complement system is stored 9028 - sol - location where the solution of the Schur complement system has to be returned 9029 9030 Notes: 9031 The sizes of the vectors should match the size of the Schur complement 9032 9033 Must be called after MatFactorSetSchurIS() 9034 9035 Level: advanced 9036 9037 References: 9038 9039 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorSolveSchurComplementTranspose() 9040 @*/ 9041 PetscErrorCode MatFactorSolveSchurComplement(Mat F, Vec rhs, Vec sol) 9042 { 9043 PetscErrorCode ierr; 9044 9045 PetscFunctionBegin; 9046 PetscValidType(F,1); 9047 PetscValidType(rhs,2); 9048 PetscValidType(sol,3); 9049 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 9050 PetscValidHeaderSpecific(rhs,VEC_CLASSID,2); 9051 PetscValidHeaderSpecific(sol,VEC_CLASSID,3); 9052 PetscCheckSameComm(F,1,rhs,2); 9053 PetscCheckSameComm(F,1,sol,3); 9054 ierr = MatFactorFactorizeSchurComplement(F);CHKERRQ(ierr); 9055 switch (F->schur_status) { 9056 case MAT_FACTOR_SCHUR_FACTORED: 9057 ierr = MatSolve(F->schur,rhs,sol);CHKERRQ(ierr); 9058 break; 9059 case MAT_FACTOR_SCHUR_INVERTED: 9060 ierr = MatMult(F->schur,rhs,sol);CHKERRQ(ierr); 9061 break; 9062 default: 9063 SETERRQ1(PetscObjectComm((PetscObject)F),PETSC_ERR_SUP,"Unhandled MatFactorSchurStatus %D",F->schur_status); 9064 break; 9065 } 9066 PetscFunctionReturn(0); 9067 } 9068 9069 /*@ 9070 MatFactorInvertSchurComplement - Invert the Schur complement matrix computed during the factorization step 9071 9072 Logically Collective on Mat 9073 9074 Input Parameters: 9075 + F - the factored matrix obtained by calling MatGetFactor() 9076 9077 Notes: Must be called after MatFactorSetSchurIS(). 9078 9079 Call MatFactorGetSchurComplement() or MatFactorCreateSchurComplement() AFTER this call to actually compute the inverse and get access to it. 9080 9081 Level: advanced 9082 9083 References: 9084 9085 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorGetSchurComplement(), MatFactorCreateSchurComplement() 9086 @*/ 9087 PetscErrorCode MatFactorInvertSchurComplement(Mat F) 9088 { 9089 PetscErrorCode ierr; 9090 9091 PetscFunctionBegin; 9092 PetscValidType(F,1); 9093 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 9094 if (F->schur_status == MAT_FACTOR_SCHUR_INVERTED) PetscFunctionReturn(0); 9095 ierr = MatFactorFactorizeSchurComplement(F);CHKERRQ(ierr); 9096 ierr = MatFactorInvertSchurComplement_Private(F);CHKERRQ(ierr); 9097 F->schur_status = MAT_FACTOR_SCHUR_INVERTED; 9098 PetscFunctionReturn(0); 9099 } 9100 9101 /*@ 9102 MatFactorFactorizeSchurComplement - Factorize the Schur complement matrix computed during the factorization step 9103 9104 Logically Collective on Mat 9105 9106 Input Parameters: 9107 + F - the factored matrix obtained by calling MatGetFactor() 9108 9109 Notes: Must be called after MatFactorSetSchurIS(). 9110 9111 Level: advanced 9112 9113 References: 9114 9115 .seealso: MatGetFactor(), MatFactorSetSchurIS(), MatFactorInvertSchurComplement() 9116 @*/ 9117 PetscErrorCode MatFactorFactorizeSchurComplement(Mat F) 9118 { 9119 PetscErrorCode ierr; 9120 9121 PetscFunctionBegin; 9122 PetscValidType(F,1); 9123 PetscValidHeaderSpecific(F,MAT_CLASSID,1); 9124 if (F->schur_status == MAT_FACTOR_SCHUR_INVERTED || F->schur_status == MAT_FACTOR_SCHUR_FACTORED) PetscFunctionReturn(0); 9125 ierr = MatFactorFactorizeSchurComplement_Private(F);CHKERRQ(ierr); 9126 F->schur_status = MAT_FACTOR_SCHUR_FACTORED; 9127 PetscFunctionReturn(0); 9128 } 9129 9130 /*@ 9131 MatPtAP - Creates the matrix product C = P^T * A * P 9132 9133 Neighbor-wise Collective on Mat 9134 9135 Input Parameters: 9136 + A - the matrix 9137 . P - the projection matrix 9138 . scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9139 - fill - expected fill as ratio of nnz(C)/(nnz(A) + nnz(P)), use PETSC_DEFAULT if you do not have a good estimate 9140 if the result is a dense matrix this is irrelevent 9141 9142 Output Parameters: 9143 . C - the product matrix 9144 9145 Notes: 9146 C will be created and must be destroyed by the user with MatDestroy(). 9147 9148 This routine is currently only implemented for pairs of AIJ matrices and classes 9149 which inherit from AIJ. 9150 9151 Level: intermediate 9152 9153 .seealso: MatPtAPSymbolic(), MatPtAPNumeric(), MatMatMult(), MatRARt() 9154 @*/ 9155 PetscErrorCode MatPtAP(Mat A,Mat P,MatReuse scall,PetscReal fill,Mat *C) 9156 { 9157 PetscErrorCode ierr; 9158 PetscErrorCode (*fA)(Mat,Mat,MatReuse,PetscReal,Mat*); 9159 PetscErrorCode (*fP)(Mat,Mat,MatReuse,PetscReal,Mat*); 9160 PetscErrorCode (*ptap)(Mat,Mat,MatReuse,PetscReal,Mat*)=NULL; 9161 PetscBool viatranspose=PETSC_FALSE,viamatmatmatmult=PETSC_FALSE; 9162 9163 PetscFunctionBegin; 9164 ierr = PetscOptionsGetBool(((PetscObject)A)->options,((PetscObject)A)->prefix,"-matptap_viatranspose",&viatranspose,NULL);CHKERRQ(ierr); 9165 ierr = PetscOptionsGetBool(((PetscObject)A)->options,((PetscObject)A)->prefix,"-matptap_viamatmatmatmult",&viamatmatmatmult,NULL);CHKERRQ(ierr); 9166 9167 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9168 PetscValidType(A,1); 9169 MatCheckPreallocated(A,1); 9170 if (scall == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 9171 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9172 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9173 PetscValidHeaderSpecific(P,MAT_CLASSID,2); 9174 PetscValidType(P,2); 9175 MatCheckPreallocated(P,2); 9176 if (!P->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9177 if (P->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9178 9179 if (A->rmap->N!= A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix A must be square, %D != %D",A->rmap->N,A->cmap->N); 9180 if (P->rmap->N != A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",P->rmap->N,A->cmap->N); 9181 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9182 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9183 9184 if (scall == MAT_REUSE_MATRIX) { 9185 PetscValidPointer(*C,5); 9186 PetscValidHeaderSpecific(*C,MAT_CLASSID,5); 9187 if (viatranspose || viamatmatmatmult) { 9188 Mat Pt; 9189 ierr = MatTranspose(P,MAT_INITIAL_MATRIX,&Pt);CHKERRQ(ierr); 9190 if (viamatmatmatmult) { 9191 ierr = MatMatMatMult(Pt,A,P,scall,fill,C);CHKERRQ(ierr); 9192 } else { 9193 Mat AP; 9194 ierr = MatMatMult(A,P,MAT_INITIAL_MATRIX,fill,&AP);CHKERRQ(ierr); 9195 ierr = MatMatMult(Pt,AP,scall,fill,C);CHKERRQ(ierr); 9196 ierr = MatDestroy(&AP);CHKERRQ(ierr); 9197 } 9198 ierr = MatDestroy(&Pt);CHKERRQ(ierr); 9199 } else { 9200 ierr = PetscLogEventBegin(MAT_PtAP,A,P,0,0);CHKERRQ(ierr); 9201 ierr = PetscLogEventBegin(MAT_PtAPNumeric,A,P,0,0);CHKERRQ(ierr); 9202 ierr = (*(*C)->ops->ptapnumeric)(A,P,*C);CHKERRQ(ierr); 9203 ierr = PetscLogEventEnd(MAT_PtAPNumeric,A,P,0,0);CHKERRQ(ierr); 9204 ierr = PetscLogEventEnd(MAT_PtAP,A,P,0,0);CHKERRQ(ierr); 9205 } 9206 PetscFunctionReturn(0); 9207 } 9208 9209 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9210 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9211 9212 fA = A->ops->ptap; 9213 fP = P->ops->ptap; 9214 if (fP == fA) { 9215 if (!fA) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"MatPtAP not supported for A of type %s",((PetscObject)A)->type_name); 9216 ptap = fA; 9217 } else { 9218 /* dispatch based on the type of A and P from their PetscObject's PetscFunctionLists. */ 9219 char ptapname[256]; 9220 ierr = PetscStrcpy(ptapname,"MatPtAP_");CHKERRQ(ierr); 9221 ierr = PetscStrcat(ptapname,((PetscObject)A)->type_name);CHKERRQ(ierr); 9222 ierr = PetscStrcat(ptapname,"_");CHKERRQ(ierr); 9223 ierr = PetscStrcat(ptapname,((PetscObject)P)->type_name);CHKERRQ(ierr); 9224 ierr = PetscStrcat(ptapname,"_C");CHKERRQ(ierr); /* e.g., ptapname = "MatPtAP_seqdense_seqaij_C" */ 9225 ierr = PetscObjectQueryFunction((PetscObject)P,ptapname,&ptap);CHKERRQ(ierr); 9226 if (!ptap) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"MatPtAP requires A, %s, to be compatible with P, %s",((PetscObject)A)->type_name,((PetscObject)P)->type_name); 9227 } 9228 9229 if (viatranspose || viamatmatmatmult) { 9230 Mat Pt; 9231 ierr = MatTranspose(P,MAT_INITIAL_MATRIX,&Pt);CHKERRQ(ierr); 9232 if (viamatmatmatmult) { 9233 ierr = MatMatMatMult(Pt,A,P,scall,fill,C);CHKERRQ(ierr); 9234 ierr = PetscInfo(*C,"MatPtAP via MatMatMatMult\n");CHKERRQ(ierr); 9235 } else { 9236 Mat AP; 9237 ierr = MatMatMult(A,P,MAT_INITIAL_MATRIX,fill,&AP);CHKERRQ(ierr); 9238 ierr = MatMatMult(Pt,AP,scall,fill,C);CHKERRQ(ierr); 9239 ierr = MatDestroy(&AP);CHKERRQ(ierr); 9240 ierr = PetscInfo(*C,"MatPtAP via MatTranspose and MatMatMult\n");CHKERRQ(ierr); 9241 } 9242 ierr = MatDestroy(&Pt);CHKERRQ(ierr); 9243 } else { 9244 ierr = PetscLogEventBegin(MAT_PtAP,A,P,0,0);CHKERRQ(ierr); 9245 ierr = (*ptap)(A,P,scall,fill,C);CHKERRQ(ierr); 9246 ierr = PetscLogEventEnd(MAT_PtAP,A,P,0,0);CHKERRQ(ierr); 9247 } 9248 PetscFunctionReturn(0); 9249 } 9250 9251 /*@ 9252 MatPtAPNumeric - Computes the matrix product C = P^T * A * P 9253 9254 Neighbor-wise Collective on Mat 9255 9256 Input Parameters: 9257 + A - the matrix 9258 - P - the projection matrix 9259 9260 Output Parameters: 9261 . C - the product matrix 9262 9263 Notes: 9264 C must have been created by calling MatPtAPSymbolic and must be destroyed by 9265 the user using MatDeatroy(). 9266 9267 This routine is currently only implemented for pairs of AIJ matrices and classes 9268 which inherit from AIJ. C will be of type MATAIJ. 9269 9270 Level: intermediate 9271 9272 .seealso: MatPtAP(), MatPtAPSymbolic(), MatMatMultNumeric() 9273 @*/ 9274 PetscErrorCode MatPtAPNumeric(Mat A,Mat P,Mat C) 9275 { 9276 PetscErrorCode ierr; 9277 9278 PetscFunctionBegin; 9279 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9280 PetscValidType(A,1); 9281 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9282 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9283 PetscValidHeaderSpecific(P,MAT_CLASSID,2); 9284 PetscValidType(P,2); 9285 MatCheckPreallocated(P,2); 9286 if (!P->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9287 if (P->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9288 PetscValidHeaderSpecific(C,MAT_CLASSID,3); 9289 PetscValidType(C,3); 9290 MatCheckPreallocated(C,3); 9291 if (C->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9292 if (P->cmap->N!=C->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",P->cmap->N,C->rmap->N); 9293 if (P->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",P->rmap->N,A->cmap->N); 9294 if (A->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix 'A' must be square, %D != %D",A->rmap->N,A->cmap->N); 9295 if (P->cmap->N!=C->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",P->cmap->N,C->cmap->N); 9296 MatCheckPreallocated(A,1); 9297 9298 ierr = PetscLogEventBegin(MAT_PtAPNumeric,A,P,0,0);CHKERRQ(ierr); 9299 ierr = (*C->ops->ptapnumeric)(A,P,C);CHKERRQ(ierr); 9300 ierr = PetscLogEventEnd(MAT_PtAPNumeric,A,P,0,0);CHKERRQ(ierr); 9301 PetscFunctionReturn(0); 9302 } 9303 9304 /*@ 9305 MatPtAPSymbolic - Creates the (i,j) structure of the matrix product C = P^T * A * P 9306 9307 Neighbor-wise Collective on Mat 9308 9309 Input Parameters: 9310 + A - the matrix 9311 - P - the projection matrix 9312 9313 Output Parameters: 9314 . C - the (i,j) structure of the product matrix 9315 9316 Notes: 9317 C will be created and must be destroyed by the user with MatDestroy(). 9318 9319 This routine is currently only implemented for pairs of SeqAIJ matrices and classes 9320 which inherit from SeqAIJ. C will be of type MATSEQAIJ. The product is computed using 9321 this (i,j) structure by calling MatPtAPNumeric(). 9322 9323 Level: intermediate 9324 9325 .seealso: MatPtAP(), MatPtAPNumeric(), MatMatMultSymbolic() 9326 @*/ 9327 PetscErrorCode MatPtAPSymbolic(Mat A,Mat P,PetscReal fill,Mat *C) 9328 { 9329 PetscErrorCode ierr; 9330 9331 PetscFunctionBegin; 9332 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9333 PetscValidType(A,1); 9334 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9335 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9336 if (fill <1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9337 PetscValidHeaderSpecific(P,MAT_CLASSID,2); 9338 PetscValidType(P,2); 9339 MatCheckPreallocated(P,2); 9340 if (!P->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9341 if (P->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9342 PetscValidPointer(C,3); 9343 9344 if (P->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",P->rmap->N,A->cmap->N); 9345 if (A->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix 'A' must be square, %D != %D",A->rmap->N,A->cmap->N); 9346 MatCheckPreallocated(A,1); 9347 ierr = PetscLogEventBegin(MAT_PtAPSymbolic,A,P,0,0);CHKERRQ(ierr); 9348 ierr = (*A->ops->ptapsymbolic)(A,P,fill,C);CHKERRQ(ierr); 9349 ierr = PetscLogEventEnd(MAT_PtAPSymbolic,A,P,0,0);CHKERRQ(ierr); 9350 9351 /* ierr = MatSetBlockSize(*C,A->rmap->bs);CHKERRQ(ierr); NO! this is not always true -ma */ 9352 PetscFunctionReturn(0); 9353 } 9354 9355 /*@ 9356 MatRARt - Creates the matrix product C = R * A * R^T 9357 9358 Neighbor-wise Collective on Mat 9359 9360 Input Parameters: 9361 + A - the matrix 9362 . R - the projection matrix 9363 . scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9364 - fill - expected fill as ratio of nnz(C)/nnz(A), use PETSC_DEFAULT if you do not have a good estimate 9365 if the result is a dense matrix this is irrelevent 9366 9367 Output Parameters: 9368 . C - the product matrix 9369 9370 Notes: 9371 C will be created and must be destroyed by the user with MatDestroy(). 9372 9373 This routine is currently only implemented for pairs of AIJ matrices and classes 9374 which inherit from AIJ. Due to PETSc sparse matrix block row distribution among processes, 9375 parallel MatRARt is implemented via explicit transpose of R, which could be very expensive. 9376 We recommend using MatPtAP(). 9377 9378 Level: intermediate 9379 9380 .seealso: MatRARtSymbolic(), MatRARtNumeric(), MatMatMult(), MatPtAP() 9381 @*/ 9382 PetscErrorCode MatRARt(Mat A,Mat R,MatReuse scall,PetscReal fill,Mat *C) 9383 { 9384 PetscErrorCode ierr; 9385 9386 PetscFunctionBegin; 9387 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9388 PetscValidType(A,1); 9389 if (scall == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 9390 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9391 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9392 PetscValidHeaderSpecific(R,MAT_CLASSID,2); 9393 PetscValidType(R,2); 9394 MatCheckPreallocated(R,2); 9395 if (!R->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9396 if (R->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9397 PetscValidPointer(C,3); 9398 if (R->cmap->N!=A->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)R),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",R->cmap->N,A->rmap->N); 9399 9400 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9401 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9402 MatCheckPreallocated(A,1); 9403 9404 if (!A->ops->rart) { 9405 Mat Rt; 9406 ierr = MatTranspose(R,MAT_INITIAL_MATRIX,&Rt);CHKERRQ(ierr); 9407 ierr = MatMatMatMult(R,A,Rt,scall,fill,C);CHKERRQ(ierr); 9408 ierr = MatDestroy(&Rt);CHKERRQ(ierr); 9409 } 9410 ierr = PetscLogEventBegin(MAT_RARt,A,R,0,0);CHKERRQ(ierr); 9411 ierr = (*A->ops->rart)(A,R,scall,fill,C);CHKERRQ(ierr); 9412 ierr = PetscLogEventEnd(MAT_RARt,A,R,0,0);CHKERRQ(ierr); 9413 PetscFunctionReturn(0); 9414 } 9415 9416 /*@ 9417 MatRARtNumeric - Computes the matrix product C = R * A * R^T 9418 9419 Neighbor-wise Collective on Mat 9420 9421 Input Parameters: 9422 + A - the matrix 9423 - R - the projection matrix 9424 9425 Output Parameters: 9426 . C - the product matrix 9427 9428 Notes: 9429 C must have been created by calling MatRARtSymbolic and must be destroyed by 9430 the user using MatDestroy(). 9431 9432 This routine is currently only implemented for pairs of AIJ matrices and classes 9433 which inherit from AIJ. C will be of type MATAIJ. 9434 9435 Level: intermediate 9436 9437 .seealso: MatRARt(), MatRARtSymbolic(), MatMatMultNumeric() 9438 @*/ 9439 PetscErrorCode MatRARtNumeric(Mat A,Mat R,Mat C) 9440 { 9441 PetscErrorCode ierr; 9442 9443 PetscFunctionBegin; 9444 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9445 PetscValidType(A,1); 9446 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9447 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9448 PetscValidHeaderSpecific(R,MAT_CLASSID,2); 9449 PetscValidType(R,2); 9450 MatCheckPreallocated(R,2); 9451 if (!R->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9452 if (R->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9453 PetscValidHeaderSpecific(C,MAT_CLASSID,3); 9454 PetscValidType(C,3); 9455 MatCheckPreallocated(C,3); 9456 if (C->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9457 if (R->rmap->N!=C->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",R->rmap->N,C->rmap->N); 9458 if (R->cmap->N!=A->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",R->cmap->N,A->rmap->N); 9459 if (A->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix 'A' must be square, %D != %D",A->rmap->N,A->cmap->N); 9460 if (R->rmap->N!=C->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",R->rmap->N,C->cmap->N); 9461 MatCheckPreallocated(A,1); 9462 9463 ierr = PetscLogEventBegin(MAT_RARtNumeric,A,R,0,0);CHKERRQ(ierr); 9464 ierr = (*A->ops->rartnumeric)(A,R,C);CHKERRQ(ierr); 9465 ierr = PetscLogEventEnd(MAT_RARtNumeric,A,R,0,0);CHKERRQ(ierr); 9466 PetscFunctionReturn(0); 9467 } 9468 9469 /*@ 9470 MatRARtSymbolic - Creates the (i,j) structure of the matrix product C = R * A * R^T 9471 9472 Neighbor-wise Collective on Mat 9473 9474 Input Parameters: 9475 + A - the matrix 9476 - R - the projection matrix 9477 9478 Output Parameters: 9479 . C - the (i,j) structure of the product matrix 9480 9481 Notes: 9482 C will be created and must be destroyed by the user with MatDestroy(). 9483 9484 This routine is currently only implemented for pairs of SeqAIJ matrices and classes 9485 which inherit from SeqAIJ. C will be of type MATSEQAIJ. The product is computed using 9486 this (i,j) structure by calling MatRARtNumeric(). 9487 9488 Level: intermediate 9489 9490 .seealso: MatRARt(), MatRARtNumeric(), MatMatMultSymbolic() 9491 @*/ 9492 PetscErrorCode MatRARtSymbolic(Mat A,Mat R,PetscReal fill,Mat *C) 9493 { 9494 PetscErrorCode ierr; 9495 9496 PetscFunctionBegin; 9497 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9498 PetscValidType(A,1); 9499 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9500 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9501 if (fill <1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9502 PetscValidHeaderSpecific(R,MAT_CLASSID,2); 9503 PetscValidType(R,2); 9504 MatCheckPreallocated(R,2); 9505 if (!R->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9506 if (R->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9507 PetscValidPointer(C,3); 9508 9509 if (R->cmap->N!=A->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",R->cmap->N,A->rmap->N); 9510 if (A->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix 'A' must be square, %D != %D",A->rmap->N,A->cmap->N); 9511 MatCheckPreallocated(A,1); 9512 ierr = PetscLogEventBegin(MAT_RARtSymbolic,A,R,0,0);CHKERRQ(ierr); 9513 ierr = (*A->ops->rartsymbolic)(A,R,fill,C);CHKERRQ(ierr); 9514 ierr = PetscLogEventEnd(MAT_RARtSymbolic,A,R,0,0);CHKERRQ(ierr); 9515 9516 ierr = MatSetBlockSizes(*C,PetscAbs(R->rmap->bs),PetscAbs(R->rmap->bs));CHKERRQ(ierr); 9517 PetscFunctionReturn(0); 9518 } 9519 9520 /*@ 9521 MatMatMult - Performs Matrix-Matrix Multiplication C=A*B. 9522 9523 Neighbor-wise Collective on Mat 9524 9525 Input Parameters: 9526 + A - the left matrix 9527 . B - the right matrix 9528 . scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9529 - fill - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use PETSC_DEFAULT if you do not have a good estimate 9530 if the result is a dense matrix this is irrelevent 9531 9532 Output Parameters: 9533 . C - the product matrix 9534 9535 Notes: 9536 Unless scall is MAT_REUSE_MATRIX C will be created. 9537 9538 MAT_REUSE_MATRIX can only be used if the matrices A and B have the same nonzero pattern as in the previous call and C was obtained from a previous 9539 call to this function with either MAT_INITIAL_MATRIX or MatMatMultSymbolic() 9540 9541 To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value 9542 actually needed. 9543 9544 If you have many matrices with the same non-zero structure to multiply, you 9545 should either 9546 $ 1) use MAT_REUSE_MATRIX in all calls but the first or 9547 $ 2) call MatMatMultSymbolic() once and then MatMatMultNumeric() for each product needed 9548 In the special case where matrix B (and hence C) are dense you can create the correctly sized matrix C yourself and then call this routine 9549 with MAT_REUSE_MATRIX, rather than first having MatMatMult() create it for you. You can NEVER do this if the matrix C is sparse. 9550 9551 Level: intermediate 9552 9553 .seealso: MatMatMultSymbolic(), MatMatMultNumeric(), MatTransposeMatMult(), MatMatTransposeMult(), MatPtAP() 9554 @*/ 9555 PetscErrorCode MatMatMult(Mat A,Mat B,MatReuse scall,PetscReal fill,Mat *C) 9556 { 9557 PetscErrorCode ierr; 9558 PetscErrorCode (*fA)(Mat,Mat,MatReuse,PetscReal,Mat*); 9559 PetscErrorCode (*fB)(Mat,Mat,MatReuse,PetscReal,Mat*); 9560 PetscErrorCode (*mult)(Mat,Mat,MatReuse,PetscReal,Mat*)=NULL; 9561 9562 PetscFunctionBegin; 9563 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9564 PetscValidType(A,1); 9565 MatCheckPreallocated(A,1); 9566 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9567 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9568 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 9569 PetscValidType(B,2); 9570 MatCheckPreallocated(B,2); 9571 if (!B->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9572 if (B->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9573 PetscValidPointer(C,3); 9574 if (scall == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 9575 if (B->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",B->rmap->N,A->cmap->N); 9576 if (scall == MAT_REUSE_MATRIX) { 9577 PetscValidPointer(*C,5); 9578 PetscValidHeaderSpecific(*C,MAT_CLASSID,5); 9579 ierr = PetscLogEventBegin(MAT_MatMult,A,B,0,0);CHKERRQ(ierr); 9580 ierr = PetscLogEventBegin(MAT_MatMultNumeric,A,B,0,0);CHKERRQ(ierr); 9581 ierr = (*(*C)->ops->matmultnumeric)(A,B,*C);CHKERRQ(ierr); 9582 ierr = PetscLogEventEnd(MAT_MatMultNumeric,A,B,0,0);CHKERRQ(ierr); 9583 ierr = PetscLogEventEnd(MAT_MatMult,A,B,0,0);CHKERRQ(ierr); 9584 PetscFunctionReturn(0); 9585 } 9586 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9587 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9588 9589 fA = A->ops->matmult; 9590 fB = B->ops->matmult; 9591 if (fB == fA) { 9592 if (!fB) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"MatMatMult not supported for B of type %s",((PetscObject)B)->type_name); 9593 mult = fB; 9594 } else { 9595 /* dispatch based on the type of A and B from their PetscObject's PetscFunctionLists. */ 9596 char multname[256]; 9597 ierr = PetscStrcpy(multname,"MatMatMult_");CHKERRQ(ierr); 9598 ierr = PetscStrcat(multname,((PetscObject)A)->type_name);CHKERRQ(ierr); 9599 ierr = PetscStrcat(multname,"_");CHKERRQ(ierr); 9600 ierr = PetscStrcat(multname,((PetscObject)B)->type_name);CHKERRQ(ierr); 9601 ierr = PetscStrcat(multname,"_C");CHKERRQ(ierr); /* e.g., multname = "MatMatMult_seqdense_seqaij_C" */ 9602 ierr = PetscObjectQueryFunction((PetscObject)B,multname,&mult);CHKERRQ(ierr); 9603 if (!mult) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"MatMatMult requires A, %s, to be compatible with B, %s",((PetscObject)A)->type_name,((PetscObject)B)->type_name); 9604 } 9605 ierr = PetscLogEventBegin(MAT_MatMult,A,B,0,0);CHKERRQ(ierr); 9606 ierr = (*mult)(A,B,scall,fill,C);CHKERRQ(ierr); 9607 ierr = PetscLogEventEnd(MAT_MatMult,A,B,0,0);CHKERRQ(ierr); 9608 PetscFunctionReturn(0); 9609 } 9610 9611 /*@ 9612 MatMatMultSymbolic - Performs construction, preallocation, and computes the ij structure 9613 of the matrix-matrix product C=A*B. Call this routine before calling MatMatMultNumeric(). 9614 9615 Neighbor-wise Collective on Mat 9616 9617 Input Parameters: 9618 + A - the left matrix 9619 . B - the right matrix 9620 - fill - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use PETSC_DEFAULT if you do not have a good estimate, 9621 if C is a dense matrix this is irrelevent 9622 9623 Output Parameters: 9624 . C - the product matrix 9625 9626 Notes: 9627 Unless scall is MAT_REUSE_MATRIX C will be created. 9628 9629 To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value 9630 actually needed. 9631 9632 This routine is currently implemented for 9633 - pairs of AIJ matrices and classes which inherit from AIJ, C will be of type AIJ 9634 - pairs of AIJ (A) and Dense (B) matrix, C will be of type Dense. 9635 - pairs of Dense (A) and AIJ (B) matrix, C will be of type Dense. 9636 9637 Level: intermediate 9638 9639 Developers Note: There are ways to estimate the number of nonzeros in the resulting product, see for example, http://arxiv.org/abs/1006.4173 9640 We should incorporate them into PETSc. 9641 9642 .seealso: MatMatMult(), MatMatMultNumeric() 9643 @*/ 9644 PetscErrorCode MatMatMultSymbolic(Mat A,Mat B,PetscReal fill,Mat *C) 9645 { 9646 PetscErrorCode ierr; 9647 PetscErrorCode (*Asymbolic)(Mat,Mat,PetscReal,Mat*); 9648 PetscErrorCode (*Bsymbolic)(Mat,Mat,PetscReal,Mat*); 9649 PetscErrorCode (*symbolic)(Mat,Mat,PetscReal,Mat*)=NULL; 9650 9651 PetscFunctionBegin; 9652 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9653 PetscValidType(A,1); 9654 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9655 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9656 9657 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 9658 PetscValidType(B,2); 9659 MatCheckPreallocated(B,2); 9660 if (!B->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9661 if (B->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9662 PetscValidPointer(C,3); 9663 9664 if (B->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",B->rmap->N,A->cmap->N); 9665 if (fill == PETSC_DEFAULT) fill = 2.0; 9666 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be > 1.0",(double)fill); 9667 MatCheckPreallocated(A,1); 9668 9669 Asymbolic = A->ops->matmultsymbolic; 9670 Bsymbolic = B->ops->matmultsymbolic; 9671 if (Asymbolic == Bsymbolic) { 9672 if (!Bsymbolic) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"C=A*B not implemented for B of type %s",((PetscObject)B)->type_name); 9673 symbolic = Bsymbolic; 9674 } else { /* dispatch based on the type of A and B */ 9675 char symbolicname[256]; 9676 ierr = PetscStrcpy(symbolicname,"MatMatMultSymbolic_");CHKERRQ(ierr); 9677 ierr = PetscStrcat(symbolicname,((PetscObject)A)->type_name);CHKERRQ(ierr); 9678 ierr = PetscStrcat(symbolicname,"_");CHKERRQ(ierr); 9679 ierr = PetscStrcat(symbolicname,((PetscObject)B)->type_name);CHKERRQ(ierr); 9680 ierr = PetscStrcat(symbolicname,"_C");CHKERRQ(ierr); 9681 ierr = PetscObjectQueryFunction((PetscObject)B,symbolicname,&symbolic);CHKERRQ(ierr); 9682 if (!symbolic) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"MatMatMultSymbolic requires A, %s, to be compatible with B, %s",((PetscObject)A)->type_name,((PetscObject)B)->type_name); 9683 } 9684 ierr = PetscLogEventBegin(MAT_MatMultSymbolic,A,B,0,0);CHKERRQ(ierr); 9685 ierr = (*symbolic)(A,B,fill,C);CHKERRQ(ierr); 9686 ierr = PetscLogEventEnd(MAT_MatMultSymbolic,A,B,0,0);CHKERRQ(ierr); 9687 PetscFunctionReturn(0); 9688 } 9689 9690 /*@ 9691 MatMatMultNumeric - Performs the numeric matrix-matrix product. 9692 Call this routine after first calling MatMatMultSymbolic(). 9693 9694 Neighbor-wise Collective on Mat 9695 9696 Input Parameters: 9697 + A - the left matrix 9698 - B - the right matrix 9699 9700 Output Parameters: 9701 . C - the product matrix, which was created by from MatMatMultSymbolic() or a call to MatMatMult(). 9702 9703 Notes: 9704 C must have been created with MatMatMultSymbolic(). 9705 9706 This routine is currently implemented for 9707 - pairs of AIJ matrices and classes which inherit from AIJ, C will be of type MATAIJ. 9708 - pairs of AIJ (A) and Dense (B) matrix, C will be of type Dense. 9709 - pairs of Dense (A) and AIJ (B) matrix, C will be of type Dense. 9710 9711 Level: intermediate 9712 9713 .seealso: MatMatMult(), MatMatMultSymbolic() 9714 @*/ 9715 PetscErrorCode MatMatMultNumeric(Mat A,Mat B,Mat C) 9716 { 9717 PetscErrorCode ierr; 9718 9719 PetscFunctionBegin; 9720 ierr = MatMatMult(A,B,MAT_REUSE_MATRIX,0.0,&C);CHKERRQ(ierr); 9721 PetscFunctionReturn(0); 9722 } 9723 9724 /*@ 9725 MatMatTransposeMult - Performs Matrix-Matrix Multiplication C=A*B^T. 9726 9727 Neighbor-wise Collective on Mat 9728 9729 Input Parameters: 9730 + A - the left matrix 9731 . B - the right matrix 9732 . scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9733 - fill - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use PETSC_DEFAULT if not known 9734 9735 Output Parameters: 9736 . C - the product matrix 9737 9738 Notes: 9739 C will be created if MAT_INITIAL_MATRIX and must be destroyed by the user with MatDestroy(). 9740 9741 MAT_REUSE_MATRIX can only be used if the matrices A and B have the same nonzero pattern as in the previous call 9742 9743 To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value 9744 actually needed. 9745 9746 This routine is currently only implemented for pairs of SeqAIJ matrices and for the SeqDense class. 9747 9748 Level: intermediate 9749 9750 .seealso: MatMatTransposeMultSymbolic(), MatMatTransposeMultNumeric(), MatMatMult(), MatTransposeMatMult() MatPtAP() 9751 @*/ 9752 PetscErrorCode MatMatTransposeMult(Mat A,Mat B,MatReuse scall,PetscReal fill,Mat *C) 9753 { 9754 PetscErrorCode ierr; 9755 PetscErrorCode (*fA)(Mat,Mat,MatReuse,PetscReal,Mat*); 9756 PetscErrorCode (*fB)(Mat,Mat,MatReuse,PetscReal,Mat*); 9757 9758 PetscFunctionBegin; 9759 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9760 PetscValidType(A,1); 9761 if (scall == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 9762 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9763 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9764 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 9765 PetscValidType(B,2); 9766 MatCheckPreallocated(B,2); 9767 if (!B->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9768 if (B->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9769 PetscValidPointer(C,3); 9770 if (B->cmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, AN %D != BN %D",A->cmap->N,B->cmap->N); 9771 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9772 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be > 1.0",(double)fill); 9773 MatCheckPreallocated(A,1); 9774 9775 fA = A->ops->mattransposemult; 9776 if (!fA) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"MatMatTransposeMult not supported for A of type %s",((PetscObject)A)->type_name); 9777 fB = B->ops->mattransposemult; 9778 if (!fB) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"MatMatTransposeMult not supported for B of type %s",((PetscObject)B)->type_name); 9779 if (fB!=fA) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"MatMatTransposeMult requires A, %s, to be compatible with B, %s",((PetscObject)A)->type_name,((PetscObject)B)->type_name); 9780 9781 ierr = PetscLogEventBegin(MAT_MatTransposeMult,A,B,0,0);CHKERRQ(ierr); 9782 if (scall == MAT_INITIAL_MATRIX) { 9783 ierr = PetscLogEventBegin(MAT_MatTransposeMultSymbolic,A,B,0,0);CHKERRQ(ierr); 9784 ierr = (*A->ops->mattransposemultsymbolic)(A,B,fill,C);CHKERRQ(ierr); 9785 ierr = PetscLogEventEnd(MAT_MatTransposeMultSymbolic,A,B,0,0);CHKERRQ(ierr); 9786 } 9787 ierr = PetscLogEventBegin(MAT_MatTransposeMultNumeric,A,B,0,0);CHKERRQ(ierr); 9788 ierr = (*A->ops->mattransposemultnumeric)(A,B,*C);CHKERRQ(ierr); 9789 ierr = PetscLogEventEnd(MAT_MatTransposeMultNumeric,A,B,0,0);CHKERRQ(ierr); 9790 ierr = PetscLogEventEnd(MAT_MatTransposeMult,A,B,0,0);CHKERRQ(ierr); 9791 PetscFunctionReturn(0); 9792 } 9793 9794 /*@ 9795 MatTransposeMatMult - Performs Matrix-Matrix Multiplication C=A^T*B. 9796 9797 Neighbor-wise Collective on Mat 9798 9799 Input Parameters: 9800 + A - the left matrix 9801 . B - the right matrix 9802 . scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9803 - fill - expected fill as ratio of nnz(C)/(nnz(A) + nnz(B)), use PETSC_DEFAULT if not known 9804 9805 Output Parameters: 9806 . C - the product matrix 9807 9808 Notes: 9809 C will be created if MAT_INITIAL_MATRIX and must be destroyed by the user with MatDestroy(). 9810 9811 MAT_REUSE_MATRIX can only be used if the matrices A and B have the same nonzero pattern as in the previous call 9812 9813 To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value 9814 actually needed. 9815 9816 This routine is currently implemented for pairs of AIJ matrices and pairs of SeqDense matrices and classes 9817 which inherit from SeqAIJ. C will be of same type as the input matrices. 9818 9819 Level: intermediate 9820 9821 .seealso: MatTransposeMatMultSymbolic(), MatTransposeMatMultNumeric(), MatMatMult(), MatMatTransposeMult(), MatPtAP() 9822 @*/ 9823 PetscErrorCode MatTransposeMatMult(Mat A,Mat B,MatReuse scall,PetscReal fill,Mat *C) 9824 { 9825 PetscErrorCode ierr; 9826 PetscErrorCode (*fA)(Mat,Mat,MatReuse,PetscReal,Mat*); 9827 PetscErrorCode (*fB)(Mat,Mat,MatReuse,PetscReal,Mat*); 9828 PetscErrorCode (*transposematmult)(Mat,Mat,MatReuse,PetscReal,Mat*) = NULL; 9829 9830 PetscFunctionBegin; 9831 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9832 PetscValidType(A,1); 9833 if (scall == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 9834 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9835 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9836 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 9837 PetscValidType(B,2); 9838 MatCheckPreallocated(B,2); 9839 if (!B->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9840 if (B->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9841 PetscValidPointer(C,3); 9842 if (B->rmap->N!=A->rmap->N) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",B->rmap->N,A->rmap->N); 9843 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9844 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be > 1.0",(double)fill); 9845 MatCheckPreallocated(A,1); 9846 9847 fA = A->ops->transposematmult; 9848 fB = B->ops->transposematmult; 9849 if (fB==fA) { 9850 if (!fA) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"MatTransposeMatMult not supported for A of type %s",((PetscObject)A)->type_name); 9851 transposematmult = fA; 9852 } else { 9853 /* dispatch based on the type of A and B from their PetscObject's PetscFunctionLists. */ 9854 char multname[256]; 9855 ierr = PetscStrcpy(multname,"MatTransposeMatMult_");CHKERRQ(ierr); 9856 ierr = PetscStrcat(multname,((PetscObject)A)->type_name);CHKERRQ(ierr); 9857 ierr = PetscStrcat(multname,"_");CHKERRQ(ierr); 9858 ierr = PetscStrcat(multname,((PetscObject)B)->type_name);CHKERRQ(ierr); 9859 ierr = PetscStrcat(multname,"_C");CHKERRQ(ierr); /* e.g., multname = "MatMatMult_seqdense_seqaij_C" */ 9860 ierr = PetscObjectQueryFunction((PetscObject)B,multname,&transposematmult);CHKERRQ(ierr); 9861 if (!transposematmult) SETERRQ2(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"MatTransposeMatMult requires A, %s, to be compatible with B, %s",((PetscObject)A)->type_name,((PetscObject)B)->type_name); 9862 } 9863 ierr = PetscLogEventBegin(MAT_TransposeMatMult,A,B,0,0);CHKERRQ(ierr); 9864 ierr = (*transposematmult)(A,B,scall,fill,C);CHKERRQ(ierr); 9865 ierr = PetscLogEventEnd(MAT_TransposeMatMult,A,B,0,0);CHKERRQ(ierr); 9866 PetscFunctionReturn(0); 9867 } 9868 9869 /*@ 9870 MatMatMatMult - Performs Matrix-Matrix-Matrix Multiplication D=A*B*C. 9871 9872 Neighbor-wise Collective on Mat 9873 9874 Input Parameters: 9875 + A - the left matrix 9876 . B - the middle matrix 9877 . C - the right matrix 9878 . scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9879 - fill - expected fill as ratio of nnz(D)/(nnz(A) + nnz(B)+nnz(C)), use PETSC_DEFAULT if you do not have a good estimate 9880 if the result is a dense matrix this is irrelevent 9881 9882 Output Parameters: 9883 . D - the product matrix 9884 9885 Notes: 9886 Unless scall is MAT_REUSE_MATRIX D will be created. 9887 9888 MAT_REUSE_MATRIX can only be used if the matrices A, B and C have the same nonzero pattern as in the previous call 9889 9890 To determine the correct fill value, run with -info and search for the string "Fill ratio" to see the value 9891 actually needed. 9892 9893 If you have many matrices with the same non-zero structure to multiply, you 9894 should use MAT_REUSE_MATRIX in all calls but the first or 9895 9896 Level: intermediate 9897 9898 .seealso: MatMatMult, MatPtAP() 9899 @*/ 9900 PetscErrorCode MatMatMatMult(Mat A,Mat B,Mat C,MatReuse scall,PetscReal fill,Mat *D) 9901 { 9902 PetscErrorCode ierr; 9903 PetscErrorCode (*fA)(Mat,Mat,Mat,MatReuse,PetscReal,Mat*); 9904 PetscErrorCode (*fB)(Mat,Mat,Mat,MatReuse,PetscReal,Mat*); 9905 PetscErrorCode (*fC)(Mat,Mat,Mat,MatReuse,PetscReal,Mat*); 9906 PetscErrorCode (*mult)(Mat,Mat,Mat,MatReuse,PetscReal,Mat*)=NULL; 9907 9908 PetscFunctionBegin; 9909 PetscValidHeaderSpecific(A,MAT_CLASSID,1); 9910 PetscValidType(A,1); 9911 MatCheckPreallocated(A,1); 9912 if (scall == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 9913 if (!A->assembled) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9914 if (A->factortype) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9915 PetscValidHeaderSpecific(B,MAT_CLASSID,2); 9916 PetscValidType(B,2); 9917 MatCheckPreallocated(B,2); 9918 if (!B->assembled) SETERRQ(PetscObjectComm((PetscObject)B),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9919 if (B->factortype) SETERRQ(PetscObjectComm((PetscObject)B),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9920 PetscValidHeaderSpecific(C,MAT_CLASSID,3); 9921 PetscValidPointer(C,3); 9922 MatCheckPreallocated(C,3); 9923 if (!C->assembled) SETERRQ(PetscObjectComm((PetscObject)C),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 9924 if (C->factortype) SETERRQ(PetscObjectComm((PetscObject)C),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 9925 if (B->rmap->N!=A->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)B),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",B->rmap->N,A->cmap->N); 9926 if (C->rmap->N!=B->cmap->N) SETERRQ2(PetscObjectComm((PetscObject)C),PETSC_ERR_ARG_SIZ,"Matrix dimensions are incompatible, %D != %D",C->rmap->N,B->cmap->N); 9927 if (scall == MAT_REUSE_MATRIX) { 9928 PetscValidPointer(*D,6); 9929 PetscValidHeaderSpecific(*D,MAT_CLASSID,6); 9930 ierr = PetscLogEventBegin(MAT_MatMatMult,A,B,0,0);CHKERRQ(ierr); 9931 ierr = (*(*D)->ops->matmatmult)(A,B,C,scall,fill,D);CHKERRQ(ierr); 9932 ierr = PetscLogEventEnd(MAT_MatMatMult,A,B,0,0);CHKERRQ(ierr); 9933 PetscFunctionReturn(0); 9934 } 9935 if (fill == PETSC_DEFAULT || fill == PETSC_DECIDE) fill = 2.0; 9936 if (fill < 1.0) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_SIZ,"Expected fill=%g must be >= 1.0",(double)fill); 9937 9938 fA = A->ops->matmatmult; 9939 fB = B->ops->matmatmult; 9940 fC = C->ops->matmatmult; 9941 if (fA == fB && fA == fC) { 9942 if (!fA) SETERRQ1(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"MatMatMatMult not supported for A of type %s",((PetscObject)A)->type_name); 9943 mult = fA; 9944 } else { 9945 /* dispatch based on the type of A, B and C from their PetscObject's PetscFunctionLists. */ 9946 char multname[256]; 9947 ierr = PetscStrcpy(multname,"MatMatMatMult_");CHKERRQ(ierr); 9948 ierr = PetscStrcat(multname,((PetscObject)A)->type_name);CHKERRQ(ierr); 9949 ierr = PetscStrcat(multname,"_");CHKERRQ(ierr); 9950 ierr = PetscStrcat(multname,((PetscObject)B)->type_name);CHKERRQ(ierr); 9951 ierr = PetscStrcat(multname,"_");CHKERRQ(ierr); 9952 ierr = PetscStrcat(multname,((PetscObject)C)->type_name);CHKERRQ(ierr); 9953 ierr = PetscStrcat(multname,"_C");CHKERRQ(ierr); 9954 ierr = PetscObjectQueryFunction((PetscObject)B,multname,&mult);CHKERRQ(ierr); 9955 if (!mult) SETERRQ3(PetscObjectComm((PetscObject)A),PETSC_ERR_ARG_INCOMP,"MatMatMatMult requires A, %s, to be compatible with B, %s, C, %s",((PetscObject)A)->type_name,((PetscObject)B)->type_name,((PetscObject)C)->type_name); 9956 } 9957 ierr = PetscLogEventBegin(MAT_MatMatMult,A,B,0,0);CHKERRQ(ierr); 9958 ierr = (*mult)(A,B,C,scall,fill,D);CHKERRQ(ierr); 9959 ierr = PetscLogEventEnd(MAT_MatMatMult,A,B,0,0);CHKERRQ(ierr); 9960 PetscFunctionReturn(0); 9961 } 9962 9963 /*@ 9964 MatCreateRedundantMatrix - Create redundant matrices and put them into processors of subcommunicators. 9965 9966 Collective on Mat 9967 9968 Input Parameters: 9969 + mat - the matrix 9970 . nsubcomm - the number of subcommunicators (= number of redundant parallel or sequential matrices) 9971 . subcomm - MPI communicator split from the communicator where mat resides in (or MPI_COMM_NULL if nsubcomm is used) 9972 - reuse - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 9973 9974 Output Parameter: 9975 . matredundant - redundant matrix 9976 9977 Notes: 9978 MAT_REUSE_MATRIX can only be used when the nonzero structure of the 9979 original matrix has not changed from that last call to MatCreateRedundantMatrix(). 9980 9981 This routine creates the duplicated matrices in subcommunicators; you should NOT create them before 9982 calling it. 9983 9984 Level: advanced 9985 9986 Concepts: subcommunicator 9987 Concepts: duplicate matrix 9988 9989 .seealso: MatDestroy() 9990 @*/ 9991 PetscErrorCode MatCreateRedundantMatrix(Mat mat,PetscInt nsubcomm,MPI_Comm subcomm,MatReuse reuse,Mat *matredundant) 9992 { 9993 PetscErrorCode ierr; 9994 MPI_Comm comm; 9995 PetscMPIInt size; 9996 PetscInt mloc_sub,nloc_sub,rstart,rend,M=mat->rmap->N,N=mat->cmap->N,bs=mat->rmap->bs; 9997 Mat_Redundant *redund=NULL; 9998 PetscSubcomm psubcomm=NULL; 9999 MPI_Comm subcomm_in=subcomm; 10000 Mat *matseq; 10001 IS isrow,iscol; 10002 PetscBool newsubcomm=PETSC_FALSE; 10003 10004 PetscFunctionBegin; 10005 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10006 if (nsubcomm && reuse == MAT_REUSE_MATRIX) { 10007 PetscValidPointer(*matredundant,5); 10008 PetscValidHeaderSpecific(*matredundant,MAT_CLASSID,5); 10009 } 10010 10011 ierr = MPI_Comm_size(PetscObjectComm((PetscObject)mat),&size);CHKERRQ(ierr); 10012 if (size == 1 || nsubcomm == 1) { 10013 if (reuse == MAT_INITIAL_MATRIX) { 10014 ierr = MatDuplicate(mat,MAT_COPY_VALUES,matredundant);CHKERRQ(ierr); 10015 } else { 10016 if (*matredundant == mat) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix"); 10017 ierr = MatCopy(mat,*matredundant,SAME_NONZERO_PATTERN);CHKERRQ(ierr); 10018 } 10019 PetscFunctionReturn(0); 10020 } 10021 10022 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 10023 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 10024 MatCheckPreallocated(mat,1); 10025 10026 ierr = PetscLogEventBegin(MAT_RedundantMat,mat,0,0,0);CHKERRQ(ierr); 10027 if (subcomm_in == MPI_COMM_NULL && reuse == MAT_INITIAL_MATRIX) { /* get subcomm if user does not provide subcomm */ 10028 /* create psubcomm, then get subcomm */ 10029 ierr = PetscObjectGetComm((PetscObject)mat,&comm);CHKERRQ(ierr); 10030 ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); 10031 if (nsubcomm < 1 || nsubcomm > size) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_ARG_SIZ,"nsubcomm must between 1 and %D",size); 10032 10033 ierr = PetscSubcommCreate(comm,&psubcomm);CHKERRQ(ierr); 10034 ierr = PetscSubcommSetNumber(psubcomm,nsubcomm);CHKERRQ(ierr); 10035 ierr = PetscSubcommSetType(psubcomm,PETSC_SUBCOMM_CONTIGUOUS);CHKERRQ(ierr); 10036 ierr = PetscSubcommSetFromOptions(psubcomm);CHKERRQ(ierr); 10037 ierr = PetscCommDuplicate(PetscSubcommChild(psubcomm),&subcomm,NULL);CHKERRQ(ierr); 10038 newsubcomm = PETSC_TRUE; 10039 ierr = PetscSubcommDestroy(&psubcomm);CHKERRQ(ierr); 10040 } 10041 10042 /* get isrow, iscol and a local sequential matrix matseq[0] */ 10043 if (reuse == MAT_INITIAL_MATRIX) { 10044 mloc_sub = PETSC_DECIDE; 10045 nloc_sub = PETSC_DECIDE; 10046 if (bs < 1) { 10047 ierr = PetscSplitOwnership(subcomm,&mloc_sub,&M);CHKERRQ(ierr); 10048 ierr = PetscSplitOwnership(subcomm,&nloc_sub,&N);CHKERRQ(ierr); 10049 } else { 10050 ierr = PetscSplitOwnershipBlock(subcomm,bs,&mloc_sub,&M);CHKERRQ(ierr); 10051 ierr = PetscSplitOwnershipBlock(subcomm,bs,&nloc_sub,&N);CHKERRQ(ierr); 10052 } 10053 ierr = MPI_Scan(&mloc_sub,&rend,1,MPIU_INT,MPI_SUM,subcomm);CHKERRQ(ierr); 10054 rstart = rend - mloc_sub; 10055 ierr = ISCreateStride(PETSC_COMM_SELF,mloc_sub,rstart,1,&isrow);CHKERRQ(ierr); 10056 ierr = ISCreateStride(PETSC_COMM_SELF,N,0,1,&iscol);CHKERRQ(ierr); 10057 } else { /* reuse == MAT_REUSE_MATRIX */ 10058 if (*matredundant == mat) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix"); 10059 /* retrieve subcomm */ 10060 ierr = PetscObjectGetComm((PetscObject)(*matredundant),&subcomm);CHKERRQ(ierr); 10061 redund = (*matredundant)->redundant; 10062 isrow = redund->isrow; 10063 iscol = redund->iscol; 10064 matseq = redund->matseq; 10065 } 10066 ierr = MatCreateSubMatrices(mat,1,&isrow,&iscol,reuse,&matseq);CHKERRQ(ierr); 10067 10068 /* get matredundant over subcomm */ 10069 if (reuse == MAT_INITIAL_MATRIX) { 10070 ierr = MatCreateMPIMatConcatenateSeqMat(subcomm,matseq[0],nloc_sub,reuse,matredundant);CHKERRQ(ierr); 10071 10072 /* create a supporting struct and attach it to C for reuse */ 10073 ierr = PetscNewLog(*matredundant,&redund);CHKERRQ(ierr); 10074 (*matredundant)->redundant = redund; 10075 redund->isrow = isrow; 10076 redund->iscol = iscol; 10077 redund->matseq = matseq; 10078 if (newsubcomm) { 10079 redund->subcomm = subcomm; 10080 } else { 10081 redund->subcomm = MPI_COMM_NULL; 10082 } 10083 } else { 10084 ierr = MatCreateMPIMatConcatenateSeqMat(subcomm,matseq[0],PETSC_DECIDE,reuse,matredundant);CHKERRQ(ierr); 10085 } 10086 ierr = PetscLogEventEnd(MAT_RedundantMat,mat,0,0,0);CHKERRQ(ierr); 10087 PetscFunctionReturn(0); 10088 } 10089 10090 /*@C 10091 MatGetMultiProcBlock - Create multiple [bjacobi] 'parallel submatrices' from 10092 a given 'mat' object. Each submatrix can span multiple procs. 10093 10094 Collective on Mat 10095 10096 Input Parameters: 10097 + mat - the matrix 10098 . subcomm - the subcommunicator obtained by com_split(comm) 10099 - scall - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 10100 10101 Output Parameter: 10102 . subMat - 'parallel submatrices each spans a given subcomm 10103 10104 Notes: 10105 The submatrix partition across processors is dictated by 'subComm' a 10106 communicator obtained by com_split(comm). The comm_split 10107 is not restriced to be grouped with consecutive original ranks. 10108 10109 Due the comm_split() usage, the parallel layout of the submatrices 10110 map directly to the layout of the original matrix [wrt the local 10111 row,col partitioning]. So the original 'DiagonalMat' naturally maps 10112 into the 'DiagonalMat' of the subMat, hence it is used directly from 10113 the subMat. However the offDiagMat looses some columns - and this is 10114 reconstructed with MatSetValues() 10115 10116 Level: advanced 10117 10118 Concepts: subcommunicator 10119 Concepts: submatrices 10120 10121 .seealso: MatCreateSubMatrices() 10122 @*/ 10123 PetscErrorCode MatGetMultiProcBlock(Mat mat, MPI_Comm subComm, MatReuse scall,Mat *subMat) 10124 { 10125 PetscErrorCode ierr; 10126 PetscMPIInt commsize,subCommSize; 10127 10128 PetscFunctionBegin; 10129 ierr = MPI_Comm_size(PetscObjectComm((PetscObject)mat),&commsize);CHKERRQ(ierr); 10130 ierr = MPI_Comm_size(subComm,&subCommSize);CHKERRQ(ierr); 10131 if (subCommSize > commsize) SETERRQ2(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_OUTOFRANGE,"CommSize %D < SubCommZize %D",commsize,subCommSize); 10132 10133 if (scall == MAT_REUSE_MATRIX && *subMat == mat) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix"); 10134 ierr = PetscLogEventBegin(MAT_GetMultiProcBlock,mat,0,0,0);CHKERRQ(ierr); 10135 ierr = (*mat->ops->getmultiprocblock)(mat,subComm,scall,subMat);CHKERRQ(ierr); 10136 ierr = PetscLogEventEnd(MAT_GetMultiProcBlock,mat,0,0,0);CHKERRQ(ierr); 10137 PetscFunctionReturn(0); 10138 } 10139 10140 /*@ 10141 MatGetLocalSubMatrix - Gets a reference to a submatrix specified in local numbering 10142 10143 Not Collective 10144 10145 Input Arguments: 10146 mat - matrix to extract local submatrix from 10147 isrow - local row indices for submatrix 10148 iscol - local column indices for submatrix 10149 10150 Output Arguments: 10151 submat - the submatrix 10152 10153 Level: intermediate 10154 10155 Notes: 10156 The submat should be returned with MatRestoreLocalSubMatrix(). 10157 10158 Depending on the format of mat, the returned submat may not implement MatMult(). Its communicator may be 10159 the same as mat, it may be PETSC_COMM_SELF, or some other subcomm of mat's. 10160 10161 The submat always implements MatSetValuesLocal(). If isrow and iscol have the same block size, then 10162 MatSetValuesBlockedLocal() will also be implemented. 10163 10164 The mat must have had a ISLocalToGlobalMapping provided to it with MatSetLocalToGlobalMapping(). Note that 10165 matrices obtained with DMCreateMat() generally already have the local to global mapping provided. 10166 10167 .seealso: MatRestoreLocalSubMatrix(), MatCreateLocalRef(), MatSetLocalToGlobalMapping() 10168 @*/ 10169 PetscErrorCode MatGetLocalSubMatrix(Mat mat,IS isrow,IS iscol,Mat *submat) 10170 { 10171 PetscErrorCode ierr; 10172 10173 PetscFunctionBegin; 10174 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10175 PetscValidHeaderSpecific(isrow,IS_CLASSID,2); 10176 PetscValidHeaderSpecific(iscol,IS_CLASSID,3); 10177 PetscCheckSameComm(isrow,2,iscol,3); 10178 PetscValidPointer(submat,4); 10179 if (!mat->rmap->mapping) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Matrix must have local to global mapping provided before this call"); 10180 10181 if (mat->ops->getlocalsubmatrix) { 10182 ierr = (*mat->ops->getlocalsubmatrix)(mat,isrow,iscol,submat);CHKERRQ(ierr); 10183 } else { 10184 ierr = MatCreateLocalRef(mat,isrow,iscol,submat);CHKERRQ(ierr); 10185 } 10186 PetscFunctionReturn(0); 10187 } 10188 10189 /*@ 10190 MatRestoreLocalSubMatrix - Restores a reference to a submatrix specified in local numbering 10191 10192 Not Collective 10193 10194 Input Arguments: 10195 mat - matrix to extract local submatrix from 10196 isrow - local row indices for submatrix 10197 iscol - local column indices for submatrix 10198 submat - the submatrix 10199 10200 Level: intermediate 10201 10202 .seealso: MatGetLocalSubMatrix() 10203 @*/ 10204 PetscErrorCode MatRestoreLocalSubMatrix(Mat mat,IS isrow,IS iscol,Mat *submat) 10205 { 10206 PetscErrorCode ierr; 10207 10208 PetscFunctionBegin; 10209 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10210 PetscValidHeaderSpecific(isrow,IS_CLASSID,2); 10211 PetscValidHeaderSpecific(iscol,IS_CLASSID,3); 10212 PetscCheckSameComm(isrow,2,iscol,3); 10213 PetscValidPointer(submat,4); 10214 if (*submat) { 10215 PetscValidHeaderSpecific(*submat,MAT_CLASSID,4); 10216 } 10217 10218 if (mat->ops->restorelocalsubmatrix) { 10219 ierr = (*mat->ops->restorelocalsubmatrix)(mat,isrow,iscol,submat);CHKERRQ(ierr); 10220 } else { 10221 ierr = MatDestroy(submat);CHKERRQ(ierr); 10222 } 10223 *submat = NULL; 10224 PetscFunctionReturn(0); 10225 } 10226 10227 /* --------------------------------------------------------*/ 10228 /*@ 10229 MatFindZeroDiagonals - Finds all the rows of a matrix that have zero or no diagonal entry in the matrix 10230 10231 Collective on Mat 10232 10233 Input Parameter: 10234 . mat - the matrix 10235 10236 Output Parameter: 10237 . is - if any rows have zero diagonals this contains the list of them 10238 10239 Level: developer 10240 10241 Concepts: matrix-vector product 10242 10243 .seealso: MatMultTranspose(), MatMultAdd(), MatMultTransposeAdd() 10244 @*/ 10245 PetscErrorCode MatFindZeroDiagonals(Mat mat,IS *is) 10246 { 10247 PetscErrorCode ierr; 10248 10249 PetscFunctionBegin; 10250 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10251 PetscValidType(mat,1); 10252 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 10253 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 10254 10255 if (!mat->ops->findzerodiagonals) { 10256 Vec diag; 10257 const PetscScalar *a; 10258 PetscInt *rows; 10259 PetscInt rStart, rEnd, r, nrow = 0; 10260 10261 ierr = MatCreateVecs(mat, &diag, NULL);CHKERRQ(ierr); 10262 ierr = MatGetDiagonal(mat, diag);CHKERRQ(ierr); 10263 ierr = MatGetOwnershipRange(mat, &rStart, &rEnd);CHKERRQ(ierr); 10264 ierr = VecGetArrayRead(diag, &a);CHKERRQ(ierr); 10265 for (r = 0; r < rEnd-rStart; ++r) if (a[r] == 0.0) ++nrow; 10266 ierr = PetscMalloc1(nrow, &rows);CHKERRQ(ierr); 10267 nrow = 0; 10268 for (r = 0; r < rEnd-rStart; ++r) if (a[r] == 0.0) rows[nrow++] = r+rStart; 10269 ierr = VecRestoreArrayRead(diag, &a);CHKERRQ(ierr); 10270 ierr = VecDestroy(&diag);CHKERRQ(ierr); 10271 ierr = ISCreateGeneral(PetscObjectComm((PetscObject) mat), nrow, rows, PETSC_OWN_POINTER, is);CHKERRQ(ierr); 10272 } else { 10273 ierr = (*mat->ops->findzerodiagonals)(mat, is);CHKERRQ(ierr); 10274 } 10275 PetscFunctionReturn(0); 10276 } 10277 10278 /*@ 10279 MatFindOffBlockDiagonalEntries - Finds all the rows of a matrix that have entries outside of the main diagonal block (defined by the matrix block size) 10280 10281 Collective on Mat 10282 10283 Input Parameter: 10284 . mat - the matrix 10285 10286 Output Parameter: 10287 . is - contains the list of rows with off block diagonal entries 10288 10289 Level: developer 10290 10291 Concepts: matrix-vector product 10292 10293 .seealso: MatMultTranspose(), MatMultAdd(), MatMultTransposeAdd() 10294 @*/ 10295 PetscErrorCode MatFindOffBlockDiagonalEntries(Mat mat,IS *is) 10296 { 10297 PetscErrorCode ierr; 10298 10299 PetscFunctionBegin; 10300 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10301 PetscValidType(mat,1); 10302 if (!mat->assembled) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 10303 if (mat->factortype) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 10304 10305 if (!mat->ops->findoffblockdiagonalentries) SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"This matrix type does not have a find off block diagonal entries defined"); 10306 ierr = (*mat->ops->findoffblockdiagonalentries)(mat,is);CHKERRQ(ierr); 10307 PetscFunctionReturn(0); 10308 } 10309 10310 /*@C 10311 MatInvertBlockDiagonal - Inverts the block diagonal entries. 10312 10313 Collective on Mat 10314 10315 Input Parameters: 10316 . mat - the matrix 10317 10318 Output Parameters: 10319 . values - the block inverses in column major order (FORTRAN-like) 10320 10321 Note: 10322 This routine is not available from Fortran. 10323 10324 Level: advanced 10325 @*/ 10326 PetscErrorCode MatInvertBlockDiagonal(Mat mat,const PetscScalar **values) 10327 { 10328 PetscErrorCode ierr; 10329 10330 PetscFunctionBegin; 10331 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10332 if (!mat->assembled) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for unassembled matrix"); 10333 if (mat->factortype) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONGSTATE,"Not for factored matrix"); 10334 if (!mat->ops->invertblockdiagonal) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_SUP,"Not supported"); 10335 ierr = (*mat->ops->invertblockdiagonal)(mat,values);CHKERRQ(ierr); 10336 PetscFunctionReturn(0); 10337 } 10338 10339 /*@C 10340 MatTransposeColoringDestroy - Destroys a coloring context for matrix product C=A*B^T that was created 10341 via MatTransposeColoringCreate(). 10342 10343 Collective on MatTransposeColoring 10344 10345 Input Parameter: 10346 . c - coloring context 10347 10348 Level: intermediate 10349 10350 .seealso: MatTransposeColoringCreate() 10351 @*/ 10352 PetscErrorCode MatTransposeColoringDestroy(MatTransposeColoring *c) 10353 { 10354 PetscErrorCode ierr; 10355 MatTransposeColoring matcolor=*c; 10356 10357 PetscFunctionBegin; 10358 if (!matcolor) PetscFunctionReturn(0); 10359 if (--((PetscObject)matcolor)->refct > 0) {matcolor = 0; PetscFunctionReturn(0);} 10360 10361 ierr = PetscFree3(matcolor->ncolumns,matcolor->nrows,matcolor->colorforrow);CHKERRQ(ierr); 10362 ierr = PetscFree(matcolor->rows);CHKERRQ(ierr); 10363 ierr = PetscFree(matcolor->den2sp);CHKERRQ(ierr); 10364 ierr = PetscFree(matcolor->colorforcol);CHKERRQ(ierr); 10365 ierr = PetscFree(matcolor->columns);CHKERRQ(ierr); 10366 if (matcolor->brows>0) { 10367 ierr = PetscFree(matcolor->lstart);CHKERRQ(ierr); 10368 } 10369 ierr = PetscHeaderDestroy(c);CHKERRQ(ierr); 10370 PetscFunctionReturn(0); 10371 } 10372 10373 /*@C 10374 MatTransColoringApplySpToDen - Given a symbolic matrix product C=A*B^T for which 10375 a MatTransposeColoring context has been created, computes a dense B^T by Apply 10376 MatTransposeColoring to sparse B. 10377 10378 Collective on MatTransposeColoring 10379 10380 Input Parameters: 10381 + B - sparse matrix B 10382 . Btdense - symbolic dense matrix B^T 10383 - coloring - coloring context created with MatTransposeColoringCreate() 10384 10385 Output Parameter: 10386 . Btdense - dense matrix B^T 10387 10388 Level: advanced 10389 10390 Notes: These are used internally for some implementations of MatRARt() 10391 10392 .seealso: MatTransposeColoringCreate(), MatTransposeColoringDestroy(), MatTransColoringApplyDenToSp() 10393 10394 .keywords: coloring 10395 @*/ 10396 PetscErrorCode MatTransColoringApplySpToDen(MatTransposeColoring coloring,Mat B,Mat Btdense) 10397 { 10398 PetscErrorCode ierr; 10399 10400 PetscFunctionBegin; 10401 PetscValidHeaderSpecific(B,MAT_CLASSID,1); 10402 PetscValidHeaderSpecific(Btdense,MAT_CLASSID,2); 10403 PetscValidHeaderSpecific(coloring,MAT_TRANSPOSECOLORING_CLASSID,3); 10404 10405 if (!B->ops->transcoloringapplysptoden) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Not supported for this matrix type %s",((PetscObject)B)->type_name); 10406 ierr = (B->ops->transcoloringapplysptoden)(coloring,B,Btdense);CHKERRQ(ierr); 10407 PetscFunctionReturn(0); 10408 } 10409 10410 /*@C 10411 MatTransColoringApplyDenToSp - Given a symbolic matrix product Csp=A*B^T for which 10412 a MatTransposeColoring context has been created and a dense matrix Cden=A*Btdense 10413 in which Btdens is obtained from MatTransColoringApplySpToDen(), recover sparse matrix 10414 Csp from Cden. 10415 10416 Collective on MatTransposeColoring 10417 10418 Input Parameters: 10419 + coloring - coloring context created with MatTransposeColoringCreate() 10420 - Cden - matrix product of a sparse matrix and a dense matrix Btdense 10421 10422 Output Parameter: 10423 . Csp - sparse matrix 10424 10425 Level: advanced 10426 10427 Notes: These are used internally for some implementations of MatRARt() 10428 10429 .seealso: MatTransposeColoringCreate(), MatTransposeColoringDestroy(), MatTransColoringApplySpToDen() 10430 10431 .keywords: coloring 10432 @*/ 10433 PetscErrorCode MatTransColoringApplyDenToSp(MatTransposeColoring matcoloring,Mat Cden,Mat Csp) 10434 { 10435 PetscErrorCode ierr; 10436 10437 PetscFunctionBegin; 10438 PetscValidHeaderSpecific(matcoloring,MAT_TRANSPOSECOLORING_CLASSID,1); 10439 PetscValidHeaderSpecific(Cden,MAT_CLASSID,2); 10440 PetscValidHeaderSpecific(Csp,MAT_CLASSID,3); 10441 10442 if (!Csp->ops->transcoloringapplydentosp) SETERRQ1(PETSC_COMM_SELF,PETSC_ERR_SUP,"Not supported for this matrix type %s",((PetscObject)Csp)->type_name); 10443 ierr = (Csp->ops->transcoloringapplydentosp)(matcoloring,Cden,Csp);CHKERRQ(ierr); 10444 PetscFunctionReturn(0); 10445 } 10446 10447 /*@C 10448 MatTransposeColoringCreate - Creates a matrix coloring context for matrix product C=A*B^T. 10449 10450 Collective on Mat 10451 10452 Input Parameters: 10453 + mat - the matrix product C 10454 - iscoloring - the coloring of the matrix; usually obtained with MatColoringCreate() or DMCreateColoring() 10455 10456 Output Parameter: 10457 . color - the new coloring context 10458 10459 Level: intermediate 10460 10461 .seealso: MatTransposeColoringDestroy(), MatTransColoringApplySpToDen(), 10462 MatTransColoringApplyDenToSp() 10463 @*/ 10464 PetscErrorCode MatTransposeColoringCreate(Mat mat,ISColoring iscoloring,MatTransposeColoring *color) 10465 { 10466 MatTransposeColoring c; 10467 MPI_Comm comm; 10468 PetscErrorCode ierr; 10469 10470 PetscFunctionBegin; 10471 ierr = PetscLogEventBegin(MAT_TransposeColoringCreate,mat,0,0,0);CHKERRQ(ierr); 10472 ierr = PetscObjectGetComm((PetscObject)mat,&comm);CHKERRQ(ierr); 10473 ierr = PetscHeaderCreate(c,MAT_TRANSPOSECOLORING_CLASSID,"MatTransposeColoring","Matrix product C=A*B^T via coloring","Mat",comm,MatTransposeColoringDestroy,NULL);CHKERRQ(ierr); 10474 10475 c->ctype = iscoloring->ctype; 10476 if (mat->ops->transposecoloringcreate) { 10477 ierr = (*mat->ops->transposecoloringcreate)(mat,iscoloring,c);CHKERRQ(ierr); 10478 } else SETERRQ(PetscObjectComm((PetscObject)mat),PETSC_ERR_SUP,"Code not yet written for this matrix type"); 10479 10480 *color = c; 10481 ierr = PetscLogEventEnd(MAT_TransposeColoringCreate,mat,0,0,0);CHKERRQ(ierr); 10482 PetscFunctionReturn(0); 10483 } 10484 10485 /*@ 10486 MatGetNonzeroState - Returns a 64 bit integer representing the current state of nonzeros in the matrix. If the 10487 matrix has had no new nonzero locations added to the matrix since the previous call then the value will be the 10488 same, otherwise it will be larger 10489 10490 Not Collective 10491 10492 Input Parameter: 10493 . A - the matrix 10494 10495 Output Parameter: 10496 . state - the current state 10497 10498 Notes: You can only compare states from two different calls to the SAME matrix, you cannot compare calls between 10499 different matrices 10500 10501 Level: intermediate 10502 10503 @*/ 10504 PetscErrorCode MatGetNonzeroState(Mat mat,PetscObjectState *state) 10505 { 10506 PetscFunctionBegin; 10507 PetscValidHeaderSpecific(mat,MAT_CLASSID,1); 10508 *state = mat->nonzerostate; 10509 PetscFunctionReturn(0); 10510 } 10511 10512 /*@ 10513 MatCreateMPIMatConcatenateSeqMat - Creates a single large PETSc matrix by concatenating sequential 10514 matrices from each processor 10515 10516 Collective on MPI_Comm 10517 10518 Input Parameters: 10519 + comm - the communicators the parallel matrix will live on 10520 . seqmat - the input sequential matrices 10521 . n - number of local columns (or PETSC_DECIDE) 10522 - reuse - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 10523 10524 Output Parameter: 10525 . mpimat - the parallel matrix generated 10526 10527 Level: advanced 10528 10529 Notes: The number of columns of the matrix in EACH processor MUST be the same. 10530 10531 @*/ 10532 PetscErrorCode MatCreateMPIMatConcatenateSeqMat(MPI_Comm comm,Mat seqmat,PetscInt n,MatReuse reuse,Mat *mpimat) 10533 { 10534 PetscErrorCode ierr; 10535 10536 PetscFunctionBegin; 10537 if (!seqmat->ops->creatempimatconcatenateseqmat) SETERRQ1(PetscObjectComm((PetscObject)seqmat),PETSC_ERR_SUP,"Mat type %s",((PetscObject)seqmat)->type_name); 10538 if (reuse == MAT_REUSE_MATRIX && seqmat == *mpimat) SETERRQ(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"MAT_REUSE_MATRIX means reuse the matrix passed in as the final argument, not the original matrix"); 10539 10540 ierr = PetscLogEventBegin(MAT_Merge,seqmat,0,0,0);CHKERRQ(ierr); 10541 ierr = (*seqmat->ops->creatempimatconcatenateseqmat)(comm,seqmat,n,reuse,mpimat);CHKERRQ(ierr); 10542 ierr = PetscLogEventEnd(MAT_Merge,seqmat,0,0,0);CHKERRQ(ierr); 10543 PetscFunctionReturn(0); 10544 } 10545 10546 /*@ 10547 MatSubdomainsCreateCoalesce - Creates index subdomains by coalescing adjacent 10548 ranks' ownership ranges. 10549 10550 Collective on A 10551 10552 Input Parameters: 10553 + A - the matrix to create subdomains from 10554 - N - requested number of subdomains 10555 10556 10557 Output Parameters: 10558 + n - number of subdomains resulting on this rank 10559 - iss - IS list with indices of subdomains on this rank 10560 10561 Level: advanced 10562 10563 Notes: number of subdomains must be smaller than the communicator size 10564 @*/ 10565 PetscErrorCode MatSubdomainsCreateCoalesce(Mat A,PetscInt N,PetscInt *n,IS *iss[]) 10566 { 10567 MPI_Comm comm,subcomm; 10568 PetscMPIInt size,rank,color; 10569 PetscInt rstart,rend,k; 10570 PetscErrorCode ierr; 10571 10572 PetscFunctionBegin; 10573 ierr = PetscObjectGetComm((PetscObject)A,&comm);CHKERRQ(ierr); 10574 ierr = MPI_Comm_size(comm,&size);CHKERRQ(ierr); 10575 ierr = MPI_Comm_rank(comm,&rank);CHKERRQ(ierr); 10576 if (N < 1 || N >= (PetscInt)size) SETERRQ2(PETSC_COMM_SELF,PETSC_ERR_ARG_WRONG,"number of subdomains must be > 0 and < %D, got N = %D",size,N); 10577 *n = 1; 10578 k = ((PetscInt)size)/N + ((PetscInt)size%N>0); /* There are up to k ranks to a color */ 10579 color = rank/k; 10580 ierr = MPI_Comm_split(comm,color,rank,&subcomm);CHKERRQ(ierr); 10581 ierr = PetscMalloc1(1,iss);CHKERRQ(ierr); 10582 ierr = MatGetOwnershipRange(A,&rstart,&rend);CHKERRQ(ierr); 10583 ierr = ISCreateStride(subcomm,rend-rstart,rstart,1,iss[0]);CHKERRQ(ierr); 10584 ierr = MPI_Comm_free(&subcomm);CHKERRQ(ierr); 10585 PetscFunctionReturn(0); 10586 } 10587 10588 /*@ 10589 MatGalerkin - Constructs the coarse grid problem via Galerkin projection. 10590 10591 If the interpolation and restriction operators are the same, uses MatPtAP. 10592 If they are not the same, use MatMatMatMult. 10593 10594 Once the coarse grid problem is constructed, correct for interpolation operators 10595 that are not of full rank, which can legitimately happen in the case of non-nested 10596 geometric multigrid. 10597 10598 Input Parameters: 10599 + restrct - restriction operator 10600 . dA - fine grid matrix 10601 . interpolate - interpolation operator 10602 . reuse - either MAT_INITIAL_MATRIX or MAT_REUSE_MATRIX 10603 - fill - expected fill, use PETSC_DEFAULT if you do not have a good estimate 10604 10605 Output Parameters: 10606 . A - the Galerkin coarse matrix 10607 10608 Options Database Key: 10609 . -pc_mg_galerkin <both,pmat,mat,none> 10610 10611 Level: developer 10612 10613 .keywords: MG, multigrid, Galerkin 10614 10615 .seealso: MatPtAP(), MatMatMatMult() 10616 @*/ 10617 PetscErrorCode MatGalerkin(Mat restrct, Mat dA, Mat interpolate, MatReuse reuse, PetscReal fill, Mat *A) 10618 { 10619 PetscErrorCode ierr; 10620 IS zerorows; 10621 Vec diag; 10622 10623 PetscFunctionBegin; 10624 if (reuse == MAT_INPLACE_MATRIX) SETERRQ(PetscObjectComm((PetscObject)A),PETSC_ERR_SUP,"Inplace product not supported"); 10625 /* Construct the coarse grid matrix */ 10626 if (interpolate == restrct) { 10627 ierr = MatPtAP(dA,interpolate,reuse,fill,A);CHKERRQ(ierr); 10628 } else { 10629 ierr = MatMatMatMult(restrct,dA,interpolate,reuse,fill,A);CHKERRQ(ierr); 10630 } 10631 10632 /* If the interpolation matrix is not of full rank, A will have zero rows. 10633 This can legitimately happen in the case of non-nested geometric multigrid. 10634 In that event, we set the rows of the matrix to the rows of the identity, 10635 ignoring the equations (as the RHS will also be zero). */ 10636 10637 ierr = MatFindZeroRows(*A, &zerorows);CHKERRQ(ierr); 10638 10639 if (zerorows != NULL) { /* if there are any zero rows */ 10640 ierr = MatCreateVecs(*A, &diag, NULL);CHKERRQ(ierr); 10641 ierr = MatGetDiagonal(*A, diag);CHKERRQ(ierr); 10642 ierr = VecISSet(diag, zerorows, 1.0);CHKERRQ(ierr); 10643 ierr = MatDiagonalSet(*A, diag, INSERT_VALUES);CHKERRQ(ierr); 10644 ierr = VecDestroy(&diag);CHKERRQ(ierr); 10645 ierr = ISDestroy(&zerorows);CHKERRQ(ierr); 10646 } 10647 PetscFunctionReturn(0); 10648 } 10649