19 #ifndef AMESOS2_SUPERLUDIST_DECL_HPP
20 #define AMESOS2_SUPERLUDIST_DECL_HPP
23 #include "Amesos2_SolverCore.hpp"
54 template <
class Matrix,
69 typedef Matrix matrix_type;
70 typedef Vector vector_type;
73 typedef typename super_type::scalar_type scalar_type;
74 typedef typename super_type::local_ordinal_type local_ordinal_type;
75 typedef typename super_type::global_ordinal_type global_ordinal_type;
76 typedef typename super_type::global_size_type global_size_type;
77 typedef typename super_type::node_type node_type;
81 typedef typename type_map::type slu_type;
82 typedef typename type_map::magnitude_type magnitude_type;
86 typedef Kokkos::DefaultHostExecutionSpace HostExecSpaceType;
87 typedef Kokkos::View<SLUD::int_t*, HostExecSpaceType> host_size_type_array;
88 typedef Kokkos::View<SLUD::int_t*, HostExecSpaceType> host_ordinal_type_array;
89 typedef Kokkos::View<slu_type*, HostExecSpaceType> host_value_type_array;
101 Teuchos::RCP<Vector> X,
102 Teuchos::RCP<const Vector> B);
162 int
solve_impl(const Teuchos::Ptr<MultiVecAdapter<Vector> > X,
163 const Teuchos::Ptr<const MultiVecAdapter<Vector> > B) const;
205 const Teuchos::RCP<Teuchos::ParameterList> & parameterList );
250 mutable struct SLUData {
252 SLUD::SuperMatrix AC;
253 typename type_map::LUstruct_t LU;
254 SLUD::Glu_freeable_t glu_freeable;
261 SLUD::int_t *sizes, *fstVtxSep;
262 SLUD::Pslu_freeable_t pslu_freeable;
264 SLUD::amesos2_superlu_dist_options_t options;
265 SLUD::amesos2_superlu_dist_mem_usage_t mem_usage;
266 SLUD::gridinfo_t grid;
268 typename type_map::LUstruct_t lu;
269 SLUD::SuperLUStat_t stat;
270 typename type_map::SOLVEstruct_t solve_struct;
272 Teuchos::Array<magnitude_type> berr;
273 Teuchos::Array<magnitude_type> ferr;
276 typename type_map::ScalePermstruct_t scale_perm;
278 Teuchos::Array<magnitude_type> R, C;
279 Teuchos::Array<magnitude_type> R1, C1;
280 Teuchos::Array<SLUD::int_t> perm_r, perm_c;
282 SLUD::DiagScale_t equed;
284 magnitude_type rowcnd, colcnd, amax;
285 int largediag_mc64_job;
303 bool force_symbfact_;
304 mutable bool same_solve_struct_;
307 Teuchos::RCP<
const Tpetra::Map<local_ordinal_type,
319 #if defined(HAVE_TEUCHOS_COMPLEX) && !defined(__clang__)
320 typedef Meta::make_list3<double, std::complex<double>, SLUD::Z::doublecomplex> supported_scalars;
322 typedef Meta::make_list1<double> supported_scalars;
328 #endif // AMESOS2_SUPERLUDIST_DECL_HPP
Amesos2::SolverCore: A templated interface for interaction with third-party direct sparse solvers...
Definition: Amesos2_SolverCore_decl.hpp:71
void computeRowPermutationLargeDiagMC64(SLUD::SuperMatrix &GA)
Compute the row permutation for option LargeDiag-MC64.
Definition: Amesos2_Superludist_def.hpp:303
Amesos2 interface to the distributed memory version of SuperLU.
Definition: Amesos2_Superludist_decl.hpp:56
Map types to solver-specific data-types and enums.
Definition: Amesos2_TypeMap.hpp:48
void setParameters_impl(const Teuchos::RCP< Teuchos::ParameterList > ¶meterList)
Definition: Amesos2_Superludist_def.hpp:789
host_value_type_array nzvals_view_
Stores the values of the nonzero entries for SuperLU_DIST.
Definition: Amesos2_Superludist_decl.hpp:290
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters_impl() const
Definition: Amesos2_Superludist_def.hpp:866
Provides traits about solvers.
Definition: Amesos2_SolverTraits.hpp:37
int preOrdering_impl()
Performs pre-ordering on the matrix to increase efficiency.
Definition: Amesos2_Superludist_def.hpp:358
host_size_type_array rowptr_view_
Stores the location in Ai_ and Aval_ that starts row j.
Definition: Amesos2_Superludist_decl.hpp:294
Provides a mechanism to map function calls to the correct Solver function based on the scalar type of...
std::string name() const override
Return the name of this solver.
Definition: Amesos2_SolverCore_def.hpp:725
Teuchos::Array< slu_type > bvals_
1D store for B values
Definition: Amesos2_Superludist_decl.hpp:296
Interface to Amesos2 solver objects.
Definition: Amesos2_Solver_decl.hpp:44
bool matrixShapeOK_impl() const
Determines whether the shape of the matrix is OK for this solver.
Definition: Amesos2_Superludist_def.hpp:780
Passes functions to TPL functions based on type.
Definition: Amesos2_FunctionMap.hpp:42
Teuchos::RCP< const Tpetra::Map< local_ordinal_type, global_ordinal_type, node_type > > superlu_rowmap_
Maps rows of the matrix to processors in the SuperLU_DIST processor grid.
Definition: Amesos2_Superludist_decl.hpp:309
int symbolicFactorization_impl()
Perform symbolic factorization of the matrix using SuperLU_DIST.
Definition: Amesos2_Superludist_def.hpp:414
Provides access to interesting solver traits.
void get_default_grid_size(int nprocs, SLUD::int_t &nprow, SLUD::int_t &npcol) const
Definition: Amesos2_Superludist_def.hpp:952
bool in_grid_
true if this processor is in SuperLU_DISTS's 2D process grid
Definition: Amesos2_Superludist_decl.hpp:301
int solve_impl(const Teuchos::Ptr< MultiVecAdapter< Vector > > X, const Teuchos::Ptr< const MultiVecAdapter< Vector > > B) const
SuperLU_DIST specific solve.
Definition: Amesos2_Superludist_def.hpp:614
bool loadA_impl(EPhase current_phase)
Reads matrix data into internal solver structures.
Definition: Amesos2_Superludist_def.hpp:977
host_ordinal_type_array colind_view_
Stores the row indices of the nonzero entries.
Definition: Amesos2_Superludist_decl.hpp:292
Teuchos::Array< slu_type > xvals_
1D store for X values
Definition: Amesos2_Superludist_decl.hpp:298
int numericFactorization_impl()
SuperLU_DIST specific numeric factorization.
Definition: Amesos2_Superludist_def.hpp:463