12#include <dolfinx/common/MPI.h>
13#include <dolfinx/la/MatrixCSR.h>
14#include <dolfinx/la/Vector.h>
50constexpr bool always_false_v =
false;
55 static_assert(always_false_v<T>,
"Invalid scalar type");
62 using ScalePermstruct_t = SuperLUDistStructs::dScalePermstruct_t;
63 using LUstruct_t = SuperLUDistStructs::dLUstruct_t;
64 using SOLVEstruct_t = SuperLUDistStructs::dSOLVEstruct_t;
71 using ScalePermstruct_t = SuperLUDistStructs::sScalePermstruct_t;
72 using LUstruct_t = SuperLUDistStructs::sLUstruct_t;
73 using SOLVEstruct_t = SuperLUDistStructs::sSOLVEstruct_t;
78struct map<std::complex<double>>
80 using ScalePermstruct_t = SuperLUDistStructs::zScalePermstruct_t;
81 using LUstruct_t = SuperLUDistStructs::zLUstruct_t;
82 using SOLVEstruct_t = SuperLUDistStructs::zSOLVEstruct_t;
121 MPI_Comm
comm()
const;
129 std::vector<T> _matA_values;
132 std::unique_ptr<SuperLUDistStructs::vec_int_t> _cols;
133 std::unique_ptr<SuperLUDistStructs::vec_int_t> _rowptr;
136 std::unique_ptr<SuperLUDistStructs::SuperMatrix, SuperMatrixDeleter>
219 void set_option(std::string_view name, std::string_view value);
254 std::string_view fact);
272 std::shared_ptr<const SuperLUDistMatrix<T>> _superlu_matA;
275 std::unique_ptr<SuperLUDistStructs::superlu_dist_options_t> _options;
278 std::unique_ptr<SuperLUDistStructs::gridinfo_t, GridInfoDeleter> _gridinfo;
284 std::unique_ptr<typename map_t<T>::LUstruct_t,
LUStructDeleter> _lustruct;
291 bool _factored =
false;
A duplicate MPI communicator and manage lifetime of the communicator.
Definition MPI.h:45
Distributed sparse matrix using compressed sparse row storage.
Definition MatrixCSR.h:71
Definition superlu_dist.h:105
SuperLUDistMatrix & operator=(const SuperLUDistMatrix &)=delete
Copy assignment (deleted).
SuperLUDistStructs::SuperMatrix * supermatrix() const
Get pointer to SuperLU_DIST SuperMatrix (non-const).
Definition superlu_dist.cpp:233
SuperLUDistMatrix(const MatrixCSR< T > &A)
Create SuperLU_DIST matrix operator.
Definition superlu_dist.cpp:218
MPI_Comm comm() const
Get MPI communicator that matrix is defined on.
Definition superlu_dist.cpp:227
SuperLUDistMatrix(const SuperLUDistMatrix &)=delete
Copy constructor (deleted).
void set_options(const SuperLUDistStructs::superlu_dist_options_t &options)
Set all solver options (native struct).
Definition superlu_dist.cpp:466
SuperLUDistSolver(std::shared_ptr< const SuperLUDistMatrix< T > > A)
Create solver for a SuperLU_DIST matrix operator.
Definition superlu_dist.cpp:389
void set_A(std::shared_ptr< const SuperLUDistMatrix< T > > A, std::string_view fact)
Set assembled left-hand side matrix A.
Definition superlu_dist.cpp:569
SuperLUDistSolver & operator=(const SuperLUDistSolver &)=delete
Copy assignment.
SuperLUDistSolver(const SuperLUDistSolver &)=delete
Copy constructor.
void set_option(std::string_view name, std::string_view value)
Set solver option name to value.
Definition superlu_dist.cpp:473
int solve(const Vector< T > &b, Vector< T > &u)
Solve linear system Au = b.
Definition superlu_dist.cpp:625
~SuperLUDistSolver()
Destructor. Frees internal LU arrays before LUstructFree.
Definition superlu_dist.cpp:552
Forward declare structs to avoid exposing SuperLU_DIST headers.
Definition superlu_dist.h:24
A vector that can be distributed across processes.
Definition Vector.h:50
Fetch the rows of B that correspond to the ghost columns of A.
Definition matmul.h:36
Linear algebra interface.
Definition dolfinx_la.h:7
impl::map< T > map_t
Map scalar type to SuperLU_DIST 'typed' structs.
Definition superlu_dist.h:90
Definition superlu_dist.h:143
void operator()(SuperLUDistStructs::gridinfo_t *g) const noexcept
Deletion of gridinfo_t.
Definition superlu_dist.cpp:315
Definition superlu_dist.h:164
void operator()(SuperLUDistStructs::dLUstruct_t *l) const noexcept
double implementation
Definition superlu_dist.cpp:343
Definition superlu_dist.h:152
void operator()(SuperLUDistStructs::dScalePermstruct_t *s) const noexcept
double implementation
Definition superlu_dist.cpp:322
Definition superlu_dist.h:176
void operator()(SuperLUDistStructs::dSOLVEstruct_t *S) const noexcept
double implementation
Definition superlu_dist.cpp:364
SuperLUDistStructs::superlu_dist_options_t * o
Pointer to options - required for *SOLVEstruct_t cleanup function.
Definition superlu_dist.h:178
Definition superlu_dist.cpp:34
Definition superlu_dist.cpp:292
Definition superlu_dist.cpp:304
Definition superlu_dist.cpp:278
Definition superlu_dist.cpp:268
Definition superlu_dist.cpp:296
Definition superlu_dist.cpp:308
Definition superlu_dist.cpp:283
Definition superlu_dist.cpp:273
Struct holding vector of type int_t.
Definition superlu_dist.cpp:39
Definition superlu_dist.cpp:300
Definition superlu_dist.cpp:312
Definition superlu_dist.cpp:288
Definition superlu_dist.h:95
void operator()(SuperLUDistStructs::SuperMatrix *A) const noexcept
Deletion on SuperMatrix.
Definition superlu_dist.cpp:44