Ginkgo  Generated from pipelines/2721898507 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
gmres.hpp
1 // SPDX-FileCopyrightText: 2017 - 2026 The Ginkgo authors
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #ifndef GKO_PUBLIC_CORE_SOLVER_GMRES_HPP_
6 #define GKO_PUBLIC_CORE_SOLVER_GMRES_HPP_
7 
8 
9 #include <vector>
10 
11 #include <ginkgo/core/base/array.hpp>
12 #include <ginkgo/core/base/exception_helpers.hpp>
13 #include <ginkgo/core/base/lin_op.hpp>
14 #include <ginkgo/core/base/math.hpp>
15 #include <ginkgo/core/base/types.hpp>
16 #include <ginkgo/core/config/config.hpp>
17 #include <ginkgo/core/config/registry.hpp>
18 #include <ginkgo/core/log/logger.hpp>
19 #include <ginkgo/core/matrix/dense.hpp>
20 #include <ginkgo/core/matrix/identity.hpp>
21 #include <ginkgo/core/solver/solver_base.hpp>
22 #include <ginkgo/core/stop/combined.hpp>
23 #include <ginkgo/core/stop/criterion.hpp>
24 
25 
26 namespace gko {
27 namespace solver {
28 
29 
30 [[deprecated]] constexpr size_type default_krylov_dim = 100u;
31 
32 constexpr size_type gmres_default_krylov_dim = 100u;
33 
34 namespace gmres {
38 enum class ortho_method {
42  mgs,
46  cgs,
50  cgs2
51 };
52 
54 std::ostream& operator<<(std::ostream& stream, ortho_method ortho);
55 
56 } // namespace gmres
57 
71 template <typename ValueType = default_precision>
72 class Gmres
73  : public LinOp,
74  public EnablePreconditionedIterativeSolver<ValueType, Gmres<ValueType>>,
75  public Transposable {
76  GKO_ASSERT_SUPPORTED_VALUE_TYPE;
77 
78 public:
79  using value_type = ValueType;
81 
82  std::unique_ptr<LinOp> transpose() const override;
83 
84  std::unique_ptr<LinOp> conj_transpose() const override;
85 
91  bool apply_uses_initial_guess() const override { return true; }
92 
98  size_type get_krylov_dim() const { return parameters_.krylov_dim; }
99 
105  void set_krylov_dim(size_type other) { parameters_.krylov_dim = other; }
106 
107 
108  class Factory;
109 
112  parameters_type, Factory> {
115 
118 
120  gmres::ortho_method GKO_FACTORY_PARAMETER_SCALAR(
121  ortho_method, gmres::ortho_method::mgs);
122  };
125 
139  static parameters_type parse(const config::pnode& config,
140  const config::registry& context,
141  const config::type_descriptor& td_for_child =
142  config::make_type_descriptor<ValueType>());
143 
144 protected:
145  void apply_impl(const LinOp* b, LinOp* x) const override;
146 
147  template <typename VectorType>
148  void apply_dense_impl(const VectorType* b, VectorType* x) const;
149 
150  void apply_impl(const LinOp* alpha, const LinOp* b, const LinOp* beta,
151  LinOp* x) const override;
152 
153  explicit Gmres(std::shared_ptr<const Executor> exec)
154  : LinOp(std::move(exec))
155  {}
156 
157  explicit Gmres(const Factory* factory,
158  std::shared_ptr<const LinOp> system_matrix)
159  : LinOp(factory->get_executor(),
160  gko::transpose(system_matrix->get_size())),
161  EnablePreconditionedIterativeSolver<ValueType, Gmres<ValueType>>{
162  std::move(system_matrix), factory->get_parameters()},
163  parameters_{factory->get_parameters()}
164  {
165  if (!parameters_.krylov_dim) {
166  parameters_.krylov_dim = gmres_default_krylov_dim;
167  }
168  }
169 };
170 
171 
172 template <typename ValueType>
173 struct workspace_traits<Gmres<ValueType>> {
174  using Solver = Gmres<ValueType>;
175  // number of vectors used by this workspace
176  static int num_vectors(const Solver&);
177  // number of arrays used by this workspace
178  static int num_arrays(const Solver&);
179  // array containing the num_vectors names for the workspace vectors
180  static std::vector<std::string> op_names(const Solver&);
181  // array containing the num_arrays names for the workspace vectors
182  static std::vector<std::string> array_names(const Solver&);
183  // array containing all varying scalar vectors (independent of problem size)
184  static std::vector<int> scalars(const Solver&);
185  // array containing all varying vectors (dependent on problem size)
186  static std::vector<int> vectors(const Solver&);
187 
188  // residual vector
189  constexpr static int residual = 0;
190  // preconditioned vector
191  constexpr static int preconditioned_vector = 1;
192  // krylov basis multivector
193  constexpr static int krylov_bases = 2;
194  // hessenberg matrix
195  constexpr static int hessenberg = 3;
196  // auxiliary space for CGS2
197  constexpr static int hessenberg_aux = 4;
198  // givens sin parameters
199  constexpr static int givens_sin = 5;
200  // givens cos parameters
201  constexpr static int givens_cos = 6;
202  // coefficients of the residual in Krylov space
203  constexpr static int residual_norm_collection = 7;
204  // residual norm scalar
205  constexpr static int residual_norm = 8;
206  // solution of the least-squares problem in Krylov space
207  constexpr static int y = 9;
208  // solution of the least-squares problem mapped to the full space
209  constexpr static int before_preconditioner = 10;
210  // preconditioned solution of the least-squares problem
211  constexpr static int after_preconditioner = 11;
212  // constant 1.0 scalar
213  constexpr static int one = 12;
214  // constant -1.0 scalar
215  constexpr static int minus_one = 13;
216  // temporary norm vector of next_krylov to copy into hessenberg matrix
217  constexpr static int next_krylov_norm_tmp = 14;
218  // preconditioned krylov basis multivector
219  constexpr static int preconditioned_krylov_bases = 15;
220 
221  // stopping status array
222  constexpr static int stop = 0;
223  // reduction tmp array
224  constexpr static int tmp = 1;
225  // final iteration number array
226  constexpr static int final_iter_nums = 2;
227 };
228 
229 
230 } // namespace solver
231 } // namespace gko
232 
233 
234 #endif // GKO_PUBLIC_CORE_SOLVER_GMRES_HPP_
gko::config::pnode
pnode describes a tree of properties.
Definition: property_tree.hpp:28
gko::log::profile_event_category::solver
Solver events.
gko::LinOp
Definition: lin_op.hpp:117
gko::solver::Gmres::set_krylov_dim
void set_krylov_dim(size_type other)
Sets the Krylov dimension.
Definition: gmres.hpp:105
gko::solver::Gmres::transpose
std::unique_ptr< LinOp > transpose() const override
Returns a LinOp representing the transpose of the Transposable object.
gko::Transposable
Linear operators which support transposition should implement the Transposable interface.
Definition: lin_op.hpp:392
gko::size_type
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:90
gko::solver::enable_preconditioned_iterative_solver_factory_parameters
Definition: solver_base.hpp:855
gko::solver::Gmres
GMRES or the generalized minimal residual method is an iterative type Krylov subspace method which is...
Definition: gmres.hpp:72
GKO_FACTORY_PARAMETER_SCALAR
#define GKO_FACTORY_PARAMETER_SCALAR(_name, _default)
Creates a scalar factory parameter in the factory parameters structure.
Definition: abstract_factory.hpp:437
gko::config::type_descriptor
This class describes the value and index types to be used when building a Ginkgo type from a configur...
Definition: type_descriptor.hpp:39
gko::solver::Gmres::parameters_type::krylov_dim
size_type krylov_dim
Krylov subspace dimension/restart value.
Definition: gmres.hpp:114
gko::solver::Gmres::parameters_type::flexible
bool flexible
Flexible GMRES.
Definition: gmres.hpp:117
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
gko::solver::Gmres::parse
static parameters_type parse(const config::pnode &config, const config::registry &context, const config::type_descriptor &td_for_child=config::make_type_descriptor< ValueType >())
Create the parameters from the property_tree.
gko::solver::Gmres::parameters_type
Definition: gmres.hpp:110
gko::solver::Gmres::conj_transpose
std::unique_ptr< LinOp > conj_transpose() const override
Returns a LinOp representing the conjugate transpose of the Transposable object.
GKO_ENABLE_LIN_OP_FACTORY
#define GKO_ENABLE_LIN_OP_FACTORY(_lin_op, _parameters_name, _factory_name)
This macro will generate a default implementation of a LinOpFactory for the LinOp subclass it is defi...
Definition: lin_op.hpp:900
gko::solver::Gmres::get_krylov_dim
size_type get_krylov_dim() const
Gets the Krylov dimension of the solver.
Definition: gmres.hpp:98
gko::solver::Gmres::apply_uses_initial_guess
bool apply_uses_initial_guess() const override
Return true as iterative solvers use the data in x as an initial guess.
Definition: gmres.hpp:91
gko::config::registry
This class stores additional context for creating Ginkgo objects from configuration files.
Definition: registry.hpp:167
GKO_ENABLE_BUILD_METHOD
#define GKO_ENABLE_BUILD_METHOD(_factory_name)
Defines a build method for the factory, simplifying its construction by removing the repetitive typin...
Definition: abstract_factory.hpp:386
gko::PolymorphicObject::get_executor
std::shared_ptr< const Executor > get_executor() const noexcept
Returns the Executor of the object.
Definition: polymorphic_object.hpp:62
gko::solver::workspace_traits
Traits class providing information on the type and location of workspace vectors inside a solver.
Definition: solver_base.hpp:238
gko::LinOp::get_size
const dim< 2 > & get_size() const noexcept
Returns the size of the operator.
Definition: lin_op.hpp:169
gko::solver::Gmres::Factory
Definition: gmres.hpp:123
gko::solver::EnablePreconditionedIterativeSolver
A LinOp implementing this interface stores a system matrix and stopping criterion factory.
Definition: solver_base.hpp:800
gko::solver::Gmres::parameters_type::ortho_method
gmres::ortho_method ortho_method
Orthogonalization method.
Definition: gmres.hpp:121
gko::one
constexpr T one()
Returns the multiplicative identity for T.
Definition: math.hpp:654