Ginkgo  Generated from pipelines/2662685947 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
ell.hpp
1 // SPDX-FileCopyrightText: 2017 - 2026 The Ginkgo authors
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #ifndef GKO_PUBLIC_CORE_MATRIX_ELL_HPP_
6 #define GKO_PUBLIC_CORE_MATRIX_ELL_HPP_
7 
8 
9 #include <ginkgo/core/base/array.hpp>
10 #include <ginkgo/core/base/lin_op.hpp>
11 #include <ginkgo/core/matrix/device_views.hpp>
12 
13 
14 namespace gko {
15 namespace matrix {
16 
17 
18 template <typename ValueType>
19 class Dense;
20 
21 template <typename ValueType, typename IndexType>
22 class Coo;
23 
24 template <typename ValueType, typename IndexType>
25 class Csr;
26 
27 template <typename ValueType, typename IndexType>
28 class Hybrid;
29 
30 
52 template <typename ValueType = default_precision, typename IndexType = int32>
53 class Ell : public LinOp,
54  public EnableCloneable<Ell<ValueType, IndexType>>,
55  public ConvertibleTo<Ell<next_precision<ValueType>, IndexType>>,
56 #if GINKGO_ENABLE_HALF || GINKGO_ENABLE_BFLOAT16
57  public ConvertibleTo<Ell<next_precision<ValueType, 2>, IndexType>>,
58 #endif
59 #if GINKGO_ENABLE_HALF && GINKGO_ENABLE_BFLOAT16
60  public ConvertibleTo<Ell<next_precision<ValueType, 3>, IndexType>>,
61 #endif
62  public ConvertibleTo<Dense<ValueType>>,
63  public ConvertibleTo<Csr<ValueType, IndexType>>,
64  public DiagonalExtractable<ValueType>,
65  public ReadableFromMatrixData<ValueType, IndexType>,
66  public WritableToMatrixData<ValueType, IndexType>,
67  public EnableAbsoluteComputation<
68  remove_complex<Ell<ValueType, IndexType>>> {
69  friend class EnableCloneable<Ell>;
70  friend class Dense<ValueType>;
71  friend class Coo<ValueType, IndexType>;
72  friend class Csr<ValueType, IndexType>;
73  friend class Ell<to_complex<ValueType>, IndexType>;
74  friend class Ell<previous_precision<ValueType>, IndexType>;
75  friend class Hybrid<ValueType, IndexType>;
76  GKO_ASSERT_SUPPORTED_VALUE_AND_INDEX_TYPE;
77 
78 public:
81  using ConvertibleTo<Ell<next_precision<ValueType>, IndexType>>::convert_to;
82  using ConvertibleTo<Ell<next_precision<ValueType>, IndexType>>::move_to;
83  using ConvertibleTo<Dense<ValueType>>::convert_to;
84  using ConvertibleTo<Dense<ValueType>>::move_to;
85  using ConvertibleTo<Csr<ValueType, IndexType>>::convert_to;
86  using ConvertibleTo<Csr<ValueType, IndexType>>::move_to;
88 
89  using value_type = ValueType;
90  using index_type = IndexType;
91  using mat_data = matrix_data<ValueType, IndexType>;
92  using device_mat_data = device_matrix_data<ValueType, IndexType>;
93  using absolute_type = remove_complex<Ell>;
94  using device_view = matrix::view::ell<value_type, index_type>;
95  using const_device_view =
96  matrix::view::ell<const value_type, const index_type>;
97 
98  void convert_to(
99  Ell<next_precision<ValueType>, IndexType>* result) const override;
100 
101  void move_to(Ell<next_precision<ValueType>, IndexType>* result) override;
102 
103 #if GINKGO_ENABLE_HALF || GINKGO_ENABLE_BFLOAT16
104  friend class Ell<previous_precision<ValueType, 2>, IndexType>;
105  using ConvertibleTo<
106  Ell<next_precision<ValueType, 2>, IndexType>>::convert_to;
107  using ConvertibleTo<Ell<next_precision<ValueType, 2>, IndexType>>::move_to;
108 
109  void convert_to(
110  Ell<next_precision<ValueType, 2>, IndexType>* result) const override;
111 
112  void move_to(Ell<next_precision<ValueType, 2>, IndexType>* result) override;
113 #endif
114 
115 #if GINKGO_ENABLE_HALF && GINKGO_ENABLE_BFLOAT16
116  friend class Ell<previous_precision<ValueType, 3>, IndexType>;
117  using ConvertibleTo<
118  Ell<next_precision<ValueType, 3>, IndexType>>::convert_to;
119  using ConvertibleTo<Ell<next_precision<ValueType, 3>, IndexType>>::move_to;
120 
121  void convert_to(
122  Ell<next_precision<ValueType, 3>, IndexType>* result) const override;
123 
124  void move_to(Ell<next_precision<ValueType, 3>, IndexType>* result) override;
125 #endif
126 
127  void convert_to(Dense<ValueType>* other) const override;
128 
129  void move_to(Dense<ValueType>* other) override;
130 
131  void convert_to(Csr<ValueType, IndexType>* other) const override;
132 
133  void move_to(Csr<ValueType, IndexType>* other) override;
134 
135  void read(const mat_data& data) override;
136 
137  void read(const device_mat_data& data) override;
138 
139  void read(device_mat_data&& data) override;
140 
141  void write(mat_data& data) const override;
142 
143  std::unique_ptr<Diagonal<ValueType>> extract_diagonal() const override;
144 
145  std::unique_ptr<absolute_type> compute_absolute() const override;
146 
147  void compute_absolute_inplace() override;
148 
154  value_type* get_values() noexcept { return values_.get_data(); }
155 
163  const value_type* get_const_values() const noexcept
164  {
165  return values_.get_const_data();
166  }
167 
173  index_type* get_col_idxs() noexcept { return col_idxs_.get_data(); }
174 
182  const index_type* get_const_col_idxs() const noexcept
183  {
184  return col_idxs_.get_const_data();
185  }
186 
193  {
194  return num_stored_elements_per_row_;
195  }
196 
202  size_type get_stride() const noexcept { return stride_; }
203 
210  {
211  return values_.get_size();
212  }
213 
224  value_type& val_at(size_type row, size_type idx) noexcept
225  {
226  return values_.get_data()[this->linearize_index(row, idx)];
227  }
228 
232  value_type val_at(size_type row, size_type idx) const noexcept
233  {
234  return values_.get_const_data()[this->linearize_index(row, idx)];
235  }
236 
247  index_type& col_at(size_type row, size_type idx) noexcept
248  {
249  return this->get_col_idxs()[this->linearize_index(row, idx)];
250  }
251 
255  index_type col_at(size_type row, size_type idx) const noexcept
256  {
257  return this->get_const_col_idxs()[this->linearize_index(row, idx)];
258  }
259 
261  device_view get_device_view();
262 
264  const_device_view get_const_device_view() const;
265 
277  static std::unique_ptr<Ell> create(
278  std::shared_ptr<const Executor> exec, const dim<2>& size = {},
279  size_type num_stored_elements_per_row = 0, size_type stride = 0);
280 
300  static std::unique_ptr<Ell> create(std::shared_ptr<const Executor> exec,
301  const dim<2>& size,
302  array<value_type> values,
303  array<index_type> col_idxs,
304  size_type num_stored_elements_per_row,
305  size_type stride);
306 
312  template <typename InputValueType, typename InputColumnIndexType>
313  GKO_DEPRECATED(
314  "explicitly construct the gko::array argument instead of passing "
315  "initializer lists")
316  static std::unique_ptr<Ell> create(
317  std::shared_ptr<const Executor> exec, const dim<2>& size,
318  std::initializer_list<InputValueType> values,
319  std::initializer_list<InputColumnIndexType> col_idxs,
320  size_type num_stored_elements_per_row, size_type stride)
321  {
322  return create(exec, size, array<value_type>{exec, std::move(values)},
323  array<index_type>{exec, std::move(col_idxs)},
324  num_stored_elements_per_row, stride);
325  }
326 
340  static std::unique_ptr<const Ell> create_const(
341  std::shared_ptr<const Executor> exec, const dim<2>& size,
342  gko::detail::const_array_view<ValueType>&& values,
343  gko::detail::const_array_view<IndexType>&& col_idxs,
344  size_type num_stored_elements_per_row, size_type stride);
345 
351  Ell& operator=(const Ell&);
352 
358  Ell& operator=(Ell&&);
359 
364  Ell(const Ell&);
365 
370  Ell(Ell&&);
371 
372 protected:
373  Ell(std::shared_ptr<const Executor> exec, const dim<2>& size = {},
374  size_type num_stored_elements_per_row = 0, size_type stride = 0);
375 
376  Ell(std::shared_ptr<const Executor> exec, const dim<2>& size,
377  array<value_type> values, array<index_type> col_idxs,
378  size_type num_stored_elements_per_row, size_type stride);
379 
389  void resize(dim<2> new_size, size_type max_row_nnz);
390 
391  void apply_impl(const LinOp* b, LinOp* x) const override;
392 
393  void apply_impl(const LinOp* alpha, const LinOp* b, const LinOp* beta,
394  LinOp* x) const override;
395 
396  size_type linearize_index(size_type row, size_type col) const noexcept
397  {
398  return row + stride_ * col;
399  }
400 
401 private:
402  size_type num_stored_elements_per_row_;
403  size_type stride_;
404  array<value_type> values_;
405  array<index_type> col_idxs_;
406 };
407 
408 
409 } // namespace matrix
410 } // namespace gko
411 
412 
413 #endif // GKO_PUBLIC_CORE_MATRIX_ELL_HPP_
gko::matrix::Ell::Ell
Ell(const Ell &)
Copy-constructs an Ell matrix.
gko::matrix::Ell::get_stride
size_type get_stride() const noexcept
Returns the stride of the matrix.
Definition: ell.hpp:202
gko::LinOp
Definition: lin_op.hpp:117
gko::ReadableFromMatrixData::read
virtual void read(const matrix_data< ValueType, IndexType > &data)=0
Reads a matrix from a matrix_data structure.
gko::matrix::Ell::compute_absolute
std::unique_ptr< absolute_type > compute_absolute() const override
Gets the AbsoluteLinOp.
gko::matrix::Ell::get_values
value_type * get_values() noexcept
Returns the values of the matrix.
Definition: ell.hpp:154
gko::matrix::Ell::val_at
value_type & val_at(size_type row, size_type idx) noexcept
Returns the idx-th non-zero element of the row-th row .
Definition: ell.hpp:224
gko::matrix::Ell::extract_diagonal
std::unique_ptr< Diagonal< ValueType > > extract_diagonal() const override
Extracts the diagonal entries of the matrix into a vector.
gko::matrix::Ell::operator=
Ell & operator=(const Ell &)
Copy-assigns an Ell matrix.
gko::size_type
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:90
gko::matrix::Ell::get_const_values
const value_type * get_const_values() const noexcept
Returns the values of the matrix.
Definition: ell.hpp:163
gko::matrix::Ell::create_const
static std::unique_ptr< const Ell > create_const(std::shared_ptr< const Executor > exec, const dim< 2 > &size, gko::detail::const_array_view< ValueType > &&values, gko::detail::const_array_view< IndexType > &&col_idxs, size_type num_stored_elements_per_row, size_type stride)
Creates a constant (immutable) Ell matrix from a set of constant arrays.
gko::matrix::Ell::get_col_idxs
index_type * get_col_idxs() noexcept
Returns the column indexes of the matrix.
Definition: ell.hpp:173
gko::matrix::Ell::get_const_col_idxs
const index_type * get_const_col_idxs() const noexcept
Returns the column indexes of the matrix.
Definition: ell.hpp:182
gko::matrix::Ell::create
static std::unique_ptr< Ell > create(std::shared_ptr< const Executor > exec, const dim< 2 > &size={}, size_type num_stored_elements_per_row=0, size_type stride=0)
Creates an uninitialized Ell matrix of the specified size.
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
gko::matrix::Ell::val_at
value_type val_at(size_type row, size_type idx) const noexcept
Returns the idx-th non-zero element of the row-th row .
Definition: ell.hpp:232
gko::array< value_type >
gko::matrix::Ell::get_num_stored_elements
size_type get_num_stored_elements() const noexcept
Returns the number of elements explicitly stored in the matrix.
Definition: ell.hpp:209
gko::dim< 2 >
gko::matrix::Ell::read
void read(const mat_data &data) override
Reads a matrix from a matrix_data structure.
gko::matrix::Ell::get_device_view
device_view get_device_view()
get the non-owning device view
gko::array::get_data
value_type * get_data() noexcept
Returns a pointer to the block of memory used to store the elements of the array.
Definition: array.hpp:687
gko::matrix::Ell::get_num_stored_elements_per_row
size_type get_num_stored_elements_per_row() const noexcept
Returns the number of stored elements per row.
Definition: ell.hpp:192
gko::matrix::Ell::get_const_device_view
const_device_view get_const_device_view() const
get the const non-owning device view
gko::EnableCloneable::convert_to
void convert_to(result_type *result) const override
Converts the implementer to an object of type result_type.
Definition: polymorphic_object.hpp:404
gko::previous_precision
typename detail::find_precision_impl< T, -step >::type previous_precision
Obtains the previous move type of T in the singly-linked precision corresponding bfloat16/half.
Definition: math.hpp:473
gko::matrix::Ell
ELL is a matrix format where stride with explicit zeros is used such that all rows have the same numb...
Definition: csr.hpp:31
gko::matrix::Ell::write
void write(mat_data &data) const override
Writes a matrix to a matrix_data structure.
gko::matrix::Ell::compute_absolute_inplace
void compute_absolute_inplace() override
Compute absolute inplace on each element.
gko::Executor
The first step in using the Ginkgo library consists of creating an executor.
Definition: executor.hpp:616
gko::array::get_const_data
const value_type * get_const_data() const noexcept
Returns a constant pointer to the block of memory used to store the elements of the array.
Definition: array.hpp:696
gko::EnableCloneable::move_to
void move_to(result_type *result) override
Converts the implementer to an object of type result_type by moving data from this object.
Definition: polymorphic_object.hpp:406
gko::array::get_size
size_type get_size() const noexcept
Returns the number of elements in the array.
Definition: array.hpp:670
gko::matrix::Ell::col_at
index_type col_at(size_type row, size_type idx) const noexcept
Returns the idx-th column index of the row-th row .
Definition: ell.hpp:255
gko::matrix::Ell::col_at
index_type & col_at(size_type row, size_type idx) noexcept
Returns the idx-th column index of the row-th row .
Definition: ell.hpp:247
gko::to_complex
typename detail::to_complex_s< T >::type to_complex
Obtain the type which adds the complex of complex/scalar type or the template parameter of class by a...
Definition: math.hpp:283