Classes | |
| struct | params |
| Relaxation parameters. More... | |
| 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> | |
| ILUTRelaxation (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::ILUTRelaxation::params | prm |
Private Types | |
| typedef BuiltinBackend< value_type, col_type, ptr_type >::matrix | build_matrix |
Private Attributes | |
| std::shared_ptr< ilu_solve > | ilu |
| Backend | Backend for temporary structures allocation. |
Definition at line 1499 of file Relaxation.h.
|
private |
Definition at line 1666 of file Relaxation.h.
| typedef Backend::col_type Arcane::Alina::ILUTRelaxation< Backend >::col_type |
Definition at line 1503 of file Relaxation.h.
| typedef Impl::ILUSolver<Backend> Arcane::Alina::ILUTRelaxation< Backend >::ilu_solve |
Definition at line 1511 of file Relaxation.h.
| typedef Backend::matrix Arcane::Alina::ILUTRelaxation< Backend >::matrix |
Definition at line 1505 of file Relaxation.h.
| typedef Backend::matrix_diagonal Arcane::Alina::ILUTRelaxation< Backend >::matrix_diagonal |
Definition at line 1506 of file Relaxation.h.
| typedef Backend::ptr_type Arcane::Alina::ILUTRelaxation< Backend >::ptr_type |
Definition at line 1504 of file Relaxation.h.
| typedef math::scalar_of<value_type>::type Arcane::Alina::ILUTRelaxation< Backend >::scalar_type |
Definition at line 1509 of file Relaxation.h.
| typedef Backend::value_type Arcane::Alina::ILUTRelaxation< Backend >::value_type |
Definition at line 1502 of file Relaxation.h.
| typedef Backend::vector Arcane::Alina::ILUTRelaxation< Backend >::vector |
Definition at line 1507 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 1551 of file Relaxation.h.
|
inline |
Definition at line 1653 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 1645 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 1636 of file Relaxation.h.
|
inlinevirtual |
Memory used in bytes.
Implements Arcane::Alina::RelaxationBase.
Definition at line 1659 of file Relaxation.h.
|
private |
Definition at line 1667 of file Relaxation.h.