Ginkgo  Generated from pipelines/2662685947 branch based on develop. Ginkgo version 2.0.0
A numerical linear algebra library targeting many-core architectures
sparsity_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_SPARSITY_CSR_HPP_
6 #define GKO_PUBLIC_CORE_MATRIX_SPARSITY_CSR_HPP_
7 
8 
9 #include <vector>
10 
11 #include <ginkgo/core/base/array.hpp>
12 #include <ginkgo/core/base/lin_op.hpp>
13 #include <ginkgo/core/base/polymorphic_object.hpp>
14 
15 
16 namespace gko {
17 namespace matrix {
18 
19 
20 template <typename ValueType, typename IndexType>
21 class Csr;
22 
23 
24 template <typename ValueType>
25 class Dense;
26 
27 
28 template <typename ValueType, typename IndexType>
29 class Fbcsr;
30 
31 
50 template <typename ValueType = default_precision, typename IndexType = int32>
51 class SparsityCsr : public LinOp,
52  public EnableCloneable<SparsityCsr<ValueType, IndexType>>,
53  public ConvertibleTo<Csr<ValueType, IndexType>>,
54  public ConvertibleTo<Dense<ValueType>>,
55  public ReadableFromMatrixData<ValueType, IndexType>,
56  public WritableToMatrixData<ValueType, IndexType>,
57  public Transposable {
58  friend class EnableCloneable<SparsityCsr>;
59  friend class Csr<ValueType, IndexType>;
60  friend class Dense<ValueType>;
61  friend class Fbcsr<ValueType, IndexType>;
62  GKO_ASSERT_SUPPORTED_VALUE_AND_INDEX_TYPE;
63 
64 public:
67  using ConvertibleTo<Csr<ValueType, IndexType>>::convert_to;
68  using ConvertibleTo<Csr<ValueType, IndexType>>::move_to;
69  using ConvertibleTo<Dense<ValueType>>::convert_to;
70  using ConvertibleTo<Dense<ValueType>>::move_to;
72 
73  using value_type = ValueType;
74  using index_type = IndexType;
75  using transposed_type = SparsityCsr<IndexType, ValueType>;
76  using mat_data = matrix_data<ValueType, IndexType>;
77  using device_mat_data = device_matrix_data<ValueType, IndexType>;
78 
79  void convert_to(Csr<ValueType, IndexType>* result) const override;
80 
81  void move_to(Csr<ValueType, IndexType>* result) override;
82 
83  void convert_to(Dense<ValueType>* result) const override;
84 
85  void move_to(Dense<ValueType>* result) override;
86 
87  void read(const mat_data& data) override;
88 
89  void read(const device_mat_data& data) override;
90 
91  void read(device_mat_data&& data) override;
92 
93  void write(mat_data& data) const override;
94 
95  std::unique_ptr<LinOp> transpose() const override;
96 
97  std::unique_ptr<LinOp> conj_transpose() const override;
98 
108  std::unique_ptr<SparsityCsr> to_adjacency_matrix() const;
109 
113  void sort_by_column_index();
114 
115  /*
116  * Tests if all col_idxs are sorted by column index
117  *
118  * @returns True if all col_idxs are sorted.
119  */
120  bool is_sorted_by_column_index() const;
121 
127  index_type* get_col_idxs() noexcept { return col_idxs_.get_data(); }
128 
136  const index_type* get_const_col_idxs() const noexcept
137  {
138  return col_idxs_.get_const_data();
139  }
140 
146  index_type* get_row_ptrs() noexcept { return row_ptrs_.get_data(); }
147 
155  const index_type* get_const_row_ptrs() const noexcept
156  {
157  return row_ptrs_.get_const_data();
158  }
159 
165  value_type* get_value() noexcept { return value_.get_data(); }
166 
174  const value_type* get_const_value() const noexcept
175  {
176  return value_.get_const_data();
177  }
178 
184  size_type get_num_nonzeros() const noexcept { return col_idxs_.get_size(); }
185 
193  static std::unique_ptr<SparsityCsr> create(
194  std::shared_ptr<const Executor> exec, const dim<2>& size = dim<2>{},
195  size_type num_nonzeros = {});
196 
216  static std::unique_ptr<SparsityCsr> create(
217  std::shared_ptr<const Executor> exec, const dim<2>& size,
218  array<index_type> col_idxs, array<index_type> row_ptrs,
219  value_type value = one<ValueType>());
220 
226  template <typename ColIndexType, typename RowPtrType>
227  GKO_DEPRECATED(
228  "explicitly construct the gko::array argument instead of passing "
229  "initializer lists")
230  static std::unique_ptr<SparsityCsr> create(
231  std::shared_ptr<const Executor> exec, const dim<2>& size,
232  std::initializer_list<ColIndexType> col_idxs,
233  std::initializer_list<RowPtrType> row_ptrs,
234  value_type value = one<ValueType>())
235  {
236  return create(exec, size, array<index_type>{exec, std::move(col_idxs)},
237  array<index_type>{exec, std::move(row_ptrs)}, value);
238  }
239 
247  static std::unique_ptr<SparsityCsr> create(
248  std::shared_ptr<const Executor> exec,
249  std::shared_ptr<const LinOp> matrix);
250 
264  static std::unique_ptr<const SparsityCsr> create_const(
265  std::shared_ptr<const Executor> exec, const dim<2>& size,
266  gko::detail::const_array_view<IndexType>&& col_idxs,
267  gko::detail::const_array_view<IndexType>&& row_ptrs,
268  ValueType value = one<ValueType>())
269  {
270  // cast const-ness away, but return a const object afterwards,
271  // so we can ensure that no modifications take place.
272  return std::unique_ptr<const SparsityCsr>(new SparsityCsr{
273  exec, size, gko::detail::array_const_cast(std::move(col_idxs)),
274  gko::detail::array_const_cast(std::move(row_ptrs)), value});
275  }
276 
282 
289 
294  SparsityCsr(const SparsityCsr&);
295 
302 
303 protected:
304  SparsityCsr(std::shared_ptr<const Executor> exec,
305  const dim<2>& size = dim<2>{}, size_type num_nonzeros = {});
306 
307  SparsityCsr(std::shared_ptr<const Executor> exec, const dim<2>& size,
308  array<index_type> col_idxs, array<index_type> row_ptrs,
309  value_type value = one<ValueType>());
310 
311  SparsityCsr(std::shared_ptr<const Executor> exec,
312  std::shared_ptr<const LinOp> matrix);
313 
314  void apply_impl(const LinOp* b, LinOp* x) const override;
315 
316  void apply_impl(const LinOp* alpha, const LinOp* b, const LinOp* beta,
317  LinOp* x) const override;
318 
319 private:
320  array<index_type> col_idxs_;
321  array<index_type> row_ptrs_;
322  array<value_type> value_;
323 };
324 
325 
326 } // namespace matrix
327 } // namespace gko
328 
329 
330 #endif // GKO_PUBLIC_CORE_MATRIX_SPARSITY_CSR_HPP_
gko::matrix::SparsityCsr::get_const_col_idxs
const index_type * get_const_col_idxs() const noexcept
Returns the column indices of the matrix.
Definition: sparsity_csr.hpp:136
gko::ReadableFromMatrixData::read
virtual void read(const matrix_data< ValueType, IndexType > &data)=0
Reads a matrix from a matrix_data structure.
gko::matrix::SparsityCsr
SparsityCsr is a matrix format which stores only the sparsity pattern of a sparse matrix by compressi...
Definition: csr.hpp:40
gko::size_type
std::size_t size_type
Integral type used for allocation quantities.
Definition: types.hpp:90
gko::matrix::SparsityCsr::transpose
std::unique_ptr< LinOp > transpose() const override
Returns a LinOp representing the transpose of the Transposable object.
gko::matrix::SparsityCsr::get_const_row_ptrs
const index_type * get_const_row_ptrs() const noexcept
Returns the row pointers of the matrix.
Definition: sparsity_csr.hpp:155
gko::matrix::SparsityCsr::get_col_idxs
index_type * get_col_idxs() noexcept
Returns the column indices of the matrix.
Definition: sparsity_csr.hpp:127
gko::matrix::SparsityCsr::create
static std::unique_ptr< SparsityCsr > create(std::shared_ptr< const Executor > exec, const dim< 2 > &size=dim< 2 >{}, size_type num_nonzeros={})
Creates an uninitialized SparsityCsr matrix of the specified size.
gko
The Ginkgo namespace.
Definition: abstract_factory.hpp:20
gko::matrix::SparsityCsr::get_value
value_type * get_value() noexcept
Returns the value stored in the matrix.
Definition: sparsity_csr.hpp:165
gko::array< index_type >
gko::matrix::SparsityCsr::read
void read(const mat_data &data) override
Reads a matrix from a matrix_data structure.
gko::dim< 2 >
gko::matrix::SparsityCsr::get_num_nonzeros
size_type get_num_nonzeros() const noexcept
Returns the number of elements explicitly stored in the matrix.
Definition: sparsity_csr.hpp:184
gko::matrix::SparsityCsr::sort_by_column_index
void sort_by_column_index()
Sorts each row by column index.
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::SparsityCsr::create_const
static std::unique_ptr< const SparsityCsr > create_const(std::shared_ptr< const Executor > exec, const dim< 2 > &size, gko::detail::const_array_view< IndexType > &&col_idxs, gko::detail::const_array_view< IndexType > &&row_ptrs, ValueType value=one< ValueType >())
Creates a constant (immutable) SparsityCsr matrix from constant arrays.
Definition: sparsity_csr.hpp:264
gko::matrix::SparsityCsr::SparsityCsr
SparsityCsr(const SparsityCsr &)
Copy-constructs a SparsityCsr matrix.
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::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::matrix::SparsityCsr::get_row_ptrs
index_type * get_row_ptrs() noexcept
Returns the row pointers of the matrix.
Definition: sparsity_csr.hpp:146
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::matrix::SparsityCsr::operator=
SparsityCsr & operator=(const SparsityCsr &)
Copy-assigns a SparsityCsr matrix.
gko::array::get_size
size_type get_size() const noexcept
Returns the number of elements in the array.
Definition: array.hpp:670
gko::matrix::SparsityCsr::conj_transpose
std::unique_ptr< LinOp > conj_transpose() const override
Returns a LinOp representing the conjugate transpose of the Transposable object.
gko::matrix::SparsityCsr::get_const_value
const value_type * get_const_value() const noexcept
Returns the value stored in the matrix.
Definition: sparsity_csr.hpp:174
gko::matrix::SparsityCsr::to_adjacency_matrix
std::unique_ptr< SparsityCsr > to_adjacency_matrix() const
Transforms the sparsity matrix to an adjacency matrix.
gko::matrix::SparsityCsr::write
void write(mat_data &data) const override
Writes a matrix to a matrix_data structure.
gko::LinOp::LinOp
LinOp(const LinOp &)=default
Copy-constructs a LinOp.
gko::one
constexpr T one()
Returns the multiplicative identity for T.
Definition: math.hpp:654