![]() |
Ginkgo
Generated from pipelines/2662685947 branch based on develop. Ginkgo version 2.0.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 > |
| using | device_view = matrix::view::sellp< value_type, index_type > |
| using | const_device_view = matrix::view::sellp< const value_type, const index_type > |
Public Types inherited from gko::EnableCloneable< Sellp< ValueType, IndexType > > | |
| using | result_type = Sellp< ValueType, IndexType > |
Public Types inherited from gko::ConvertibleTo< Sellp< ValueType, IndexType > > | |
| using | result_type = Sellp< ValueType, IndexType > |
Public Types inherited from gko::ConvertibleTo< Sellp< next_precision< ValueType >, IndexType > > | |
| using | result_type = Sellp< next_precision< ValueType >, IndexType > |
Public Types inherited from gko::ConvertibleTo< Dense< ValueType > > | |
| using | result_type = Dense< ValueType > |
Public Types inherited from gko::ConvertibleTo< Csr< ValueType, IndexType > > | |
| using | result_type = Csr< ValueType, IndexType > |
Public Types inherited from gko::DiagonalExtractable< ValueType > | |
| using | value_type = ValueType |
Public Types inherited from gko::ReadableFromMatrixData< ValueType, IndexType > | |
| using | value_type = ValueType |
| using | index_type = IndexType |
Public Types inherited from gko::WritableToMatrixData< ValueType, IndexType > | |
| using | value_type = ValueType |
| using | index_type = IndexType |
Public Types inherited from gko::EnableAbsoluteComputation< remove_complex< Sellp< ValueType, IndexType > > > | |
| using | absolute_type = remove_complex< Sellp< ValueType, IndexType > > |
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 |
| Reads a matrix from a matrix_data structure. More... | |
| void | read (const device_mat_data &data) override |
| Reads a matrix from a device_matrix_data structure. More... | |
| void | read (device_mat_data &&data) override |
| Reads a matrix from a device_matrix_data structure. More... | |
| void | write (mat_data &data) const override |
| Writes a matrix to a matrix_data structure. More... | |
| std::unique_ptr< Diagonal< ValueType > > | extract_diagonal () const override |
| Extracts the diagonal entries of the matrix into a vector. More... | |
| std::unique_ptr< absolute_type > | compute_absolute () const override |
| Gets the AbsoluteLinOp. More... | |
| void | compute_absolute_inplace () override |
| Compute absolute inplace on each element. | |
| value_type * | get_values () noexcept |
| Returns the values of the matrix. More... | |
| const value_type * | get_const_values () const noexcept |
| Returns the values of the matrix. More... | |
| index_type * | get_col_idxs () noexcept |
| Returns the column indexes of the matrix. More... | |
| const index_type * | get_const_col_idxs () const noexcept |
| Returns the column indexes of the matrix. More... | |
| size_type * | get_slice_lengths () noexcept |
| Returns the lengths(columns) of slices. More... | |
| const size_type * | get_const_slice_lengths () const noexcept |
| Returns the lengths(columns) of slices. More... | |
| size_type * | get_slice_sets () noexcept |
| Returns the offsets of slices. More... | |
| const size_type * | get_const_slice_sets () const noexcept |
| Returns the offsets of slices. More... | |
| size_type | get_slice_size () const noexcept |
| Returns the size of a slice. More... | |
| size_type | get_stride_factor () const noexcept |
| Returns the stride factor(t) of SELL-P. More... | |
| size_type | get_total_cols () const noexcept |
| Returns the total column number. More... | |
| size_type | get_num_stored_elements () const noexcept |
| Returns the number of elements explicitly stored in the matrix. More... | |
| 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. More... | |
| 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. More... | |
| 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. More... | |
| 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. More... | |
| device_view | get_device_view () |
| get the non-owning device view | |
| const_device_view | get_const_device_view () const |
| get the const non-owning device view | |
| Sellp & | operator= (const Sellp &) |
| Copy-assigns a Sellp matrix. More... | |
| Sellp & | operator= (Sellp &&) |
| Move-assigns a Sellp matrix. More... | |
| Sellp (const Sellp &) | |
| Copy-assigns a Sellp matrix. More... | |
| Sellp (Sellp &&) | |
| Move-assigns a Sellp matrix. More... | |
Public Member Functions inherited from gko::LinOp | |
| void | apply (ptr_param< const LinOp > b, ptr_param< LinOp > x) const |
| Applies a linear operator to a vector (or a sequence of vectors). More... | |
| void | apply (ptr_param< const LinOp > alpha, ptr_param< const LinOp > b, ptr_param< const LinOp > beta, ptr_param< LinOp > x) const |
| Performs the operation x = alpha * op(b) + beta * x. More... | |
| const dim< 2 > & | get_size () const noexcept |
| Returns the size of the operator. More... | |
| virtual bool | apply_uses_initial_guess () const |
| Returns true if the linear operator uses the data given in x as an initial guess. More... | |
| LinOp & | operator= (const LinOp &)=default |
| Copy-assigns a LinOp. More... | |
| LinOp & | operator= (LinOp &&other) |
| Move-assigns a LinOp. More... | |
| LinOp (const LinOp &)=default | |
| Copy-constructs a LinOp. More... | |
| LinOp (LinOp &&other) | |
| Move-constructs a LinOp. More... | |
Public Member Functions inherited from gko::PolymorphicObject | |
| PolymorphicObject & | operator= (const PolymorphicObject &) |
| std::shared_ptr< const Executor > | get_executor () const noexcept |
| Returns the Executor of the object. More... | |
Public Member Functions inherited from gko::log::EnableLogging< PolymorphicObject > | |
| void | add_logger (std::shared_ptr< const Logger > logger) override |
| void | remove_logger (const Logger *logger) override |
| void | remove_logger (ptr_param< const Logger > logger) |
| const std::vector< std::shared_ptr< const Logger > > & | get_loggers () const override |
| void | clear_loggers () override |
Public Member Functions inherited from gko::log::Loggable | |
| void | remove_logger (ptr_param< const Logger > logger) |
Public Member Functions inherited from gko::EnableCloneable< Sellp< ValueType, IndexType > > | |
| std::unique_ptr< Sellp< ValueType, IndexType > > | clone (std::shared_ptr< const Executor > exec) const |
| Creates a clone of the object. More... | |
| std::unique_ptr< Sellp< ValueType, IndexType > > | clone () const |
| Creates a clone of the object. More... | |
| void | convert_to (result_type *result) const override |
| Converts the implementer to an object of type result_type. More... | |
| void | move_to (result_type *result) override |
| Converts the implementer to an object of type result_type by moving data from this object. More... | |
| std::unique_ptr< Sellp< ValueType, IndexType > > | create_default () const |
| std::unique_ptr< Sellp< ValueType, IndexType > > | create_default (std::shared_ptr< const Executor > exec) const |
Public Member Functions inherited from gko::ConvertibleTo< Sellp< ValueType, IndexType > > | |
| void | convert_to (ptr_param< result_type > result) const |
| void | move_to (ptr_param< result_type > result) |
Public Member Functions inherited from gko::Cloneable | |
| std::unique_ptr< Cloneable > | clone (std::shared_ptr< const Executor > exec) const |
| std::unique_ptr< Cloneable > | clone () const |
| Cloneable * | copy_from (ptr_param< const Cloneable > other) |
| Cloneable * | move_from (ptr_param< Cloneable > other) |
| std::unique_ptr< Cloneable > | create_default (std::shared_ptr< const Executor > exec) const |
| std::unique_ptr< Cloneable > | create_default () const |
Public Member Functions inherited from gko::ConvertibleTo< Sellp< next_precision< ValueType >, IndexType > > | |
| virtual void | convert_to (result_type *result) const=0 |
| Converts the implementer to an object of type result_type. More... | |
| void | convert_to (ptr_param< result_type > result) const |
| virtual void | move_to (result_type *result)=0 |
| Converts the implementer to an object of type result_type by moving data from this object. More... | |
| void | move_to (ptr_param< result_type > result) |
Public Member Functions inherited from gko::ConvertibleTo< Dense< ValueType > > | |
| virtual void | convert_to (result_type *result) const=0 |
| Converts the implementer to an object of type result_type. More... | |
| void | convert_to (ptr_param< result_type > result) const |
| virtual void | move_to (result_type *result)=0 |
| Converts the implementer to an object of type result_type by moving data from this object. More... | |
| void | move_to (ptr_param< result_type > result) |
Public Member Functions inherited from gko::ConvertibleTo< Csr< ValueType, IndexType > > | |
| virtual void | convert_to (result_type *result) const=0 |
| Converts the implementer to an object of type result_type. More... | |
| void | convert_to (ptr_param< result_type > result) const |
| virtual void | move_to (result_type *result)=0 |
| Converts the implementer to an object of type result_type by moving data from this object. More... | |
| void | move_to (ptr_param< result_type > result) |
Public Member Functions inherited from gko::DiagonalExtractable< ValueType > | |
| std::unique_ptr< LinOp > | extract_diagonal_linop () const override |
| Extracts the diagonal entries of the matrix into a vector. More... | |
Public Member Functions inherited from gko::ReadableFromMatrixData< ValueType, IndexType > | |
| void | read (const matrix_assembly_data< ValueType, IndexType > &data) |
| Reads a matrix from a matrix_assembly_data structure. More... | |
Public Member Functions inherited from gko::EnableAbsoluteComputation< remove_complex< Sellp< ValueType, IndexType > > > | |
| std::unique_ptr< LinOp > | compute_absolute_linop () const override |
| Gets the absolute LinOp. More... | |
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. More... | |
| 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. More... | |
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.
| gko::matrix::Sellp< ValueType, IndexType >::Sellp | ( | Sellp< ValueType, IndexType > && | ) |
Move-assigns a Sellp matrix.
Inherits the executor, moves the data and parameters. The moved-from object is empty (0x0 with valid slice_sets and unchanged parameters).
|
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 gko::matrix::Sellp< ValueType, IndexType >::get_col_idxs().
|
overridevirtual |
Gets the AbsoluteLinOp.
Implements gko::EnableAbsoluteComputation< remove_complex< Sellp< ValueType, IndexType > > >.
|
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< ValueType >.
|
inlinenoexcept |
Returns the column indexes of the matrix.
References gko::array< ValueType >::get_data().
Referenced by gko::matrix::Sellp< ValueType, IndexType >::col_at().
|
inlinenoexcept |
Returns the column indexes of the matrix.
References gko::array< ValueType >::get_const_data().
|
inlinenoexcept |
Returns the lengths(columns) of slices.
References gko::array< ValueType >::get_const_data().
|
inlinenoexcept |
Returns the offsets of slices.
References gko::array< ValueType >::get_const_data().
|
inlinenoexcept |
Returns the values of the matrix.
References gko::array< ValueType >::get_const_data().
|
inlinenoexcept |
Returns the number of elements explicitly stored in the matrix.
References gko::array< ValueType >::get_size().
|
inlinenoexcept |
Returns the lengths(columns) of slices.
References gko::array< ValueType >::get_data().
|
inlinenoexcept |
Returns the offsets of slices.
References gko::array< ValueType >::get_data().
|
inlinenoexcept |
Returns the size of a slice.
|
inlinenoexcept |
Returns the stride factor(t) of SELL-P.
|
inlinenoexcept |
Returns the total column number.
References gko::array< ValueType >::get_size().
|
inlinenoexcept |
Returns the values of the matrix.
References gko::array< ValueType >::get_data().
| Sellp& gko::matrix::Sellp< ValueType, IndexType >::operator= | ( | const Sellp< ValueType, IndexType > & | ) |
Copy-assigns a Sellp matrix.
Preserves the executor, copies the data and parameters.
| Sellp& gko::matrix::Sellp< ValueType, IndexType >::operator= | ( | Sellp< ValueType, IndexType > && | ) |
Move-assigns a Sellp matrix.
Preserves the executor, moves the data and parameters. The moved-from object is empty (0x0 with valid slice_sets and unchanged parameters).
|
overridevirtual |
Reads a matrix from a device_matrix_data structure.
| data | the device_matrix_data structure. |
Reimplemented from gko::ReadableFromMatrixData< ValueType, IndexType >.
|
overridevirtual |
Reads a matrix from a matrix_data structure.
| data | the matrix_data structure |
Implements gko::ReadableFromMatrixData< ValueType, IndexType >.
|
overridevirtual |
Reads a matrix from a device_matrix_data structure.
The structure may be emptied by this function.
| data | the device_matrix_data structure. |
Reimplemented from gko::ReadableFromMatrixData< 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 |
References gko::array< ValueType >::get_const_data().
|
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 |
References gko::array< ValueType >::get_data().
|
overridevirtual |
Writes a matrix to a matrix_data structure.
| data | the matrix_data structure |
Implements gko::WritableToMatrixData< ValueType, IndexType >.
1.8.16