DOLFINx 0.11.0.0
DOLFINx C++ interface
Loading...
Searching...
No Matches
superlu_dist.h
1// Copyright (C) 2026 Jack S. Hale, Chris N. Richardson
2//
3// This file is part of DOLFINx (https://www.fenicsproject.org)
4//
5// SPDX-License-Identifier: LGPL-3.0-or-later
6
7#pragma once
8
9#ifdef HAS_SUPERLU_DIST
10
11#include <dolfinx/common/MPI.h>
12#include <dolfinx/la/MatrixCSR.h>
13#include <dolfinx/la/Vector.h>
14#include <memory>
15#include <string>
16
17namespace dolfinx::la
18{
21{
22public:
23 struct SuperMatrix;
24 struct vec_int_t;
25 struct gridinfo_t;
27
28 struct sScalePermstruct_t;
29 struct dScalePermstruct_t;
30 struct zScalePermstruct_t;
31
32 struct sLUstruct_t;
33 struct dLUstruct_t;
34 struct zLUstruct_t;
35
36 struct sSOLVEstruct_t;
37 struct dSOLVEstruct_t;
38 struct zSOLVEstruct_t;
39};
40
41// SuperLU_DIST has structs that are 'typed' with prefixes d, s, z. This allows
42// the solver class to select the typed set based on T.
43namespace impl
44{
45template <typename...>
46constexpr bool always_false_v = false;
47
48template <typename T>
49struct map
50{
51 static_assert(always_false_v<T>, "Invalid scalar type");
52};
53
55template <>
57{
59 using ScalePermstruct_t = SuperLUDistStructs::dScalePermstruct_t;
60 using LUstruct_t = SuperLUDistStructs::dLUstruct_t;
61 using SOLVEstruct_t = SuperLUDistStructs::dSOLVEstruct_t;
63};
64
66template <>
68{
70 using ScalePermstruct_t = SuperLUDistStructs::sScalePermstruct_t;
71 using LUstruct_t = SuperLUDistStructs::sLUstruct_t;
72 using SOLVEstruct_t = SuperLUDistStructs::sSOLVEstruct_t;
74};
75
77template <>
79{
81 using ScalePermstruct_t = SuperLUDistStructs::zScalePermstruct_t;
82 using LUstruct_t = SuperLUDistStructs::zLUstruct_t;
83 using SOLVEstruct_t = SuperLUDistStructs::zSOLVEstruct_t;
85};
86
87} // namespace impl
88
90template <typename T>
91using map_t = impl::map<T>;
92
96{
99 void operator()(SuperLUDistStructs::SuperMatrix* A) const noexcept;
100};
101
103template <typename T>
105{
106public:
114
117
120
122 MPI_Comm comm() const;
123
126
127private:
128 dolfinx::MPI::Comm _comm;
129 // Deep copy of values from MatrixCSR.
130 std::vector<T> _matA_values;
131 // cols and rowptr are required in opaque type "int_t" of
132 // SuperLU_DIST.
133 std::unique_ptr<SuperLUDistStructs::vec_int_t> _cols;
134 std::unique_ptr<SuperLUDistStructs::vec_int_t> _rowptr;
135
136 // Pointer to native SuperMatrix for use in solver
137 std::unique_ptr<SuperLUDistStructs::SuperMatrix, SuperMatrixDeleter>
138 _supermatrix;
139};
140
144{
147 void operator()(SuperLUDistStructs::gridinfo_t* g) const noexcept;
148};
149
161
165{
167 void operator()(SuperLUDistStructs::dLUstruct_t* l) const noexcept;
169 void operator()(SuperLUDistStructs::sLUstruct_t* l) const noexcept;
171 void operator()(SuperLUDistStructs::zLUstruct_t* l) const noexcept;
172};
173
188
190template <typename T>
192{
193public:
203 SuperLUDistSolver(std::shared_ptr<const SuperLUDistMatrix<T>> A);
204
207
210
217 void set_option(std::string name, std::string value);
218
241
248 void set_A(std::shared_ptr<const SuperLUDistMatrix<T>> A);
249
262 int solve(const Vector<T>& b, Vector<T>& u) const;
263
264private:
265 // Assembled left-hand side matrix
266 std::shared_ptr<const SuperLUDistMatrix<T>> _superlu_matA;
267
268 // Pointer to struct superlu_dist_options_t
269 std::unique_ptr<SuperLUDistStructs::superlu_dist_options_t> _options;
270
271 // Pointer to struct gridinfo_t
272 std::unique_ptr<SuperLUDistStructs::gridinfo_t, GridInfoDeleter> _gridinfo;
273
274 // Pointer to 'typed' struct *ScalePermstruct_t
275 std::unique_ptr<typename map_t<T>::ScalePermstruct_t, ScalePermStructDeleter>
276 _scalepermstruct;
277 // Pointer to 'typed' struct *LUstruct_t
278 std::unique_ptr<typename map_t<T>::LUstruct_t, LUStructDeleter> _lustruct;
279 // Pointer to 'typed' struct *SOLVEstruct
280 std::unique_ptr<typename map_t<T>::SOLVEstruct_t, SolveStructDeleter>
281 _solvestruct;
282};
283} // namespace dolfinx::la
284#endif
A duplicate MPI communicator and manage lifetime of the communicator.
Definition MPI.h:42
Distributed sparse matrix using compressed sparse row storage.
Definition MatrixCSR.h:71
SuperLU_DIST matrix interface.
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:154
SuperLUDistMatrix(const MatrixCSR< T > &A)
Create SuperLU_DIST matrix operator.
Definition superlu_dist.cpp:139
MPI_Comm comm() const
Get MPI communicator that matrix is defined on.
Definition superlu_dist.cpp:148
SuperLUDistMatrix(const SuperLUDistMatrix &)=delete
Copy constructor (deleted).
void set_A(std::shared_ptr< const SuperLUDistMatrix< T > > A)
Set assembled left-hand side matrix A.
Definition superlu_dist.cpp:466
void set_option(std::string name, std::string value)
Set solver option name to value.
Definition superlu_dist.cpp:391
SuperLUDistSolver(std::shared_ptr< const SuperLUDistMatrix< T > > A)
Create solver for a SuperLU_DIST matrix operator.
Definition superlu_dist.cpp:310
SuperLUDistSolver & operator=(const SuperLUDistSolver &)=delete
Copy assignment.
SuperLUDistSolver(const SuperLUDistSolver &)=delete
Copy constructor.
void set_options(SuperLUDistStructs::superlu_dist_options_t options)
Set all solver options (native struct).
Definition superlu_dist.cpp:383
int solve(const Vector< T > &b, Vector< T > &u) const
Solve linear system Au = b.
Definition superlu_dist.cpp:472
Forward declare structs to avoid exposing SuperLU_DIST headers.
Definition superlu_dist.h:21
A vector that can be distributed across processes.
Definition Vector.h:50
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:91
Definition superlu_dist.h:144
void operator()(SuperLUDistStructs::gridinfo_t *g) const noexcept
Deletion of gridinfo_t.
Definition superlu_dist.cpp:236
Definition superlu_dist.h:165
void operator()(SuperLUDistStructs::dLUstruct_t *l) const noexcept
double implementation
Definition superlu_dist.cpp:264
Definition superlu_dist.h:153
void operator()(SuperLUDistStructs::dScalePermstruct_t *s) const noexcept
double implementation
Definition superlu_dist.cpp:243
Definition superlu_dist.h:177
void operator()(SuperLUDistStructs::dSOLVEstruct_t *S) const noexcept
double implementation
Definition superlu_dist.cpp:285
SuperLUDistStructs::superlu_dist_options_t * o
Pointer to options - required for *SOLVEstruct_t cleanup function.
Definition superlu_dist.h:179
Definition superlu_dist.cpp:30
Definition superlu_dist.cpp:213
Definition superlu_dist.cpp:189
Definition superlu_dist.cpp:217
Struct holding vector of type int_t.
Definition superlu_dist.cpp:35
Definition superlu_dist.cpp:221
Definition superlu_dist.h:96
void operator()(SuperLUDistStructs::SuperMatrix *A) const noexcept
Deletion on SuperMatrix.
Definition superlu_dist.cpp:40
Definition superlu_dist.h:50