Class documentation of Concepts

Loading...
Searching...
No Matches

#include <mumps.hh>

Inheritance diagram for concepts::Mumps< F >:
concepts::VecOperator< F > concepts::Operator< F > concepts::OutputOperator

Public Types

typedef Realtype< F >::type r_type
 Real type of data type.
 
typedef Cmplxtype< F >::type c_type
 Real type of data type.
 
typedeftype
 Type of data, e.g. matrix entries.
 

Public Member Functions

 Mumps (const Operator< F > &A, const int rank=-1, const int comm=-987654)
 
 Mumps (const Operator< F > &A, const bool symmetric, const int rank=-1, const int comm=-987654)
 
 Mumps (const int rank, const int comm=-987654)
 
virtual ~Mumps ()
 
virtual void show_messages ()
 
virtual void hide_messages ()
 
virtual void apply_ (const Vector< F > &fncY, Vector< F > &fncX)
 
virtual void apply_ ()
 
virtual void operator() (const Function< r_type > &fncY, Function< F > &fncX)
 
virtual void operator() (const Function< c_type > &fncY, Function< c_type > &fncX)
 
virtual void operator() (const Vector< r_type > &fncY, Vector< F > &fncX)
 
virtual void operator() (const Vector< c_type > &fncY, Vector< c_type > &fncX)
 
void operator() (const Matrix< r_type > &mX, Matrix< F > &mY)
 Application method to real matrices. Calls function apply()
 
void operator() (const Matrix< c_type > &mX, Matrix< c_type > &mY)
 Application method to complex matrices. Calls apply_()
 
void operator() ()
 Application method without second argument. Used for parallel solvers.
 
virtual void operator() (const Function< r_type > &fncY, Function< F > &fncX)
 
virtual const uint dimX () const
 
virtual const uint dimY () const
 

Protected Member Functions

virtual std::ostream & info (std::ostream &) const
 Returns information in an output stream.
 

Protected Attributes

uint dimX_
 Dimension of image space and the source space.
 
uint dimY_
 

Detailed Description

template<class F>
class concepts::Mumps< F >

MUMPS : MUltifrontal Massively Parallel sparse direct Solver

MUMPS is a general purpose library for the direct solution of large, sparse, nonsymmetric systems of linear equations on high perormances machines, for both real and complex matrices. The library routines will perform an partial factorization and Schur complement matrix (centralized or 2D block-cyclic).

MUMPS offers different ordering options for a column permutation $ P_c $.

MUMPS has also parallel implementation.

Warning
If MUMPS was compiled with MPI, then Concepts should be compiled with MPI as well (even if using one single node during the execution). As well, the C++ main function code should start with
MPI::Init(argc, argv);
Set< F > makeSet(uint n, const F &first,...)
Definition set.hh:320
and end with
MPI::Finalize();
return 0;
and the python code should start with
from mpi4py import MPI
Author
Patrick Amestoy
Alfredo Buttari
Abdou Guermouche
Jean-Yves L'Excellent
Bora Ucar
See also
homepage of MUMPS
P.R. Amestoy, I.S. Duff and J.-Y. L'Excellent, Multifrontal parallel distributed symmetric and unsymmetric solvers.Revised version appeared in Comput. Methods in Appl. Mech. Eng., 184, 501-520 (2000).
Examples
BGT_0.cc, elasticity2D_tutorial.cc, exactDtN.cc, and inhomDirichletBCsLagrange.cc.

Definition at line 72 of file mumps.hh.

Member Typedef Documentation

◆ c_type

template<class F >
typedef Cmplxtype<F>::type concepts::VecOperator< F >::c_type
inherited

Real type of data type.

Definition at line 120 of file compositions.hh.

◆ r_type

template<class F >
typedef Realtype<F>::type concepts::VecOperator< F >::r_type
inherited

Real type of data type.

Definition at line 118 of file compositions.hh.

◆ type

template<class F >
typedef F concepts::Operator< F >::type
inherited

Type of data, e.g. matrix entries.

Definition at line 45 of file compositions.hh.

Constructor & Destructor Documentation

◆ Mumps() [1/3]

template<class F >
concepts::Mumps< F >::Mumps ( const Operator< F > &  A,
const int  rank = -1,
const int  comm = -987654 
)

Constructor

Parameters
AOperator which should be inverted. Everything which is needed from A is copied in the constructor.
rankCurrent processor rank. This parameter can be avoided when using sequential version of MUMPS. if rank is equal to -1 or if rank is not provided, we assume that MUMPS is called as in sequential (only the current processor is involved)

◆ Mumps() [2/3]

template<class F >
concepts::Mumps< F >::Mumps ( const Operator< F > &  A,
const bool  symmetric,
const int  rank = -1,
const int  comm = -987654 
)

Constructor

Parameters
AOperator which should be inverted. Everything which is needed from A is copied in the constructor.
symmetricis a flag indicating if the operator A is symmetric
rankCurrent processor rank. This parameter can be avoided when using sequential version of MUMPS. if rank is equal to -1 or if rank is not provided, we assume that MUMPS is called as in sequential (only the current processor is involved)

◆ Mumps() [3/3]

template<class F >
concepts::Mumps< F >::Mumps ( const int  rank,
const int  comm = -987654 
)

Empty constructor for the parallel version

Parameters
rankCurrent processor rank.

◆ ~Mumps()

template<class F >
virtual concepts::Mumps< F >::~Mumps ( )
virtual

Destructor

Member Function Documentation

◆ apply_() [1/2]

template<class F >
virtual void concepts::Mumps< F >::apply_ ( )
virtual

Intrinsic application method without argument

Implements concepts::VecOperator< F >.

◆ apply_() [2/2]

template<class F >
virtual void concepts::Mumps< F >::apply_ ( const Vector< F > &  fncY,
Vector< F > &  fncX 
)
virtual

Intrinsic application method, i.e. real Operator and real Vector or complex Operator and real Vector.

Implements concepts::VecOperator< F >.

◆ dimX()

template<class F >
virtual const uint concepts::Operator< F >::dimX ( ) const
inlinevirtualinherited

Returns the size of the image space of the operator (number of rows of the corresponding matrix)

Examples
hpFEM2d-simple.cc, hpFEM2d.cc, and matfileTutorial.cc.

Definition at line 93 of file compositions.hh.

◆ dimY()

template<class F >
virtual const uint concepts::Operator< F >::dimY ( ) const
inlinevirtualinherited

Returns the size of the source space of the operator (number of columns of the corresponding matrix)

Examples
matfileTutorial.cc.

Definition at line 98 of file compositions.hh.

◆ info()

template<class F >
virtual std::ostream & concepts::Mumps< F >::info ( std::ostream &  os) const
protectedvirtual

Returns information in an output stream.

Reimplemented from concepts::VecOperator< F >.

◆ operator()() [1/5]

template<class F >
void concepts::VecOperator< F >::operator() ( )
virtualinherited

Application method without second argument. Used for parallel solvers.

Reimplemented from concepts::Operator< F >.

◆ operator()() [2/5]

template<class F >
virtual void concepts::VecOperator< F >::operator() ( const Function< c_type > &  fncY,
Function< c_type > &  fncX 
)
virtualinherited

Application operator for complex function fncY.

Computes fncX = A(fncY) where A is this operator. fncX becomes complex.

In derived classes its enough to implement the operator() for complex Operator's. If a real counterpart is not implemented, the function fncY is splitted into real and imaginary part and the application operator for real functions is called for each. Then the result is combined.

If in a derived class the operator() for complex Operator's is not implemented, a exception is thrown from here.

Reimplemented from concepts::Operator< F >.

◆ operator()() [3/5]

template<class F >
virtual void concepts::Operator< F >::operator() ( const Function< r_type > &  fncY,
Function< F > &  fncX 
)
virtualinherited

Application operator for real function fncY.

Computes fncX = A(fncY) where A is this operator.

fncX becomes the type of the operator, for real data it becomes real, for complex data it becomes complex.

In derived classes its enough to implement the operator() for real Operator's. If a complex counterpart is not implemented, the function fncY is transformed to a complex function and then the application operator for complex functions is called.

If in a derived class the operator() for real Operator's is not implemented, a exception is thrown from here.

Reimplemented in aglowav::C2W< F >, aglowav2::C2W< F >, aglowav::W2C< F >, aglowav2::W2C< F >, aglowav::C2_tl2< F >, aglowav::C2tl2< F >, aglowav::CGt2< F >, aglowav::ComposeN< F >, aglowav2::Operator00< F >, bem::D< F >, bem::D_1< F >, concepts::TrivExtendRestrict< F >, sparseqr::GivensRotations< F >, vectorial::BlockOperator< F >, concepts::TrivExtendRestrict< Real >, sparseqr::GivensRotations< Real >, concepts::AfterIteration< F >, concepts::Compose< F, H >, concepts::DDSolver< F, G >, concepts::Multiple< F >, concepts::LiCoI< F >, concepts::LiCo< F >, concepts::DenseMatrix< F >, concepts::DiagonalMatrix< F >, concepts::Permutation< F >, concepts::Matrix< F >, concepts::Matrix< F::type >, and concepts::DiagonalSolver< F >.

◆ operator()() [4/5]

template<class F >
virtual void concepts::VecOperator< F >::operator() ( const Vector< c_type > &  fncY,
Vector< c_type > &  fncX 
)
virtualinherited

Application operator for complex function fncY.

Computes fncX = A(fncY) where A is this operator. fncX becomes complex.

In derived classes its enough to implement the operator() for complex Operator's. If a real counterpart is not implemented, the vector fncY is splitted into real and imaginary part and the application operator for real vectors is called for each. Then the result is combined

If in a derived class the operator() for complex Operator's i not implemented, a exception is thrown from here.

◆ operator()() [5/5]

template<class F >
virtual void concepts::VecOperator< F >::operator() ( const Vector< r_type > &  fncY,
Vector< F > &  fncX 
)
virtualinherited

Application operator for real vector fncY.

Computes fncX = A(fncY) where A is this operator.

Type of fncX becomes that of the operator, for real data it becomes real, for complex data it becomes complex.

In derived classes its enough to implement the operator() for real Operator's. If a complex counterpart is not implemented, the vector fncY is transformed to a complex vector and then the application for complex vectors is called.

If in a derived class the operator() for real Operator's is not implemented, a exception is thrown from here.

◆ show_messages()

template<class F >
virtual void concepts::Mumps< F >::show_messages ( )
virtual

Reimplemented from concepts::Operator< F >.

Member Data Documentation

◆ dimX_

template<class F >
uint concepts::Operator< F >::dimX_
protectedinherited

Dimension of image space and the source space.

Definition at line 104 of file compositions.hh.

◆ dimY_

template<class F >
uint concepts::Operator< F >::dimY_
protectedinherited

Definition at line 104 of file compositions.hh.


The documentation for this class was generated from the following file: