33#ifndef GKO_PUBLIC_CORE_REORDER_AMD_HPP_
34#define GKO_PUBLIC_CORE_REORDER_AMD_HPP_
40#include <ginkgo/core/base/abstract_factory.hpp>
41#include <ginkgo/core/base/lin_op.hpp>
42#include <ginkgo/core/base/polymorphic_object.hpp>
43#include <ginkgo/core/base/types.hpp>
44#include <ginkgo/core/matrix/permutation.hpp>
48namespace experimental {
64template <
typename IndexType =
int32>
72 using index_type = IndexType;
106 std::shared_ptr<const LinOp> system_matrix)
const;
112 explicit Amd(std::shared_ptr<const Executor> exec,
113 const parameters_type&
params = {});
115 std::unique_ptr<LinOp> generate_impl(
116 std::shared_ptr<const LinOp> system_matrix)
const override;
118 parameters_type parameters_;
This mixin is used to enable a default PolymorphicObject::copy_from() implementation for objects that...
Definition polymorphic_object.hpp:752
This mixin inherits from (a subclass of) PolymorphicObject and provides a base implementation of a ne...
Definition polymorphic_object.hpp:691
A LinOpFactory represents a higher order mapping which transforms one linear operator into another.
Definition lin_op.hpp:414
The enable_parameters_type mixin is used to create a base implementation of the factory parameters st...
Definition abstract_factory.hpp:239
Computes a Approximate Minimum Degree (AMD) reordering of an input matrix.
Definition amd.hpp:66
static parameters_type build()
Creates a new parameter_type to set up the factory.
Definition amd.hpp:109
std::unique_ptr< permutation_type > generate(std::shared_ptr< const LinOp > system_matrix) const
const parameters_type & get_parameters()
Returns the parameters used to construct the factory.
Definition amd.hpp:96
Permutation is a matrix format that represents a permutation matrix, i.e.
Definition permutation.hpp:142
#define GKO_FACTORY_PARAMETER_SCALAR(_name, _default)
Creates a scalar factory parameter in the factory parameters structure.
Definition abstract_factory.hpp:473
The Ginkgo namespace.
Definition abstract_factory.hpp:48
constexpr T one()
Returns the multiplicative identity for T.
Definition math.hpp:803
bool skip_sorting
If set to false, sorts the input matrix before computing the AMD reordering.
Definition amd.hpp:88
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:81