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>
38template <
typename ValueType = default_precision>
44 GKO_ASSERT_SUPPORTED_VALUE_TYPE;
47 using value_type = ValueType;
93 void add_operators() {}
95 template <
typename... Rest>
96 void add_operators(std::shared_ptr<const LinOp> oper, Rest&&... rest)
98 if (!operators_.empty()) {
99 GKO_ASSERT_CONFORMANT(
this, oper);
101 auto exec = this->get_executor();
102 operators_.push_back(std::move(oper));
103 if (operators_.back()->get_executor() != exec) {
104 operators_.back() =
gko::clone(exec, operators_.back());
106 this->set_size(dim<2>{operators_.front()->get_size()[0],
107 operators_.back()->get_size()[1]});
108 add_operators(std::forward<Rest>(rest)...);
116 explicit Composition(std::shared_ptr<const Executor> exec)
129 template <
typename Iterator,
130 typename = std::void_t<
131 typename std::iterator_traits<Iterator>::iterator_category>>
135 throw OutOfBoundsError(__FILE__, __LINE__, 1, 0);
137 return (*begin)->get_executor();
139 storage_{this->get_executor()}
141 for (
auto it = begin; it != end; ++it) {
154 template <
typename... Rest>
155 explicit Composition(std::shared_ptr<const LinOp> oper, Rest&&... rest)
158 add_operators(std::move(oper), std::forward<Rest>(rest)...);
161 void apply_impl(
const LinOp* b, LinOp* x)
const override;
163 void apply_impl(
const LinOp* alpha,
const LinOp* b,
const LinOp* beta,
164 LinOp* x)
const override;
167 std::vector<std::shared_ptr<const LinOp>> operators_;
178template <
typename ValueType = default_precision>
181 using value_type = ValueType;
206 if (composition_ ==
nullptr) {
209 return composition_->get_operators().at(index);
217 template <
typename...
LinOp>
218 void set_composition(
LinOp&&... linop)
221 Composition<ValueType>::create(std::forward<LinOp>(linop)...);
225 std::shared_ptr<Composition<ValueType>> composition_;
Composition & operator=(const Composition &)
Copy-assigns a Composition.
Composition(Composition &&)
Move-constructs a Composition.
std::unique_ptr< LinOp > transpose() const override
Returns a LinOp representing the transpose of the Transposable object.
Composition(const Composition &)
Copy-constructs a Composition.
Composition & operator=(Composition &&)
Move-assigns a Composition.
std::unique_ptr< LinOp > conj_transpose() const override
Returns a LinOp representing the conjugate transpose of the Transposable object.
const std::vector< std::shared_ptr< const LinOp > > & get_operators() const noexcept
Returns a list of operators of the composition.
Definition composition.hpp:55
This mixin implements a static create() method on ConcreteType that dynamically allocates the memory,...
Definition polymorphic_object.hpp:767
The EnableLinOp mixin can be used to provide sensible default implementations of the majority of the ...
Definition lin_op.hpp:879
This mixin inherits from (a subclass of) PolymorphicObject and provides a base implementation of a ne...
Definition polymorphic_object.hpp:668
Definition lin_op.hpp:117
Linear operators which support transposition should implement the Transposable interface.
Definition lin_op.hpp:433
The UseComposition class can be used to store the composition information in LinOp.
Definition composition.hpp:179
std::shared_ptr< const LinOp > get_operator_at(size_type index) const
Returns the operator at index-th position of composition.
Definition composition.hpp:204
std::shared_ptr< Composition< ValueType > > get_composition() const
Returns the composition operators.
Definition composition.hpp:187
The Ginkgo namespace.
Definition abstract_factory.hpp:20
std::size_t size_type
Integral type used for allocation quantities.
Definition types.hpp:90
detail::cloned_type< Pointer > clone(const Pointer &p)
Creates a unique clone of the object pointed to by p.
Definition utils_helper.hpp:173
@ array
The matrix should be written as dense matrix in column-major order.
Definition mtx_io.hpp:97