Xpetra
Version of the Day
|
#include <Xpetra_TpetraBlockCrsMatrix_decl.hpp>
Private Types | |
typedef TpetraBlockCrsMatrix < Scalar, LocalOrdinal, GlobalOrdinal, Node > | TpetraBlockCrsMatrixClass |
typedef TpetraVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > | TpetraVectorClass |
typedef TpetraImport < LocalOrdinal, GlobalOrdinal, Node > | TpetraImportClass |
typedef TpetraExport < LocalOrdinal, GlobalOrdinal, Node > | TpetraExportClass |
Constructor/Destructor Methods | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, size_t maxNumEntriesPerRow, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying fixed number of entries for each row (not implemented) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying (possibly different) number of entries in each row (not implemented) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, size_t maxNumEntriesPerRow, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and fixed number of entries for each row (not implemented) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and number of entries in each row (not implemented) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying a previously constructed graph ( not implemented ) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph, const LocalOrdinal blockSize) | |
Constructor specifying a previously constructed graph & blocksize. More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &sourceMatrix, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor for a fused import ( not implemented ) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &sourceMatrix, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor for a fused export ( not implemented ) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &sourceMatrix, const Import< LocalOrdinal, GlobalOrdinal, Node > &RowImporter, const Teuchos::RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > DomainImporter, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) | |
Constructor for a fused import ( not implemented ) More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &sourceMatrix, const Export< LocalOrdinal, GlobalOrdinal, Node > &RowExporter, const Teuchos::RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > DomainExporter, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) | |
Constructor for a fused export ( not implemented ) More... | |
virtual | ~TpetraBlockCrsMatrix () |
Destructor. More... | |
Insertion/Removal Methods | |
void | insertGlobalValues (GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &cols, const ArrayView< const Scalar > &vals) |
Insert matrix entries, using global IDs (not implemented) More... | |
void | insertLocalValues (LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &cols, const ArrayView< const Scalar > &vals) |
Insert matrix entries, using local IDs (not implemented) More... | |
void | replaceGlobalValues (GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &cols, const ArrayView< const Scalar > &vals) |
Replace matrix entries, using global IDs (not implemented) More... | |
void | replaceLocalValues (LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &cols, const ArrayView< const Scalar > &vals) |
Replace matrix entries, using local IDs. More... | |
void | setAllToScalar (const Scalar &alpha) |
Set all matrix entries equal to scalarThis. More... | |
void | scale (const Scalar &alpha) |
Scale the current values of a matrix, this = alpha*this (not implemented) More... | |
void | allocateAllValues (size_t numNonZeros, ArrayRCP< size_t > &rowptr, ArrayRCP< LocalOrdinal > &colind, ArrayRCP< Scalar > &values) |
Allocates and returns ArrayRCPs of the Crs arrays — This is an Xpetra-only routine. More... | |
void | setAllValues (const ArrayRCP< size_t > &rowptr, const ArrayRCP< LocalOrdinal > &colind, const ArrayRCP< Scalar > &values) |
Sets the 1D pointer arrays of the graph (not impelmented) More... | |
void | getAllValues (ArrayRCP< const size_t > &rowptr, ArrayRCP< const LocalOrdinal > &colind, ArrayRCP< const Scalar > &values) const |
Gets the 1D pointer arrays of the graph (not implemented) More... | |
Transformational Methods | |
void | resumeFill (const RCP< ParameterList > ¶ms=null) |
void | fillComplete (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const RCP< ParameterList > ¶ms=null) |
Signal that data entry is complete, specifying domain and range maps. More... | |
void | fillComplete (const RCP< ParameterList > ¶ms=null) |
Signal that data entry is complete. More... | |
void | replaceDomainMapAndImporter (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &newDomainMap, Teuchos::RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &newImporter) |
Replaces the current domainMap and importer with the user-specified objects. More... | |
void | expertStaticFillComplete (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &importer=Teuchos::null, const RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > &exporter=Teuchos::null, const RCP< ParameterList > ¶ms=Teuchos::null) |
Expert static fill complete. More... | |
Methods implementing RowMatrix | |
const RCP< const Map < LocalOrdinal, GlobalOrdinal, Node > > | getRowMap () const |
Returns the Map that describes the row distribution in this matrix. More... | |
const RCP< const Map < LocalOrdinal, GlobalOrdinal, Node > > | getColMap () const |
Returns the Map that describes the column distribution in this matrix. More... | |
RCP< const CrsGraph < LocalOrdinal, GlobalOrdinal, Node > > | getCrsGraph () const |
Returns the CrsGraph associated with this matrix. More... | |
global_size_t | getGlobalNumRows () const |
Number of global elements in the row map of this matrix. More... | |
global_size_t | getGlobalNumCols () const |
Number of global columns in the matrix. More... | |
size_t | getNodeNumRows () const |
Returns the number of matrix rows owned on the calling node. More... | |
size_t | getNodeNumCols () const |
Returns the number of columns connected to the locally owned rows of this matrix. More... | |
global_size_t | getGlobalNumEntries () const |
Returns the global number of entries in this matrix. More... | |
size_t | getNodeNumEntries () const |
Returns the local number of entries in this matrix. More... | |
size_t | getNumEntriesInLocalRow (LocalOrdinal localRow) const |
Returns the current number of entries on this node in the specified local row. More... | |
size_t | getNumEntriesInGlobalRow (GlobalOrdinal globalRow) const |
Returns the current number of entries in the (locally owned) global row. More... | |
size_t | getGlobalMaxNumRowEntries () const |
Returns the maximum number of entries across all rows/columns on all nodes. More... | |
size_t | getNodeMaxNumRowEntries () const |
Returns the maximum number of entries across all rows/columns on this node. More... | |
bool | isLocallyIndexed () const |
If matrix indices are in the local range, this function returns true. Otherwise, this function returns false. More... | |
bool | isGloballyIndexed () const |
If matrix indices are in the global range, this function returns true. Otherwise, this function returns false. More... | |
bool | isFillComplete () const |
Returns true if the matrix is in compute mode, i.e. if fillComplete() has been called. More... | |
bool | isFillActive () const |
Returns true if the matrix is in edit mode. More... | |
ScalarTraits< Scalar > ::magnitudeType | getFrobeniusNorm () const |
Returns the Frobenius norm of the matrix. More... | |
bool | supportsRowViews () const |
Returns true if getLocalRowView() and getGlobalRowView() are valid for this class. More... | |
void | getLocalRowCopy (LocalOrdinal LocalRow, const ArrayView< LocalOrdinal > &Indices, const ArrayView< Scalar > &Values, size_t &NumEntries) const |
Extract a list of entries in a specified local row of the matrix. Put into storage allocated by calling routine. More... | |
void | getGlobalRowView (GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &indices, ArrayView< const Scalar > &values) const |
Extract a const, non-persisting view of global indices in a specified row of the matrix. More... | |
void | getGlobalRowCopy (GlobalOrdinal GlobalRow, const ArrayView< GlobalOrdinal > &indices, const ArrayView< Scalar > &values, size_t &numEntries) const |
Extract a list of entries in a specified global row of this matrix. Put into pre-allocated storage. More... | |
void | getLocalRowView (LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices, ArrayView< const Scalar > &values) const |
Extract a const, non-persisting view of local indices in a specified row of the matrix. More... | |
virtual bool | haveGlobalConstants () const |
Returns true if globalConstants have been computed; false otherwise. More... | |
Methods implementing Operator | |
void | apply (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Y, Teuchos::ETransp mode=Teuchos::NO_TRANS, Scalar alpha=ScalarTraits< Scalar >::one(), Scalar beta=ScalarTraits< Scalar >::zero()) const |
Computes the sparse matrix-multivector multiplication. More... | |
const RCP< const Map < LocalOrdinal, GlobalOrdinal, Node > > | getDomainMap () const |
Returns the Map associated with the domain of this operator. This will be null until fillComplete() is called. More... | |
const RCP< const Map < LocalOrdinal, GlobalOrdinal, Node > > | getRangeMap () const |
Returns the Map associated with the range of this operator, which must be compatible with Y.getMap(). More... | |
Overridden from Teuchos::Describable | |
std::string | description () const |
A simple one-line description of this object. More... | |
void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const |
Print the object with some verbosity level to an FancyOStream object. More... | |
Overridden from Teuchos::LabeledObject | |
void | setObjectLabel (const std::string &objectLabel) |
void | getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag) const |
Get a copy of the diagonal entries owned by this node, with local row idices. More... | |
void | getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag, const Teuchos::ArrayView< const size_t > &offsets) const |
Get a copy of the diagonal entries owned by this node, with local row indices. More... | |
void | getLocalDiagOffsets (Teuchos::ArrayRCP< size_t > &offsets) const |
Get offsets of the diagonal entries in the matrix. More... | |
void | replaceDiag (const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag) |
Replace the diagonal entries of the matrix. More... | |
void | leftScale (const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &x) |
Left scale operator with given vector values. More... | |
void | rightScale (const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &x) |
Right scale operator with given vector values. More... | |
Teuchos::RCP< const Map < LocalOrdinal, GlobalOrdinal, Node > > | getMap () const |
Implements DistObject interface. More... | |
void | doImport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Import. More... | |
void | doExport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Export. More... | |
void | doImport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Import (using an Exporter). More... | |
void | doExport (const DistObject< char, LocalOrdinal, GlobalOrdinal, Node > &dest, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Export (using an Importer). More... | |
void | removeEmptyProcessesInPlace (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &newMap) |
Xpetra specific | |
RCP< Tpetra::BlockCrsMatrix < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | mtx_ |
bool | hasMatrix () const |
Does this have an underlying matrix. More... | |
TpetraBlockCrsMatrix (const Teuchos::RCP< Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &mtx) | |
TpetraBlockCrsMatrix constructor to wrap a Tpetra::BlockCrsMatrix object. More... | |
RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getTpetra_BlockCrsMatrix () const |
Get the underlying Tpetra matrix. More... | |
RCP< Tpetra::BlockCrsMatrix < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | getTpetra_BlockCrsMatrixNonConst () const |
Get the underlying Tpetra matrix. More... | |
void | residual (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &R) const |
Compute a residual R = B - (*this) * X. More... | |
Additional Inherited Members | |
Public Types inherited from Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
typedef Scalar | scalar_type |
typedef LocalOrdinal | local_ordinal_type |
typedef GlobalOrdinal | global_ordinal_type |
typedef Node | node_type |
Public Types inherited from Xpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
typedef Scalar | scalar_type |
typedef LocalOrdinal | local_ordinal_type |
typedef GlobalOrdinal | global_ordinal_type |
typedef Node | node_type |
Public Member Functions inherited from Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
virtual | ~CrsMatrix () |
Destructor. More... | |
virtual void | removeEmptyProcessesInPlace (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &newMap)=0 |
Public Member Functions inherited from Xpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > | |
virtual | ~RowMatrix () |
Destructor. More... | |
virtual void | getLocalRowCopy (LocalOrdinal LocalRow, const Teuchos::ArrayView< LocalOrdinal > &Indices, const Teuchos::ArrayView< Scalar > &Values, size_t &NumEntries) const =0 |
Extract a list of entries in a specified local row of the graph. Put into storage allocated by calling routine. More... | |
Public Member Functions inherited from Xpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node > | |
virtual | ~DistObject () |
Destructor. More... | |
Definition at line 67 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.
|
private |
Definition at line 72 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.
|
private |
Definition at line 73 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.
|
private |
Definition at line 74 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.
|
private |
Definition at line 75 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rowMap, |
size_t | maxNumEntriesPerRow, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying fixed number of entries for each row (not implemented)
Definition at line 57 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rowMap, |
const ArrayRCP< const size_t > & | NumEntriesPerRowToAlloc, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying (possibly different) number of entries in each row (not implemented)
Definition at line 68 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rowMap, |
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | colMap, | ||
size_t | maxNumEntriesPerRow, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and fixed number of entries for each row (not implemented)
Definition at line 79 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rowMap, |
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | colMap, | ||
const ArrayRCP< const size_t > & | NumEntriesPerRowToAlloc, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and number of entries in each row (not implemented)
Definition at line 91 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > & | graph, |
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying a previously constructed graph ( not implemented )
Definition at line 103 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > & | graph, |
const LocalOrdinal | blockSize | ||
) |
Constructor specifying a previously constructed graph & blocksize.
Definition at line 115 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | sourceMatrix, |
const Import< LocalOrdinal, GlobalOrdinal, Node > & | importer, | ||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | domainMap = Teuchos::null , |
||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rangeMap = Teuchos::null , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor for a fused import ( not implemented )
Definition at line 124 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | sourceMatrix, |
const Export< LocalOrdinal, GlobalOrdinal, Node > & | exporter, | ||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | domainMap = Teuchos::null , |
||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rangeMap = Teuchos::null , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor for a fused export ( not implemented )
Constructor for a fused export (not implemented(.
Definition at line 137 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | sourceMatrix, |
const Import< LocalOrdinal, GlobalOrdinal, Node > & | RowImporter, | ||
const Teuchos::RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > | DomainImporter, | ||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | domainMap, | ||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rangeMap, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params | ||
) |
Constructor for a fused import ( not implemented )
Definition at line 150 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | sourceMatrix, |
const Export< LocalOrdinal, GlobalOrdinal, Node > & | RowExporter, | ||
const Teuchos::RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > | DomainExporter, | ||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | domainMap, | ||
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | rangeMap, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params | ||
) |
Constructor for a fused export ( not implemented )
Constructor for a fused export (not implemented(.
Definition at line 164 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Destructor.
Definition at line 178 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::TpetraBlockCrsMatrix | ( | const Teuchos::RCP< Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | mtx | ) |
TpetraBlockCrsMatrix constructor to wrap a Tpetra::BlockCrsMatrix object.
Definition at line 741 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Insert matrix entries, using global IDs (not implemented)
Insert matrix entries, using global TpetraBlockCrsMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node>::IDs (not implemented)
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 188 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Insert matrix entries, using local IDs (not implemented)
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 200 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Replace matrix entries, using global IDs (not implemented)
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 212 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Replace matrix entries, using local IDs.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 224 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Set all matrix entries equal to scalarThis.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 235 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Scale the current values of a matrix, this = alpha*this (not implemented)
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 245 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Allocates and returns ArrayRCPs of the Crs arrays — This is an Xpetra-only routine.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 256 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Sets the 1D pointer arrays of the graph (not impelmented)
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 266 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Gets the 1D pointer arrays of the graph (not implemented)
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 276 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 293 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Signal that data entry is complete, specifying domain and range maps.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 302 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Signal that data entry is complete.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 313 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Replaces the current domainMap and importer with the user-specified objects.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 322 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Expert static fill complete.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 332 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the Map that describes the row distribution in this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 350 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the Map that describes the column distribution in this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 359 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the CrsGraph associated with this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 368 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Number of global elements in the row map of this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 377 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Number of global columns in the matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 384 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the number of matrix rows owned on the calling node.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 391 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the number of columns connected to the locally owned rows of this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 398 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the global number of entries in this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 405 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the local number of entries in this matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 412 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the current number of entries on this node in the specified local row.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 419 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the current number of entries in the (locally owned) global row.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 426 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the maximum number of entries across all rows/columns on all nodes.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 431 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the maximum number of entries across all rows/columns on this node.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 436 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
If matrix indices are in the local range, this function returns true. Otherwise, this function returns false.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 441 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
If matrix indices are in the global range, this function returns true. Otherwise, this function returns false.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 446 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns true if the matrix is in compute mode, i.e. if fillComplete() has been called.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 451 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns true if the matrix is in edit mode.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 456 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the Frobenius norm of the matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 461 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns true if getLocalRowView() and getGlobalRowView() are valid for this class.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 466 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Extract a list of entries in a specified local row of the matrix. Put into storage allocated by calling routine.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 473 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Extract a const, non-persisting view of global indices in a specified row of the matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 486 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Extract a list of entries in a specified global row of this matrix. Put into pre-allocated storage.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 498 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Extract a const, non-persisting view of local indices in a specified row of the matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 511 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns true if globalConstants have been computed; false otherwise.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 519 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Computes the sparse matrix-multivector multiplication.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 525 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the Map associated with the domain of this operator. This will be null until fillComplete() is called.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 536 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Returns the Map associated with the range of this operator, which must be compatible with Y.getMap().
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 543 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
A simple one-line description of this object.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 550 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Print the object with some verbosity level to an FancyOStream object.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 557 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 568 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Get a copy of the diagonal entries owned by this node, with local row idices.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 580 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Get a copy of the diagonal entries owned by this node, with local row indices.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 595 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Get offsets of the diagonal entries in the matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 606 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Replace the diagonal entries of the matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 644 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Left scale operator with given vector values.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 653 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Right scale operator with given vector values.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 662 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Implements DistObject interface.
Access function for the Tpetra::Map this DistObject was constructed with.
Implements Xpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 671 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Implements Xpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 681 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Implements Xpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 692 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Import (using an Exporter).
Implements Xpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 703 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Export (using an Importer).
Implements Xpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 714 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
void Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::removeEmptyProcessesInPlace | ( | const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & | newMap | ) |
Definition at line 724 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
virtual |
Does this have an underlying matrix.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 733 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
RCP< const Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getTpetra_BlockCrsMatrix | ( | ) | const |
Get the underlying Tpetra matrix.
Definition at line 749 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
RCP< Tpetra::BlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Xpetra::TpetraBlockCrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getTpetra_BlockCrsMatrixNonConst | ( | ) | const |
Get the underlying Tpetra matrix.
Definition at line 759 of file Xpetra_TpetraBlockCrsMatrix_def.hpp.
|
inlinevirtual |
Compute a residual R = B - (*this) * X.
Implements Xpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 408 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.
|
private |
Definition at line 421 of file Xpetra_TpetraBlockCrsMatrix_decl.hpp.