Ginkgo  Generated from pipelines/2837190956 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
csr.hpp
1 // SPDX-FileCopyrightText: 2017 - 2026 The Ginkgo authors
2 //
3 // SPDX-License-Identifier: BSD-3-Clause
4 
5 #ifndef GKO_PUBLIC_CORE_MATRIX_CSR_HPP_
6 #define GKO_PUBLIC_CORE_MATRIX_CSR_HPP_
7 
8 
9 #include <ginkgo/core/base/array.hpp>
10 #include <ginkgo/core/base/index_set.hpp>
11 #include <ginkgo/core/base/lin_op.hpp>
12 #include <ginkgo/core/base/math.hpp>
13 #include <ginkgo/core/matrix/device_views.hpp>
14 #include <ginkgo/core/matrix/permutation.hpp>
15 #include <ginkgo/core/matrix/scaled_permutation.hpp>
16 
17 
18 namespace gko {
19 namespace matrix {
20 
21 
22 template <typename ValueType>
23 class Dense;
24 
25 template <typename ValueType>
26 class Diagonal;
27 
28 template <typename ValueType, typename IndexType>
29 class Coo;
30 
31 template <typename ValueType, typename IndexType>
32 class Ell;
33 
34 template <typename ValueType, typename IndexType>
35 class Hybrid;
36 
37 template <typename ValueType, typename IndexType>
38 class Sellp;
39 
40 template <typename ValueType, typename IndexType>
42 
43 template <typename ValueType, typename IndexType>
44 class Csr;
45 
46 template <typename ValueType, typename IndexType>
47 class Fbcsr;
48 
49 template <typename ValueType, typename IndexType>
50 class CsrBuilder;
51 
52 
53 namespace csr {
54 
55 
59 enum class spmv_strategy {
65  automatic,
72  load_balance,
79  merge_path,
84  classical,
94  sparselib
95 };
96 
97 
98 } // namespace csr
99 
100 
153 template <typename ValueType = default_precision, typename IndexType = int32>
154 class Csr : public LinOp,
155  public EnableCloneable<Csr<ValueType, IndexType>>,
156  public ConvertibleTo<Csr<next_precision<ValueType>, IndexType>>,
157 #if GINKGO_ENABLE_HALF || GINKGO_ENABLE_BFLOAT16
158  public ConvertibleTo<Csr<next_precision<ValueType, 2>, IndexType>>,
159 #endif
160 #if GINKGO_ENABLE_HALF && GINKGO_ENABLE_BFLOAT16
161  public ConvertibleTo<Csr<next_precision<ValueType, 3>, IndexType>>,
162 #endif
163  public ConvertibleTo<Dense<ValueType>>,
164  public ConvertibleTo<Coo<ValueType, IndexType>>,
165  public ConvertibleTo<Ell<ValueType, IndexType>>,
166  public ConvertibleTo<Fbcsr<ValueType, IndexType>>,
167  public ConvertibleTo<Hybrid<ValueType, IndexType>>,
168  public ConvertibleTo<Sellp<ValueType, IndexType>>,
169  public ConvertibleTo<SparsityCsr<ValueType, IndexType>>,
170  public DiagonalExtractable<ValueType>,
171  public ReadableFromMatrixData<ValueType, IndexType>,
172  public WritableToMatrixData<ValueType, IndexType>,
173  public Transposable,
174  public Permutable<IndexType>,
176  remove_complex<Csr<ValueType, IndexType>>>,
177  public ScaledIdentityAddable {
178  friend class EnableCloneable<Csr>;
179  friend class Coo<ValueType, IndexType>;
180  friend class Dense<ValueType>;
181  friend class Diagonal<ValueType>;
182  friend class Ell<ValueType, IndexType>;
183  friend class Hybrid<ValueType, IndexType>;
184  friend class Sellp<ValueType, IndexType>;
185  friend class SparsityCsr<ValueType, IndexType>;
186  friend class Fbcsr<ValueType, IndexType>;
187  friend class CsrBuilder<ValueType, IndexType>;
188  friend class Csr<to_complex<ValueType>, IndexType>;
189  GKO_ASSERT_SUPPORTED_VALUE_AND_INDEX_TYPE;
190 
191 public:
194  using ConvertibleTo<Csr<next_precision<ValueType>, IndexType>>::convert_to;
195  using ConvertibleTo<Csr<next_precision<ValueType>, IndexType>>::move_to;
196  using ConvertibleTo<Dense<ValueType>>::convert_to;
197  using ConvertibleTo<Dense<ValueType>>::move_to;
198  using ConvertibleTo<Coo<ValueType, IndexType>>::convert_to;
200  using ConvertibleTo<Ell<ValueType, IndexType>>::convert_to;
211 
212  using value_type = ValueType;
213  using index_type = IndexType;
214  using transposed_type = Csr<ValueType, IndexType>;
215  using mat_data = matrix_data<ValueType, IndexType>;
216  using device_mat_data = device_matrix_data<ValueType, IndexType>;
217  using absolute_type = remove_complex<Csr>;
218  using device_view = view::csr<value_type, index_type>;
219  using const_device_view = view::csr<const value_type, const index_type>;
220 
221  class GKO_DEPRECATED(
222  "please use enum gko::matrix::csr::spmv_strategy::<strategy>")
223  strategy_type {
224  public:
225  virtual ~strategy_type() = default;
226 
227  // return the corresponding enum in incoming release
228  virtual csr::spmv_strategy get_enum() const = 0;
229  };
230 
231  class GKO_DEPRECATED(
232  "please use enum gko::matrix::csr::spmv_strategy::classical") classical
233  : public strategy_type {
234  public:
235  csr::spmv_strategy get_enum() const override
236  {
237  return csr::spmv_strategy::classical;
238  }
239  };
240 
241  class GKO_DEPRECATED(
242  "please use enum gko::matrix::csr::spmv_strategy::merge_path")
243  merge_path : public strategy_type {
244  public:
245  csr::spmv_strategy get_enum() const override
246  {
247  return csr::spmv_strategy::merge_path;
248  }
249  };
250 
251  class GKO_DEPRECATED(
252  "please use enum gko::matrix::csr::spmv_strategy::sparselib") cusparse
253  : public strategy_type {
254  public:
255  csr::spmv_strategy get_enum() const override
256  {
257  return csr::spmv_strategy::sparselib;
258  }
259  };
260 
261  class GKO_DEPRECATED(
262  "please use enum gko::matrix::csr::spmv_strategy::sparselib") sparselib
263  : public strategy_type {
264  public:
265  csr::spmv_strategy get_enum() const override
266  {
267  return csr::spmv_strategy::sparselib;
268  }
269  };
270 
271  class GKO_DEPRECATED(
272  "please use enum gko::matrix::csr::spmv_strategy::load_balance")
273  load_balance : public strategy_type {
274  public:
275  load_balance(std::shared_ptr<const Executor>) {}
276 
277  csr::spmv_strategy get_enum() const override
278  {
279  return csr::spmv_strategy::load_balance;
280  }
281  };
282 
283  class GKO_DEPRECATED(
284  "please use enum gko::matrix::csr::spmv_strategy::automatic")
285  automatical : public strategy_type {
286  public:
287  automatical(std::shared_ptr<const Executor>) {}
288 
289  csr::spmv_strategy get_enum() const override
290  {
291  return csr::spmv_strategy::automatic;
292  }
293  };
294 
295 
296  friend class Csr<previous_precision<ValueType>, IndexType>;
297 
298  void convert_to(
299  Csr<next_precision<ValueType>, IndexType>* result) const override;
300 
301  void move_to(Csr<next_precision<ValueType>, IndexType>* result) override;
302 
303 #if GINKGO_ENABLE_HALF || GINKGO_ENABLE_BFLOAT16
304  friend class Csr<previous_precision<ValueType, 2>, IndexType>;
305  using ConvertibleTo<
306  Csr<next_precision<ValueType, 2>, IndexType>>::convert_to;
307  using ConvertibleTo<Csr<next_precision<ValueType, 2>, IndexType>>::move_to;
308 
309  void convert_to(
310  Csr<next_precision<ValueType, 2>, IndexType>* result) const override;
311 
312  void move_to(Csr<next_precision<ValueType, 2>, IndexType>* result) override;
313 #endif
314 
315 #if GINKGO_ENABLE_HALF && GINKGO_ENABLE_BFLOAT16
316  friend class Csr<previous_precision<ValueType, 3>, IndexType>;
317  using ConvertibleTo<
318  Csr<next_precision<ValueType, 3>, IndexType>>::convert_to;
319  using ConvertibleTo<Csr<next_precision<ValueType, 3>, IndexType>>::move_to;
320 
321  void convert_to(
322  Csr<next_precision<ValueType, 3>, IndexType>* result) const override;
323 
324  void move_to(Csr<next_precision<ValueType, 3>, IndexType>* result) override;
325 #endif
326 
327  void convert_to(Dense<ValueType>* other) const override;
328 
329  void move_to(Dense<ValueType>* other) override;
330 
331  void convert_to(Coo<ValueType, IndexType>* result) const override;
332 
333  void move_to(Coo<ValueType, IndexType>* result) override;
334 
335  void convert_to(Ell<ValueType, IndexType>* result) const override;
336 
337  void move_to(Ell<ValueType, IndexType>* result) override;
338 
339  void convert_to(Fbcsr<ValueType, IndexType>* result) const override;
340 
341  void move_to(Fbcsr<ValueType, IndexType>* result) override;
342 
343  void convert_to(Hybrid<ValueType, IndexType>* result) const override;
344 
345  void move_to(Hybrid<ValueType, IndexType>* result) override;
346 
347  void convert_to(Sellp<ValueType, IndexType>* result) const override;
348 
349  void move_to(Sellp<ValueType, IndexType>* result) override;
350 
351  void convert_to(SparsityCsr<ValueType, IndexType>* result) const override;
352 
353  void move_to(SparsityCsr<ValueType, IndexType>* result) override;
354 
355  void read(const mat_data& data) override;
356 
357  void read(const device_mat_data& data) override;
358 
359  void read(device_mat_data&& data) override;
360 
361  void write(mat_data& data) const override;
362 
363  std::unique_ptr<LinOp> transpose() const override;
364 
365  std::unique_ptr<LinOp> conj_transpose() const override;
366 
373 
380 
387  friend class Csr;
388 
389  public:
390  explicit multiply_reuse_info();
391 
393 
394  multiply_reuse_info(const multiply_reuse_info&) = delete;
395 
397 
398  multiply_reuse_info& operator=(const multiply_reuse_info&) = delete;
399 
400  multiply_reuse_info& operator=(multiply_reuse_info&&) noexcept;
401 
408  ptr_param<Csr> out) const;
409 
410  private:
411  struct lookup_data;
412 
413  explicit multiply_reuse_info(std::unique_ptr<lookup_data> data);
414 
415  std::unique_ptr<lookup_data> internal;
416  };
417 
428  std::unique_ptr<Csr> multiply(ptr_param<const Csr> other) const;
429 
446  std::pair<std::unique_ptr<Csr>, multiply_reuse_info> multiply_reuse(
447  ptr_param<const Csr> other) const;
448 
455  friend class Csr;
456 
457  public:
458  explicit multiply_add_reuse_info();
459 
461 
463 
465 
467  delete;
468 
469  multiply_add_reuse_info& operator=(multiply_add_reuse_info&&) noexcept;
470 
479  ptr_param<const Dense<value_type>> scale_mult,
480  ptr_param<const Csr> mtx_mult,
482  ptr_param<const Csr> mtx_add,
483  ptr_param<Csr> out) const;
484 
485  private:
486  struct lookup_data;
487 
488  explicit multiply_add_reuse_info(std::unique_ptr<lookup_data> data);
489 
490  std::unique_ptr<lookup_data> internal;
491  };
492 
508  std::unique_ptr<Csr> multiply_add(
509  ptr_param<const Dense<value_type>> scale_mult,
510  ptr_param<const Csr> mtx_mult,
512  ptr_param<const Csr> mtx_add) const;
513 
535  std::pair<std::unique_ptr<Csr>, multiply_add_reuse_info> multiply_add_reuse(
536  ptr_param<const Dense<value_type>> scale_mult,
537  ptr_param<const Csr> mtx_mult,
539  ptr_param<const Csr> mtx_add) const;
540 
547  friend class Csr;
548 
549  public:
550  explicit scale_add_reuse_info();
551 
553 
555 
557 
558  scale_add_reuse_info& operator=(const scale_add_reuse_info&) = delete;
559 
560  scale_add_reuse_info& operator=(scale_add_reuse_info&&) noexcept;
561 
568  void update_values(ptr_param<const Dense<value_type>> scale1,
570  ptr_param<const Dense<value_type>> scale2,
571  ptr_param<const Csr> mtx2, ptr_param<Csr> out) const;
572 
573  private:
574  struct lookup_data;
575 
576  explicit scale_add_reuse_info(std::unique_ptr<lookup_data> data);
577 
578  std::unique_ptr<lookup_data> internal;
579  };
580 
595  std::unique_ptr<Csr> scale_add(
596  ptr_param<const Dense<value_type>> scale_this,
597  ptr_param<const Dense<value_type>> scale_other,
598  ptr_param<const Csr> mtx_other) const;
599 
621  std::pair<std::unique_ptr<Csr>, scale_add_reuse_info> add_scale_reuse(
622  ptr_param<const Dense<value_type>> scale_this,
623  ptr_param<const Dense<value_type>> scale_other,
624  ptr_param<const Csr> mtx_other) const;
625 
632  explicit permuting_reuse_info();
633 
635  explicit permuting_reuse_info(
636  std::unique_ptr<Permutation<index_type>> value_permutation);
637 
646  ptr_param<Csr> output) const;
647 
648  std::unique_ptr<Permutation<IndexType>> value_permutation;
649  };
650 
663  std::pair<std::unique_ptr<Csr>, permuting_reuse_info> transpose_reuse()
664  const;
665 
676  std::unique_ptr<Csr> permute(
677  ptr_param<const Permutation<index_type>> permutation,
679 
694  std::unique_ptr<Csr> permute(
695  ptr_param<const Permutation<index_type>> row_permutation,
696  ptr_param<const Permutation<index_type>> column_permutation,
697  bool invert = false) const;
698 
715  std::pair<std::unique_ptr<Csr>, permuting_reuse_info> permute_reuse(
716  ptr_param<const Permutation<index_type>> permutation,
718 
738  std::pair<std::unique_ptr<Csr>, permuting_reuse_info> permute_reuse(
739  ptr_param<const Permutation<index_type>> row_permutation,
740  ptr_param<const Permutation<index_type>> column_permutation,
741  bool invert = false) const;
742 
752  std::unique_ptr<Csr> scale_permute(
755 
768  std::unique_ptr<Csr> scale_permute(
770  row_permutation,
772  column_permutation,
773  bool invert = false) const;
774 
775  std::unique_ptr<LinOp> permute(
776  const array<IndexType>* permutation_indices) const override;
777 
778  std::unique_ptr<LinOp> inverse_permute(
779  const array<IndexType>* inverse_permutation_indices) const override;
780 
781  std::unique_ptr<LinOp> row_permute(
782  const array<IndexType>* permutation_indices) const override;
783 
784  std::unique_ptr<LinOp> column_permute(
785  const array<IndexType>* permutation_indices) const override;
786 
787  std::unique_ptr<LinOp> inverse_row_permute(
788  const array<IndexType>* inverse_permutation_indices) const override;
789 
790  std::unique_ptr<LinOp> inverse_column_permute(
791  const array<IndexType>* inverse_permutation_indices) const override;
792 
793  std::unique_ptr<Diagonal<ValueType>> extract_diagonal() const override;
794 
795  std::unique_ptr<absolute_type> compute_absolute() const override;
796 
797  void compute_absolute_inplace() override;
798 
802  void sort_by_column_index();
803 
804  /*
805  * Tests if all row entry pairs (value, col_idx) are sorted by column index
806  *
807  * @returns True if all row entry pairs (value, col_idx) are sorted by
808  * column index
809  */
810  bool is_sorted_by_column_index() const;
811 
817  value_type* get_values() noexcept { return values_.get_data(); }
818 
826  const value_type* get_const_values() const noexcept
827  {
828  return values_.get_const_data();
829  }
830 
835  std::unique_ptr<Dense<ValueType>> create_value_view();
836 
841  std::unique_ptr<const Dense<ValueType>> create_const_value_view() const;
842 
848  index_type* get_col_idxs() noexcept { return col_idxs_.get_data(); }
849 
857  const index_type* get_const_col_idxs() const noexcept
858  {
859  return col_idxs_.get_const_data();
860  }
861 
867  index_type* get_row_ptrs() noexcept { return row_ptrs_.get_data(); }
868 
876  const index_type* get_const_row_ptrs() const noexcept
877  {
878  return row_ptrs_.get_const_data();
879  }
880 
886  index_type* get_srow() noexcept { return srow_.get_data(); }
887 
895  const index_type* get_const_srow() const noexcept
896  {
897  return srow_.get_const_data();
898  }
899 
906  {
907  return srow_.get_size();
908  }
909 
916  {
917  return values_.get_size();
918  }
919 
925  csr::spmv_strategy get_strategy() const noexcept;
926 
932  void set_strategy(csr::spmv_strategy strategy)
933  {
934  strategy_ = strategy;
935  this->make_srow();
936  }
937 
945  {
946  auto exec = this->get_executor();
947  GKO_ASSERT_EQUAL_DIMENSIONS(alpha, dim<2>(1, 1));
948  this->scale_impl(make_temporary_clone(exec, alpha).get());
949  }
950 
958  {
959  auto exec = this->get_executor();
960  GKO_ASSERT_EQUAL_DIMENSIONS(alpha, dim<2>(1, 1));
961  this->inv_scale_impl(make_temporary_clone(exec, alpha).get());
962  }
963 
964  void validate_data() const override;
965 
974  static std::unique_ptr<Csr> create(std::shared_ptr<const Executor> exec,
975  csr::spmv_strategy strategy);
976 
988  static std::unique_ptr<Csr> create(
989  std::shared_ptr<const Executor> exec, const dim<2>& size = {},
990  size_type num_nonzeros = {},
991  csr::spmv_strategy strategy = csr::spmv_strategy::automatic);
992 
1013  static std::unique_ptr<Csr> create(
1014  std::shared_ptr<const Executor> exec, const dim<2>& size,
1015  array<value_type> values, array<index_type> col_idxs,
1016  array<index_type> row_ptrs,
1017  csr::spmv_strategy strategy = csr::spmv_strategy::automatic);
1018 
1023  template <typename InputValueType, typename InputColumnIndexType,
1024  typename InputRowPtrType>
1025  GKO_DEPRECATED(
1026  "explicitly construct the gko::array argument instead of passing "
1027  "initializer lists")
1028  static std::unique_ptr<Csr> create(
1029  std::shared_ptr<const Executor> exec, const dim<2>& size,
1030  std::initializer_list<InputValueType> values,
1031  std::initializer_list<InputColumnIndexType> col_idxs,
1032  std::initializer_list<InputRowPtrType> row_ptrs)
1033  {
1034  return create(exec, size, array<value_type>{exec, std::move(values)},
1035  array<index_type>{exec, std::move(col_idxs)},
1036  array<index_type>{exec, std::move(row_ptrs)});
1037  }
1038 
1055  static std::unique_ptr<const Csr> create_const(
1056  std::shared_ptr<const Executor> exec, const dim<2>& size,
1057  gko::detail::const_array_view<ValueType>&& values,
1058  gko::detail::const_array_view<IndexType>&& col_idxs,
1059  gko::detail::const_array_view<IndexType>&& row_ptrs,
1060  csr::spmv_strategy strategy = csr::spmv_strategy::automatic);
1061 
1062  GKO_BEGIN_DISABLE_DEPRECATION_WARNINGS
1063 
1068  [[deprecated("please use enum version")]] static std::unique_ptr<Csr>
1069  create(std::shared_ptr<const Executor> exec,
1070  std::shared_ptr<strategy_type> strategy);
1071 
1077  [[deprecated("please use enum version")]] static std::unique_ptr<Csr>
1078  create(std::shared_ptr<const Executor> exec, const dim<2>& size,
1079  array<value_type> values, array<index_type> col_idxs,
1080  array<index_type> row_ptrs, std::shared_ptr<strategy_type> strategy);
1081 
1088  [[deprecated("please use enum version")]] static std::unique_ptr<const Csr>
1089  create_const(std::shared_ptr<const Executor> exec, const dim<2>& size,
1090  gko::detail::const_array_view<ValueType>&& values,
1091  gko::detail::const_array_view<IndexType>&& col_idxs,
1092  gko::detail::const_array_view<IndexType>&& row_ptrs,
1093  std::shared_ptr<strategy_type> strategy);
1094 
1095  GKO_END_DISABLE_DEPRECATION_WARNINGS
1096 
1109  std::unique_ptr<Csr<ValueType, IndexType>> create_submatrix(
1110  const index_set<IndexType>& row_index_set,
1111  const index_set<IndexType>& column_index_set) const;
1112 
1124  std::unique_ptr<Csr<ValueType, IndexType>> create_submatrix(
1125  const span& row_span, const span& column_span) const;
1126 
1130  Csr& operator=(const Csr&);
1131 
1137  Csr& operator=(Csr&&);
1138 
1142  Csr(const Csr&);
1143 
1149  Csr(Csr&&);
1150 
1151 protected:
1152  Csr(std::shared_ptr<const Executor> exec, const dim<2>& size = {},
1153  size_type num_nonzeros = {},
1154  csr::spmv_strategy strategy = csr::spmv_strategy::automatic);
1155 
1156  Csr(std::shared_ptr<const Executor> exec, const dim<2>& size,
1157  array<value_type> values, array<index_type> col_idxs,
1158  array<index_type> row_ptrs,
1159  csr::spmv_strategy strategy = csr::spmv_strategy::automatic);
1160 
1161  void apply_impl(const LinOp* b, LinOp* x) const override;
1162 
1163  void apply_impl(const LinOp* alpha, const LinOp* b, const LinOp* beta,
1164  LinOp* x) const override;
1165 
1169  void make_srow();
1170 
1177  virtual void scale_impl(const LinOp* alpha);
1178 
1185  virtual void inv_scale_impl(const LinOp* alpha);
1186 
1194  csr::spmv_strategy get_actual_strategy() const noexcept;
1195 
1196 private:
1197  csr::spmv_strategy strategy_;
1198  array<value_type> values_;
1199  array<index_type> col_idxs_;
1200  array<index_type> row_ptrs_;
1201  array<index_type> srow_;
1202  index_type max_nnz_per_row_;
1203 
1204  void add_scaled_identity_impl(const LinOp* a, const LinOp* b) override;
1205 };
1206 
1207 
1208 } // namespace matrix
1209 } // namespace gko
1210 
1211 
1212 #endif // GKO_PUBLIC_CORE_MATRIX_CSR_HPP_
gko::matrix::Csr::automatical
Definition: csr.hpp:283
gko::matrix::Csr::get_const_srow
const index_type * get_const_srow() const noexcept
Returns the starting rows.
Definition: csr.hpp:895
gko::matrix::Csr::operator=
Csr & operator=(const Csr &)
Copy-assigns a Csr matrix.
gko::matrix::Csr::get_col_idxs
index_type * get_col_idxs() noexcept
Returns the column indexes of the matrix.
Definition: csr.hpp:848
gko::matrix::Fbcsr
Fixed-block compressed sparse row storage matrix format.
Definition: csr.hpp:47
gko::matrix::Csr
CSR is a matrix format which stores only the nonzero coefficients by compressing each row of the matr...
Definition: matrix.hpp:30
gko::matrix::Csr::get_const_row_ptrs
const index_type * get_const_row_ptrs() const noexcept
Returns the row pointers of the matrix.
Definition: csr.hpp:876
gko::matrix::Csr::validate_data
void validate_data() const override
Throws gko::InvalidData exception if we found the data inside the object does not fulfill certain pro...
gko::matrix::Csr::multiply
std::unique_ptr< Csr > multiply(ptr_param< const Csr > other) const
Computes the sparse matrix product this * other on the executor of this matrix.
gko::LinOp
Definition: lin_op.hpp:117
gko::matrix::Csr::add_scale_reuse
std::pair< std::unique_ptr< Csr >, scale_add_reuse_info > add_scale_reuse(ptr_param< const Dense< value_type >> scale_this, ptr_param< const Dense< value_type >> scale_other, ptr_param< const Csr > mtx_other) const
Computes the sparse matrix sum scale_this * this + scale_other * mtx_add on the executor of this matr...
gko::matrix::Csr::permute_reuse
std::pair< std::unique_ptr< Csr >, permuting_reuse_info > permute_reuse(ptr_param< const Permutation< index_type >> permutation, permute_mode mode=permute_mode::symmetric) const
Computes the operations necessary to propagate changed values from a matrix A to a permuted matrix.
gko::matrix::Dense
Dense is a matrix format which explicitly stores all values of the matrix.
Definition: dense_cache.hpp:28
gko::matrix::Csr::multiply_add_reuse_info
Class describing the internal lookup structures created by multiply_add_reuse to recompute a sparse m...
Definition: csr.hpp:454
gko::matrix::CsrBuilder
Definition: csr.hpp:50
gko::matrix::Csr::inverse_row_permute
std::unique_ptr< LinOp > inverse_row_permute(const array< IndexType > *inverse_permutation_indices) const override
Returns a LinOp representing the row permutation of the inverse permuted object.
gko::matrix::Csr::sparselib
Definition: csr.hpp:261
gko::DiagonalExtractable
The diagonal of a LinOp implementing this interface can be extracted.
Definition: lin_op.hpp:701
gko::matrix::SparsityCsr
SparsityCsr is a matrix format which stores only the sparsity pattern of a sparse matrix by compressi...
Definition: csr.hpp:41
gko::matrix::Csr::load_balance
Definition: csr.hpp:271
gko::matrix::Csr::multiply_reuse
std::pair< std::unique_ptr< Csr >, multiply_reuse_info > multiply_reuse(ptr_param< const Csr > other) const
Computes the sparse matrix product this * other on the executor of this matrix, and necessary data fo...
gko::log_propagation_mode::automatic
Events get reported to loggers attached to the triggering object and propagating loggers (Logger::nee...
gko::matrix::Csr::multiply_add_reuse_info::update_values
void update_values(ptr_param< const Csr > mtx, ptr_param< const Dense< value_type >> scale_mult, ptr_param< const Csr > mtx_mult, ptr_param< const Dense< value_type >> scale_add, ptr_param< const Csr > mtx_add, ptr_param< Csr > out) const
Recomputes the sparse matrix-matrix product out = scale_mult * mtx * mtx_mult + scale_add * mtx_add w...
gko::matrix::Csr::scale
void scale(ptr_param< const LinOp > alpha)
Scales the matrix with a scalar.
Definition: csr.hpp:944
gko::matrix::Csr::get_const_device_view
const_device_view get_const_device_view() const
Returns a non-owning const device view of this matrix.
gko::Transposable
Linear operators which support transposition should implement the Transposable interface.
Definition: lin_op.hpp:392
gko::matrix::Csr::column_permute
std::unique_ptr< LinOp > column_permute(const array< IndexType > *permutation_indices) const override
Returns a LinOp representing the column permutation of the Permutable object.
gko::matrix::ScaledPermutation
ScaledPermutation is a matrix combining a permutation with scaling factors.
Definition: scaled_permutation.hpp:35
gko::size_type
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:101
gko::matrix::Csr::get_srow
index_type * get_srow() noexcept
Returns the starting rows.
Definition: csr.hpp:886
gko::matrix::Csr::transpose_reuse
std::pair< std::unique_ptr< Csr >, permuting_reuse_info > transpose_reuse() const
Computes the necessary data to update a transposed matrix from its original matrix.
gko::matrix::Permutation
Permutation is a matrix format that represents a permutation matrix, i.e.
Definition: permutation.hpp:110
gko::matrix::Csr::permuting_reuse_info::permuting_reuse_info
permuting_reuse_info()
Creates an empty reuse info.
gko::matrix::Csr::row_permute
std::unique_ptr< LinOp > row_permute(const array< IndexType > *permutation_indices) const override
Returns a LinOp representing the row permutation of the Permutable object.
gko::Permutable
Linear operators which support permutation should implement the Permutable interface.
Definition: lin_op.hpp:443
gko::matrix::Csr::transpose
std::unique_ptr< LinOp > transpose() const override
Returns a LinOp representing the transpose of the Transposable object.
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:19
gko::matrix::Csr::create
static std::unique_ptr< Csr > create(std::shared_ptr< const Executor > exec, csr::spmv_strategy strategy)
Creates an uninitialized CSR matrix of the specified size.
gko::matrix::Csr::inv_scale
void inv_scale(ptr_param< const LinOp > alpha)
Scales the matrix with the inverse of a scalar.
Definition: csr.hpp:957
gko::matrix::Csr::extract_diagonal
std::unique_ptr< Diagonal< ValueType > > extract_diagonal() const override
Extracts the diagonal entries of the matrix into a vector.
gko::array< IndexType >
gko::matrix::Csr::multiply_add
std::unique_ptr< Csr > multiply_add(ptr_param< const Dense< value_type >> scale_mult, ptr_param< const Csr > mtx_mult, ptr_param< const Dense< value_type >> scale_add, ptr_param< const Csr > mtx_add) const
Computes the sparse matrix product scale_mult * this * mtx_mult + scale_add * mtx_add on the executor...
gko::matrix::Csr::cusparse
Definition: csr.hpp:251
gko::matrix::Csr::inverse_permute
std::unique_ptr< LinOp > inverse_permute(const array< IndexType > *inverse_permutation_indices) const override
Returns a LinOp representing the symmetric inverse row and column permutation of the Permutable objec...
gko::matrix::Csr::get_row_ptrs
index_type * get_row_ptrs() noexcept
Returns the row pointers of the matrix.
Definition: csr.hpp:867
gko::span
A span is a lightweight structure used to create sub-ranges from other ranges.
Definition: range.hpp:45
gko::dim< 2 >
gko::matrix_data
This structure is used as an intermediate data type to store a sparse matrix.
Definition: matrix_data.hpp:126
gko::matrix::Csr::merge_path
Definition: csr.hpp:241
gko::matrix::Csr::permute
std::unique_ptr< Csr > permute(ptr_param< const Permutation< index_type >> permutation, permute_mode mode=permute_mode::symmetric) const
Creates a permuted copy of this matrix with the given permutation .
gko::index_set
An index set class represents an ordered set of intervals.
Definition: index_set.hpp:55
gko::matrix::Csr::set_strategy
void set_strategy(csr::spmv_strategy strategy)
Set the strategy.
Definition: csr.hpp:932
gko::ptr_param
This class is used for function parameters in the place of raw pointers.
Definition: utils_helper.hpp:43
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:686
gko::ReadableFromMatrixData
A LinOp implementing this interface can read its data from a matrix_data structure.
Definition: lin_op.hpp:564
gko::matrix::Csr::conj_transpose
std::unique_ptr< LinOp > conj_transpose() const override
Returns a LinOp representing the conjugate transpose of the Transposable object.
gko::WritableToMatrixData
A LinOp implementing this interface can write its data to a matrix_data structure.
Definition: lin_op.hpp:619
gko::matrix::permute_mode::symmetric
The rows and columns will be permuted.
gko::matrix::Csr::get_const_values
const value_type * get_const_values() const noexcept
Returns the values of the matrix.
Definition: csr.hpp:826
gko::stop::mode
mode
The mode for the residual norm criterion.
Definition: residual_norm.hpp:37
gko::matrix::Csr::get_num_stored_elements
size_type get_num_stored_elements() const noexcept
Returns the number of elements explicitly stored in the matrix.
Definition: csr.hpp:915
gko::matrix::Csr::create_submatrix
std::unique_ptr< Csr< ValueType, IndexType > > create_submatrix(const index_set< IndexType > &row_index_set, const index_set< IndexType > &column_index_set) const
Creates a submatrix from this Csr matrix given row and column index_set objects.
gko::ScaledIdentityAddable
Adds the operation M <- a I + b M for matrix M, identity operator I and scalars a and b,...
Definition: lin_op.hpp:776
gko::matrix::Csr::permuting_reuse_info
A struct describing a transformation of the matrix that reorders the values of the matrix into the tr...
Definition: csr.hpp:630
gko::next_precision
typename detail::find_precision_impl< T, step >::type next_precision
Obtains the next move type of T in the singly-linked precision corresponding bfloat16/half.
Definition: math.hpp:465
gko::matrix::Csr::sort_by_column_index
void sort_by_column_index()
Sorts all (value, col_idx) pairs in each row by column index.
gko::matrix::Csr::scale_add
std::unique_ptr< Csr > scale_add(ptr_param< const Dense< value_type >> scale_this, ptr_param< const Dense< value_type >> scale_other, ptr_param< const Csr > mtx_other) const
Computes the sparse matrix sum scale_this * this + scale_other * mtx_add on the executor of this matr...
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:472
gko::matrix::Csr::classical
Definition: csr.hpp:231
gko::matrix::Csr::get_strategy
csr::spmv_strategy get_strategy() const noexcept
Returns the strategy.
gko::matrix::Csr::permuting_reuse_info::update_values
void update_values(ptr_param< const Csr > input, ptr_param< Csr > output) const
Propagates the values from an input matrix to the transformed matrix.
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::Csr::scale_add_reuse_info::update_values
void update_values(ptr_param< const Dense< value_type >> scale1, ptr_param< const Csr > mtx1, ptr_param< const Dense< value_type >> scale2, ptr_param< const Csr > mtx2, ptr_param< Csr > out) const
Recomputes the sparse matrix-matrix sum out = scale1 * mtx1 + scale2 * mtx2 when only the values of m...
gko::matrix::Csr::get_device_view
device_view get_device_view()
Returns a non-owning device view of this matrix.
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:32
gko::matrix::Csr::create_const_value_view
std::unique_ptr< const Dense< ValueType > > create_const_value_view() const
Creates a const Dense view of the value array of this matrix as a column vector of dimensions nnz x 1...
gko::ConvertibleTo
ConvertibleTo interface is used to mark that the implementer can be converted to the object of Result...
Definition: polymorphic_object.hpp:147
gko::matrix::Csr::compute_absolute
std::unique_ptr< absolute_type > compute_absolute() const override
Gets the AbsoluteLinOp.
gko::matrix::Csr::strategy_type
Definition: csr.hpp:221
gko::make_temporary_clone
detail::temporary_clone< detail::pointee< Ptr > > make_temporary_clone(std::shared_ptr< const Executor > exec, Ptr &&ptr)
Creates a temporary_clone.
Definition: temporary_clone.hpp:208
gko::matrix::Csr::multiply_add_reuse
std::pair< std::unique_ptr< Csr >, multiply_add_reuse_info > multiply_add_reuse(ptr_param< const Dense< value_type >> scale_mult, ptr_param< const Csr > mtx_mult, ptr_param< const Dense< value_type >> scale_add, ptr_param< const Csr > mtx_add) const
Computes the sparse matrix product scale_mult * this * mtx_mult + scale_add * mtx_add on the executor...
gko::Executor
The first step in using the Ginkgo library consists of creating an executor.
Definition: executor.hpp:615
gko::matrix::Hybrid
HYBRID is a matrix format which splits the matrix into ELLPACK and COO format.
Definition: coo.hpp:32
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:695
gko::matrix::Csr::write
void write(mat_data &data) const override
Writes a matrix to a matrix_data structure.
gko::matrix::permute_mode
permute_mode
Specifies how a permutation will be applied to a matrix.
Definition: permutation.hpp:42
gko::matrix::Csr::multiply_reuse_info::update_values
void update_values(ptr_param< const Csr > mtx1, ptr_param< const Csr > mtx2, ptr_param< Csr > out) const
Recomputes the sparse matrix-matrix product out = mtx1 * mtx2 when only the values of mtx1 and mtx2 c...
gko::matrix::Sellp
SELL-P is a matrix format similar to ELL format.
Definition: csr.hpp:38
gko::matrix::Csr::get_const_col_idxs
const index_type * get_const_col_idxs() const noexcept
Returns the column indexes of the matrix.
Definition: csr.hpp:857
gko::EnableAbsoluteComputation
The EnableAbsoluteComputation mixin provides the default implementations of compute_absolute_linop an...
Definition: lin_op.hpp:752
gko::matrix::Csr::create_const
static std::unique_ptr< const Csr > 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, gko::detail::const_array_view< IndexType > &&row_ptrs, csr::spmv_strategy strategy=csr::spmv_strategy::automatic)
Creates a constant (immutable) Csr matrix from a set of constant arrays.
gko::matrix::Csr::inverse_column_permute
std::unique_ptr< LinOp > inverse_column_permute(const array< IndexType > *inverse_permutation_indices) const override
Returns a LinOp representing the row permutation of the inverse permuted object.
gko::matrix::Csr::Csr
Csr(const Csr &)
Copy-constructs a Csr matrix.
gko::PolymorphicObject::get_executor
std::shared_ptr< const Executor > get_executor() const noexcept
Returns the Executor of the object.
Definition: polymorphic_object.hpp:69
gko::array::get_size
size_type get_size() const noexcept
Returns the number of elements in the array.
Definition: array.hpp:669
gko::remove_complex
typename detail::remove_complex_s< T >::type remove_complex
Obtain the type which removed the complex of complex/scalar type or the template parameter of class b...
Definition: math.hpp:263
gko::matrix::Csr::compute_absolute_inplace
void compute_absolute_inplace() override
Compute absolute inplace on each element.
gko::matrix::Csr::scale_permute
std::unique_ptr< Csr > scale_permute(ptr_param< const ScaledPermutation< value_type, index_type >> permutation, permute_mode=permute_mode::symmetric) const
Creates a scaled and permuted copy of this matrix.
gko::device_matrix_data
This type is a device-side equivalent to matrix_data.
Definition: device_matrix_data.hpp:36
gko::matrix::Csr::read
void read(const mat_data &data) override
Reads a matrix from a matrix_data structure.
gko::matrix::view::csr
Non-owning view of a matrix::Csr to be used inside device kernels.
Definition: device_views.hpp:98
gko::matrix::Csr::create_value_view
std::unique_ptr< Dense< ValueType > > create_value_view()
Creates a Dense view of the value array of this matrix as a column vector of dimensions nnz x 1.
gko::matrix::Csr::get_values
value_type * get_values() noexcept
Returns the values of the matrix.
Definition: csr.hpp:817
gko::matrix::Csr::multiply_reuse_info
Class describing the internal lookup structures created by multiply_reuse(const Csr*) to recompute a ...
Definition: csr.hpp:386
gko::matrix::Csr::get_num_srow_elements
size_type get_num_srow_elements() const noexcept
Returns the number of the srow stored elements (involved warps)
Definition: csr.hpp:905
gko::matrix::Csr::scale_add_reuse_info
Class describing the internal lookup structures created by scale_add_reuse to recompute a sparse matr...
Definition: csr.hpp:546
gko::LinOp::LinOp
LinOp(const LinOp &)=default
Copy-constructs a LinOp.
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:282
gko::matrix::Coo
COO stores a matrix in the coordinate matrix format.
Definition: coo.hpp:49