#include <Kokkos_HbMatrix.hpp>
Inheritance diagram for Kokkos::HbMatrix< OrdinalType, ScalarType >:
Public Member Functions | |
Constructors/Destructor. | |
| HbMatrix (void) | |
| Default HbMatrix constuctor. | |
| HbMatrix (const HbMatrix &source) | |
| Copy constructor. | |
| virtual | ~HbMatrix () |
| HbMatrix Destructor. | |
Classical Harwell-Boeing Format Initialization Methods | |
| int | initializeStructure (OrdinalType numRows, OrdinalType numCols, bool isRowOriented, OrdinalType *pntr, OrdinalType *indx) |
| Initialize structure of matrix (Classical Harwell-Boeing Format). | |
| int | initializeValues (ScalarType *values) |
| Initialize structure of matrix (Classical Harwell-Boeing Format). | |
Generalized Harwell-Boeing Format Initialization Methods | |
| int | initializeStructure (OrdinalType numRows, OrdinalType numCols, bool isRowOriented, OrdinalType *profile, OrdinalType **indx) |
| Initialize structure of matrix (Generalized Harwell-Boeing Format). | |
| int | initializeValues (ScalarType **values) |
| Initialize structure of matrix (Generalized Harwell-Boeing Format). | |
Matrix entry access methods. | |
| int | getIndices (OrdinalType i, OrdinalType &numRowEntries, OrdinalType *&indices) const |
| Returns number of entries in ith row/column, and pointer to an array of these indices. | |
| int | getValues (OrdinalType i, ScalarType *&values) const |
| Returns a pointer to an array of values for the ith row/column. | |
Matrix Attribute set methods. | |
| virtual int | setIsUpperTriangular (bool tf) |
| Set whether or not the compressed index matrix has no entries below the diagonal, assumed false. | |
| virtual int | setIsLowerTriangular (bool tf) |
| Set whether or not the compressed index matrix has no entries above the diagonal, assumed false. | |
| virtual int | setHasDiagonalEntries (bool tf) |
| Set whether or not the compressed index matrix has explicit diagonal entries. | |
| virtual int | setHasImplicitUnitDiagonal (bool tf) |
| Set whether or not the compressed index matrix should be treated as unit diagonal, assumed false. | |
Validity tests. | |
| virtual int | checkStructure () const |
| Check if the matrix structure is valid for user-assertion of Upper/Lower Triangular and implicit unit diagonal. | |
Matrix Attribute access methods. | |
| bool | getIsClassicHbMatrix () const |
| Returns true if the compressed index matrix was formed using a classic HB matrix. | |
| bool | getIsRowOriented () const |
| Returns true if the compressed index matrix should be interpreted as a row matrix. | |
| virtual bool | getIsUpperTriangular () const |
| Returns true if the compressed index matrix has no entries below the diagonal. | |
| virtual bool | getIsLowerTriangular () const |
| Returns true if the compressed index matrix has no entries above the diagonal. | |
| virtual bool | getHasImplicitUnitDiagonal () const |
| Returns true if the compressed index matrix has no diagonal entries, but should be treated as unit diagonal. | |
| OrdinalType | getNumRows () const |
| Number of rows. | |
| OrdinalType | getNumCols () const |
| Number of columns. | |
| OrdinalType | getNumEntries () const |
| Number of matrix entries. | |
Protected Attributes | |
| OrdinalType | numRows_ |
| OrdinalType | numCols_ |
| OrdinalType | numEntries_ |
| ScalarType ** | values_ |
| ScalarType * | allValues_ |
| OrdinalType ** | indices_ |
| OrdinalType * | allIndices_ |
| OrdinalType * | pntr_ |
| OrdinalType * | profile_ |
| bool | isRowOriented_ |
| bool | isUpperTriangular_ |
| bool | isLowerTriangular_ |
| bool | hasImplicitUnitDiagonal_ |
| bool | hasDiagonalEntries_ |
| bool | isClassicHbMatrix_ |
The Kokkos::HbMatrix implements the Kokkos::CisMatrix interface using either a Harwell-Boeing matrix or generalized form of one.
|
|||||||||
|
Check if the matrix structure is valid for user-assertion of Upper/Lower Triangular and implicit unit diagonal.
|
|
||||||||||||||||||||
|
Returns number of entries in ith row/column, and pointer to an array of these indices. Extract the number of entries and a pointer to the indices in the ith row/column of the matrix. Note that the indices are not copied by this method. Memory allocation is handled by the matrix object itself.
Implements Kokkos::CisMatrix< OrdinalType, ScalarType >. |
|
||||||||||||||||
|
Returns a pointer to an array of values for the ith row/column. Extract the values in the ith row/column of the matrix. Note that the values are not copied by this method. Memory allocation is handled by the matrix object itself.
Implements Kokkos::CisMatrix< OrdinalType, ScalarType >. |
|
||||||||||||||||||||||||||||
|
Initialize structure of matrix (Generalized Harwell-Boeing Format). This interface supports matrices that are stored in a generalized Harwell-Boeing format.
|
|
||||||||||||||||||||||||||||
|
Initialize structure of matrix (Classical Harwell-Boeing Format). This interface supports matrices that are stored in the classical Harwell-Boeing format.
|
|
||||||||||
|
Initialize structure of matrix (Generalized Harwell-Boeing Format). This interface supports matrices that are stored in the classical Harwell-Boeing format.
|
|
||||||||||
|
Initialize structure of matrix (Classical Harwell-Boeing Format). This interface supports matrices that are stored in the classical Harwell-Boeing format.
|
|
||||||||||
|
Set whether or not the compressed index matrix should be treated as unit diagonal, assumed false.
|
1.3.9.1