Reference documentation for deal.II version 9.3.3
|
#include <deal.II/lac/petsc_precondition.h>
Classes | |
struct | AdditionalData |
Public Member Functions | |
PreconditionParaSails ()=default | |
PreconditionParaSails (const MatrixBase &matrix, const AdditionalData &additional_data=AdditionalData()) | |
void | initialize (const MatrixBase &matrix, const AdditionalData &additional_data=AdditionalData()) |
void | clear () |
void | vmult (VectorBase &dst, const VectorBase &src) const |
void | Tvmult (VectorBase &dst, const VectorBase &src) const |
const PC & | get_pc () const |
Protected Member Functions | |
void | create_pc () |
operator Mat () const | |
Protected Attributes | |
PC | pc |
Mat | matrix |
Private Attributes | |
AdditionalData | additional_data |
Subscriptor functionality | |
Classes derived from Subscriptor provide a facility to subscribe to this object. This is mostly used by the SmartPointer class. | |
std::atomic< unsigned int > | counter |
std::map< std::string, unsigned int > | counter_map |
std::vector< std::atomic< bool > * > | validity_pointers |
const std::type_info * | object_info |
void | subscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
void | unsubscribe (std::atomic< bool > *const validity, const std::string &identifier="") const |
unsigned int | n_subscriptions () const |
template<typename StreamType > | |
void | list_subscribers (StreamType &stream) const |
void | list_subscribers () const |
template<class Archive > | |
void | serialize (Archive &ar, const unsigned int version) |
using | map_value_type = decltype(counter_map)::value_type |
using | map_iterator = decltype(counter_map)::iterator |
static std::mutex | mutex |
static ::ExceptionBase & | ExcInUse (int arg1, std::string arg2, std::string arg3) |
static ::ExceptionBase & | ExcNoSubscriber (std::string arg1, std::string arg2) |
void | check_no_subscribers () const noexcept |
A class that implements the interface to use the ParaSails sparse approximate inverse preconditioner from the HYPRE suite. Note that PETSc has to be configured with HYPRE (e.g. with --download-hypre=1).
ParaSails uses least-squares minimization to compute a sparse approximate inverse. The sparsity pattern used is the pattern of a power of a sparsified matrix. ParaSails also uses a post-filtering technique to reduce the cost of applying the preconditioner.
ParaSails solves symmetric positive definite (SPD) problems using a factorized SPD preconditioner and can also solve general (nonsymmetric and/or indefinite) problems with a nonfactorized preconditioner. The problem type has to be set in AdditionalData
.
The preconditioner does support parallel distributed computations.
Definition at line 874 of file petsc_precondition.h.
|
default |
Empty Constructor. You need to call initialize() before using this object.
PETScWrappers::PreconditionParaSails::PreconditionParaSails | ( | const MatrixBase & | matrix, |
const AdditionalData & | additional_data = AdditionalData() |
||
) |
Constructor. Take the matrix which is used to form the preconditioner, and additional flags if there are any.
Definition at line 721 of file petsc_precondition.cc.
void PETScWrappers::PreconditionParaSails::initialize | ( | const MatrixBase & | matrix, |
const AdditionalData & | additional_data = AdditionalData() |
||
) |
Initialize the preconditioner object and calculate all data that is necessary for applying it in a solver. This function is automatically called when calling the constructor with the same arguments and is only used if you create the preconditioner without arguments.
Definition at line 730 of file petsc_precondition.cc.
|
inherited |
Destroys the preconditioner, leaving an object like just after having called the constructor.
Definition at line 52 of file petsc_precondition.cc.
|
inherited |
Apply the preconditioner once to the given src vector.
Definition at line 66 of file petsc_precondition.cc.
|
inherited |
Apply the transpose preconditioner once to the given src vector.
Definition at line 76 of file petsc_precondition.cc.
|
inherited |
Give access to the underlying PETSc object.
Definition at line 113 of file petsc_precondition.cc.
|
protectedinherited |
Internal function to create the PETSc preconditioner object. Fails if called twice.
Definition at line 86 of file petsc_precondition.cc.
|
protectedinherited |
Conversion operator to get a representation of the matrix that represents this preconditioner. We use this inside the actual solver, where we need to pass this matrix to the PETSc solvers.
Definition at line 119 of file petsc_precondition.cc.
|
private |
Store a copy of the flags for this particular preconditioner.
Definition at line 974 of file petsc_precondition.h.
|
protectedinherited |
the PETSc preconditioner object
Definition at line 101 of file petsc_precondition.h.
|
protectedinherited |
A pointer to the matrix that acts as a preconditioner.
Definition at line 106 of file petsc_precondition.h.