Ginkgo  Generated from pipelines/1478841010 branch based on develop. Ginkgo version 1.9.0
A numerical linear algebra library targeting many-core architectures
batch_cg.hpp
1 // SPDX-FileCopyrightText: 2017 - 2024 The Ginkgo authors
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #ifndef GKO_PUBLIC_CORE_SOLVER_BATCH_CG_HPP_
6 #define GKO_PUBLIC_CORE_SOLVER_BATCH_CG_HPP_
7 
8 
9 #include <vector>
10 
11 #include <ginkgo/core/base/batch_lin_op.hpp>
12 #include <ginkgo/core/base/batch_multi_vector.hpp>
13 #include <ginkgo/core/base/exception_helpers.hpp>
14 #include <ginkgo/core/base/lin_op.hpp>
15 #include <ginkgo/core/base/types.hpp>
16 #include <ginkgo/core/solver/batch_solver_base.hpp>
17 #include <ginkgo/core/stop/batch_stop_enum.hpp>
18 
19 
20 namespace gko {
21 namespace batch {
22 namespace solver {
23 
24 
49 template <typename ValueType = default_precision>
50 class Cg final : public EnableBatchSolver<Cg<ValueType>, ValueType> {
51  friend class EnableBatchLinOp<Cg>;
52  friend class EnablePolymorphicObject<Cg, BatchLinOp>;
53 
54 public:
55  using value_type = ValueType;
56  using real_type = gko::remove_complex<ValueType>;
57 
58  class Factory;
59 
62  parameters_type, Factory> {};
65 
66 private:
67  explicit Cg(std::shared_ptr<const Executor> exec);
68 
69  explicit Cg(const Factory* factory,
70  std::shared_ptr<const BatchLinOp> system_matrix);
71 
72  void solver_apply(
74  log::detail::log_data<real_type>* log_data) const override;
75 };
76 
77 
78 } // namespace solver
79 } // namespace batch
80 } // namespace gko
81 
82 
83 #endif // GKO_PUBLIC_CORE_SOLVER_BATCH_CG_HPP_
gko::batch::EnableBatchLinOp
The EnableBatchLinOp mixin can be used to provide sensible default implementations of the majority of...
Definition: batch_lin_op.hpp:250
gko::log::profile_event_category::solver
Solver events.
gko::batch::BatchLinOp
Definition: batch_lin_op.hpp:59
gko::batch::solver::Cg::parameters_type
Definition: batch_cg.hpp:60
gko::batch::MultiVector
MultiVector stores multiple vectors in a batched fashion and is useful for batched operations.
Definition: batch_multi_vector.hpp:52
gko::batch::solver::EnableBatchSolver
This mixin provides apply and common iterative solver functionality to all the batched solvers.
Definition: batch_solver_base.hpp:204
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
gko::batch::solver::enable_preconditioned_iterative_solver_factory_parameters
Definition: batch_solver_base.hpp:153
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:394
gko::batch::solver::Cg
Cg or the Conjugate Gradient is a Krylov subspace solver.
Definition: batch_cg.hpp:50
GKO_ENABLE_BATCH_LIN_OP_FACTORY
#define GKO_ENABLE_BATCH_LIN_OP_FACTORY(_batch_lin_op, _parameters_name, _factory_name)
This macro will generate a default implementation of a BatchLinOpFactory for the BatchLinOp subclass ...
Definition: batch_lin_op.hpp:358
gko::batch::solver::Cg::Factory
Definition: batch_cg.hpp:63
gko::remove_complex
typename detail::remove_complex_s< T >::type remove_complex
Obtain the type which removed the complex of complex/scalar type or the template parameter of class b...
Definition: math.hpp:325
gko::EnablePolymorphicObject
This mixin inherits from (a subclass of) PolymorphicObject and provides a base implementation of a ne...
Definition: polymorphic_object.hpp:661