44#ifndef AMESOS2_UMFPACK_DECL_HPP
45#define AMESOS2_UMFPACK_DECL_HPP
48#include "Amesos2_SolverCore.hpp"
49#include "Amesos2_Umfpack_FunctionMap.hpp"
61template <
class Matrix,
77 typedef typename super_type::scalar_type scalar_type;
78 typedef typename super_type::local_ordinal_type local_ordinal_type;
79 typedef typename super_type::global_ordinal_type global_ordinal_type;
80 typedef typename super_type::global_size_type global_size_type;
89 typedef typename type_map::type umfpack_type;
90 typedef typename type_map::magnitude_type magnitude_type;
103 Umfpack(Teuchos::RCP<const Matrix> A,
104 Teuchos::RCP<Vector> X,
105 Teuchos::RCP<const Vector> B);
154 int
solve_impl(const Teuchos::Ptr<MultiVecAdapter<Vector> > X,
155 const Teuchos::Ptr<const MultiVecAdapter<Vector> > B) const;
166 void setParameters_impl(
167 const Teuchos::RCP<Teuchos::ParameterList> & parameterList );
190 mutable struct UMFPACKData {
196 double Info[UMFPACK_INFO];
197 double Control[UMFPACK_CONTROL];
209 Teuchos::Array<umfpack_type>
xvals_;
int ldx_;
211 Teuchos::Array<umfpack_type>
bvals_;
int ldb_;
220#ifdef HAVE_TEUCHOS_COMPLEX
221 typedef Meta::make_list4<float,
227 typedef Meta::make_list2<float,
Provides access to interesting solver traits.
Amesos2::SolverCore: A templated interface for interaction with third-party direct sparse solvers.
Definition: Amesos2_SolverCore_decl.hpp:106
Interface to Amesos2 solver objects.
Definition: Amesos2_Solver_decl.hpp:78
Amesos2 interface to the Umfpack package.
Definition: Amesos2_Umfpack_decl.hpp:64
bool loadA_impl(EPhase current_phase)
Reads matrix data into internal structures.
Definition: Amesos2_Umfpack_def.hpp:289
Teuchos::Array< int > colptr_
Stores the row indices of the nonzero entries.
Definition: Amesos2_Umfpack_decl.hpp:206
Teuchos::Array< int > rowind_
Stores the location in Ai_ and Aval_ that starts row j.
Definition: Amesos2_Umfpack_decl.hpp:204
static const char * name
Name of this solver interface.
Definition: Amesos2_Umfpack_decl.hpp:71
int numericFactorization_impl()
Umfpack specific numeric factorization.
Definition: Amesos2_Umfpack_def.hpp:121
Teuchos::Array< umfpack_type > bvals_
Persisting 1D store for B.
Definition: Amesos2_Umfpack_decl.hpp:211
int solve_impl(const Teuchos::Ptr< MultiVecAdapter< Vector > > X, const Teuchos::Ptr< const MultiVecAdapter< Vector > > B) const
Umfpack specific solve.
Definition: Amesos2_Umfpack_def.hpp:145
Teuchos::Array< umfpack_type > xvals_
Persisting 1D store for X.
Definition: Amesos2_Umfpack_decl.hpp:209
Teuchos::Array< umfpack_type > nzvals_
Stores the values of the nonzero entries for Umfpack.
Definition: Amesos2_Umfpack_decl.hpp:202
std::string description() const
Returns a short description of this Solver.
Definition: Amesos2_Umfpack_def.hpp:82
int preOrdering_impl()
Performs pre-ordering on the matrix to increase efficiency.
Definition: Amesos2_Umfpack_def.hpp:91
int symbolicFactorization_impl()
Perform symbolic factorization of the matrix using Umfpack.
Definition: Amesos2_Umfpack_def.hpp:99
bool matrixShapeOK_impl() const
Determines whether the shape of the matrix is OK for this solver.
Definition: Amesos2_Umfpack_def.hpp:244
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters_impl() const
Definition: Amesos2_Umfpack_def.hpp:271
Passes functions to TPL functions based on type.
Definition: Amesos2_FunctionMap.hpp:77
Map types to solver-specific data-types and enums.
Definition: Amesos2_TypeMap.hpp:82
Provides traits about solvers.
Definition: Amesos2_SolverTraits.hpp:71