Ginkgo  Generated from pipelines/2837190956 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
identity.hpp
1 // SPDX-FileCopyrightText: 2017 - 2026 The Ginkgo authors
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #ifndef GKO_PUBLIC_CORE_MATRIX_IDENTITY_HPP_
6 #define GKO_PUBLIC_CORE_MATRIX_IDENTITY_HPP_
7 
8 
9 #include <ginkgo/core/base/lin_op.hpp>
10 
11 
12 namespace gko {
13 namespace matrix {
14 
15 
33 template <typename ValueType = default_precision>
34 class Identity : public LinOp,
35  public EnableCloneable<Identity<ValueType>>,
36  public Transposable {
37  friend class EnableCloneable<Identity>;
38  GKO_ASSERT_SUPPORTED_VALUE_TYPE;
39 
40 public:
43 
44  using value_type = ValueType;
46 
47  std::unique_ptr<LinOp> transpose() const override;
48 
49  std::unique_ptr<LinOp> conj_transpose() const override;
50 
57  GKO_DEPRECATED("use the version taking a size_type instead of dim<2>")
58  static std::unique_ptr<Identity> create(
59  std::shared_ptr<const Executor> exec, dim<2> size);
60 
67  static std::unique_ptr<Identity> create(
68  std::shared_ptr<const Executor> exec, size_type size = 0);
69 
70 protected:
71  explicit Identity(std::shared_ptr<const Executor> exec, size_type size = 0);
72 
73  void apply_impl(const LinOp* b, LinOp* x) const override;
74 
75  void apply_impl(const LinOp* alpha, const LinOp* b, const LinOp* beta,
76  LinOp* x) const override;
77 };
78 
79 
92 template <typename ValueType = default_precision>
93 class IdentityFactory : public LinOpFactory {
94 public:
95  using value_type = ValueType;
96 
104  static std::unique_ptr<IdentityFactory> create(
105  std::shared_ptr<const Executor> exec)
106  {
107  return std::unique_ptr<IdentityFactory>(
108  new IdentityFactory(std::move(exec)));
109  }
110 
111 protected:
112  std::unique_ptr<LinOp> generate_impl(
113  std::shared_ptr<const LinOp> base) const override;
114 
115  IdentityFactory(std::shared_ptr<const Executor> exec) : LinOpFactory(exec)
116  {}
117 };
118 
119 
120 } // namespace matrix
121 } // namespace gko
122 
123 
124 #endif // GKO_PUBLIC_CORE_MATRIX_IDENTITY_HPP_
gko::LinOp
Definition: lin_op.hpp:117
gko::Transposable
Linear operators which support transposition should implement the Transposable interface.
Definition: lin_op.hpp:392
gko::matrix::IdentityFactory
This factory is a utility which can be used to generate Identity operators.
Definition: identity.hpp:93
gko::size_type
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:101
gko::matrix::IdentityFactory::create
static std::unique_ptr< IdentityFactory > create(std::shared_ptr< const Executor > exec)
Creates a new Identity factory.
Definition: identity.hpp:104
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:19
gko::matrix::Identity::conj_transpose
std::unique_ptr< LinOp > conj_transpose() const override
Returns a LinOp representing the conjugate transpose of the Transposable object.
gko::dim< 2 >
gko::matrix::Identity::create
static std::unique_ptr< Identity > create(std::shared_ptr< const Executor > exec, dim< 2 > size)
Creates an Identity matrix of the specified size.
gko::matrix::Identity
This class is a utility which efficiently implements the identity matrix (a linear operator which map...
Definition: identity.hpp:34
gko::EnableCloneable
This mixin is used to enable a default Cloneable::clone() implementation and similar for objects that...
Definition: polymorphic_object.hpp:376
gko::matrix::Identity::transpose
std::unique_ptr< LinOp > transpose() const override
Returns a LinOp representing the transpose of the Transposable object.
gko::LinOpFactory
A LinOpFactory represents a higher order mapping which transforms one linear operator into another.
Definition: lin_op.hpp:343