|
Ginkgo
Generated from pipelines/1589998975 branch based on develop. Ginkgo version 1.10.0
A numerical linear algebra library targeting many-core architectures
|
7 #include <ginkgo/core/base/composition.hpp>
8 #include <ginkgo/core/base/lin_op.hpp>
9 #include <ginkgo/core/base/polymorphic_object.hpp>
10 #include <ginkgo/core/config/config.hpp>
11 #include <ginkgo/core/config/registry.hpp>
12 #include <ginkgo/core/factorization/factorization.hpp>
13 #include <ginkgo/core/matrix/csr.hpp>
14 #include <ginkgo/core/matrix/sparsity_csr.hpp>
18 namespace experimental {
19 namespace factorization {
22 enum class symbolic_type {
53 template <
typename ValueType,
typename IndexType>
62 using value_type = ValueType;
63 using index_type = IndexType;
78 std::shared_ptr<const sparsity_pattern_type>
89 symbolic_type::general);
123 std::unique_ptr<factorization_type>
generate(
124 std::shared_ptr<const LinOp> system_matrix)
const;
142 static parameters_type
parse(
145 config::make_type_descriptor<ValueType, IndexType>());
148 explicit Lu(std::shared_ptr<const Executor> exec,
149 const parameters_type& params = {});
151 std::unique_ptr<LinOp> generate_impl(
152 std::shared_ptr<const LinOp> system_matrix)
const override;
155 parameters_type parameters_;
Represents a generic factorization consisting of two triangular factors (upper and lower) and an opti...
Definition: factorization.hpp:76
CSR is a matrix format which stores only the nonzero coefficients by compressing each row of the matr...
Definition: matrix.hpp:28
pnode describes a tree of properties.
Definition: property_tree.hpp:28
SparsityCsr is a matrix format which stores only the sparsity pattern of a sparse matrix by compressi...
Definition: csr.hpp:40
symbolic_type symbolic_algorithm
If the symbolic factorization of the matrix is not provided to the factory, this parameter controls w...
Definition: lu.hpp:89
bool skip_sorting
The system_matrix, which will be given to this factory, must be sorted (first by row,...
Definition: lu.hpp:101
This mixin is used to enable a default PolymorphicObject::copy_from() implementation for objects that...
Definition: polymorphic_object.hpp:743
#define GKO_FACTORY_PARAMETER_SCALAR(_name, _default)
Creates a scalar factory parameter in the factory parameters structure.
Definition: abstract_factory.hpp:445
This class describes the value and index types to be used when building a Ginkgo type from a configur...
Definition: type_descriptor.hpp:39
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
const parameters_type & get_parameters()
Returns the parameters used to construct the factory.
Definition: lu.hpp:109
std::unique_ptr< factorization_type > generate(std::shared_ptr< const LinOp > system_matrix) const
const parameters_type & get_parameters() const
Returns the parameters used to construct the factory.
Definition: lu.hpp:114
static parameters_type build()
Creates a new parameter_type to set up the factory.
Definition: lu.hpp:127
static parameters_type parse(const config::pnode &config, const config::registry &context, const config::type_descriptor &td_for_child=config::make_type_descriptor< ValueType, IndexType >())
Create the parameters from the property_tree.
Computes an LU factorization of a sparse matrix.
Definition: lu.hpp:54
This class stores additional context for creating Ginkgo objects from configuration files.
Definition: registry.hpp:167
std::shared_ptr< const sparsity_pattern_type > symbolic_factorization
The combined sparsity pattern L + U of the factors L and U.
Definition: lu.hpp:79
A LinOpFactory represents a higher order mapping which transforms one linear operator into another.
Definition: lin_op.hpp:384
The enable_parameters_type mixin is used to create a base implementation of the factory parameters st...
Definition: abstract_factory.hpp:211
This mixin inherits from (a subclass of) PolymorphicObject and provides a base implementation of a ne...
Definition: polymorphic_object.hpp:667