HermesCommon
3.0
|
Encapsulation of PARALUTION iterative linear solver. More...
#include <paralution_solver.h>
Public Member Functions | |
IterativeParalutionLinearMatrixSolver () | |
IterativeParalutionLinearMatrixSolver (ParalutionMatrix< Scalar > *m, ParalutionVector< Scalar > *rhs) | |
void | set_solver_type (IterSolverType iterSolverType) |
virtual void | init_internal_solver () |
Set internal solver for the current solution. | |
void | free () |
Free this instance. | |
virtual void | set_precond (Precond< Scalar > *pc) |
Set preconditioner. | |
![]() | |
virtual void | solve (Scalar *initial_guess) |
virtual void | solve () |
virtual int | get_num_iters () |
Get number of iterations. | |
virtual double | get_residual_norm () |
Get the residual value. | |
virtual int | get_matrix_size () |
Utility. | |
![]() | |
LoopSolver (SparseMatrix< Scalar > *matrix, Vector< Scalar > *rhs) | |
virtual void | set_tolerance (double tol) |
virtual void | set_tolerance (double tolerance, LoopSolverToleranceType toleranceType) |
virtual void | set_max_iters (int iters) |
![]() | |
LinearMatrixSolver (SparseMatrix< Scalar > *matrix, Hermes::Algebra::Vector< Scalar > *rhs) | |
DirectSolver< Scalar > * | as_DirectSolver () const |
LoopSolver< Scalar > * | as_LoopSolver () const |
IterSolver< Scalar > * | as_IterSolver () const |
AMGSolver< Scalar > * | as_AMGSolver () const |
Scalar * | get_sln_vector () |
double | get_time () |
virtual MatrixStructureReuseScheme | get_used_reuse_scheme () const |
Get factorization scheme. | |
virtual void | set_reuse_scheme (MatrixStructureReuseScheme reuse_scheme) |
virtual void | set_reuse_scheme () |
Set factorization scheme to default. | |
virtual void | use_node_wise_ordering (unsigned int num_pdes) |
Set matrix ordering in the case of a system of PDEs. | |
virtual void | use_equations_wise_ordering () |
SparseMatrix< Scalar > * | get_matrix () |
Vector< Scalar > * | get_rhs () |
![]() | |
Loggable (bool verbose_output=false, callbackFn verbose_callback=NULL, bool add_newline=true) | |
void | set_file_output_only (bool onOff) |
void | set_timestamps (bool onOff) |
Sets the addition of a time stamp on each line in the log file. By default it is on. | |
void | set_erase_on_beginning (bool onOff) |
Sets the logFile being always erased before logging. | |
void | set_logFile_name (const char *filename) |
void | set_logFile_name (std::string filename) |
void | info (const char *msg,...) const |
void | info_if (bool cond, const char *msg,...) const |
void | warn (const char *msg,...) const |
void | warn_if (bool cond, const char *msg,...) const |
void | error (const char *msg,...) const |
void | error_if (bool cond, const char *msg,...) const |
virtual void | set_verbose_output (bool to_set) |
bool | get_verbose_output () const |
Returns the current value of verbose_output;. | |
virtual void | set_verbose_callback (callbackFn callback) |
callbackFn | get_verbose_callback () const |
Returns the current value of verbose_callback;. | |
![]() | |
TimeMeasurable (const char *name=nullptr) | |
Constructs internal structures and starts measuring. | |
const TimeMeasurable & | reset () |
Resets accumulated time. | |
const TimeMeasurable & | tick_reset () |
Starts a new_ period and resets accumulated time. | |
const TimeMeasurable & | tick (TimeMeasurable::TimerPeriodTickType type=HERMES_ACCUMULATE) |
Starts/ends a new_ period. | |
const std::string & | name () const |
Returns a name of the time period if any. | |
double | accumulated () const |
Returns accumulated time (in seconds). | |
std::string | accumulated_str () const |
Returns accumulated time in human readable form. | |
double | last () const |
Returns last measured period (in seconds). More... | |
std::string | last_str () const |
Returns last measured period in human readable form. | |
![]() | |
IterSolver (SparseMatrix< Scalar > *matrix, Vector< Scalar > *rhs) | |
void | set_solver_type (IterSolverType iterSolverType) |
Static Public Member Functions | |
static paralution::IterativeLinearSolver < paralution::LocalMatrix < Scalar > , paralution::LocalVector < Scalar >, Scalar > * | return_paralutionSolver (IterSolverType type) |
![]() | |
static void | set_static_logFile_name (const char *filename) |
static void | set_static_logFile_name (std::string filename) |
Additional Inherited Members | |
![]() | |
enum | TimerPeriodTickType { HERMES_ACCUMULATE, HERMES_SKIP } |
Tick type. Used by the class Hermes::TimePeriod. More... | |
![]() | |
char * | logFileName |
Logfile name. | |
![]() | |
static char * | staticLogFileName = nullptr |
![]() | |
AbstractParalutionLinearMatrixSolver () | |
AbstractParalutionLinearMatrixSolver (ParalutionMatrix< Scalar > *m, ParalutionVector< Scalar > *rhs) | |
void | reset_internal_solver () |
Internal solver is not reusable and will have to be re-created. | |
![]() | |
void | hermes_fwrite (const void *ptr, size_t size, size_t nitems, FILE *stream) const |
void | hermes_fread (void *ptr, size_t size, size_t nitems, FILE *stream) const |
![]() | |
ParalutionMatrix< Scalar > * | matrix |
Matrix to solve. | |
ParalutionVector< Scalar > * | rhs |
Right hand side vector. | |
int | num_iters |
double | final_residual |
paralution::IterativeLinearSolver < paralution::LocalMatrix < Scalar > , paralution::LocalVector < Scalar >, Scalar > * | paralutionSolver |
Internal solver. | |
![]() | |
int | max_iters |
Maximum number of iterations. | |
double | tolerance |
Convergence tolerance. | |
LoopSolverToleranceType | toleranceType |
![]() | |
MatrixStructureReuseScheme | reuse_scheme |
Factorization scheme. | |
SparseMatrix< Scalar > * | general_matrix |
Vector< Scalar > * | general_rhs |
Scalar * | sln |
Solution vector. More... | |
double | time |
unsigned int | n_eq |
Number of equations in a system of PDEs. | |
bool | node_wise_ordering |
![]() | |
bool | precond_yes |
Whether the solver is preconditioned. | |
IterSolverType | iterSolverType |
Encapsulation of PARALUTION iterative linear solver.
Definition at line 217 of file paralution_solver.h.
Hermes::Solvers::IterativeParalutionLinearMatrixSolver< Scalar >::IterativeParalutionLinearMatrixSolver | ( | ) |
Constructor of Iterative PARALUTION solver.
[in] | m | pointer to matrix |
[in] | rhs | pointer to right hand side vector |
Definition at line 275 of file paralution_solver.cpp.
void Hermes::Solvers::IterativeParalutionLinearMatrixSolver< Scalar >::set_solver_type | ( | IterSolverType | iterSolverType | ) |
Set current solver type. This destroys the current solver (NOT the matrix, and rhs).
Definition at line 308 of file paralution_solver.cpp.