|
Ginkgo
Generated from pipelines/1330831941 branch based on master. Ginkgo version 1.8.0
A numerical linear algebra library targeting many-core architectures
|
5 #ifndef GKO_PUBLIC_CORE_BASE_COMPOSITION_HPP_
6 #define GKO_PUBLIC_CORE_BASE_COMPOSITION_HPP_
12 #include <ginkgo/core/base/executor.hpp>
13 #include <ginkgo/core/base/lin_op.hpp>
38 template <
typename ValueType = default_precision>
46 using value_type = ValueType;
60 std::unique_ptr<LinOp>
transpose()
const override;
92 void add_operators() {}
94 template <
typename... Rest>
95 void add_operators(std::shared_ptr<const LinOp> oper, Rest&&... rest)
97 if (!operators_.empty()) {
98 GKO_ASSERT_CONFORMANT(
this, oper);
101 operators_.push_back(std::move(oper));
102 if (operators_.back()->get_executor() != exec) {
103 operators_.back() =
gko::clone(exec, operators_.back());
105 this->set_size(dim<2>{operators_.front()->get_size()[0],
106 operators_.back()->get_size()[1]});
107 add_operators(std::forward<Rest>(rest)...);
115 explicit Composition(std::shared_ptr<const Executor> exec)
128 template <
typename Iterator,
129 typename = xstd::void_t<
130 typename std::iterator_traits<Iterator>::iterator_category>>
134 throw OutOfBoundsError(__FILE__, __LINE__, 1, 0);
136 return (*begin)->get_executor();
140 for (
auto it = begin; it != end; ++it) {
153 template <
typename... Rest>
154 explicit Composition(std::shared_ptr<const LinOp> oper, Rest&&... rest)
157 add_operators(std::move(oper), std::forward<Rest>(rest)...);
160 void apply_impl(
const LinOp* b,
LinOp* x)
const override;
163 LinOp* x)
const override;
166 std::vector<std::shared_ptr<const LinOp>> operators_;
167 mutable array<ValueType> storage_;
177 template <
typename ValueType = default_precision>
180 using value_type = ValueType;
205 if (composition_ ==
nullptr) {
208 return composition_->get_operators().at(index);
216 template <
typename...
LinOp>
217 void set_composition(
LinOp&&... linop)
224 std::shared_ptr<Composition<ValueType>> composition_;
231 #endif // GKO_PUBLIC_CORE_BASE_COMPOSITION_HPP_
Composition & operator=(const Composition &)
Copy-assigns a Composition.
The UseComposition class can be used to store the composition information in LinOp.
Definition: composition.hpp:178
Definition: lin_op.hpp:118
This mixin implements a static create() method on ConcreteType that dynamically allocates the memory,...
Definition: polymorphic_object.hpp:748
Linear operators which support transposition should implement the Transposable interface.
Definition: lin_op.hpp:434
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:108
std::shared_ptr< Composition< ValueType > > get_composition() const
Returns the composition operators.
Definition: composition.hpp:186
detail::cloned_type< Pointer > clone(const Pointer &p)
Creates a unique clone of the object pointed to by p.
Definition: utils_helper.hpp:175
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
The Composition class can be used to compose linear operators op1, op2, ..., opn and obtain the opera...
Definition: composition.hpp:39
Composition(const Composition &)
Copy-constructs a Composition.
const std::vector< std::shared_ptr< const LinOp > > & get_operators() const noexcept
Returns a list of operators of the composition.
Definition: composition.hpp:54
std::shared_ptr< const LinOp > get_operator_at(size_type index) const
Returns the operator at index-th position of composition.
Definition: composition.hpp:203
std::unique_ptr< LinOp > conj_transpose() const override
Returns a LinOp representing the conjugate transpose of the Transposable object.
std::shared_ptr< const Executor > get_executor() const noexcept
Returns the Executor of the object.
Definition: polymorphic_object.hpp:235
The EnableLinOp mixin can be used to provide sensible default implementations of the majority of the ...
Definition: lin_op.hpp:878
std::unique_ptr< LinOp > transpose() const override
Returns a LinOp representing the transpose of the Transposable object.
LinOp(const LinOp &)=default
Copy-constructs a LinOp.
This mixin inherits from (a subclass of) PolymorphicObject and provides a base implementation of a ne...
Definition: polymorphic_object.hpp:662