11#include <dolfinx/common/MPI.h>
12#include <dolfinx/la/MatrixCSR.h>
13#include <dolfinx/la/Vector.h>
48constexpr bool always_false_v =
false;
53 static_assert(always_false_v<T>,
"Invalid scalar type");
60 using ScalePermstruct_t = SuperLUDistStructs::dScalePermstruct_t;
61 using LUstruct_t = SuperLUDistStructs::dLUstruct_t;
62 using SOLVEstruct_t = SuperLUDistStructs::dSOLVEstruct_t;
69 using ScalePermstruct_t = SuperLUDistStructs::sScalePermstruct_t;
70 using LUstruct_t = SuperLUDistStructs::sLUstruct_t;
71 using SOLVEstruct_t = SuperLUDistStructs::sSOLVEstruct_t;
76struct map<std::complex<double>>
78 using ScalePermstruct_t = SuperLUDistStructs::zScalePermstruct_t;
79 using LUstruct_t = SuperLUDistStructs::zLUstruct_t;
80 using SOLVEstruct_t = SuperLUDistStructs::zSOLVEstruct_t;
119 MPI_Comm
comm()
const;
127 std::vector<T> _matA_values;
130 std::unique_ptr<SuperLUDistStructs::vec_int_t> _cols;
131 std::unique_ptr<SuperLUDistStructs::vec_int_t> _rowptr;
134 std::unique_ptr<SuperLUDistStructs::SuperMatrix, SuperMatrixDeleter>
217 void set_option(std::string_view name, std::string_view value);
269 std::shared_ptr<const SuperLUDistMatrix<T>> _superlu_matA;
272 std::unique_ptr<SuperLUDistStructs::superlu_dist_options_t> _options;
275 std::unique_ptr<SuperLUDistStructs::gridinfo_t, GridInfoDeleter> _gridinfo;
281 std::unique_ptr<typename map_t<T>::LUstruct_t,
LUStructDeleter> _lustruct;
288 bool _factored =
false;
A duplicate MPI communicator and manage lifetime of the communicator.
Definition MPI.h:43
Distributed sparse matrix using compressed sparse row storage.
Definition MatrixCSR.h:70
Definition superlu_dist.h:103
SuperLUDistMatrix & operator=(const SuperLUDistMatrix &)=delete
Copy assignment (deleted).
SuperLUDistStructs::SuperMatrix * supermatrix() const
Get pointer to SuperLU_DIST SuperMatrix (non-const).
Definition superlu_dist.cpp:235
SuperLUDistMatrix(const MatrixCSR< T > &A)
Create SuperLU_DIST matrix operator.
Definition superlu_dist.cpp:220
MPI_Comm comm() const
Get MPI communicator that matrix is defined on.
Definition superlu_dist.cpp:229
SuperLUDistMatrix(const SuperLUDistMatrix &)=delete
Copy constructor (deleted).
SuperLUDistSolver(std::shared_ptr< const SuperLUDistMatrix< T > > A)
Create solver for a SuperLU_DIST matrix operator.
Definition superlu_dist.cpp:391
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:475
void set_options(SuperLUDistStructs::superlu_dist_options_t options)
Set all solver options (native struct).
Definition superlu_dist.cpp:468
int solve(const Vector< T > &b, Vector< T > &u)
Solve linear system Au = b.
Definition superlu_dist.cpp:615
~SuperLUDistSolver()
Destructor. Frees internal LU arrays before LUstructFree.
Definition superlu_dist.cpp:553
void set_A(std::shared_ptr< const SuperLUDistMatrix< T > > A, std::string fact)
Set assembled left-hand side matrix A.
Definition superlu_dist.cpp:570
Forward declare structs to avoid exposing SuperLU_DIST headers.
Definition superlu_dist.h:22
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:88
Definition superlu_dist.h:141
void operator()(SuperLUDistStructs::gridinfo_t *g) const noexcept
Deletion of gridinfo_t.
Definition superlu_dist.cpp:317
Definition superlu_dist.h:162
void operator()(SuperLUDistStructs::dLUstruct_t *l) const noexcept
double implementation
Definition superlu_dist.cpp:345
Definition superlu_dist.h:150
void operator()(SuperLUDistStructs::dScalePermstruct_t *s) const noexcept
double implementation
Definition superlu_dist.cpp:324
Definition superlu_dist.h:174
void operator()(SuperLUDistStructs::dSOLVEstruct_t *S) const noexcept
double implementation
Definition superlu_dist.cpp:366
SuperLUDistStructs::superlu_dist_options_t * o
Pointer to options - required for *SOLVEstruct_t cleanup function.
Definition superlu_dist.h:176
Definition superlu_dist.cpp:33
Definition superlu_dist.cpp:294
Definition superlu_dist.cpp:306
Definition superlu_dist.cpp:280
Definition superlu_dist.cpp:270
Definition superlu_dist.cpp:298
Definition superlu_dist.cpp:310
Definition superlu_dist.cpp:285
Definition superlu_dist.cpp:275
Struct holding vector of type int_t.
Definition superlu_dist.cpp:38
Definition superlu_dist.cpp:302
Definition superlu_dist.cpp:314
Definition superlu_dist.cpp:290
Definition superlu_dist.h:93
void operator()(SuperLUDistStructs::SuperMatrix *A) const noexcept
Deletion on SuperMatrix.
Definition superlu_dist.cpp:43