![]() |
Ginkgo Generated from branch based on main. Ginkgo version 1.11.0
A numerical linear algebra library targeting many-core architectures
|
SELL-P is a matrix format similar to ELL format. More...
#include <ginkgo/core/matrix/sellp.hpp>
Public Types | |
| using | value_type = ValueType |
| using | index_type = IndexType |
| using | mat_data = matrix_data<ValueType, IndexType> |
| using | device_mat_data = device_matrix_data<ValueType, IndexType> |
| using | absolute_type = remove_complex<Sellp> |
| Public Types inherited from gko::EnablePolymorphicAssignment< Sellp< default_precision, int32 > > | |
| using | result_type |
| Public Types inherited from gko::DiagonalExtractable< default_precision > | |
| using | value_type |
| Public Types inherited from gko::ReadableFromMatrixData< default_precision, int32 > | |
| using | value_type |
| using | index_type |
| Public Types inherited from gko::WritableToMatrixData< default_precision, int32 > | |
| using | value_type |
| using | index_type |
| Public Types inherited from gko::EnableAbsoluteComputation< remove_complex< Sellp< default_precision, int32 > > > | |
| using | absolute_type |
Public Member Functions | |
| void | convert_to (Sellp< next_precision< ValueType >, IndexType > *result) const override |
| void | move_to (Sellp< next_precision< ValueType >, IndexType > *result) override |
| void | convert_to (Dense< ValueType > *other) const override |
| void | move_to (Dense< ValueType > *other) override |
| void | convert_to (Csr< ValueType, IndexType > *other) const override |
| void | move_to (Csr< ValueType, IndexType > *other) override |
| void | read (const mat_data &data) override |
| void | read (const device_mat_data &data) override |
| void | read (device_mat_data &&data) override |
| void | write (mat_data &data) const override |
| std::unique_ptr< Diagonal< ValueType > > | extract_diagonal () const override |
| Extracts the diagonal entries of the matrix into a vector. | |
| std::unique_ptr< absolute_type > | compute_absolute () const override |
| Gets the AbsoluteLinOp. | |
| void | compute_absolute_inplace () override |
| Compute absolute inplace on each element. | |
| value_type * | get_values () noexcept |
| Returns the values of the matrix. | |
| const value_type * | get_const_values () const noexcept |
| Returns the values of the matrix. | |
| index_type * | get_col_idxs () noexcept |
| Returns the column indexes of the matrix. | |
| const index_type * | get_const_col_idxs () const noexcept |
| Returns the column indexes of the matrix. | |
| size_type * | get_slice_lengths () noexcept |
| Returns the lengths(columns) of slices. | |
| const size_type * | get_const_slice_lengths () const noexcept |
| Returns the lengths(columns) of slices. | |
| size_type * | get_slice_sets () noexcept |
| Returns the offsets of slices. | |
| const size_type * | get_const_slice_sets () const noexcept |
| Returns the offsets of slices. | |
| size_type | get_slice_size () const noexcept |
| Returns the size of a slice. | |
| size_type | get_stride_factor () const noexcept |
| Returns the stride factor(t) of SELL-P. | |
| size_type | get_total_cols () const noexcept |
| Returns the total column number. | |
| size_type | get_num_stored_elements () const noexcept |
| Returns the number of elements explicitly stored in the matrix. | |
| value_type & | val_at (size_type row, size_type slice_set, size_type idx) noexcept |
| Returns the idx-th non-zero element of the row-th row with slice_set slice set. | |
| value_type | val_at (size_type row, size_type slice_set, size_type idx) const noexcept |
| Returns the idx-th non-zero element of the row-th row with slice_set slice set. | |
| index_type & | col_at (size_type row, size_type slice_set, size_type idx) noexcept |
| Returns the idx-th column index of the row-th row with slice_set slice set. | |
| index_type | col_at (size_type row, size_type slice_set, size_type idx) const noexcept |
| Returns the idx-th column index of the row-th row with slice_set slice set. | |
| Sellp & | operator= (const Sellp &) |
| Copy-assigns a Sellp matrix. | |
| Sellp & | operator= (Sellp &&) |
| Move-assigns a Sellp matrix. | |
| Sellp (const Sellp &) | |
| Copy-assigns a Sellp matrix. | |
| Sellp (Sellp &&) | |
| Move-assigns a Sellp matrix. | |
| Public Member Functions inherited from gko::EnableLinOp< Sellp< default_precision, int32 > > | |
| const Sellp< default_precision, int32 > * | apply (ptr_param< const LinOp > b, ptr_param< LinOp > x) const |
| Public Member Functions inherited from gko::EnablePolymorphicAssignment< Sellp< default_precision, int32 > > | |
| void | convert_to (result_type *result) const override |
| void | move_to (result_type *result) override |
| Public Member Functions inherited from gko::DiagonalExtractable< default_precision > | |
| std::unique_ptr< LinOp > | extract_diagonal_linop () const override |
| Extracts the diagonal entries of the matrix into a vector. | |
| Public Member Functions inherited from gko::ReadableFromMatrixData< default_precision, int32 > | |
| virtual void | read (const matrix_data< default_precision, int32 > &data)=0 |
| Reads a matrix from a matrix_data structure. | |
| Public Member Functions inherited from gko::WritableToMatrixData< default_precision, int32 > | |
| virtual void | write (matrix_data< default_precision, int32 > &data) const=0 |
| Writes a matrix to a matrix_data structure. | |
| Public Member Functions inherited from gko::EnableAbsoluteComputation< remove_complex< Sellp< default_precision, int32 > > > | |
| std::unique_ptr< LinOp > | compute_absolute_linop () const override |
| Gets the absolute LinOp. | |
Static Public Member Functions | |
| static std::unique_ptr< Sellp > | create (std::shared_ptr< const Executor > exec, const dim< 2 > &size={}, size_type total_cols=0) |
| Creates an uninitialized Sellp matrix of the specified size. | |
| static std::unique_ptr< Sellp > | create (std::shared_ptr< const Executor > exec, const dim< 2 > &size, size_type slice_size, size_type stride_factor, size_type total_cols) |
| Creates an uninitialized Sellp matrix of the specified size. | |
SELL-P is a matrix format similar to ELL format.
The difference is that SELL-P format divides rows into smaller slices and store each slice with ELL format.
This implementation uses the column index value invalid_index<IndexType>() to mark padding entries that are not part of the sparsity pattern.
| ValueType | precision of matrix elements |
| IndexType | precision of matrix indexes |
| gko::matrix::Sellp< ValueType, IndexType >::Sellp | ( | const Sellp< ValueType, IndexType > & | ) |
Copy-assigns a Sellp matrix.
Inherits the executor, copies the data and parameters.
References Sellp().
Referenced by operator=(), operator=(), Sellp(), and Sellp().
| gko::matrix::Sellp< ValueType, IndexType >::Sellp | ( | Sellp< ValueType, IndexType > && | ) |
|
inlinenoexcept |
Returns the idx-th column index of the row-th row with slice_set slice set.
| row | the row of the requested element in the slice |
| slice_set | the slice set of the slice |
| idx | the idx-th stored element of the row in the slice |
|
inlinenoexcept |
Returns the idx-th column index of the row-th row with slice_set slice set.
| row | the row of the requested element in the slice |
| slice_set | the slice set of the slice |
| idx | the idx-th stored element of the row in the slice |
References get_col_idxs().
|
overridevirtual |
Gets the AbsoluteLinOp.
Implements gko::EnableAbsoluteComputation< remove_complex< Sellp< default_precision, int32 > > >.
|
overridevirtual |
Compute absolute inplace on each element.
Implements gko::AbsoluteComputable.
|
static |
Creates an uninitialized Sellp matrix of the specified size.
| exec | Executor associated to the matrix |
| size | size of the matrix |
| slice_size | number of rows in each slice |
| stride_factor | factor for the stride in each slice (strides should be multiples of the stride_factor) |
| total_cols | number of the sum of all cols in every slice. |
|
static |
Creates an uninitialized Sellp matrix of the specified size.
(The slice_size and stride_factor are set to the default values.)
| exec | Executor associated to the matrix |
| size | size of the matrix |
| total_cols | number of the sum of all cols in every slice. |
|
overridevirtual |
Extracts the diagonal entries of the matrix into a vector.
| diag | the vector into which the diagonal will be written |
Implements gko::DiagonalExtractable< default_precision >.
|
inlinenoexcept |
Returns the column indexes of the matrix.
Referenced by col_at().
|
inlinenoexcept |
Returns the column indexes of the matrix.
|
inlinenoexcept |
Returns the lengths(columns) of slices.
|
inlinenoexcept |
Returns the offsets of slices.
|
inlinenoexcept |
Returns the values of the matrix.
|
inlinenoexcept |
Returns the number of elements explicitly stored in the matrix.
|
inlinenoexcept |
Returns the lengths(columns) of slices.
|
inlinenoexcept |
Returns the offsets of slices.
|
inlinenoexcept |
Returns the size of a slice.
|
inlinenoexcept |
Returns the stride factor(t) of SELL-P.
|
inlinenoexcept |
Returns the total column number.
|
inlinenoexcept |
Returns the values of the matrix.
| Sellp & gko::matrix::Sellp< ValueType, IndexType >::operator= | ( | const Sellp< ValueType, IndexType > & | ) |
| Sellp & gko::matrix::Sellp< ValueType, IndexType >::operator= | ( | Sellp< ValueType, IndexType > && | ) |
|
inlinenoexcept |
Returns the idx-th non-zero element of the row-th row with slice_set slice set.
| row | the row of the requested element in the slice |
| slice_set | the slice set of the slice |
| idx | the idx-th stored element of the row in the slice |
|
inlinenoexcept |
Returns the idx-th non-zero element of the row-th row with slice_set slice set.
| row | the row of the requested element in the slice |
| slice_set | the slice set of the slice |
| idx | the idx-th stored element of the row in the slice |