Ginkgo  Generated from pipelines/2837190956 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
amd.hpp
1 // SPDX-FileCopyrightText: 2017 - 2026 The Ginkgo authors
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #ifndef GKO_PUBLIC_CORE_REORDER_AMD_HPP_
6 #define GKO_PUBLIC_CORE_REORDER_AMD_HPP_
7 
8 
9 #include <memory>
10 
11 #include <ginkgo/core/base/abstract_factory.hpp>
12 #include <ginkgo/core/base/lin_op.hpp>
13 #include <ginkgo/core/base/polymorphic_object.hpp>
14 #include <ginkgo/core/base/types.hpp>
15 #include <ginkgo/core/matrix/permutation.hpp>
16 
17 
18 namespace gko {
19 namespace experimental {
25 namespace reorder {
26 
27 
46 template <typename IndexType = int32>
47 class Amd : public LinOpFactory {
48 public:
49  struct parameters_type;
50  friend class enable_parameters_type<parameters_type, Amd<IndexType>>;
51 
52  using index_type = IndexType;
54 
56  : public enable_parameters_type<parameters_type, Amd<IndexType>> {
62 
69  };
70 
76  const parameters_type& get_parameters() { return parameters_; }
77 
88  std::unique_ptr<permutation_type> generate(
89  std::shared_ptr<const LinOp> system_matrix) const;
90 
92  static parameters_type build() { return {}; }
93 
94 protected:
95  explicit Amd(std::shared_ptr<const Executor> exec,
96  const parameters_type& params = {});
97 
98  std::unique_ptr<LinOp> generate_impl(
99  std::shared_ptr<const LinOp> system_matrix) const override;
100 
101  parameters_type parameters_;
102 };
103 
104 
105 } // namespace reorder
106 } // namespace experimental
107 } // namespace gko
108 
109 
110 #endif // GKO_PUBLIC_CORE_REORDER_AMD_HPP_
gko::experimental::reorder::Amd
Computes an Approximate Minimum Degree (AMD) reordering of an input matrix.
Definition: amd.hpp:47
gko::matrix::Permutation
Permutation is a matrix format that represents a permutation matrix, i.e.
Definition: permutation.hpp:110
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:469
gko::experimental::reorder::Amd::build
static parameters_type build()
Creates a new parameter_type to set up the factory.
Definition: amd.hpp:92
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:19
gko::experimental::reorder::Amd::parameters_type::skip_sorting
bool skip_sorting
If set to false, sorts the input matrix before computing the AMD reordering.
Definition: amd.hpp:68
gko::experimental::reorder::Amd::get_parameters
const parameters_type & get_parameters()
Returns the parameters used to construct the factory.
Definition: amd.hpp:76
gko::experimental::reorder::Amd::generate
std::unique_ptr< permutation_type > generate(std::shared_ptr< const LinOp > system_matrix) const
gko::experimental::reorder::Amd::parameters_type::skip_symmetrize
bool skip_symmetrize
If set to false, computes the AMD reordering on A + A^T, otherwise assumes that A is symmetric and us...
Definition: amd.hpp:61
gko::experimental::reorder::Amd::parameters_type
Definition: amd.hpp:55
gko::LinOpFactory
A LinOpFactory represents a higher order mapping which transforms one linear operator into another.
Definition: lin_op.hpp:343
gko::enable_parameters_type
The enable_parameters_type mixin is used to create a base implementation of the factory parameters st...
Definition: abstract_factory.hpp:235