ILU(k) smoother. More...
Classes | |
| struct | params |
| Relaxation parameters. More... | |
| struct | nonzero |
| struct | sparse_vector |
Public Types | |
| typedef Backend::value_type | value_type |
| typedef Backend::col_type | col_type |
| typedef Backend::ptr_type | ptr_type |
| typedef Backend::matrix | matrix |
| typedef Backend::matrix_diagonal | matrix_diagonal |
| typedef Backend::vector | vector |
| typedef math::scalar_of< value_type >::type | scalar_type |
| typedef Impl::ILUSolver< Backend > | ilu_solve |
Public Member Functions | |
| template<class Matrix> | |
| ILUKRelaxation (const Matrix &A, const params &prm, const typename Backend::params &bprm) | |
| Constructs smoother for the system matrix. | |
| template<class Matrix, class VectorRHS, class VectorX, class VectorTMP> | |
| void | apply_pre (const Matrix &A, const VectorRHS &rhs, VectorX &x, VectorTMP &tmp) const |
| Apply pre-relaxation. | |
| template<class Matrix, class VectorRHS, class VectorX, class VectorTMP> | |
| void | apply_post (const Matrix &A, const VectorRHS &rhs, VectorX &x, VectorTMP &tmp) const |
| Apply post-relaxation. | |
| template<class Matrix, class VectorRHS, class VectorX> | |
| void | apply (const Matrix &, const VectorRHS &rhs, VectorX &x) const |
| size_t | bytes () const |
| Memory used in bytes. | |
Public Attributes | |
| struct Arcane::Alina::ILUKRelaxation::params | prm |
Private Attributes | |
| std::shared_ptr< ilu_solve > | ilu |
ILU(k) smoother.
Definition at line 1042 of file Relaxation.h.
| typedef Backend::col_type Arcane::Alina::ILUKRelaxation< Backend >::col_type |
Definition at line 1046 of file Relaxation.h.
| typedef Impl::ILUSolver<Backend> Arcane::Alina::ILUKRelaxation< Backend >::ilu_solve |
Definition at line 1054 of file Relaxation.h.
| typedef Backend::matrix Arcane::Alina::ILUKRelaxation< Backend >::matrix |
Definition at line 1048 of file Relaxation.h.
| typedef Backend::matrix_diagonal Arcane::Alina::ILUKRelaxation< Backend >::matrix_diagonal |
Definition at line 1049 of file Relaxation.h.
| typedef Backend::ptr_type Arcane::Alina::ILUKRelaxation< Backend >::ptr_type |
Definition at line 1047 of file Relaxation.h.
| typedef math::scalar_of<value_type>::type Arcane::Alina::ILUKRelaxation< Backend >::scalar_type |
Definition at line 1052 of file Relaxation.h.
| typedef Backend::value_type Arcane::Alina::ILUKRelaxation< Backend >::value_type |
Definition at line 1045 of file Relaxation.h.
| typedef Backend::vector Arcane::Alina::ILUKRelaxation< Backend >::vector |
Definition at line 1050 of file Relaxation.h.
|
inline |
Constructs smoother for the system matrix.
| A | The system matrix. |
| prm | Relaxation parameters. |
| backend_prm | Backend parameters. |
Definition at line 1091 of file Relaxation.h.
|
inline |
Definition at line 1186 of file Relaxation.h.
|
inline |
Apply post-relaxation.
| A | System matrix. |
| rhs | Right-hand side. |
| x | Solution vector. |
| tmp | Scratch vector. |
| prm | Relaxation parameters. |
Definition at line 1178 of file Relaxation.h.
|
inline |
Apply pre-relaxation.
| A | System matrix. |
| rhs | Right-hand side. |
| x | Solution vector. |
| tmp | Scratch vector. |
| prm | Relaxation parameters. |
Definition at line 1169 of file Relaxation.h.
|
inlinevirtual |
Memory used in bytes.
Implements Arcane::Alina::RelaxationBase.
Definition at line 1192 of file Relaxation.h.
|
private |
Definition at line 1199 of file Relaxation.h.