Tpetra parallel linear algebra
Version of the Day
|
Sparse matrix that presents a row-oriented interface that lets users read or modify entries. More...
#include <Tpetra_CrsMatrix_decl.hpp>
Public Types | |
Typedefs | |
using | scalar_type = Scalar |
The type of each entry in the matrix. More... | |
using | impl_scalar_type = typename Kokkos::ArithTraits< Scalar >::val_type |
The type used internally in place of Scalar . More... | |
using | local_ordinal_type = LocalOrdinal |
The type of each local index in the matrix. More... | |
using | global_ordinal_type = GlobalOrdinal |
The type of each global index in the matrix. More... | |
using | device_type = typename Node::device_type |
The Kokkos device type. More... | |
using | execution_space = typename device_type::execution_space |
The Kokkos execution space. More... | |
using | node_type = Node |
This class' Kokkos Node type. More... | |
using | mag_type = typename Kokkos::ArithTraits< impl_scalar_type >::mag_type |
Type of a norm result. More... | |
using | map_type = Map< LocalOrdinal, GlobalOrdinal, Node > |
The Map specialization suitable for this CrsMatrix specialization. More... | |
using | import_type = Import< LocalOrdinal, GlobalOrdinal, Node > |
The Import specialization suitable for this CrsMatrix specialization. More... | |
using | export_type = Export< LocalOrdinal, GlobalOrdinal, Node > |
The Export specialization suitable for this CrsMatrix specialization. More... | |
using | crs_graph_type = CrsGraph< LocalOrdinal, GlobalOrdinal, Node > |
The CrsGraph specialization suitable for this CrsMatrix specialization. More... | |
using | local_graph_type = typename crs_graph_type::local_graph_type |
The part of the sparse matrix's graph on each MPI process. More... | |
using | local_matrix_type = KokkosSparse::CrsMatrix< impl_scalar_type, local_ordinal_type, execution_space, void, typename local_graph_type::size_type > |
The specialization of Kokkos::CrsMatrix that represents the part of the sparse matrix on each MPI process. More... | |
Typedefs | |
using | packet_type = typename::Kokkos::Details::ArithTraits< char >::val_type |
The type of each datum being sent or received in an Import or Export. More... | |
Public Member Functions | |
local_matrix_type::values_type | getLocalValuesView () const |
Get the Kokkos local values. More... | |
void | importAndFillComplete (Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &destMatrix, const import_type &importer, const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) const |
Import from this to the given destination matrix, and make the result fill complete. More... | |
void | importAndFillComplete (Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &destMatrix, const import_type &rowImporter, const import_type &domainImporter, const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) const |
Import from this to the given destination matrix, and make the result fill complete. More... | |
void | exportAndFillComplete (Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &destMatrix, const export_type &exporter, const Teuchos::RCP< const map_type > &domainMap=Teuchos::null, const Teuchos::RCP< const map_type > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) const |
Export from this to the given destination matrix, and make the result fill complete. More... | |
void | exportAndFillComplete (Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > &destMatrix, const export_type &rowExporter, const export_type &domainExporter, const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) const |
Export from this to the given destination matrix, and make the result fill complete. More... | |
void | computeGlobalConstants () |
Compute matrix properties that require collectives. More... | |
bool | haveGlobalConstants () const |
Returns true if globalConstants have been computed; false otherwise. More... | |
Transformational methods | |
void | globalAssemble () |
Communicate nonlocal contributions to other processes. More... | |
void | resumeFill (const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Resume operations that may change the values or structure of the matrix. More... | |
void | fillComplete (const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Tell the matrix that you are done changing its structure or values, and that you are ready to do computational kernels (e.g., sparse matrix-vector multiply) with it. More... | |
void | fillComplete (const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Tell the matrix that you are done changing its structure or values, and that you are ready to do computational kernels (e.g., sparse matrix-vector multiply) with it. Set default domain and range Maps. More... | |
void | expertStaticFillComplete (const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< const import_type > &importer=Teuchos::null, const Teuchos::RCP< const export_type > &exporter=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Perform a fillComplete on a matrix that already has data. More... | |
void | replaceColMap (const Teuchos::RCP< const map_type > &newColMap) |
Replace the matrix's column Map with the given Map. More... | |
void | reindexColumns (crs_graph_type *const graph, const Teuchos::RCP< const map_type > &newColMap, const Teuchos::RCP< const import_type > &newImport=Teuchos::null, const bool sortEachRow=true) |
Reindex the column indices in place, and replace the column Map. Optionally, replace the Import object as well. More... | |
void | replaceDomainMapAndImporter (const Teuchos::RCP< const map_type > &newDomainMap, Teuchos::RCP< const import_type > &newImporter) |
Replace the current domain Map and Import with the given objects. More... | |
virtual void | removeEmptyProcessesInPlace (const Teuchos::RCP< const map_type > &newMap) override |
Remove processes owning zero rows from the Maps and their communicator. More... | |
Advanced templated methods | |
template<class DomainScalar , class RangeScalar > | |
void | localMultiply (const MultiVector< DomainScalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< RangeScalar, LocalOrdinal, GlobalOrdinal, Node > &Y, Teuchos::ETransp mode, RangeScalar alpha, RangeScalar beta) const |
Compute a sparse matrix-MultiVector product local to each process. More... | |
void | localApply (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &Y, const Teuchos::ETransp mode=Teuchos::NO_TRANS, const Scalar &alpha=Teuchos::ScalarTraits< Scalar >::one(), const Scalar &beta=Teuchos::ScalarTraits< Scalar >::zero()) const |
Compute the local part of a sparse matrix-(Multi)Vector multiply. More... | |
template<class DomainScalar , class RangeScalar > | |
void | localGaussSeidel (const MultiVector< DomainScalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< RangeScalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &D, const RangeScalar &dampingFactor, const ESweepDirection direction) const |
Gauss-Seidel or SOR on . More... | |
template<class DomainScalar , class RangeScalar > | |
void | reorderedLocalGaussSeidel (const MultiVector< DomainScalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< RangeScalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &D, const Teuchos::ArrayView< LocalOrdinal > &rowIndices, const RangeScalar &dampingFactor, const ESweepDirection direction) const |
Reordered Gauss-Seidel or SOR on . More... | |
template<class T > | |
Teuchos::RCP< CrsMatrix< T, LocalOrdinal, GlobalOrdinal, Node > > | convert () const |
Return another CrsMatrix with the same entries, but converted to a different Scalar type T . 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=Teuchos::ScalarTraits< Scalar >::one(), Scalar beta=Teuchos::ScalarTraits< Scalar >::zero()) const override |
Compute a sparse matrix-MultiVector multiply. More... | |
bool | hasTransposeApply () const override |
Whether apply() allows applying the transpose or conjugate transpose. More... | |
Teuchos::RCP< const map_type > | getDomainMap () const override |
The domain Map of this matrix. More... | |
Teuchos::RCP< const map_type > | getRangeMap () const override |
The range Map of this matrix. More... | |
Other "apply"-like methods | |
void | gaussSeidel (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &D, const Scalar &dampingFactor, const ESweepDirection direction, const int numSweeps) const |
"Hybrid" Jacobi + (Gauss-Seidel or SOR) on . More... | |
void | reorderedGaussSeidel (const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &D, const Teuchos::ArrayView< LocalOrdinal > &rowIndices, const Scalar &dampingFactor, const ESweepDirection direction, const int numSweeps) const |
Reordered "Hybrid" Jacobi + (Gauss-Seidel or SOR) on . More... | |
void | gaussSeidelCopy (MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &D, const Scalar &dampingFactor, const ESweepDirection direction, const int numSweeps, const bool zeroInitialGuess) const |
Version of gaussSeidel(), with fewer requirements on X. More... | |
void | reorderedGaussSeidelCopy (MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &X, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &B, const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &D, const Teuchos::ArrayView< LocalOrdinal > &rowIndices, const Scalar &dampingFactor, const ESweepDirection direction, const int numSweeps, const bool zeroInitialGuess) const |
Version of reorderedGaussSeidel(), with fewer requirements on X. More... | |
virtual Teuchos::RCP < RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > | add (const Scalar &alpha, const RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &A, const Scalar &beta, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) const override |
Implementation of RowMatrix::add: return alpha*A + beta*this . More... | |
Implementation of Teuchos::Describable interface | |
std::string | description () const override |
A one-line description of this object. More... | |
void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const override |
Print this object with the given verbosity level to the given output stream. More... | |
Implementation of Packable interface | |
virtual void | pack (const Teuchos::ArrayView< const LocalOrdinal > &exportLIDs, Teuchos::Array< char > &exports, const Teuchos::ArrayView< size_t > &numPacketsPerLID, size_t &constantNumPackets, Distributor &distor) const |
Pack this object's data for an Import or Export. More... | |
Public methods for redistributing data | |
void | doImport (const SrcDistObject &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, const CombineMode CM, const bool restrictedMode=false) |
Import data into this object using an Import object ("forward mode"). More... | |
void | doImport (const SrcDistObject &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, const CombineMode CM, const bool restrictedMode=false) |
Import data into this object using an Export object ("reverse mode"). More... | |
void | doExport (const SrcDistObject &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, const CombineMode CM, const bool restrictedMode=false) |
Export data into this object using an Export object ("forward mode"). More... | |
void | doExport (const SrcDistObject &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, const CombineMode CM, const bool restrictedMode=false) |
Export data into this object using an Import object ("reverse mode"). More... | |
Attribute accessor methods | |
bool | isDistributed () const |
Whether this is a globally distributed object. More... | |
virtual Teuchos::RCP< const map_type > | getMap () const |
The Map describing the parallel distribution of this object. More... | |
I/O methods | |
void | print (std::ostream &os) const |
Print this object to the given output stream. More... | |
Methods for use only by experts | |
virtual void | removeEmptyProcessesInPlace (const Teuchos::RCP< const map_type > &newMap) |
Remove processes which contain no entries in this object's Map. More... | |
Protected Member Functions | |
void | allocateValues (ELocalGlobal lg, GraphAllocationStatus gas) |
Allocate values (and optionally indices) using the Node. More... | |
size_t | mergeRowIndicesAndValues (crs_graph_type &graph, const RowInfo &rowInfo) |
Merge duplicate row indices in the given row, along with their corresponding values. More... | |
void | sortAndMergeIndicesAndValues (const bool sorted, const bool merged) |
Sort and merge duplicate local column indices in all rows on the calling process, along with their corresponding values. More... | |
void | clearGlobalConstants () |
Clear matrix properties that require collectives. More... | |
Teuchos::RCP< MV > | getColumnMapMultiVector (const MV &X_domainMap, const bool force=false) const |
Create a (or fetch a cached) column Map MultiVector. More... | |
Teuchos::RCP< MV > | getRowMapMultiVector (const MV &Y_rangeMap, const bool force=false) const |
Create a (or fetch a cached) row Map MultiVector. More... | |
void | applyNonTranspose (const MV &X_in, MV &Y_in, Scalar alpha, Scalar beta) const |
Special case of apply() for mode == Teuchos::NO_TRANS . More... | |
void | applyTranspose (const MV &X_in, MV &Y_in, const Teuchos::ETransp mode, Scalar alpha, Scalar beta) const |
Special case of apply() for mode != Teuchos::NO_TRANS . More... | |
LocalOrdinal | getViewRawConst (const impl_scalar_type *&vals, LocalOrdinal &numEnt, const RowInfo &rowinfo) const |
Const pointer to all entries (including extra space) in the given row. More... | |
LocalOrdinal | getViewRaw (impl_scalar_type *&vals, LocalOrdinal &numEnt, const RowInfo &rowinfo) const |
Nonconst pointer to all entries (including extra space) in the given row. More... | |
Teuchos::ArrayView< const impl_scalar_type > | getView (RowInfo rowinfo) const |
Constant view of all entries (including extra space) in the given row. More... | |
Teuchos::ArrayView < impl_scalar_type > | getViewNonConst (const RowInfo &rowinfo) const |
Nonconst view of all entries (including extra space) in the given row. More... | |
void | swap (CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &matrix) |
Swaps the data from *this with the data and maps from crsMatrix. More... | |
void | fillLocalMatrix (const Teuchos::RCP< Teuchos::ParameterList > ¶ms) |
Fill data into the local matrix. More... | |
void | fillLocalGraphAndMatrix (const Teuchos::RCP< Teuchos::ParameterList > ¶ms) |
Fill data into the local graph and matrix. More... | |
void | checkInternalState () const |
Check that this object's state is sane; throw if it's not. More... | |
virtual size_t | constantNumberOfPackets () const |
Whether the implementation's instance promises always to have a constant number of packets per LID (local index), and if so, how many packets per LID there are. More... | |
virtual void | doTransfer (const SrcDistObject &src, const ::Tpetra::Details::Transfer< local_ordinal_type, global_ordinal_type, node_type > &transfer, const char modeString[], const ReverseOption revOp, const CombineMode CM, const bool restrictedMode) |
Redistribute data across (MPI) processes. More... | |
virtual bool | reallocArraysForNumPacketsPerLid (const size_t numExportLIDs, const size_t numImportLIDs) |
Reallocate numExportPacketsPerLID_ and/or numImportPacketsPerLID_, if necessary. More... | |
virtual void | doTransferNew (const SrcDistObject &src, const CombineMode CM, const size_t numSameIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteToLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteFromLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &remoteLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &exportLIDs, Distributor &distor, const ReverseOption revOp, const bool commOnHost, const bool restrictedMode) |
Implementation detail of doTransfer. More... | |
Protected Attributes | |
Teuchos::RCP< MV > | importMV_ |
Column Map MultiVector used in apply() and gaussSeidel(). More... | |
Teuchos::RCP< MV > | exportMV_ |
Row Map MultiVector used in apply(). More... | |
local_matrix_type | lclMatrix_ |
The local sparse matrix. More... | |
::Tpetra::Details::EStorageStatus | storageStatus_ |
Status of the matrix's storage, when not in a fill-complete state. More... | |
bool | fillComplete_ |
Whether the matrix is fill complete. More... | |
std::map< GlobalOrdinal, std::pair< Teuchos::Array < GlobalOrdinal > , Teuchos::Array< Scalar > > > | nonlocals_ |
Nonlocal data added using insertGlobalValues(). More... | |
mag_type | frobNorm_ |
Cached Frobenius norm of the (global) matrix. More... | |
(Global) graph pointers | |
We keep two graph pointers in order to maintain const correctness. myGraph_ is a graph which we create internally. Operations that change the sparsity structure also modify myGraph_. If myGraph_ != null, then staticGraph_ == myGraph_ pointerwise (we set the pointers equal to each other when we create myGraph_). myGraph_ is only null if this CrsMatrix was created using the constructor with a const CrsGraph input argument. In this case, staticGraph_ is set to the input CrsGraph. | |
Teuchos::RCP< const Graph > | staticGraph_ |
Teuchos::RCP< Graph > | myGraph_ |
Sparse matrix values. | |
k_values1D_ represents the values assuming "1-D" compressed sparse row storage. values2D_ represents the values as an array of arrays, one (inner) array per row of the sparse matrix. Before allocation, both arrays are null. After allocation, one is null. If static allocation, then values2D_ is null. If dynamic allocation, then k_values1D_ is null. The allocation always matches that of graph_, as the graph does the allocation for the matrix. | |
local_matrix_type::values_type | k_values1D_ |
Teuchos::ArrayRCP < Teuchos::Array < impl_scalar_type > > | values2D_ |
Related Functions | |
(Note that these are not member functions.) | |
template<class CrsMatrixType > | |
Teuchos::RCP< CrsMatrixType > | importAndFillCompleteCrsMatrix (const Teuchos::RCP< const CrsMatrixType > &sourceMatrix, const Import< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > &importer, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Nonmember CrsMatrix constructor that fuses Import and fillComplete(). More... | |
template<class CrsMatrixType > | |
Teuchos::RCP< CrsMatrixType > | importAndFillCompleteCrsMatrix (const Teuchos::RCP< const CrsMatrixType > &sourceMatrix, const Import< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > &rowImporter, const Import< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > &domainImporter, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &domainMap, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) |
Nonmember CrsMatrix constructor that fuses Import and fillComplete(). More... | |
template<class CrsMatrixType > | |
Teuchos::RCP< CrsMatrixType > | exportAndFillCompleteCrsMatrix (const Teuchos::RCP< const CrsMatrixType > &sourceMatrix, const Export< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > &exporter, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Nonmember CrsMatrix constructor that fuses Export and fillComplete(). More... | |
template<class CrsMatrixType > | |
Teuchos::RCP< CrsMatrixType > | exportAndFillCompleteCrsMatrix (const Teuchos::RCP< const CrsMatrixType > &sourceMatrix, const Export< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > &rowExporter, const Export< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > &domainExporter, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &domainMap, const Teuchos::RCP< const Map< typename CrsMatrixType::local_ordinal_type, typename CrsMatrixType::global_ordinal_type, typename CrsMatrixType::node_type > > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) |
Nonmember CrsMatrix constructor that fuses Export and fillComplete(). More... | |
template<class Scalar , class LocalOrdinal , class GlobalOrdinal , class Node > | |
Teuchos::RCP< CrsMatrix < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | createCrsMatrix (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &map, size_t maxNumEntriesPerRow=0, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Non-member function to create an empty CrsMatrix given a row map and a non-zero profile. More... | |
Constructors and destructor | |
template<class S2 , class LO2 , class GO2 , class N2 > | |
class | CrsMatrix |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const size_t maxNumEntriesPerRow, const ProfileType pftype=TPETRA_DEFAULT_PROFILE_TYPE, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying fixed number of entries for each row. More... | |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::ArrayView< const size_t > &numEntPerRowToAlloc, const ProfileType pftype=TPETRA_DEFAULT_PROFILE_TYPE, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying (possibly different) number of entries in each row. More... | |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const size_t maxNumEntPerRow, const ProfileType pftype=TPETRA_DEFAULT_PROFILE_TYPE, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and fixed number of entries for each row. More... | |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const Teuchos::ArrayView< const size_t > &numEntPerRowToAlloc, const ProfileType pftype=TPETRA_DEFAULT_PROFILE_TYPE, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and number of entries in each row. More... | |
CrsMatrix (const Teuchos::RCP< const crs_graph_type > &graph, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying a previously constructed graph. More... | |
CrsMatrix (const Teuchos::RCP< const crs_graph_type > &graph, const typename local_matrix_type::values_type &values, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying a previously constructed graph and entries array. More... | |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const typename local_matrix_type::row_map_type &rowPointers, const typename local_graph_type::entries_type::non_const_type &columnIndices, const typename local_matrix_type::values_type &values, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and arrays containing the matrix in sorted local indices. More... | |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const Teuchos::ArrayRCP< size_t > &rowPointers, const Teuchos::ArrayRCP< LocalOrdinal > &columnIndices, const Teuchos::ArrayRCP< Scalar > &values, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and arrays containing the matrix in sorted, local ids. More... | |
CrsMatrix (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const local_matrix_type &lclMatrix, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column Map and a local matrix, which the resulting CrsMatrix views. More... | |
CrsMatrix (const local_matrix_type &lclMatrix, const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const Teuchos::RCP< const map_type > &domainMap=Teuchos::null, const Teuchos::RCP< const map_type > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) | |
Constructor specifying column, domain and range Maps, and a local matrix, which the resulting CrsMatrix views. More... | |
CrsMatrix (const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &source, const Teuchos::DataAccess copyOrView) | |
Copy constructor, with option to do deep or shallow copy. More... | |
CrsMatrix (const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &)=delete | |
Copy constructor (forbidden). More... | |
CrsMatrix (CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &&)=delete | |
Move constructor (forbidden). More... | |
CrsMatrix & | operator= (const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &)=delete |
Copy assignment (forbidden). More... | |
CrsMatrix & | operator= (CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > &&)=delete |
Move assignment (forbidden). More... | |
virtual | ~CrsMatrix ()=default |
Destructor (virtual for memory safety of derived classes). More... | |
Methods for inserting, modifying, or removing entries | |
void | insertGlobalValues (const GlobalOrdinal globalRow, const Teuchos::ArrayView< const GlobalOrdinal > &cols, const Teuchos::ArrayView< const Scalar > &vals) |
Insert one or more entries into the matrix, using global column indices. More... | |
void | insertGlobalValues (const GlobalOrdinal globalRow, const LocalOrdinal numEnt, const Scalar vals[], const GlobalOrdinal inds[]) |
Epetra compatibility version of insertGlobalValues (see above) that takes arguments as raw pointers, rather than Teuchos::ArrayView. More... | |
void | insertLocalValues (const LocalOrdinal localRow, const Teuchos::ArrayView< const LocalOrdinal > &cols, const Teuchos::ArrayView< const Scalar > &vals) |
Insert one or more entries into the matrix, using local column indices. More... | |
void | insertLocalValues (const LocalOrdinal localRow, const LocalOrdinal numEnt, const Scalar vals[], const LocalOrdinal cols[]) |
Epetra compatibility version of insertLocalValues (see above) that takes arguments as raw pointers, rather than Teuchos::ArrayView. More... | |
template<class GlobalIndicesViewType , class ImplScalarViewType > | |
LocalOrdinal | replaceGlobalValues (const GlobalOrdinal globalRow, const typename UnmanagedView< GlobalIndicesViewType >::type &inputInds, const typename UnmanagedView< ImplScalarViewType >::type &inputVals) const |
Replace one or more entries' values, using global indices. More... | |
LocalOrdinal | replaceGlobalValues (const GlobalOrdinal globalRow, const Teuchos::ArrayView< const GlobalOrdinal > &cols, const Teuchos::ArrayView< const Scalar > &vals) const |
Backwards compatibility version of replaceGlobalValues (see above), that takes Teuchos::ArrayView (host pointers) instead of Kokkos::View. More... | |
LocalOrdinal | replaceGlobalValues (const GlobalOrdinal globalRow, const LocalOrdinal numEnt, const Scalar vals[], const GlobalOrdinal cols[]) const |
Epetra compatibility version of replaceGlobalValues (see above), that takes raw pointers instead of Kokkos::View. More... | |
template<class LocalIndicesViewType , class ImplScalarViewType > | |
LocalOrdinal | replaceLocalValues (const LocalOrdinal localRow, const typename UnmanagedView< LocalIndicesViewType >::type &inputInds, const typename UnmanagedView< ImplScalarViewType >::type &inputVals) const |
Replace one or more entries' values, using local row and column indices. More... | |
LocalOrdinal | replaceLocalValues (const LocalOrdinal localRow, const Teuchos::ArrayView< const LocalOrdinal > &cols, const Teuchos::ArrayView< const Scalar > &vals) const |
Backwards compatibility version of replaceLocalValues (see above), that takes Teuchos::ArrayView (host pointers) instead of Kokkos::View. More... | |
LocalOrdinal | replaceLocalValues (const LocalOrdinal localRow, const LocalOrdinal numEnt, const Scalar inputVals[], const LocalOrdinal inputCols[]) const |
Epetra compatibility version of replaceLocalValues, that takes raw pointers instead of Kokkos::View. More... | |
LocalOrdinal | sumIntoGlobalValues (const GlobalOrdinal globalRow, const Teuchos::ArrayView< const GlobalOrdinal > &cols, const Teuchos::ArrayView< const Scalar > &vals, const bool atomic=useAtomicUpdatesByDefault) |
Sum into one or more sparse matrix entries, using global indices. More... | |
LocalOrdinal | sumIntoGlobalValues (const GlobalOrdinal globalRow, const LocalOrdinal numEnt, const Scalar vals[], const GlobalOrdinal cols[], const bool atomic=useAtomicUpdatesByDefault) |
Epetra compatibility version of sumIntoGlobalValues (see above), that takes input as raw pointers instead of Kokkos::View. More... | |
template<class LocalIndicesViewType , class ImplScalarViewType > | |
LocalOrdinal | sumIntoLocalValues (const LocalOrdinal localRow, const typename UnmanagedView< LocalIndicesViewType >::type &inputInds, const typename UnmanagedView< ImplScalarViewType >::type &inputVals, const bool atomic=useAtomicUpdatesByDefault) const |
Sum into one or more sparse matrix entries, using local row and column indices. More... | |
LocalOrdinal | sumIntoLocalValues (const LocalOrdinal localRow, const Teuchos::ArrayView< const LocalOrdinal > &cols, const Teuchos::ArrayView< const Scalar > &vals, const bool atomic=useAtomicUpdatesByDefault) const |
Sum into one or more sparse matrix entries, using local row and column indices. More... | |
LocalOrdinal | sumIntoLocalValues (const LocalOrdinal localRow, const LocalOrdinal numEnt, const Scalar vals[], const LocalOrdinal cols[], const bool atomic=useAtomicUpdatesByDefault) const |
Epetra compatibility version of sumIntoLocalValues (see above) that takes raw pointers instead of Kokkos::View. More... | |
template<class LocalIndicesViewType , class ImplScalarViewType , class BinaryFunction > | |
LocalOrdinal | transformLocalValues (const LocalOrdinal lclRow, const typename UnmanagedView< LocalIndicesViewType >::type &inputInds, const typename UnmanagedView< ImplScalarViewType >::type &inputVals, BinaryFunction f, const bool atomic=useAtomicUpdatesByDefault) const |
Transform CrsMatrix entries in place, using local indices to select the entries in the row to transform. More... | |
template<class BinaryFunction , class InputMemorySpace > | |
LocalOrdinal | transformGlobalValues (const GlobalOrdinal gblRow, const Kokkos::View< const GlobalOrdinal *, InputMemorySpace, Kokkos::MemoryUnmanaged > &inputInds, const Kokkos::View< const impl_scalar_type *, InputMemorySpace, Kokkos::MemoryUnmanaged > &inputVals, BinaryFunction f, const bool atomic=useAtomicUpdatesByDefault) const |
Transform CrsMatrix entries in place, using global indices to select the entries in the row to transform. More... | |
void | setAllToScalar (const Scalar &alpha) |
Set all matrix entries equal to alpha . More... | |
void | scale (const Scalar &alpha) |
Scale the matrix's values: this := alpha*this . More... | |
void | setAllValues (const typename local_matrix_type::row_map_type &ptr, const typename local_graph_type::entries_type::non_const_type &ind, const typename local_matrix_type::values_type &val) |
Set the local matrix using three (compressed sparse row) arrays. More... | |
void | setAllValues (const Teuchos::ArrayRCP< size_t > &ptr, const Teuchos::ArrayRCP< LocalOrdinal > &ind, const Teuchos::ArrayRCP< Scalar > &val) |
Set the local matrix using three (compressed sparse row) arrays. More... | |
void | getAllValues (Teuchos::ArrayRCP< const size_t > &rowPointers, Teuchos::ArrayRCP< const LocalOrdinal > &columnIndices, Teuchos::ArrayRCP< const Scalar > &values) const |
Methods implementing RowMatrix | |
Teuchos::RCP< const Teuchos::Comm< int > > | getComm () const override |
The communicator over which the matrix is distributed. More... | |
Teuchos::RCP< const map_type > | getRowMap () const override |
The Map that describes the row distribution in this matrix. More... | |
Teuchos::RCP< const map_type > | getColMap () const override |
The Map that describes the column distribution in this matrix. More... | |
Teuchos::RCP< const RowGraph < LocalOrdinal, GlobalOrdinal, Node > > | getGraph () const override |
This matrix's graph, as a RowGraph. More... | |
Teuchos::RCP< const crs_graph_type > | getCrsGraph () const |
This matrix's graph, as a CrsGraph. More... | |
local_matrix_type | getLocalMatrix () const |
The local sparse matrix. More... | |
global_size_t | getGlobalNumRows () const override |
Number of global elements in the row map of this matrix. More... | |
global_size_t | getGlobalNumCols () const override |
The number of global columns in the matrix. More... | |
size_t | getNodeNumRows () const override |
The number of matrix rows owned by the calling process. More... | |
size_t | getNodeNumCols () const override |
The number of columns connected to the locally owned rows of this matrix. More... | |
GlobalOrdinal | getIndexBase () const override |
The index base for global indices for this matrix. More... | |
global_size_t | getGlobalNumEntries () const override |
The global number of entries in this matrix. More... | |
size_t | getNodeNumEntries () const override |
The local number of entries in this matrix. More... | |
size_t | getNumEntriesInGlobalRow (GlobalOrdinal globalRow) const override |
Number of entries in the sparse matrix in the given global row, on the calling (MPI) process. More... | |
size_t | getNumEntriesInLocalRow (local_ordinal_type localRow) const override |
Number of entries in the sparse matrix in the given local row, on the calling (MPI) process. More... | |
size_t | getGlobalMaxNumRowEntries () const override |
Maximum number of entries in any row of the matrix, over all processes in the matrix's communicator. More... | |
size_t | getNodeMaxNumRowEntries () const override |
Maximum number of entries in any row of the matrix, on this process. More... | |
bool | hasColMap () const override |
Whether the matrix has a well-defined column Map. More... | |
bool | isLocallyIndexed () const override |
Whether the matrix is locally indexed on the calling process. More... | |
bool | isGloballyIndexed () const override |
Whether the matrix is globally indexed on the calling process. More... | |
bool | isFillComplete () const override |
Whether the matrix is fill complete. More... | |
bool | isFillActive () const |
Whether the matrix is not fill complete. More... | |
bool | isStorageOptimized () const |
Returns true if storage has been optimized. More... | |
ProfileType | getProfileType () const |
Returns true if the matrix was allocated with static data structures. More... | |
bool | isStaticGraph () const |
Indicates that the graph is static, so that new entries cannot be added to this matrix. More... | |
mag_type | getFrobeniusNorm () const override |
Compute and return the Frobenius norm of the matrix. More... | |
virtual bool | supportsRowViews () const override |
Return true if getLocalRowView() and getGlobalRowView() are valid for this object. More... | |
void | getGlobalRowCopy (GlobalOrdinal GlobalRow, const Teuchos::ArrayView< GlobalOrdinal > &Indices, const Teuchos::ArrayView< Scalar > &Values, size_t &NumEntries) const override |
Fill given arrays with a deep copy of the locally owned entries of the matrix in a given row, using global column indices. More... | |
void | getLocalRowCopy (LocalOrdinal localRow, const Teuchos::ArrayView< LocalOrdinal > &colInds, const Teuchos::ArrayView< Scalar > &vals, size_t &numEntries) const override |
Fill given arrays with a deep copy of the locally owned entries of the matrix in a given row, using local column indices. More... | |
void | getGlobalRowView (GlobalOrdinal GlobalRow, Teuchos::ArrayView< const GlobalOrdinal > &indices, Teuchos::ArrayView< const Scalar > &values) const override |
Get a constant, nonpersisting view of a row of this matrix, using global row and column indices. More... | |
void | getLocalRowView (LocalOrdinal LocalRow, Teuchos::ArrayView< const LocalOrdinal > &indices, Teuchos::ArrayView< const Scalar > &values) const override |
Get a constant, nonpersisting view of a row of this matrix, using local row and column indices. More... | |
LocalOrdinal | getLocalRowViewRaw (const LocalOrdinal lclRow, LocalOrdinal &numEnt, const LocalOrdinal *&lclColInds, const Scalar *&vals) const override |
Get a constant, nonpersisting, locally indexed view of the given row of the matrix, using "raw" pointers instead of Teuchos::ArrayView. More... | |
LocalOrdinal | getLocalRowView (const LocalOrdinal lclRow, LocalOrdinal &numEnt, const impl_scalar_type *&val, const LocalOrdinal *&ind) const |
Get a constant, nonpersisting view of a row of this matrix, using local row and column indices, with raw pointers. More... | |
template<class OutputScalarType > | |
std::enable_if<!std::is_same < OutputScalarType, impl_scalar_type >::value &&std::is_convertible < impl_scalar_type, OutputScalarType >::value, LocalOrdinal >::type | getLocalRowView (const LocalOrdinal lclRow, LocalOrdinal &numEnt, const OutputScalarType *&val, const LocalOrdinal *&ind) const |
Get a constant, nonpersisting view of a row of this matrix, using local row and column indices, with raw pointers. More... | |
void | getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag) const override |
Get a copy of the diagonal entries of the matrix. More... | |
void | getLocalDiagOffsets (Teuchos::ArrayRCP< size_t > &offsets) const |
Get offsets of the diagonal entries in the matrix. More... | |
void | getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag, const Kokkos::View< const size_t *, device_type, Kokkos::MemoryUnmanaged > &offsets) const |
Variant of getLocalDiagCopy() that uses precomputed offsets. More... | |
void | getLocalDiagCopy (Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &diag, const Teuchos::ArrayView< const size_t > &offsets) const |
Variant of getLocalDiagCopy() that uses precomputed offsets. More... | |
void | leftScale (const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &x) override |
Scale the matrix on the left with the given Vector. More... | |
void | rightScale (const Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > &x) override |
Scale the matrix on the right with the given Vector. More... | |
Implementation of DistObject interface | |
typedef DistObject< Scalar, LocalOrdinal, GlobalOrdinal, Node >::buffer_device_type | buffer_device_type |
Kokkos::Device specialization for communication buffers. More... | |
virtual bool | checkSizes (const SrcDistObject &source) override |
Compare the source and target (this) objects for compatibility. More... | |
void | unpackAndCombine (const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &importLIDs, Kokkos::DualView< char *, buffer_device_type > imports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, const size_t constantNumPackets, Distributor &distor, const CombineMode CM) override |
Unpack the imported column indices and values, and combine into matrix. More... | |
void | packNew (const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &exportLIDs, Kokkos::DualView< char *, buffer_device_type > &exports, const Kokkos::DualView< size_t *, buffer_device_type > &numPacketsPerLID, size_t &constantNumPackets, Distributor &dist) const |
Pack this object's data for an Import or Export. More... | |
virtual void | copyAndPermute (const SrcDistObject &source, const size_t numSameIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteToLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteFromLIDs) override |
virtual void | packAndPrepare (const SrcDistObject &source, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &exportLIDs, Kokkos::DualView< char *, buffer_device_type > &exports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, size_t &constantNumPackets, Distributor &distor) override |
Methods implemented by subclasses and used by doTransfer(). | |
The doTransfer() method uses the subclass' implementations of these methods to implement data transfer. Subclasses of DistObject must implement these methods. This is an instance of the Template Method Pattern. ("Template" here doesn't mean "C++ template"; it means "pattern with holes that are filled in by the subclass' method implementations.") | |
Teuchos::RCP< const map_type > | map_ |
The Map over which this object is distributed. More... | |
Kokkos::DualView< packet_type *, buffer_device_type > | imports_ |
Buffer into which packed data are imported (received from other processes). More... | |
Kokkos::DualView< size_t *, buffer_device_type > | numImportPacketsPerLID_ |
Number of packets to receive for each receive operation. More... | |
Kokkos::DualView< packet_type *, buffer_device_type > | exports_ |
Buffer from which packed data are exported (sent to other processes). More... | |
Kokkos::DualView< size_t *, buffer_device_type > | numExportPacketsPerLID_ |
Number of packets to send for each send operation. More... | |
virtual void | copyAndPermute (const SrcDistObject &source, const size_t numSameIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteToLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteFromLIDs) |
Perform copies and permutations that are local to the calling (MPI) process. More... | |
virtual void | packAndPrepare (const SrcDistObject &source, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &exportLIDs, Kokkos::DualView< packet_type *, buffer_device_type > &exports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, size_t &constantNumPackets, Distributor &distor) |
Pack data and metadata for communication (sends). More... | |
virtual void | unpackAndCombine (const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &importLIDs, Kokkos::DualView< packet_type *, buffer_device_type > imports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, const size_t constantNumPackets, Distributor &distor, const CombineMode combineMode) |
Perform any unpacking and combining after communication. More... | |
bool | reallocImportsIfNeeded (const size_t newSize, const bool verbose, const std::string *prefix) |
Reallocate imports_ if needed. More... | |
Sparse matrix that presents a row-oriented interface that lets users read or modify entries.
Scalar | The type of the numerical entries of the matrix. (You can use real-valued or complex-valued types here, unlike in Epetra, where the scalar type is always double .) |
LocalOrdinal | The type of local indices. See the documentation of Map for requirements. |
GlobalOrdinal | The type of global indices. See the documentation of Map for requirements. |
Node | The Kokkos Node type. See the documentation of Map for requirements. |
This class implements a distributed-memory parallel sparse matrix, and provides sparse matrix-vector multiply (including transpose) and sparse triangular solve operations. It provides access by rows to the elements of the matrix, as if the local data were stored in compressed sparse row format. (Implementations are not required to store the data in this way internally.) This class has an interface like that of Epetra_CrsMatrix, but also allows insertion of data into nonowned rows, much like Epetra_FECrsMatrix.
Before reading the rest of this documentation, it helps to know something about the Teuchos memory management classes, in particular Teuchos::RCP, Teuchos::ArrayRCP, and Teuchos::ArrayView. You should also know a little bit about MPI (the Message Passing Interface for distributed-memory programming). You won't have to use MPI directly to use CrsMatrix, but it helps to be familiar with the general idea of distributed storage of data over a communicator. Finally, you should read the documentation of Map and MultiVector.
The distinction between local and global indices might confuse new Tpetra users. Please refer to the documentation of Map for a detailed explanation. This is important because many of CrsMatrix's methods for adding, modifying, or accessing entries come in versions that take either local or global indices. The matrix itself may store indices either as local or global, and the same matrix may use global indices or local indices at different points in its life. You should only use the method version corresponding to the current state of the matrix. For example, getGlobalRowView() returns a view to the indices represented as global; it is incorrect to call this method if the matrix is storing indices as local. Call isGloballyIndexed() or isLocallyIndexed() to find out whether the matrix currently stores indices as local or global.
It may also help to read CrsGraph's documentation.
All methods (except for insertGlobalValues() and sumIntoGlobalValues(); see below) that work with global indices only allow operations on indices owned by the calling process. For example, methods that take a global row index expect that row to be owned by the calling process. Access to nonowned rows, that is, rows not owned by the calling process, requires performing an explicit communication via the Import / Export capabilities of the CrsMatrix object. See the documentation of DistObject for more details.
The methods insertGlobalValues() and sumIntoGlobalValues() are exceptions to this rule. They both allows you to add data to nonowned rows. These data are stored locally and communicated to the appropriate process on the next call to globalAssemble() or fillComplete(). This means that CrsMatrix provides the same nonowned insertion functionality that Epetra provides via Epetra_FECrsMatrix.
DistObject only takes a single Map as input to its constructor. MultiVector is an example of a subclass for which a single Map suffices to describe its data distribution. In that case, DistObject's getMap() method obviously must return that Map. CrsMatrix is an example of a subclass that requires two Map objects: a row Map and a column Map. For CrsMatrix, getMap() returns the row Map. This means that doTransfer() (which CrsMatrix does not override) uses the row Map objects of the source and target CrsMatrix objects. CrsMatrix in turn uses its column Map (if it has one) to "filter" incoming sparse matrix entries whose column indices are not in that process' column Map. This means that CrsMatrix may perform extra communication, though the Import and Export operations are still correct.
This is necessary if the CrsMatrix does not yet have a column Map. Other processes might have added new entries to the matrix; the calling process has to see them in order to accept them. However, the CrsMatrix may already have a column Map, for example, if it was created with the constructor that takes both a row and a column Map, or if it is fill complete (which creates the column Map if the matrix does not yet have one). In this case, it could be possible to "filter" on the sender (instead of on the receiver, as CrsMatrix currently does) and avoid sending data corresponding to columns that the receiver does not own. Doing this would require revising the Import or Export object (instead of the incoming data) using the column Map, to remove global indices and their target process ranks from the send lists if the target process does not own those columns, and to remove global indices and their source process ranks from the receive lists if the calling process does not own those columns. (Abstractly, this is a kind of set difference between an Import or Export object for the row Maps, and the Import resp. Export object for the column Maps.) This could be done separate from DistObject, by creating a new "filtered" Import or Export object, that keeps the same source and target Map objects but has a different communication plan. We have not yet implemented this optimization.
Definition at line 425 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::scalar_type = Scalar |
The type of each entry in the matrix.
Definition at line 437 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::impl_scalar_type = typename Kokkos::ArithTraits<Scalar>::val_type |
The type used internally in place of Scalar
.
Some Scalar
types might not work with Kokkos on all execution spaces, due to missing CUDA device macros or volatile overloads. The C++ standard type std::complex<T> has this problem. To fix this, we replace std::complex<T> values internally with the (usually) bitwise identical type Kokkos::complex<T>. The latter is the impl_scalar_type
corresponding to Scalar
= std::complex.
Definition at line 447 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::local_ordinal_type = LocalOrdinal |
The type of each local index in the matrix.
Definition at line 449 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::global_ordinal_type = GlobalOrdinal |
The type of each global index in the matrix.
Definition at line 451 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::device_type = typename Node::device_type |
The Kokkos device type.
Definition at line 453 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::execution_space = typename device_type::execution_space |
The Kokkos execution space.
Definition at line 455 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::node_type = Node |
This class' Kokkos Node type.
This is a leftover that will be deprecated and removed. See e.g., GitHub Issue #57.
Definition at line 461 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::mag_type = typename Kokkos::ArithTraits<impl_scalar_type>::mag_type |
Type of a norm result.
This is usually the same as the type of the magnitude (absolute value) of Scalar
, but may differ for certain Scalar
types.
Definition at line 468 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::map_type = Map<LocalOrdinal, GlobalOrdinal, Node> |
The Map specialization suitable for this CrsMatrix specialization.
Definition at line 471 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::import_type = Import<LocalOrdinal, GlobalOrdinal, Node> |
The Import specialization suitable for this CrsMatrix specialization.
Definition at line 474 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::export_type = Export<LocalOrdinal, GlobalOrdinal, Node> |
The Export specialization suitable for this CrsMatrix specialization.
Definition at line 477 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::crs_graph_type = CrsGraph<LocalOrdinal, GlobalOrdinal, Node> |
The CrsGraph specialization suitable for this CrsMatrix specialization.
Definition at line 480 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::local_graph_type = typename crs_graph_type::local_graph_type |
The part of the sparse matrix's graph on each MPI process.
Definition at line 483 of file Tpetra_CrsMatrix_decl.hpp.
using Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::local_matrix_type = KokkosSparse::CrsMatrix<impl_scalar_type, local_ordinal_type, execution_space, void, typename local_graph_type::size_type> |
The specialization of Kokkos::CrsMatrix that represents the part of the sparse matrix on each MPI process.
Definition at line 492 of file Tpetra_CrsMatrix_decl.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::buffer_device_type |
Kokkos::Device specialization for communication buffers.
See #1088 for why this is not just device_type::device_type
.
Definition at line 3883 of file Tpetra_CrsMatrix_decl.hpp.
|
inherited |
The type of each datum being sent or received in an Import or Export.
Note that this type does not always correspond to the Scalar
template parameter of subclasses.
Definition at line 338 of file Tpetra_DistObject_decl.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const size_t | maxNumEntriesPerRow, | ||
const ProfileType | pftype = TPETRA_DEFAULT_PROFILE_TYPE , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying fixed number of entries for each row.
rowMap | [in] Distribution of rows of the matrix. |
maxNumEntriesPerRow | [in] Maximum number of matrix entries per row. If pftype==DynamicProfile, this is only a hint, and you can set this to zero without affecting correctness. If pftype==StaticProfile, this sets the amount of storage allocated, and you cannot exceed this number of entries in any row. |
pftype | [in] Whether to allocate storage dynamically (DynamicProfile) or statically (StaticProfile). |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 141 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const Teuchos::ArrayView< const size_t > & | numEntPerRowToAlloc, | ||
const ProfileType | pftype = TPETRA_DEFAULT_PROFILE_TYPE , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying (possibly different) number of entries in each row.
rowMap | [in] Distribution of rows of the matrix. |
numEntPerRowToAlloc | [in] Maximum number of matrix entries to allocate for each row. If pftype==DynamicProfile, this is only a hint. If pftype==StaticProfile, this sets the amount of storage allocated, and you cannot exceed the allocated number of entries for any row. |
pftype | [in] Whether to allocate storage dynamically (DynamicProfile) or statically (StaticProfile). |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 176 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const Teuchos::RCP< const map_type > & | colMap, | ||
const size_t | maxNumEntPerRow, | ||
const ProfileType | pftype = TPETRA_DEFAULT_PROFILE_TYPE , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and fixed number of entries for each row.
The column Map will be used to filter any matrix entries inserted using insertLocalValues() or insertGlobalValues().
rowMap | [in] Distribution of rows of the matrix. |
colMap | [in] Distribution of columns of the matrix. |
maxNumEntPerRow | [in] Maximum number of matrix entries per row. If pftype==DynamicProfile, this is only a hint, and you can set this to zero without affecting correctness. If pftype==StaticProfile, this sets the amount of storage allocated, and you cannot exceed this number of entries in any row. |
pftype | [in] Whether to allocate storage dynamically (DynamicProfile) or statically (StaticProfile). |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 248 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const Teuchos::RCP< const map_type > & | colMap, | ||
const Teuchos::ArrayView< const size_t > & | numEntPerRowToAlloc, | ||
const ProfileType | pftype = TPETRA_DEFAULT_PROFILE_TYPE , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and number of entries in each row.
The column Map will be used to filter any matrix indices inserted using insertLocalValues() or insertGlobalValues().
rowMap | [in] Distribution of rows of the matrix. |
colMap | [in] Distribution of columns of the matrix. |
numEntPerRowToAlloc | [in] Maximum number of matrix entries to allocate for each row. If pftype==DynamicProfile, this is only a hint. If pftype==StaticProfile, this sets the amount of storage allocated, and you cannot exceed the allocated number of entries for any row. |
pftype | [in] Whether to allocate storage dynamically (DynamicProfile) or statically (StaticProfile). |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 298 of file Tpetra_CrsMatrix_def.hpp.
|
explicit |
Constructor specifying a previously constructed graph.
Calling this constructor fixes the graph structure of the sparse matrix. We say in this case that the matrix has a "static graph." If you create a CrsMatrix with this constructor, you are not allowed to insert new entries into the matrix, but you are allowed to change values in the matrix.
The given graph must be fill complete. Note that calling resumeFill() on the graph makes it not fill complete, even if you had previously called fillComplete() on the graph. In that case, you must call fillComplete() on the graph again before invoking this CrsMatrix constructor.
This constructor is marked explicit
so that you can't create a CrsMatrix by accident when passing a CrsGraph into a function that takes a CrsMatrix.
graph | [in] The graph structure of the sparse matrix. The graph must be fill complete. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 374 of file Tpetra_CrsMatrix_def.hpp.
|
explicit |
Constructor specifying a previously constructed graph and entries array.
Calling this constructor fixes the graph structure of the sparse matrix. We say in this case that the matrix has a "static graph." If you create a CrsMatrix with this constructor, you are not allowed to insert new entries into the matrix, but you are allowed to change values in the matrix.
The given graph must be fill complete. Note that calling resumeFill() on the graph makes it not fill complete, even if you had previously called fillComplete() on the graph. In that case, you must call fillComplete() on the graph again before invoking this CrsMatrix constructor.
This constructor is marked explicit
so that you can't create a CrsMatrix by accident when passing a CrsGraph into a function that takes a CrsMatrix.
graph | [in] The graph structure of the sparse matrix. The graph must be fill complete. |
values | [in] The local entries in the matrix, as in a CSR "vals" array. The length of this vector should be equal to the number of unknowns in the matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 418 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const Teuchos::RCP< const map_type > & | colMap, | ||
const typename local_matrix_type::row_map_type & | rowPointers, | ||
const typename local_graph_type::entries_type::non_const_type & | columnIndices, | ||
const typename local_matrix_type::values_type & | values, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and arrays containing the matrix in sorted local indices.
rowMap | [in] Distribution of rows of the matrix. |
colMap | [in] Distribution of columns of the matrix. |
rowPointers | [in] The beginning of each row in the matrix, as in a CSR "rowptr" array. The length of this vector should be equal to the number of rows in the graph, plus one. This last entry should store the nunber of nonzeros in the matrix. |
columnIndices | [in] The local indices of the columns, as in a CSR "colind" array. The length of this vector should be equal to the number of unknowns in the matrix. |
values | [in] The local entries in the matrix, as in a CSR "vals" array. The length of this vector should be equal to the number of unknowns in the matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 461 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const Teuchos::RCP< const map_type > & | colMap, | ||
const Teuchos::ArrayRCP< size_t > & | rowPointers, | ||
const Teuchos::ArrayRCP< LocalOrdinal > & | columnIndices, | ||
const Teuchos::ArrayRCP< Scalar > & | values, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and arrays containing the matrix in sorted, local ids.
rowMap | [in] Distribution of rows of the matrix. |
colMap | [in] Distribution of columns of the matrix. |
rowPointers | [in] The beginning of each row in the matrix, as in a CSR "rowptr" array. The length of this vector should be equal to the number of rows in the graph, plus one. This last entry should store the nunber of nonzeros in the matrix. |
columnIndices | [in] The local indices of the columns, as in a CSR "colind" array. The length of this vector should be equal to the number of unknowns in the matrix. |
values | [in] The local entries in the matrix, as in a CSR "vals" array. The length of this vector should be equal to the number of unknowns in the matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 563 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const Teuchos::RCP< const map_type > & | rowMap, |
const Teuchos::RCP< const map_type > & | colMap, | ||
const local_matrix_type & | lclMatrix, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column Map and a local matrix, which the resulting CrsMatrix views.
Unlike most other CrsMatrix constructors, successful completion of this constructor will result in a fill-complete matrix.
rowMap | [in] Distribution of rows of the matrix. |
colMap | [in] Distribution of columns of the matrix. |
lclMatrix | [in] A local CrsMatrix containing all local matrix values as well as a local graph. The graph's local row indices must come from the specified row Map, and its local column indices must come from the specified column Map. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 632 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const local_matrix_type & | lclMatrix, |
const Teuchos::RCP< const map_type > & | rowMap, | ||
const Teuchos::RCP< const map_type > & | colMap, | ||
const Teuchos::RCP< const map_type > & | domainMap = Teuchos::null , |
||
const Teuchos::RCP< const map_type > & | rangeMap = Teuchos::null , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Constructor specifying column, domain and range Maps, and a local matrix, which the resulting CrsMatrix views.
Unlike most other CrsMatrix constructors, successful completion of this constructor will result in a fill-complete matrix.
rowMap | [in] Distribution of rows of the matrix. |
colMap | [in] Distribution of columns of the matrix. |
domainMap | [in] The matrix's domain Map. MUST be one to one! |
rangeMap | [in] The matrix's range Map. MUST be one to one! May be, but need not be, the same as the domain Map. |
lclMatrix | [in] A local CrsMatrix containing all local matrix values as well as a local graph. The graph's local row indices must come from the specified row Map, and its local column indices must come from the specified column Map. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 687 of file Tpetra_CrsMatrix_def.hpp.
Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::CrsMatrix | ( | const CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | source, |
const Teuchos::DataAccess | copyOrView | ||
) |
Copy constructor, with option to do deep or shallow copy.
Definition at line 745 of file Tpetra_CrsMatrix_def.hpp.
|
delete |
Copy constructor (forbidden).
|
delete |
Move constructor (forbidden).
|
virtualdefault |
Destructor (virtual for memory safety of derived classes).
=delete
(or =default
) declarations for copy construction, move construction, copy assignment, and move assignment.
|
delete |
Copy assignment (forbidden).
|
delete |
Move assignment (forbidden).
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::insertGlobalValues | ( | const GlobalOrdinal | globalRow, |
const Teuchos::ArrayView< const GlobalOrdinal > & | cols, | ||
const Teuchos::ArrayView< const Scalar > & | vals | ||
) |
Insert one or more entries into the matrix, using global column indices.
globalRow | [in] Global index of the row into which to insert the entries. |
cols | [in] Global indices of the columns into which to insert the entries. |
vals | [in] Values to insert into the above columns. |
For all k in 0, ..., col.size()-1
, insert the value values[k]
into entry (globalRow, cols[k])
of the matrix. If that entry already exists, add the new value to the old value.
This is a local operation. It does not communicate (using MPI). If row globalRow
is owned by the calling process, the entries will be inserted immediately. Otherwise, if that row is not owned by the calling process, then the entries will be stored locally for now, and only communicated to the process that owns the row when either fillComplete() or globalAssemble() is called. If that process already has an entry, the incoming value will be added to the old value, just as if it were inserted on the owning process. If the matrix has a column Map (hasColMap() == true
), and if globalRow is owned by process p, then it is forbidden to insert column indices that are not in the column Map on process p. Tpetra will test the input column indices to ensure this is the case, but if globalRow
is not owned by the calling process, the test will be deferred until the next call to globalAssemble() or fillComplete().
It is legal to call this method whether the matrix's column indices are globally or locally indexed. If the matrix's column indices are locally indexed (isLocallyIndexed() == true
), then this method will convert the input global column indices to local column indices.
For better performance when filling entries into a sparse matrix, consider the following tips:
Definition at line 2242 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::insertGlobalValues | ( | const GlobalOrdinal | globalRow, |
const LocalOrdinal | numEnt, | ||
const Scalar | vals[], | ||
const GlobalOrdinal | inds[] | ||
) |
Epetra compatibility version of insertGlobalValues (see above) that takes arguments as raw pointers, rather than Teuchos::ArrayView.
Arguments are the same and in the same order as Epetra_CrsMatrix::InsertGlobalValues.
globalRow | [in] Global index of the row into which to insert the entries. |
numEnt | [in] Number of entries to insert; number of valid entries in vals and inds . |
vals | [in] Values to insert. |
inds | [in] Global indices of the columns into which to insert the entries. |
Definition at line 2354 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::insertLocalValues | ( | const LocalOrdinal | localRow, |
const Teuchos::ArrayView< const LocalOrdinal > & | cols, | ||
const Teuchos::ArrayView< const Scalar > & | vals | ||
) |
Insert one or more entries into the matrix, using local column indices.
localRow | [in] Local index of the row into which to insert the entries. It must be owned by the row Map on the calling process. |
cols | [in] Local indices of the columns into which to insert the entries. All of the column indices must be owned by the column Map on the calling process. |
vals | [in] Values to insert into the above columns. |
For all k in 0, ..., cols.size()-1
, insert the value values[k]
into entry (globalRow, cols[k])
of the matrix. If that entry already exists, add the new value to the old value.
In order to call this method, the matrix must be locally indexed, and it must have a column Map.
For better performance when filling entries into a sparse matrix, consider the following tips:
Definition at line 1975 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::insertLocalValues | ( | const LocalOrdinal | localRow, |
const LocalOrdinal | numEnt, | ||
const Scalar | vals[], | ||
const LocalOrdinal | cols[] | ||
) |
Epetra compatibility version of insertLocalValues (see above) that takes arguments as raw pointers, rather than Teuchos::ArrayView.
Arguments are the same and in the same order as Epetra_CrsMatrix::InsertMyValues.
localRow | [in] Local index of the row into which to insert the entries. |
numEnt | [in] Number of entries to insert; number of valid entries in vals and cols . |
vals | [in] Values to insert. |
cols | [in] Global indices of the columns into which to insert the entries. |
Definition at line 2091 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Replace one or more entries' values, using global indices.
globalRow | [in] Global index of the row in which to replace the entries. This row must be owned by the calling process. |
inputInds | [in] Kokkos::View of the global indices of the columns in which to replace the entries. |
inputVals | [in] Kokkos::View of the values to use for replacing the entries. |
For all k in 0, ..., inputInds.extent(0)-1
, replace the value at entry (globalRow, inputInds(k))
of the matrix with inputVals(k)
. That entry must exist in the matrix already.
If (globalRow, inputInds(k))
corresponds to an entry that is duplicated in this matrix row (likely because it was inserted more than once and fillComplete() has not been called in the interim), the behavior of this method is not defined.
If the returned value N satisfies
0 <= N < inputInds.extent(0)
,
then inputInds.extent(0) - N
of the entries of cols
are not valid global column indices. If the returned value is Teuchos::OrdinalTraits<LocalOrdinal>::invalid()
, then at least one of the following is true:
! isFillActive ()
inputInds.extent (0) != inputVals.extent (0)
Definition at line 1337 of file Tpetra_CrsMatrix_decl.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::replaceGlobalValues | ( | const GlobalOrdinal | globalRow, |
const Teuchos::ArrayView< const GlobalOrdinal > & | cols, | ||
const Teuchos::ArrayView< const Scalar > & | vals | ||
) | const |
Backwards compatibility version of replaceGlobalValues (see above), that takes Teuchos::ArrayView (host pointers) instead of Kokkos::View.
Definition at line 2688 of file Tpetra_CrsMatrix_def.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::replaceGlobalValues | ( | const GlobalOrdinal | globalRow, |
const LocalOrdinal | numEnt, | ||
const Scalar | vals[], | ||
const GlobalOrdinal | cols[] | ||
) | const |
Epetra compatibility version of replaceGlobalValues (see above), that takes raw pointers instead of Kokkos::View.
This version of the method takes the same arguments in the same order as Epetra_CrsMatrix::ReplaceGlobalValues.
globalRow | [in] Global index of the row in which to replace the entries. This row must be owned by the calling process. |
numEnt | [in] Number of entries to replace; number of valid entries in vals and cols . |
vals | [in] Values to use for replacing the entries. |
cols | [in] Global indices of the columns in which to replace the entries. |
Definition at line 2706 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Replace one or more entries' values, using local row and column indices.
localRow | [in] local index of the row in which to replace the entries. This row must be owned by the calling process. |
cols | [in] Local indices of the columns in which to replace the entries. |
vals | [in] Values to use for replacing the entries. |
For local row index localRow
and local column indices cols
, do A(localRow, cols(k)) = vals(k)
. The row index and column indices must be valid on the calling process, and all matrix entries A(localRow, cols(k))
must already exist. (This method does not change the matrix's structure.) If the row index is valid, any invalid column indices are ignored, but counted in the return value.
If the returned value N satisfies
0 <= N < cols.extent(0)
,
then cols.extent(0) - N
of the entries of cols
are not valid local column indices. If the returned value is Teuchos::OrdinalTraits<LocalOrdinal>::invalid()
, then at least one of the following is true:
! isFillActive ()
! hasColMap ()
cols.extent (0) != vals.extent (0)
Definition at line 1467 of file Tpetra_CrsMatrix_decl.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::replaceLocalValues | ( | const LocalOrdinal | localRow, |
const Teuchos::ArrayView< const LocalOrdinal > & | cols, | ||
const Teuchos::ArrayView< const Scalar > & | vals | ||
) | const |
Backwards compatibility version of replaceLocalValues (see above), that takes Teuchos::ArrayView (host pointers) instead of Kokkos::View.
Definition at line 2551 of file Tpetra_CrsMatrix_def.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::replaceLocalValues | ( | const LocalOrdinal | localRow, |
const LocalOrdinal | numEnt, | ||
const Scalar | inputVals[], | ||
const LocalOrdinal | inputCols[] | ||
) | const |
Epetra compatibility version of replaceLocalValues, that takes raw pointers instead of Kokkos::View.
This version of the method takes the same arguments in the same order as Epetra_CrsMatrix::ReplaceMyValues.
localRow | [in] local index of the row in which to replace the entries. This row must be owned by the calling process. |
numEnt | [in] Number of entries to replace; number of valid entries in inputVals and inputCols . |
inputVals | [in] Values to use for replacing the entries. |
inputCols | [in] Local indices of the columns in which to replace the entries. |
Definition at line 2570 of file Tpetra_CrsMatrix_def.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::sumIntoGlobalValues | ( | const GlobalOrdinal | globalRow, |
const Teuchos::ArrayView< const GlobalOrdinal > & | cols, | ||
const Teuchos::ArrayView< const Scalar > & | vals, | ||
const bool | atomic = useAtomicUpdatesByDefault |
||
) |
Sum into one or more sparse matrix entries, using global indices.
This is a local operation; it does not involve communication. However, if you sum into rows not owned by the calling process, it may result in future communication in globalAssemble() (which is called by fillComplete()).
If globalRow
is owned by the calling process, then this method performs the sum-into operation right away. Otherwise, if the row is not owned by the calling process, this method defers the sum-into operation until globalAssemble(). That method communicates data for nonowned rows to the processes that own those rows. Then, globalAssemble() does one of the following:
globalRow | [in] The global index of the row in which to sum into the matrix entries. |
cols | [in] One or more column indices. |
vals | [in] One or more values corresponding to those column indices. vals[k] corresponds to cols[k] . |
atomic | [in] Whether to use atomic updates. |
This method has the same preconditions and return value meaning as replaceGlobalValues() (which see).
Definition at line 2840 of file Tpetra_CrsMatrix_def.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::sumIntoGlobalValues | ( | const GlobalOrdinal | globalRow, |
const LocalOrdinal | numEnt, | ||
const Scalar | vals[], | ||
const GlobalOrdinal | cols[], | ||
const bool | atomic = useAtomicUpdatesByDefault |
||
) |
Epetra compatibility version of sumIntoGlobalValues (see above), that takes input as raw pointers instead of Kokkos::View.
Arguments are the same and in the same order as those of Epetra_CrsMatrix::SumIntoGlobalValues, except for atomic
, which is as above.
globalRow | [in] The global index of the row in which to sum into the matrix entries. |
numEnt | [in] Number of valid entries in vals and cols . This has type LocalOrdinal because we assume that users will never want to insert more column indices in one call than the matrix has columns. |
vals | [in] numEnt values corresponding to the column indices in cols . That is, vals [k] is the value corresponding to cols [k]. |
cols | [in] numEnt global column indices. |
atomic | [in] Whether to use atomic updates. |
Definition at line 2860 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Sum into one or more sparse matrix entries, using local row and column indices.
For local row index localRow
and local column indices cols
, perform the update A(localRow, cols[k]) += vals[k]
. The row index and column indices must be valid on the calling process, and all matrix entries A(localRow, cols[k])
must already exist. (This method does not change the matrix's structure.) If the row index is valid, any invalid column indices are ignored, but counted in the return value.
This overload of the method takes the column indices and values as Kokkos::View. See below for an overload that takes Teuchos::ArrayView instead.
LocalIndicesViewType | Kokkos::View specialization that is a 1-D array of LocalOrdinal. |
ImplScalarViewType | Kokkos::View specialization that is a 1-D array of impl_scalar_type (usually the same as Scalar, unless Scalar is std::complex<T> for some T, in which case it is Kokkos::complex<T>). |
localRow | [in] Local index of a row. This row must be owned by the calling process. |
cols | [in] Local indices of the columns whose entries we want to modify. |
vals | [in] Values corresponding to the above column indices. vals(k) corresponds to cols(k) . |
atomic | [in] Whether to use atomic updates. |
This method has the same preconditions and return value meaning as replaceLocalValues() (which see).
Definition at line 1720 of file Tpetra_CrsMatrix_decl.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::sumIntoLocalValues | ( | const LocalOrdinal | localRow, |
const Teuchos::ArrayView< const LocalOrdinal > & | cols, | ||
const Teuchos::ArrayView< const Scalar > & | vals, | ||
const bool | atomic = useAtomicUpdatesByDefault |
||
) | const |
Sum into one or more sparse matrix entries, using local row and column indices.
For local row index localRow
and local column indices cols
, perform the update A(localRow, cols[k]) += vals[k]
. The row index and column indices must be valid on the calling process, and all matrix entries A(localRow, cols[k])
must already exist. (This method does not change the matrix's structure.) If the row index is valid, any invalid column indices are ignored, but counted in the return value.
This overload of the method takes the column indices and values as Teuchos::ArrayView. See above for an overload that takes Kokkos::View instead.
localRow | [in] Local index of a row. This row must be owned by the calling process. |
cols | [in] Local indices of the columns whose entries we want to modify. |
vals | [in] Values corresponding to the above column indices. vals[k] corresponds to cols[k] . |
atomic | [in] Whether to use atomic updates. |
This method has the same preconditions and return value meaning as replaceLocalValues() (which see).
Definition at line 3340 of file Tpetra_CrsMatrix_def.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::sumIntoLocalValues | ( | const LocalOrdinal | localRow, |
const LocalOrdinal | numEnt, | ||
const Scalar | vals[], | ||
const LocalOrdinal | cols[], | ||
const bool | atomic = useAtomicUpdatesByDefault |
||
) | const |
Epetra compatibility version of sumIntoLocalValues (see above) that takes raw pointers instead of Kokkos::View.
Arguments are the same and in the same order as Epetra_CrsMatrix::SumIntoMyValues, except for the atomic
last argument, which is as above.
localRow | [in] The local index of the row in which to sum into the matrix entries. |
numEnt | [in] Number of valid entries in vals and cols . This has type LocalOrdinal because we assume that users will never want to insert more column indices in one call than the matrix has columns. |
vals | [in] numEnt values corresponding to the column indices in cols . That is, vals [k] is the value corresponding to cols [k]. |
cols | [in] numEnt local column indices. |
atomic | [in] Whether to use atomic updates. |
Definition at line 3360 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Transform CrsMatrix entries in place, using local indices to select the entries in the row to transform.
For every entry to transform, if is the corresponding entry of the inputVals
array, then we apply the binary function f to as follows:
For example, BinaryFunction = std::plus<impl_scalar_type> does the same thing as sumIntoLocalValues, and BinaryFunction = project2nd<impl_scalar_type,impl_scalar_type> does the same thing as replaceLocalValues. (It is generally more efficient to call sumIntoLocalValues resp. replaceLocalValues than to do this.)
This overload of the method takes the column indices and values as Kokkos::View. See below for an overload that takes Teuchos::ArrayView instead.
LocalIndicesViewType | Kokkos::View specialization that is a 1-D array of LocalOrdinal. |
ImplScalarViewType | Kokkos::View specialization that is a 1-D array of impl_scalar_type (usually the same as Scalar, unless Scalar is std::complex<T> for some T, in which case it is Kokkos::complex<T>). |
BinaryFunction | The type of the binary function f to use for updating the sparse matrix's value(s). This should be convertible to std::function<impl_scalar_type (const impl_scalar_type&, const impl_scalar_type&)>. |
lclRow | [in] (Local) index of the row to modify. This row must</t> be owned by the calling process. (This is a stricter requirement than for sumIntoGlobalValues.) |
inputInds | [in] (Local) indices in the row to modify. Indices not in the row on the calling process, and their corresponding values, will be ignored. |
inputVals | [in] Values to use for modification. |
f | [in] The binary function to use for updating the sparse matrix's value. It takes two impl_scalar_type values and returns impl_scalar_type . |
atomic | [in] Whether to use atomic updates. |
Definition at line 2025 of file Tpetra_CrsMatrix_decl.hpp.
|
inline |
Transform CrsMatrix entries in place, using global indices to select the entries in the row to transform.
For every entry to transform, if is the corresponding entry of the inputVals
array, then we apply the binary function f to as follows:
For example, BinaryFunction = std::plus<impl_scalar_type> does the same thing as sumIntoLocalValues, and BinaryFunction = project2nd<impl_scalar_type,impl_scalar_type> does the same thing as replaceLocalValues. (It is generally more efficient to call sumIntoLocalValues resp. replaceLocalValues than to do this.)
BinaryFunction | The type of the binary function f to use for updating the sparse matrix's value(s). This should be convertible to std::function<impl_scalar_type (const impl_scalar_type&, const impl_scalar_type&)>. |
InputMemorySpace | Kokkos memory space / device in which the input data live. This may differ from the memory space in which the current matrix's row's values live. |
gblRow | [in] (Global) index of the row to modify. This row must</t> be owned by the calling process. (This is a stricter requirement than for sumIntoGlobalValues.) |
inputInds | [in] (Global) indices in the row to modify. Indices not in the row on the calling process, and their corresponding values, will be ignored. |
inputVals | [in] Values to use for modification. |
f | [in] The binary function to use for updating the sparse matrix's value. It takes two impl_scalar_type values and returns impl_scalar_type . |
atomic | [in] Whether to use atomic updates. |
This method works whether indices are local or global. However, it will cost more if indices are local, since it will have to convert the input global indices to local indices in that case.
Definition at line 2115 of file Tpetra_CrsMatrix_decl.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::setAllToScalar | ( | const Scalar & | alpha | ) |
Set all matrix entries equal to alpha
.
Definition at line 4007 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::scale | ( | const Scalar & | alpha | ) |
Scale the matrix's values: this := alpha*this
.
Definition at line 3963 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::setAllValues | ( | const typename local_matrix_type::row_map_type & | ptr, |
const typename local_graph_type::entries_type::non_const_type & | ind, | ||
const typename local_matrix_type::values_type & | val | ||
) |
Set the local matrix using three (compressed sparse row) arrays.
hasColMap() == true
getGraph() != Teuchos::null
This method behaves like the CrsMatrix constructor that takes a const CrsGraph. It fixes the matrix's graph, but does not call fillComplete on the matrix. The graph might not necessarily be fill complete, but it must have a local graph.
The input arguments might be used directly (shallow copy), or they might be (deep) copied.
ptr | [in] Array of row offsets. |
ind | [in] Array of (local) column indices. |
val | [in/out] Array of values. This is in/out because the matrix reserves the right to take this argument by shallow copy. Any method that changes the matrix's values may then change this. |
Definition at line 4044 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::setAllValues | ( | const Teuchos::ArrayRCP< size_t > & | ptr, |
const Teuchos::ArrayRCP< LocalOrdinal > & | ind, | ||
const Teuchos::ArrayRCP< Scalar > & | val | ||
) |
Set the local matrix using three (compressed sparse row) arrays.
hasColMap() == true
getGraph() != Teuchos::null
This method behaves like the CrsMatrix constructor that takes a const CrsGraph. It fixes the matrix's graph, but does not call fillComplete on the matrix. The graph might not necessarily be fill complete, but it must have a local graph.
The input arguments might be used directly (shallow copy), or they might be (deep) copied.
ptr | [in] Array of row offsets. |
ind | [in] Array of (local) column indices. |
val | [in/out] Array of values. This is in/out because the matrix reserves the right to take this argument by shallow copy. Any method that changes the matrix's values may then change this. |
Definition at line 4094 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::globalAssemble | ( | ) |
Communicate nonlocal contributions to other processes.
Users do not normally need to call this method. fillComplete always calls this method, unless you specifically tell fillComplete to do otherwise by setting its "No Nonlocal
Changes" parameter to true
. Thus, it suffices to call fillComplete.
Methods like insertGlobalValues and sumIntoGlobalValues let you add or modify entries in rows that are not owned by the calling process. These entries are called "nonlocal contributions." The methods that allow nonlocal contributions store the entries on the calling process, until globalAssemble is called. globalAssemble sends these nonlocal contributions to the process(es) that own them, where they then become part of the matrix.
This method only does global assembly if there are nonlocal entries on at least one process. It does an all-reduce to find that out. If not, it returns early, without doing any more communication or work.
If you previously inserted into a row which is not owned by any process in the row Map, the behavior of this method is undefined. It may detect the invalid row indices and throw an exception, or it may silently drop the entries inserted into invalid rows. Behavior may vary, depending on whether Tpetra was built with debug checking enabled.
Definition at line 4641 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::resumeFill | ( | const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null | ) |
Resume operations that may change the values or structure of the matrix.
This method must be called as a collective operation.
Calling fillComplete "freezes" both the values and the structure of the matrix. If you want to modify the matrix again, you must first call resumeFill. You then may not call resumeFill again on that matrix until you first call fillComplete. You may make sequences of fillComplete, resumeFill calls as many times as you wish.
isFillActive() && ! isFillComplete()
Definition at line 4839 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::fillComplete | ( | const Teuchos::RCP< const map_type > & | domainMap, |
const Teuchos::RCP< const map_type > & | rangeMap, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Tell the matrix that you are done changing its structure or values, and that you are ready to do computational kernels (e.g., sparse matrix-vector multiply) with it.
This tells the graph to optimize its data structures for computational kernels, and to prepare (MPI) communication patterns.
Off-process indices are distributed (via globalAssemble()), indices are sorted, redundant indices are fused, and global indices are transformed to local indices.
isFillActive() && ! isFillComplete()
! isFillActive() && isFillComplete()
domainMap | [in] The matrix's domain Map. MUST be one to one! |
rangeMap | [in] The matrix's range Map. MUST be one to one! May be, but need not be, the same as the domain Map. |
params | [in/out] List of parameters controlling this method's behavior. See below for valid parameters. |
List of valid parameters in params
:
"No Nonlocal Changes" (bool
): Default is false. If true, the caller promises that no modifications to nonowned rows have happened on any process since the last call to fillComplete. This saves a global all-reduce to check whether any process did a nonlocal insert. Nonlocal changes include any sumIntoGlobalValues or insertGlobalValues call with a row index that is not in the row Map of the calling process.
bool
): Default is true. makeColMap() (which fillComplete may call) always groups remote GIDs by process rank, so that all remote GIDs with the same owning rank occur contiguously. By default, it always sorts remote GIDs in increasing order within those groups. This behavior differs from Epetra, which does not sort remote GIDs with the same owning process. If you don't want to sort (for compatibility with Epetra), set this parameter to false
. This parameter only takes effect if the matrix owns the graph. This is an expert mode parameter ONLY. We make no promises about backwards compatibility of this parameter. It may change or disappear at any time. Definition at line 4913 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::fillComplete | ( | const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null | ) |
Tell the matrix that you are done changing its structure or values, and that you are ready to do computational kernels (e.g., sparse matrix-vector multiply) with it. Set default domain and range Maps.
See above three-argument version of fillComplete for full documentation. If the matrix does not yet have domain and range Maps (i.e., if fillComplete has not yet been called on this matrix at least once), then this method uses the matrix's row Map (result of this->getRowMap()) as both the domain Map and the range Map. Otherwise, this method uses the matrix's existing domain and range Maps.
params | [in/out] List of parameters controlling this method's behavior. See documentation of the three-argument version of fillComplete (above) for valid parameters. |
Definition at line 4887 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::expertStaticFillComplete | ( | const Teuchos::RCP< const map_type > & | domainMap, |
const Teuchos::RCP< const map_type > & | rangeMap, | ||
const Teuchos::RCP< const import_type > & | importer = Teuchos::null , |
||
const Teuchos::RCP< const export_type > & | exporter = Teuchos::null , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) |
Perform a fillComplete on a matrix that already has data.
The matrix must already have filled local 1-D storage (k_clInds1D_ and k_rowPtrs_ for the graph, and k_values1D_ in the matrix). If the matrix has been constructed in any other way, this method will throw an exception. This routine is needed to support other Trilinos packages and should not be called by ordinary users.
domainMap | [in] The matrix's domain Map. MUST be one to one! |
rangeMap | [in] The matrix's range Map. MUST be one to one! May be, but need not be, the same as the domain Map. |
importer | [in] Import from the matrix's domain Map to its column Map. If no Import is necessary (i.e., if the domain and column Maps are the same, in the sense of Tpetra::Map::isSameAs), then this may be Teuchos::null. |
exporter | [in] Export from the matrix's row Map to its range Map. If no Export is necessary (i.e., if the row and range Maps are the same, in the sense of Tpetra::Map::isSameAs), then this may be Teuchos::null. |
params | [in/out] List of parameters controlling this method's behavior. |
Definition at line 5098 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::replaceColMap | ( | const Teuchos::RCP< const map_type > & | newColMap | ) |
Replace the matrix's column Map with the given Map.
newColMap | [in] New column Map. Must be nonnull. |
Definition at line 4548 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::reindexColumns | ( | crs_graph_type *const | graph, |
const Teuchos::RCP< const map_type > & | newColMap, | ||
const Teuchos::RCP< const import_type > & | newImport = Teuchos::null , |
||
const bool | sortEachRow = true |
||
) |
Reindex the column indices in place, and replace the column Map. Optionally, replace the Import object as well.
! this->isFillComplete()
. NULL
, or it is not fill complete: graph == NULL || ! graph->isFillComplete()
. graph | [in] The matrix's graph. If you don't provide this (i.e., if graph == NULL ), then the matrix must own its graph, which will be modified in place. (That is, you must not have created the matrix with a constant graph.) If you do provide this, then the method will assume that it is the same graph as the matrix's graph, and the provided graph will be modified in place. |
newColMap | [in] New column Map. Must be nonnull. |
newImport | [in] New Import object. Optional; computed if not provided or if null. Computing an Import is expensive, so it is worth providing this if you can. |
sortEachRow | [in] If true, sort the indices (and their corresponding values) in each row after reindexing. |
Why would you want to use this method? Well, for example, you might need to use an Ifpack2 preconditioner that only accepts a matrix with a certain kind of column Map. Your matrix has the wrong kind of column Map, but you know how to compute the right kind of column Map. You might also know an efficient way to compute an Import object from the current domain Map to the new column Map. (For an instance of the latter, see the Details::makeOptimizedColMapAndImport function in Tpetra_Details_makeOptimizedColMap.hpp.)
Suppose that you created this CrsMatrix with a constant graph; that is, that you called the CrsMatrix constructor that takes a CrsGraph as input:
Now suppose that you want to give A to a preconditioner that can't handle a matrix with an arbitrary column Map (in the example above, origColMap
). You first must create a new suitable column Map newColMap
, and optionally a new Import object newImport
from the matrix's current domain Map to the new column Map. Then, call this method, passing in G (which must not be fill complete) while the matrix is not fill complete. Be sure to save the graph's original Import object; you'll need that later.
Now you may give the matrix A to the preconditioner in question. After doing so, and after you solve the linear system using the preconditioner, you might want to put the matrix back like it originally was. You can do that, too!
Definition at line 4566 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::replaceDomainMapAndImporter | ( | const Teuchos::RCP< const map_type > & | newDomainMap, |
Teuchos::RCP< const import_type > & | newImporter | ||
) |
Replace the current domain Map and Import with the given objects.
newDomainMap | [in] New domain Map. Must be nonnull. |
newImporter | [in] Optional Import object. If null, we will compute it. |
isFillComplete() == true
. Definition at line 4599 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Remove processes owning zero rows from the Maps and their communicator.
newMap | [in] This must be the result of calling the removeEmptyProcesses() method on the row Map. If it is not, this method's behavior is undefined. This pointer will be null on excluded processes. |
Definition at line 8125 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The communicator over which the matrix is distributed.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 798 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The Map that describes the row distribution in this matrix.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 975 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The Map that describes the column distribution in this matrix.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 982 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
This matrix's graph, as a RowGraph.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 1003 of file Tpetra_CrsMatrix_def.hpp.
Teuchos::RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getCrsGraph | ( | ) | const |
This matrix's graph, as a CrsGraph.
Definition at line 1013 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
The local sparse matrix.
local_matrix_type
object, or fillComplete must have been called on this CrsMatrix at least once. This method will do no error checking, so you are responsible for knowing when it is safe to call this method. Definition at line 2557 of file Tpetra_CrsMatrix_decl.hpp.
|
overridevirtual |
Number of global elements in the row map of this matrix.
This is <it>not</it> the number of rows in the matrix as a mathematical object. This method returns the global sum of the number of local elements in the row map on each processor, which is the row map's getGlobalNumElements(). Since the row map is not one-to-one in general, that global sum could be different than the number of rows in the matrix. If you want the number of rows in the matrix, ask the range map for its global number of elements, using the following code: global_size_t globalNumRows = getRangeMap()->getGlobalNumElements();
This method retains the behavior of Epetra, which also asks the row map for the global number of rows, rather than asking the range map.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 878 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The number of global columns in the matrix.
This equals the number of entries in the matrix's domain Map.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 885 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The number of matrix rows owned by the calling process.
Note that the sum of all the return values over all processes in the row Map's communicator does not necessarily equal the global number of rows in the matrix, if the row Map is overlapping.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 892 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The number of columns connected to the locally owned rows of this matrix.
Throws std::runtime_error if ! hasColMap ()
.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 899 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The index base for global indices for this matrix.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 968 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The global number of entries in this matrix.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 864 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The local number of entries in this matrix.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 871 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Number of entries in the sparse matrix in the given global row, on the calling (MPI) process.
OrdinalTraits<size_t>::invalid()
if the specified global row index is invalid on the calling process, else the number of entries in the given row. Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 940 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Number of entries in the sparse matrix in the given local row, on the calling (MPI) process.
OrdinalTraits<size_t>::invalid()
if the specified local row index is invalid on the calling process, else the number of entries in the given row. Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 947 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Maximum number of entries in any row of the matrix, over all processes in the matrix's communicator.
! isFillActive()
This method only uses the matrix's graph. Explicitly stored zeros count as "entries."
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 954 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Maximum number of entries in any row of the matrix, on this process.
! isFillActive()
This method only uses the matrix's graph. Explicitly stored zeros count as "entries."
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 961 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Whether the matrix has a well-defined column Map.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 857 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Whether the matrix is locally indexed on the calling process.
The matrix is locally indexed on the calling process if and only if all of the following hold:
The following is always true:
That is, a matrix may be neither locally nor globally indexed, but it can never be both. Furthermore a matrix that is not fill complete, might have some processes that are neither locally nor globally indexed, and some processes that are globally indexed. The processes that are neither do not have any entries.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 843 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Whether the matrix is globally indexed on the calling process.
The matrix is globally indexed on the calling process if and only if all of the following hold:
The following is always true:
That is, a matrix may be neither locally nor globally indexed, but it can never be both. Furthermore a matrix that is not fill complete, might have some processes that are neither locally nor globally indexed, and some processes that are globally indexed. The processes that are neither do not have any entries.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 850 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Whether the matrix is fill complete.
A matrix is fill complete (or "in compute mode") when fillComplete() has been called without an intervening call to resumeFill(). A matrix must be fill complete in order to call computational kernels like sparse matrix-vector multiply and sparse triangular solve. A matrix must be not fill complete ("in edit mode") in order to call methods that insert, modify, or remove entries.
The following are always true:
A matrix starts out (after its constructor returns) as not fill complete. It becomes fill complete after fillComplete() returns, and becomes not fill complete again if resumeFill() is called. Some methods like clone() and some of the "nonmember constructors" (like importAndFillComplete() and exportAndFillComplete()) may return a fill-complete matrix.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 822 of file Tpetra_CrsMatrix_def.hpp.
bool Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::isFillActive | ( | ) | const |
Whether the matrix is not fill complete.
A matrix is fill complete (or "in compute mode") when fillComplete() has been called without an intervening call to resumeFill(). A matrix must be fill complete in order to call computational kernels like sparse matrix-vector multiply and sparse triangular solve. A matrix must be not fill complete ("in edit mode") in order to call methods that insert, modify, or remove entries.
The following are always true:
A matrix starts out (after its constructor returns) as not fill complete. It becomes fill complete after fillComplete() returns, and becomes not fill complete again if resumeFill() is called. Some methods like clone() and some of the "nonmember constructors" (like importAndFillComplete() and exportAndFillComplete()) may return a fill-complete matrix.
Definition at line 829 of file Tpetra_CrsMatrix_def.hpp.
bool Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::isStorageOptimized | ( | ) | const |
Returns true
if storage has been optimized.
Optimized storage means that the allocation of each row is equal to the number of entries. The effect is that a pass through the matrix, i.e., during a mat-vec, requires minimal memory traffic. One limitation of optimized storage is that no new indices can be added to the matrix.
Definition at line 836 of file Tpetra_CrsMatrix_def.hpp.
ProfileType Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getProfileType | ( | ) | const |
Returns true
if the matrix was allocated with static data structures.
Definition at line 815 of file Tpetra_CrsMatrix_def.hpp.
bool Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::isStaticGraph | ( | ) | const |
Indicates that the graph is static, so that new entries cannot be added to this matrix.
Definition at line 1076 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Compute and return the Frobenius norm of the matrix.
The Frobenius norm of the matrix is defined as [ |A|_F = {{i,j} |A(i,j)|^2}. ].
If the matrix is fill complete, then the computed value is cached; the cache is cleared whenever resumeFill() is called. Otherwise, the value is computed every time the method is called.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 4482 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Return true
if getLocalRowView() and getGlobalRowView() are valid for this object.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 1090 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Fill given arrays with a deep copy of the locally owned entries of the matrix in a given row, using global column indices.
GlobalRow | [in] Global index of the row for which to return entries. |
Indices | [out] Global column indices corresponding to values. |
Values | [out] Matrix values. |
NumEntries | [out] Number of entries. |
Scalar
or impl_scalar_type
for output array of matrix values.If Scalar
differs from impl_scalar_type
, as for example with std::complex<T> and Kokkos::complex<T>, we must choose which type to use. We must make the same choice as RowMatrix does, else CrsMatrix won't compile, because it won't implement a pure virtual method. We choose Scalar
, for the following reasons. First, Scalar
is the user's preferred type, and impl_scalar_type
an implementation detail that makes Tpetra work with Kokkos. Second, Tpetra's public interface provides a host-only interface, which eliminates some reasons for requiring implementation-specific types like Kokkos::complex.
We do eventually want to put Tpetra methods in Kokkos kernels, but we only need to put them in host kernels, since Tpetra is a host-only interface. Users can still manually handle conversion from Scalar
to impl_scalar_type
for reductions.
The right thing to do would be to rewrite RowMatrix so that getGlobalRowCopy is NOT inherited, but is implemented by a pure virtual "hook" getGlobalRowCopyImpl. The latter takes raw pointers. That would give us the freedom to overload getGlobalRowCopy, which one normally can't do with virtual methods. It would make sense for one getGlobalRowCopyImpl method to implement both Teuchos::ArrayView and Kokos::View versions of getGlobalRowCopy.
Note: A std::runtime_error exception is thrown if either Indices
or Values
is not large enough to hold the data associated with row GlobalRow
. If row GlobalRow
is not owned by the calling process, then Indices
and Values
are unchanged and NumIndices
is returned as Teuchos::OrdinalTraits<size_t>::invalid().
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 3691 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Fill given arrays with a deep copy of the locally owned entries of the matrix in a given row, using local column indices.
localRow | [in] Local index of the row for which to return entries. |
colInds | [out] Local column indices corresponding to values. |
vals | [out] Matrix values. |
numEntries | [out] Number of entries returned. |
Note: A std::runtime_error exception is thrown if either colInds
or vals
is not large enough to hold the data associated with row localRow
. If row localRow
is not owned by the calling process, then colInds
and vals
are unchanged and numEntries
is returned as Teuchos::OrdinalTraits<size_t>::invalid().
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 3580 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Get a constant, nonpersisting view of a row of this matrix, using global row and column indices.
GlobalRow | [in] Global index of the row to view. |
indices | [out] On output: view of the global column indices in the row. |
values | [out] On output: view of the values in the row. |
isLocallyIndexed () == false
indices.size () == this->getNumEntriesInGlobalRow (GlobalRow)
If GlobalRow
is not a valid global row index on the calling process, then indices
is set to null.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 3901 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Get a constant, nonpersisting view of a row of this matrix, using local row and column indices.
LocalRow | [in] Local index of the row to view. |
indices | [out] On output: view of the local column indices in the row. |
values | [out] On output: view of the values in the row. |
isGloballyIndexed () == false
indices.size () == this->getNumEntriesInLocalRow (LocalRow)
If LocalRow
is not a valid local row index on the calling process, then indices
is set to null.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 3795 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Get a constant, nonpersisting, locally indexed view of the given row of the matrix, using "raw" pointers instead of Teuchos::ArrayView.
The returned views of the column indices and values are not guaranteed to persist beyond the lifetime of this
. Furthermore, any changes to the indices or values, or any intervening calls to fillComplete() or resumeFill(), may invalidate the returned views.
This method only gets the entries in the given row that are stored on the calling process. Note that if the matrix has an overlapping row Map, it is possible that the calling process does not store all the entries in that row.
isLocallyIndexed () && supportsRowViews ()
numEnt == getNumEntriesInGlobalRow (LocalRow)
lclRow | [in] Local index of the row. |
numEnt | [out] Number of entries in the row that are stored on the calling process. |
lclColInds | [out] Local indices of the columns corresponding to values. |
vals | [out] Matrix values. |
Reimplemented from Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 3886 of file Tpetra_CrsMatrix_def.hpp.
LocalOrdinal Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getLocalRowView | ( | const LocalOrdinal | lclRow, |
LocalOrdinal & | numEnt, | ||
const impl_scalar_type *& | val, | ||
const LocalOrdinal *& | ind | ||
) | const |
Get a constant, nonpersisting view of a row of this matrix, using local row and column indices, with raw pointers.
The order of arguments exactly matches those of Epetra_CrsMatrix::ExtractMyRowView.
lclRow | [in] Local index of the row to view. |
numEnt | [out] On output: Number of entries in the row. |
val | [out] On successful output: View of the values in the row. Output value is undefined if not successful. |
ind | [out] On successful output: View of the local column indices in the row. Output value is undefined if not successful. |
isGloballyIndexed () == false
numEnt == this->getNumEntriesInLocalRow(lclRow)
The output number of entries in the row numEnt
is safe to be LocalOrdinal
, because as long as the row does not contain too many duplicate entries, the number of column indices can always fit in LocalOrdinal
. Otherwise, the column Map would be incorrect.
Definition at line 3849 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Get a constant, nonpersisting view of a row of this matrix, using local row and column indices, with raw pointers.
This overload exists only if Scalar differs from impl_scalar_type. In that case, this overload takes a Scalar pointer.
Definition at line 3045 of file Tpetra_CrsMatrix_decl.hpp.
|
overridevirtual |
Get a copy of the diagonal entries of the matrix.
This method returns a Vector with the same Map as this matrix's row Map. On each process, it contains the diagonal entries owned by the calling process. If the matrix has an empty row, the diagonal entry contains a zero.
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 4175 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getLocalDiagOffsets | ( | Teuchos::ArrayRCP< size_t > & | offsets | ) | const |
Get offsets of the diagonal entries in the matrix.
offsets.size() == getNodeNumRows()
This method creates an array of offsets of the local diagonal entries in the matrix. This array is suitable for use in the two-argument version of getLocalDiagCopy(). However, its contents are not defined in any other context. For example, you should not rely on offsets[i] being the index of the diagonal entry in the views returned by getLocalRowView(). This may be the case, but it need not be. (For example, we may choose to optimize the lookups down to the optimized storage level, in which case the offsets will be computed with respect to the underlying storage format, rather than with respect to the views.)
Calling any of the following invalidates the output array:
If the matrix has a const ("static") graph, and if that graph is fill complete, then the offsets array remains valid through calls to fillComplete() and resumeFill(). "Invalidates" means that you must call this method again to recompute the offsets.
Definition at line 4133 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getLocalDiagCopy | ( | Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | diag, |
const Kokkos::View< const size_t *, device_type, Kokkos::MemoryUnmanaged > & | offsets | ||
) | const |
Variant of getLocalDiagCopy() that uses precomputed offsets.
This method uses the offsets of the diagonal entries, as precomputed by the Kokkos::View overload of getLocalDiagOffsets(), to speed up copying the diagonal of the matrix. The offsets must be recomputed if any of the following methods are called:
If the matrix has a const ("static") graph, and if that graph is fill complete, then the offsets array remains valid through calls to fillComplete() and resumeFill().
Definition at line 4235 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::getLocalDiagCopy | ( | Vector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | diag, |
const Teuchos::ArrayView< const size_t > & | offsets | ||
) | const |
Variant of getLocalDiagCopy() that uses precomputed offsets.
This method uses the offsets of the diagonal entries, as precomputed by getLocalDiagOffsets(), to speed up copying the diagonal of the matrix. The offsets must be recomputed if any of the following methods are called:
If the matrix has a const ("static") graph, and if that graph is fill complete, then the offsets array remains valid through calls to fillComplete() and resumeFill().
Definition at line 4272 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Scale the matrix on the left with the given Vector.
On return, for all entries i,j in the matrix, .
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 4328 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Scale the matrix on the right with the given Vector.
On return, for all entries i,j in the matrix, .
Implements Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 4405 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Compute a sparse matrix-MultiVector product local to each process.
This method computes the local part of Y := beta*Y
Op(A)
is either , (the transpose), or (the conjugate transpose). "The local part" means that this method does no communication between processes, even if this is necessary for correctness of the matrix-vector multiply. Use the apply() method if you want to compute the mathematical sparse matrix-vector multiply.This method is mainly of use to Tpetra developers, though some users may find it helpful if they plan to reuse the result of doing an Import on the input MultiVector for several sparse matrix-vector multiplies with matrices that have the same column Map.
When
Op(A)
is (trans == Teuchos::NO_TRANS
), then X's Map must be the same as the column Map of this matrix, and Y's Map must be the same as the row Map of this matrix. We say in this case that X is "post-Imported," and Y is "pre-Exported." When Op(A)
is or (trans
is Teuchos::TRANS
or Teuchos::CONJ_TRANS
, then X's Map must be the same as the row Map of this matrix, and Y's Map must be the same as the column Map of this matrix.
Both X and Y must have constant stride, and they may not alias one another (that is, occupy overlapping space in memory). We may not necessarily check for aliasing, and if we do, we will only do this in a debug build. Aliasing X and Y may cause nondeterministically incorrect results.
This method is templated on the type of entries in both the input MultiVector (
DomainScalar
) and the output MultiVector (RangeScalar
). Thus, this method works for MultiVector objects of arbitrary type. However, this method only performs computation local to each MPI process. Use CrsMatrixMultiplyOp to handle global communication (the Import and Export operations for the input resp. output MultiVector), if you have a matrix with entries of a different type than the input and output MultiVector objects.
If
beta == 0
, this operation will enjoy overwrite semantics: Y will be overwritten with the result of the multiplication, even if it contains NaN
(not-a-number) floating-point entries. Otherwise, the multiply result will be accumulated into Y
.
Definition at line 3232 of file Tpetra_CrsMatrix_decl.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::localApply | ( | const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | X, |
MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | Y, | ||
const Teuchos::ETransp | mode = Teuchos::NO_TRANS , |
||
const Scalar & | alpha = Teuchos::ScalarTraits<Scalar>::one () , |
||
const Scalar & | beta = Teuchos::ScalarTraits<Scalar>::zero () |
||
) | const |
Compute the local part of a sparse matrix-(Multi)Vector multiply.
This method computes Y := beta*Y + alpha*Op(A)*X
, where Op(A)
is either , (the transpose), or (the conjugate transpose).
The Map of X and mode
must satisfy the following:
The Map of Y and mode
must satisfy the following:
If beta == 0
, this operation will enjoy overwrite semantics: Y's entries will be ignored, and Y will be overwritten with the result of the multiplication, even if it contains Inf
or NaN
floating-point entries. Likewise, if alpha == 0
, this operation will ignore A and X, even if they contain Inf
or NaN
floating-point entries.
Definition at line 5584 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Gauss-Seidel or SOR on .
Apply a forward or backward sweep of Gauss-Seidel or Successive Over-Relaxation (SOR) to the linear system(s) . For Gauss-Seidel, set the damping factor omega
to 1.
DomainScalar | The type of entries in the input multivector X. This may differ from the type of entries in A or in B. |
RangeScalar | The type of entries in the output multivector B. This may differ from the type of entries in A or in X. |
B | [in] Right-hand side(s). |
X | [in/out] On input: initial guess(es). On output: result multivector(s). |
D | [in] Inverse of diagonal entries of the matrix A. |
omega | [in] SOR damping factor. omega = 1 results in Gauss-Seidel. |
direction | [in] Sweep direction: Tpetra::Forward or Tpetra::Backward. ("Symmetric" requires interprocess communication (before each sweep), which is not part of the local kernel.) |
Definition at line 3381 of file Tpetra_CrsMatrix_decl.hpp.
|
inline |
Reordered Gauss-Seidel or SOR on .
Apply a forward or backward sweep of reordered Gauss-Seidel or Successive Over-Relaxation (SOR) to the linear system(s) . For Gauss-Seidel, set the damping factor omega
to 1. The ordering can be a partial one, in which case the Gauss-Seidel is only executed on a local subset of unknowns.
DomainScalar | The type of entries in the input multivector X. This may differ from the type of entries in A or in B. |
RangeScalar | The type of entries in the output multivector B. This may differ from the type of entries in A or in X. |
B | [in] Right-hand side(s). |
X | [in/out] On input: initial guess(es). On output: result multivector(s). |
D | [in] Inverse of diagonal entries of the matrix A. |
rowIndices | [in] Ordered list of indices on which to execute GS. |
omega | [in] SOR damping factor. omega = 1 results in Gauss-Seidel. |
direction | [in] Sweep direction: Tpetra::Forward or Tpetra::Backward. ("Symmetric" requires interprocess communication (before each sweep), which is not part of the local kernel.) |
Definition at line 3484 of file Tpetra_CrsMatrix_decl.hpp.
Teuchos::RCP< CrsMatrix< T, LocalOrdinal, GlobalOrdinal, Node > > Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::convert | ( | ) | const |
Return another CrsMatrix with the same entries, but converted to a different Scalar type T
.
Definition at line 6249 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Compute a sparse matrix-MultiVector multiply.
This method computes Y := beta*Y + alpha*Op(A)*X
, where Op(A)
is either , (the transpose), or (the conjugate transpose).
If beta == 0
, this operation will enjoy overwrite semantics: Y's entries will be ignored, and Y will be overwritten with the result of the multiplication, even if it contains NaN
(not-a-number) floating-point entries.
Implements Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 5598 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Whether apply() allows applying the transpose or conjugate transpose.
Reimplemented from Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 1083 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The domain Map of this matrix.
This method implements Tpetra::Operator. If fillComplete() has not yet been called at least once on this matrix, or if the matrix was not constructed with a domain Map, then this method returns Teuchos::null.
Implements Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 989 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
The range Map of this matrix.
This method implements Tpetra::Operator. If fillComplete() has not yet been called at least once on this matrix, or if the matrix was not constructed with a domain Map, then this method returns Teuchos::null.
Implements Tpetra::Operator< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 996 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::gaussSeidel | ( | const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | B, |
MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | X, | ||
const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | D, | ||
const Scalar & | dampingFactor, | ||
const ESweepDirection | direction, | ||
const int | numSweeps | ||
) | const |
"Hybrid" Jacobi + (Gauss-Seidel or SOR) on .
"Hybrid" means Successive Over-Relaxation (SOR) or Gauss-Seidel within an (MPI) process, but Jacobi between processes. Gauss-Seidel is a special case of SOR, where the damping factor is one.
The Forward or Backward sweep directions have their usual SOR meaning within the process. Interprocess communication occurs once before the sweep, as it normally would in Jacobi.
The Symmetric sweep option means two sweeps: first Forward, then Backward. Interprocess communication occurs before each sweep, as in Jacobi. Thus, Symmetric results in two interprocess communication steps.
B | [in] Right-hand side(s). |
X | [in/out] On input: initial guess(es). On output: result multivector(s). |
D | [in] Inverse of diagonal entries of the matrix A. |
dampingFactor | [in] SOR damping factor. A damping factor of one results in Gauss-Seidel. |
direction | [in] Sweep direction: Forward, Backward, or Symmetric. |
numSweeps | [in] Number of sweeps. We count each Symmetric sweep (including both its Forward and its Backward sweep) as one. |
This method has the following requirements:
#1 is just the usual requirement for operators: the input multivector must always be in the domain Map. The Gauss-Seidel kernel imposes additional requirements, since it
#3 is reasonable if the matrix constructed the column Map, because the method that does this (CrsGraph::makeColMap) puts the local GIDs (those in the domain Map) in front and the remote GIDs (not in the domain Map) at the end of the column Map. However, if you constructed the column Map yourself, you are responsible for maintaining this invariant. #6 lets us do the Import from the domain Map to the column Map in place.
The Gauss-Seidel kernel also assumes that each process has the entire value (not a partial value to sum) of all the diagonal elements in the rows in its row Map. (We guarantee this anyway though the separate D vector.) This is because each element of the output multivector depends nonlinearly on the diagonal elements. Shared ownership of off-diagonal elements would produce different results.
Definition at line 5635 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::reorderedGaussSeidel | ( | const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | B, |
MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | X, | ||
const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | D, | ||
const Teuchos::ArrayView< LocalOrdinal > & | rowIndices, | ||
const Scalar & | dampingFactor, | ||
const ESweepDirection | direction, | ||
const int | numSweeps | ||
) | const |
Reordered "Hybrid" Jacobi + (Gauss-Seidel or SOR) on .
"Hybrid" means Successive Over-Relaxation (SOR) or Gauss-Seidel within an (MPI) process, but Jacobi between processes. Gauss-Seidel is a special case of SOR, where the damping factor is one. The ordering can be a partial one, in which case the Gauss-Seidel is only executed on a local subset of unknowns.
The Forward or Backward sweep directions have their usual SOR meaning within the process. Interprocess communication occurs once before the sweep, as it normally would in Jacobi.
The Symmetric sweep option means two sweeps: first Forward, then Backward. Interprocess communication occurs before each sweep, as in Jacobi. Thus, Symmetric results in two interprocess communication steps.
B | [in] Right-hand side(s). |
X | [in/out] On input: initial guess(es). On output: result multivector(s). |
D | [in] Inverse of diagonal entries of the matrix A. |
rowIndices | [in] Ordered list of indices on which to execute GS. |
dampingFactor | [in] SOR damping factor. A damping factor of one results in Gauss-Seidel. |
direction | [in] Sweep direction: Forward, Backward, or Symmetric. |
numSweeps | [in] Number of sweeps. We count each Symmetric sweep (including both its Forward and its Backward sweep) as one. |
This method has the following requirements:
#1 is just the usual requirement for operators: the input multivector must always be in the domain Map. The Gauss-Seidel kernel imposes additional requirements, since it
#3 is reasonable if the matrix constructed the column Map, because the method that does this (CrsGraph::makeColMap) puts the local GIDs (those in the domain Map) in front and the remote GIDs (not in the domain Map) at the end of the column Map. However, if you constructed the column Map yourself, you are responsible for maintaining this invariant. #6 lets us do the Import from the domain Map to the column Map in place.
The Gauss-Seidel kernel also assumes that each process has the entire value (not a partial value to sum) of all the diagonal elements in the rows in its row Map. (We guarantee this anyway though the separate D vector.) This is because each element of the output multivector depends nonlinearly on the diagonal elements. Shared ownership of off-diagonal elements would produce different results.
Definition at line 5648 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::gaussSeidelCopy | ( | MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | X, |
const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | B, | ||
const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | D, | ||
const Scalar & | dampingFactor, | ||
const ESweepDirection | direction, | ||
const int | numSweeps, | ||
const bool | zeroInitialGuess | ||
) | const |
Version of gaussSeidel(), with fewer requirements on X.
This method is just like gaussSeidel(), except that X need only be in the domain Map. This method does not require that X be a domain Map view of a column Map multivector. As a result, this method must copy X into a domain Map multivector before operating on it.
X | [in/out] On input: initial guess(es). On output: result multivector(s). |
B | [in] Right-hand side(s), in the range Map. |
D | [in] Inverse of diagonal entries of the matrix, in the row Map. |
dampingFactor | [in] SOR damping factor. A damping factor of one results in Gauss-Seidel. |
direction | [in] Sweep direction: Forward, Backward, or Symmetric. |
numSweeps | [in] Number of sweeps. We count each Symmetric sweep (including both its Forward and its Backward sweep) as one. |
zeroInitialGuess | [in] If true, this method will fill X with zeros initially. If false, this method will assume that X contains a possibly nonzero initial guess on input. Note that a nonzero initial guess may impose an additional nontrivial communication cost (an additional Import). |
Definition at line 5917 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::reorderedGaussSeidelCopy | ( | MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | X, |
const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | B, | ||
const MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > & | D, | ||
const Teuchos::ArrayView< LocalOrdinal > & | rowIndices, | ||
const Scalar & | dampingFactor, | ||
const ESweepDirection | direction, | ||
const int | numSweeps, | ||
const bool | zeroInitialGuess | ||
) | const |
Version of reorderedGaussSeidel(), with fewer requirements on X.
This method is just like reorderedGaussSeidel(), except that X need only be in the domain Map. This method does not require that X be a domain Map view of a column Map multivector. As a result, this method must copy X into a domain Map multivector before operating on it.
X | [in/out] On input: initial guess(es). On output: result multivector(s). |
B | [in] Right-hand side(s), in the range Map. |
D | [in] Inverse of diagonal entries of the matrix, in the row Map. |
rowIndices | [in] Ordered list of indices on which to execute GS. |
dampingFactor | [in] SOR damping factor. A damping factor of one results in Gauss-Seidel. |
direction | [in] Sweep direction: Forward, Backward, or Symmetric. |
numSweeps | [in] Number of sweeps. We count each Symmetric sweep (including both its Forward and its Backward sweep) as one. |
zeroInitialGuess | [in] If true, this method will fill X with zeros initially. If false, this method will assume that X contains a possibly nonzero initial guess on input. Note that a nonzero initial guess may impose an additional nontrivial communication cost (an additional Import). |
Definition at line 5932 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Implementation of RowMatrix::add: return alpha*A + beta*this
.
This override of the default implementation ensures that, when called on a CrsMatrix, this method always returns a CrsMatrix of exactly the same type as *this
. "Exactly the same
type" means that all the template parameters match, including the fifth template parameter. The input matrix A need not necessarily be a CrsMatrix or a CrsMatrix of the same type as *this
, though this method may be able to optimize further in that case.
Reimplemented from Tpetra::RowMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 8148 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
A one-line description of this object.
Reimplemented from Tpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 6341 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Print this object with the given verbosity level to the given output stream.
Reimplemented from Tpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 6367 of file Tpetra_CrsMatrix_def.hpp.
|
overridevirtual |
Compare the source and target (this) objects for compatibility.
Implements Tpetra::DistObject< char, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 6603 of file Tpetra_CrsMatrix_def.hpp.
|
override |
Unpack the imported column indices and values, and combine into matrix.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::packNew | ( | const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > & | exportLIDs, |
Kokkos::DualView< char *, buffer_device_type > & | exports, | ||
const Kokkos::DualView< size_t *, buffer_device_type > & | numPacketsPerLID, | ||
size_t & | constantNumPackets, | ||
Distributor & | dist | ||
) | const |
Pack this object's data for an Import or Export.
exportLIDs | [in] Local indices of the rows to pack. |
exports | [out] On output: array of packed matrix entries; allocated by method. |
numPacketsPerLID | [out] On output: numPacketsPerLID[i] is the number of bytes of the exports array used for storing packed local row exportLIDs [i]. |
constantNumPackets | [out] If zero on output, the packed rows may have different numbers of entries. If nonzero on output, then that number gives the constant number of entries for all packed rows on all processes in the matrix's communicator. |
distor | [in/out] The Distributor object which implements the Import or Export operation that is calling this method. |
The number of "packets" per row is the number of bytes per row. Each row has the following storage format:
[numEnt, vals, inds]
,
where:
numEnt
(LocalOrdinal
): number of entries in the row. vals:
array of Scalar
. For the k-th entry in the row, vals
[k] is its value and inds
[k] its global column index. inds:
array of GlobalOrdinal
. For the k-th entry in the row, vals
[k] is its value and inds
[k] its global column index. We reserve the right to pad for alignment in the future. In that case, the number of bytes reported by numPacketsPerLID
will reflect padding to align each datum to its size, and the row will have final padding as well to ensure that the next row is aligned. Rows with zero entries will still take zero bytes, however.
RowMatrix::pack will always use the same packing scheme as this method. This ensures correct Import / Export from a RowMatrix to a CrsMatrix.
We do not recommend relying on the details of this packing scheme. We describe it here more for Tpetra developers and less for users.
DistObject requires packing an object's entries as type Packet
, which is the first template parameter of DistObject. Since sparse matrices have both values and indices, we use Packet=char
and pack them into buffers of char
(really "byte"). Indices are stored as global indices, in case the source and target matrices have different column Maps (or don't have a column Map yet).
Currently, we only pack values and column indices. Row indices are stored implicitly as the local indices (LIDs) to pack (see exportLIDs
). This is because a DistObject instance only has one Map, and currently we use the row Map for CrsMatrix (and RowMatrix). This makes redistribution of matrices with 2-D distributions less efficient, but it works for now. This may change in the future.
On output, numPacketsPerLID
[i] gives the number of bytes used to pack local row exportLIDs
[i] of this
object (the source object of an Import or Export). If offset
is the exclusive prefix sum-scan of numPacketsPerLID
, then on output, exports[offset[i] .. offset[i+1]]
(half-exclusive range) contains the packed entries for local row exportLIDs
[i].
Entries for each row use a "struct of arrays" pattern to match how sparse matrices actually store their data. The number of entries in the row goes first, all values go next, and all column indices (stored as global indices) go last. Values and column indices occur in the same order. Rows with zero entries always take zero bytes (we do not store their number of entries explicitly). This ensures sparsity of storage and communication in case most rows are empty.
GCC >= 4.9 and recent-future versions of the Intel compiler implement stricter aliasing rules that forbid unaligned type punning. If we were to pack as an "array of structs" – in this case, an array of (Scalar, GlobalOrdinal)
pairs – then we would either have to pad each matrix entry for alignment, or call memcpy twice per matrix entry to pack and unpack. The "struct of arrays" storage scheme reduces the padding requirement to a constant per row, or reduces the number of memcpy calls to two per row.
We include the number of entries in each row in that row's packed data, to make unpacking easier. This saves us from an error-prone computation to find the number of entries from the number of bytes. That computation gets even more difficult if we have to introduce padding for alignment in the future. Knowing the number of entries for each row also makes parallelizing packing and unpacking easier.
Definition at line 7334 of file Tpetra_CrsMatrix_def.hpp.
|
inline |
Get the Kokkos local values.
Definition at line 4223 of file Tpetra_CrsMatrix_decl.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::importAndFillComplete | ( | Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | destMatrix, |
const import_type & | importer, | ||
const Teuchos::RCP< const map_type > & | domainMap, | ||
const Teuchos::RCP< const map_type > & | rangeMap, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) | const |
Import from this
to the given destination matrix, and make the result fill complete.
If destMatrix.is_null(), this creates a new matrix as the destination. (This is why destMatrix is passed in by nonconst reference to RCP.) Otherwise it checks for "pristine" status and throws if that is not the case. "Pristine" means that the matrix has no entries and is not fill complete.
Use of the "non-member constructor" version of this method, exportAndFillCompleteCrsMatrix, is preferred for user applications.
Definition at line 9611 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::importAndFillComplete | ( | Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | destMatrix, |
const import_type & | rowImporter, | ||
const import_type & | domainImporter, | ||
const Teuchos::RCP< const map_type > & | domainMap, | ||
const Teuchos::RCP< const map_type > & | rangeMap, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params | ||
) | const |
Import from this
to the given destination matrix, and make the result fill complete.
If destMatrix.is_null(), this creates a new matrix as the destination. (This is why destMatrix is passed in by nonconst reference to RCP.) Otherwise it checks for "pristine" status and throws if that is not the case. "Pristine" means that the matrix has no entries and is not fill complete.
Use of the "non-member constructor" version of this method, exportAndFillCompleteCrsMatrix, is preferred for user applications.
Definition at line 9623 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::exportAndFillComplete | ( | Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | destMatrix, |
const export_type & | exporter, | ||
const Teuchos::RCP< const map_type > & | domainMap = Teuchos::null , |
||
const Teuchos::RCP< const map_type > & | rangeMap = Teuchos::null , |
||
const Teuchos::RCP< Teuchos::ParameterList > & | params = Teuchos::null |
||
) | const |
Export from this
to the given destination matrix, and make the result fill complete.
If destMatrix.is_null(), this creates a new matrix as the destination. (This is why destMatrix is passed in by nonconst reference to RCP.) Otherwise it checks for "pristine" status and throws if that is not the case. "Pristine" means that the matrix has no entries and is not fill complete.
Use of the "non-member constructor" version of this method, exportAndFillCompleteCrsMatrix, is preferred for user applications.
Definition at line 9636 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::exportAndFillComplete | ( | Teuchos::RCP< CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > & | destMatrix, |
const export_type & | rowExporter, | ||
const export_type & | domainExporter, | ||
const Teuchos::RCP< const map_type > & | domainMap, | ||
const Teuchos::RCP< const map_type > & | rangeMap, | ||
const Teuchos::RCP< Teuchos::ParameterList > & | params | ||
) | const |
Export from this
to the given destination matrix, and make the result fill complete.
If destMatrix.is_null(), this creates a new matrix as the destination. (This is why destMatrix is passed in by nonconst reference to RCP.) Otherwise it checks for "pristine" status and throws if that is not the case. "Pristine" means that the matrix has no entries and is not fill complete.
Use of the "non-member constructor" version of this method, exportAndFillCompleteCrsMatrix, is preferred for user applications.
Definition at line 9648 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Allocate values (and optionally indices) using the Node.
gas | [in] If GraphNotYetAllocated, allocate the indices of myGraph_ via allocateIndices(lg) before allocating values. |
lg | [in] Argument passed into myGraph_->allocateIndices() , if applicable. |
Definition at line 1132 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Merge duplicate row indices in the given row, along with their corresponding values.
This method is only called by sortAndMergeIndicesAndValues(), and only when the matrix owns the graph, not when the matrix was constructed with a const graph.
isStorageOptimized() == false
Definition at line 5168 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Sort and merge duplicate local column indices in all rows on the calling process, along with their corresponding values.
isStorageOptimized() == false
.sorted | [in] If true, the column indices in each row on the calling process are already sorted. |
merged | [in] If true, the column indices in each row on the calling process are already merged. |
Definition at line 5227 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Clear matrix properties that require collectives.
This clears whatever computeGlobalConstants() (which see) computed, in preparation for changes to the matrix. The current implementation of this method does nothing.
This method is called in resumeFill().
Definition at line 4872 of file Tpetra_CrsMatrix_def.hpp.
void Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::computeGlobalConstants | ( | ) |
Compute matrix properties that require collectives.
The corresponding Epetra_CrsGraph method computes things like the global number of nonzero entries, that require collectives over the matrix's communicator. The current Tpetra implementation of this method does nothing.This method is called in fillComplete().
Definition at line 4851 of file Tpetra_CrsMatrix_def.hpp.
bool Tpetra::CrsMatrix< Scalar, LocalOrdinal, GlobalOrdinal, Node >::haveGlobalConstants | ( | ) | const |
Returns true if globalConstants have been computed; false otherwise.
Definition at line 4865 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Create a (or fetch a cached) column Map MultiVector.
X_domainMap | [in] A domain Map Multivector. The returned MultiVector, if nonnull, will have the same number of columns as Y_domainMap. |
force | [in] Force creating the MultiVector if it hasn't been created already. |
The force
parameter is helpful when the domain Map and the column Map are the same (so that normally we wouldn't need the column Map MultiVector), but the following (for example) holds:
We don't test for the above in this method, because it depends on the specific kernel.
Definition at line 8022 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Create a (or fetch a cached) row Map MultiVector.
Y_rangeMap | [in] A range Map Multivector. The returned MultiVector, if nonnull, will have the same number of columns as Y_rangeMap. |
force | [in] Force creating the MultiVector if it hasn't been created already. |
The force
parameter is helpful when the range Map and the row Map are the same (so that normally we wouldn't need the row Map MultiVector), but one of the following holds:
We don't test for the above in this method, because it depends on the specific kernel.
Definition at line 8079 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Special case of apply() for mode == Teuchos::NO_TRANS
.
Definition at line 5283 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Special case of apply() for mode != Teuchos::NO_TRANS
.
Definition at line 5450 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Const pointer to all entries (including extra space) in the given row.
Unlike getGlobalRowView(), this method returns impl_scalar_type
, not Scalar
. This is because this method is not part of the public interface of CrsMatrix.
vals | [out] On output: Const pointer to all entries, including any extra space, in the given row. numEnt includes the empty space, if any. |
numEnt | [out] Number of available entries in the row. "Available" includes extra empty space, if any. |
rowinfo | [in] Result of getRowInfo (for a local row index) or getRowInfoFromGlobalRowIndex (for a global row index) for the row. |
Definition at line 3431 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Nonconst pointer to all entries (including extra space) in the given row.
Unlike getGlobalRowView(), this method returns impl_scalar_type
, not Scalar
. This is because this method is not part of the public interface of CrsMatrix.
vals | [out] On output: Const pointer to all entries, including any extra space, in the given row. numEnt includes the empty space, if any. |
numEnt | [out] Number of available entries in the row. "Available" includes extra empty space, if any. |
rowinfo | [in] Result of getRowInfo (for a local row index) or getRowInfoFromGlobalRowIndex (for a global row index) for the row. |
Definition at line 3471 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Constant view of all entries (including extra space) in the given row.
Unlike getGlobalRowView(), this method returns impl_scalar_type
, not Scalar
. This is because this method is not part of the public interface of CrsMatrix.
Definition at line 3390 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Nonconst view of all entries (including extra space) in the given row.
Unlike getGlobalRowView(), this method returns impl_scalar_type
, not Scalar
. This is because this method is not part of the public interface of CrsMatrix.
This method is const
because it doesn't change allocations (and thus doesn't change pointers). Consider the difference between const double*
and double* const
.
Definition at line 3572 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Swaps the data from *this with the data and maps from crsMatrix.
matrix | [in/out] a crsMatrix |
Definition at line 779 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Fill data into the local matrix.
This method is only called in fillComplete(), and it is only called if the graph's structure is already fixed (that is, if the matrix does not own the graph).
Definition at line 1721 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Fill data into the local graph and matrix.
This method is only called in fillComplete(), and it is only called if the graph's structure is not already fixed (that is, if the matrix does own the graph).
Definition at line 1280 of file Tpetra_CrsMatrix_def.hpp.
|
protected |
Check that this object's state is sane; throw if it's not.
Definition at line 6284 of file Tpetra_CrsMatrix_def.hpp.
|
virtualinherited |
Pack this object's data for an Import or Export.
Subclasses may override this method to speed up or otherwise improve the implementation by exploiting more specific details of the subclass.
Implements Tpetra::Packable< char, LocalOrdinal >.
Definition at line 298 of file Tpetra_RowMatrix_def.hpp.
|
inherited |
Import data into this object using an Import object ("forward mode").
The input DistObject is always the source of the data redistribution operation, and the *this
object is always the target.
If you don't know the difference between forward and reverse mode, then you probably want forward mode. Use this method with your precomputed Import object if you want to do an Import, else use doExport() with a precomputed Export object.
"Restricted Mode" does two things:
*this
, in a "locallyFitted" sense. This cannot be used if (2) is not true, OR there are permutes. The "source" maps still need to match.
source | [in] The "source" object for redistribution. |
importer | [in] Precomputed data redistribution plan. Its source Map must be the same as the input DistObject's Map, and its target Map must be the same as this->getMap() . |
CM | [in] How to combine incoming data with the same global index. |
|
inherited |
Import data into this object using an Export object ("reverse mode").
The input DistObject is always the source of the data redistribution operation, and the *this
object is always the target.
If you don't know the difference between forward and reverse mode, then you probably want forward mode. Use the version of doImport() that takes a precomputed Import object in that case.
"Restricted Mode" does two things:
*this
, in a "locallyFitted" sense. This cannot be used if (2) is not true, OR there are permutes. The "source" maps still need to match.
source | [in] The "source" object for redistribution. |
exporter | [in] Precomputed data redistribution plan. Its target Map must be the same as the input DistObject's Map, and its source Map must be the same as this->getMap() . (Note the difference from forward mode.) |
CM | [in] How to combine incoming data with the same global index. |
|
inherited |
Export data into this object using an Export object ("forward mode").
The input DistObject is always the source of the data redistribution operation, and the *this
object is always the target.
If you don't know the difference between forward and reverse mode, then you probably want forward mode. Use this method with your precomputed Export object if you want to do an Export, else use doImport() with a precomputed Import object.
"Restricted Mode" does two things:
*this
, in a "locallyFitted" sense. This cannot be used if (2) is not true, OR there are permutes. The "source" maps still need to match.
source | [in] The "source" object for redistribution. |
exporter | [in] Precomputed data redistribution plan. Its source Map must be the same as the input DistObject's Map, and its target Map must be the same as this->getMap() . |
CM | [in] How to combine incoming data with the same global index. |
|
inherited |
Export data into this object using an Import object ("reverse mode").
The input DistObject is always the source of the data redistribution operation, and the *this
object is always the target.
If you don't know the difference between forward and reverse mode, then you probably want forward mode. Use the version of doExport() that takes a precomputed Export object in that case.
"Restricted Mode" does two things:
*this
, in a "locallyFitted" sense. This cannot be used if (2) is not true, OR there are permutes. The "source" maps still need to match.
source | [in] The "source" object for redistribution. |
importer | [in] Precomputed data redistribution plan. Its target Map must be the same as the input DistObject's Map, and its source Map must be the same as this->getMap() . (Note the difference from forward mode.) |
CM | [in] How to combine incoming data with the same global index. |
|
inherited |
Whether this is a globally distributed object.
For a definition of "globally distributed" (and its opposite, "locally replicated"), see the documentation of Map's isDistributed() method.
|
inlinevirtualinherited |
The Map describing the parallel distribution of this object.
Note that some Tpetra objects might be distributed using multiple Map objects. For example, CrsMatrix has both a row Map and a column Map. It is up to the subclass to decide which Map to use when invoking the DistObject constructor.
Definition at line 541 of file Tpetra_DistObject_decl.hpp.
|
inherited |
Print this object to the given output stream.
We generally assume that all MPI processes can print to the given stream.
|
virtualinherited |
Remove processes which contain no entries in this object's Map.
On input, this object is distributed over the Map returned by getMap() (the "original Map," with its communicator, the "original communicator"). The input newMap
of this method must be the same as the result of calling getMap()->removeEmptyProcesses()
. On processes in the original communicator which contain zero entries ("excluded processes," as opposed to "included processes"), the input newMap
must be Teuchos::null
(which is what getMap()->removeEmptyProcesses()
returns anyway).
On included processes, reassign this object's Map (that would be returned by getMap()) to the input newMap
, and do any work that needs to be done to restore correct semantics. On excluded processes, free any data that needs freeing, and do any other work that needs to be done to restore correct semantics.
This method has collective semantics over the original communicator. On exit, the only method of this object which is safe to call on excluded processes is the destructor. This implies that subclasses' destructors must not contain communication operations.
|
protectedvirtualinherited |
Whether the implementation's instance promises always to have a constant number of packets per LID (local index), and if so, how many packets per LID there are.
If this method returns zero, the instance says that it might possibly have a different number of packets for each LID (local index) to send or receive. If it returns nonzero, the instance promises that the number of packets is the same for all LIDs, and that the return value is this number of packets per LID.
The default implementation of this method returns zero. This does not affect the behavior of doTransfer() in any way. If a nondefault implementation returns nonzero, doTransfer() will use this information to avoid unnecessary allocation and / or resizing of arrays.
|
protectedvirtualinherited |
Redistribute data across (MPI) processes.
src | [in] The source object, to redistribute into the target object, which is *this object. |
transfer | [in] The Export or Import object representing the communication pattern. (Details::Transfer is the common base class of these two objects.) |
modeString | [in] Human-readable string, for verbose debugging output and error output, explaining what function called this method. Example: "doImport (forward)", "doExport (reverse)". |
revOp | [in] Whether to do a forward or reverse mode redistribution. |
CM | [in] The combine mode that describes how to combine values that map to the same global ID on the same process. |
|
protectedvirtualinherited |
Reallocate numExportPacketsPerLID_ and/or numImportPacketsPerLID_, if necessary.
numExportLIDs | [in] Number of entries in the exportLIDs input array argument of doTransfer(). |
numImportLIDs | [in] Number of entries in the remoteLIDs input array argument of doTransfer(). |
|
protectedvirtualinherited |
Implementation detail of doTransfer.
LID DualViews come from the Transfer object given to doTransfer. They are always sync'd on both host and device. Users must never attempt to modify or sync them.
|
protectedvirtualinherited |
Perform copies and permutations that are local to the calling (MPI) process.
Subclasses must reimplement this function. Its default implementation does nothing. Note that the <t>target object of the Export or Import, namely *this
, packs the source object's data.
permuteToLIDs.need_sync_host()
, permuteToLIDs.need_sync_device()
, permuteFromLIDs.need_sync_host()
, and permuteFromLIDs.need_sync_device()
are all false.source | [in] On entry, the source object of the Export or Import operation. |
numSameIDs | [in] The number of elements that are the same on the source and target objects. These elements live on the same process in both the source and target objects. |
permuteToLIDs | [in] List of the elements that are permuted. They are listed by their local index (LID) in the destination object. |
permuteFromLIDs | [in] List of the elements that are permuted. They are listed by their local index (LID) in the source object. |
|
protectedvirtualinherited |
Pack data and metadata for communication (sends).
Subclasses must reimplement this function. Its default implementation does nothing. Note that the <t>target object of the Export or Import, namely *this
, packs the source object's data.
exportLIDs.need_sync_host ()
and exportLIDs.need_sync_device()
are both false.source | [in] Source object for the redistribution. |
exportLIDs | [in] List of the entries (as local IDs in the source object) that Tpetra will send to other processes. |
exports | [out] On exit, the packed data to send. Implementations must reallocate this as needed (prefer reusing the existing allocation if possible), and may modify and/or sync this wherever they like. |
numPacketsPerLID | [out] On exit, the implementation of this method must do one of two things: either set numPacketsPerLID[i] to the number of packets to be packed for exportLIDs[i] and set constantNumPackets to zero, or set constantNumPackets to a nonzero value. If the latter, the implementation must not modify the entries of numPacketsPerLID . If the former, the implementation may sync numPacketsPerLID this wherever it likes, either to host or to device. The allocation belongs to DistObject, not to subclasses; don't be tempted to change this to pass by reference. |
constantNumPackets | [out] On exit, 0 if the number of packets per LID could differ, else (if nonzero) the number of packets per LID (which must be constant). |
distor | [in] The Distributor object we are using. Most implementations will not use this. |
|
protectedvirtualinherited |
Perform any unpacking and combining after communication.
Subclasses must reimplement this function. Its default implementation does nothing. Note that the <t>target object of the Export or Import, namely *this
, unpacks the received data into itself, possibly modifying its entries.
importLIDs.need_sync_host ()
and importLIDs.need_sync_device()
are both false.importLIDs | [in] List of the entries (as LIDs in the destination object) we received from other processes. |
imports | [in/out] On input: Buffer of received data to unpack. DistObject promises nothing about where this is sync'd. Implementations may sync this wherever they like, either to host or to device. The allocation belongs to DistObject, not to subclasses; don't be tempted to change this to pass by reference. |
numPacketsPerLID | [in/out] On input: If constantNumPackets is zero, then numPacketsPerLID[i] contains the number of packets imported for importLIDs[i]. DistObject promises nothing about where this is sync'd. Implementations may sync this wherever they like, either to host or to device. The allocation belongs to DistObject, not to subclasses; don't be tempted to change this to pass by reference. |
constantNumPackets | [in] If nonzero, then the number of packets per LID is the same for all entries ("constant") and constantNumPackets is that number. If zero, then numPacketsPerLID[i] is the number of packets to unpack for LID importLIDs[i] . |
distor | [in] The Distributor object we are using. Most implementations will not use this. |
combineMode | [in] The CombineMode to use when combining the imported entries with existing entries. |
|
protectedinherited |
Reallocate imports_ if needed.
This unfortunately must be declared protected, for the same reason that imports_ is declared protected.
newSize | [in] New size of imports_. |
verbose | [in] Whether to print verbose debugging output to stderr on every (MPI) process in the communicator. |
prefix | [in] If verbose is true , then this is a nonnull prefix to print at the beginning of each line of verbose debugging output. Otherwise, not used. |
We don't need a "reallocExportsIfNeeded" method, because exports_
always gets passed into packAndPrepare() by nonconst reference. Thus, that method can resize the DualView without needing to call other DistObject methods.
|
related |
Nonmember CrsMatrix constructor that fuses Import and fillComplete().
CrsMatrixType | A specialization of CrsMatrix. |
A common use case is to create an empty destination CrsMatrix, redistribute from a source CrsMatrix (by an Import or Export operation), then call fillComplete() on the destination CrsMatrix. This constructor fuses these three cases, for an Import redistribution.
Fusing redistribution and fillComplete() exposes potential optimizations. For example, it may make constructing the column Map faster, and it may avoid intermediate unoptimized storage in the destination CrsMatrix. These optimizations may improve performance for specialized kernels like sparse matrix-matrix multiply, as well as for redistributing data after doing load balancing.
The resulting matrix is fill complete (in the sense of isFillComplete()) and has optimized storage (in the sense of isStorageOptimized()). By default, its domain Map is the domain Map of the source matrix, and its range Map is the range Map of the source matrix.
sourceMatrix | [in] The source matrix from which to import. The source of an Import must have a nonoverlapping distribution. |
importer | [in] The Import instance containing a precomputed redistribution plan. The source Map of the Import must be the same as the rowMap of sourceMatrix unless the "Reverse Mode" option on the params list, in which case the targetMap of Import must match the rowMap of the sourceMatrix |
domainMap | [in] Domain Map of the returned matrix. If null, we use the default, which is the domain Map of the source matrix. |
rangeMap | [in] Range Map of the returned matrix. If null, we use the default, which is the range Map of the source matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
|
related |
Nonmember CrsMatrix constructor that fuses Import and fillComplete().
CrsMatrixType | A specialization of CrsMatrix. |
A common use case is to create an empty destination CrsMatrix, redistribute from a source CrsMatrix (by an Import or Export operation), then call fillComplete() on the destination CrsMatrix. This constructor fuses these three cases, for an Import redistribution.
Fusing redistribution and fillComplete() exposes potential optimizations. For example, it may make constructing the column Map faster, and it may avoid intermediate unoptimized storage in the destination CrsMatrix. These optimizations may improve performance for specialized kernels like sparse matrix-matrix multiply, as well as for redistributing data after doing load balancing.
The resulting matrix is fill complete (in the sense of isFillComplete()) and has optimized storage (in the sense of isStorageOptimized()). By default, its domain Map is the domain Map of the source matrix, and its range Map is the range Map of the source matrix.
sourceMatrix | [in] The source matrix from which to import. The source of an Import must have a nonoverlapping distribution. |
rowImporter | [in] The Import instance containing a precomputed redistribution plan. The source Map of the Import must be the same as the rowMap of sourceMatrix unless the "Reverse Mode" option on the params list, in which case the targetMap of Import must match the rowMap of the sourceMatrix |
domainImporter | [in] The Import instance containing a precomputed redistribution plan. The source Map of the Import must be the same as the domainMap of sourceMatrix unless the "Reverse Mode" option on the params list, in which case the targetMap of Import must match the domainMap of the sourceMatrix |
domainMap | [in] Domain Map of the returned matrix. |
rangeMap | [in] Range Map of the returned matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
|
related |
Nonmember CrsMatrix constructor that fuses Export and fillComplete().
CrsMatrixType | A specialization of CrsMatrix. |
For justification, see the documentation of importAndFillCompleteCrsMatrix() (which is the Import analog of this function).
The resulting matrix is fill complete (in the sense of isFillComplete()) and has optimized storage (in the sense of isStorageOptimized()). By default, its domain Map is the domain Map of the source matrix, and its range Map is the range Map of the source matrix.
sourceMatrix | [in] The source matrix from which to export. Its row Map may be overlapping, since the source of an Export may be overlapping. |
exporter | [in] The Export instance containing a precomputed redistribution plan. The source Map of the Export must be the same as the row Map of sourceMatrix. |
domainMap | [in] Domain Map of the returned matrix. If null, we use the default, which is the domain Map of the source matrix. |
rangeMap | [in] Range Map of the returned matrix. If null, we use the default, which is the range Map of the source matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
|
related |
Nonmember CrsMatrix constructor that fuses Export and fillComplete().
CrsMatrixType | A specialization of CrsMatrix. |
For justification, see the documentation of importAndFillCompleteCrsMatrix() (which is the Import analog of this function).
The resulting matrix is fill complete (in the sense of isFillComplete()) and has optimized storage (in the sense of isStorageOptimized()). By default, its domain Map is the domain Map of the source matrix, and its range Map is the range Map of the source matrix.
sourceMatrix | [in] The source matrix from which to export. Its row Map may be overlapping, since the source of an Export may be overlapping. |
rowExporter | [in] The Export instance containing a precomputed redistribution plan. The source Map of the Export must be the same as the row Map of sourceMatrix. |
domainExporter | [in] The Export instance containing a precomputed redistribution plan. The source Map of the Export must be the same as the domain Map of sourceMatrix. |
domainMap | [in] Domain Map of the returned matrix. |
rangeMap | [in] Range Map of the returned matrix. |
params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
|
related |
Non-member function to create an empty CrsMatrix given a row map and a non-zero profile.
Definition at line 5033 of file Tpetra_CrsMatrix_decl.hpp.
|
mutableprotected |
Column Map MultiVector used in apply() and gaussSeidel().
This is a column Map MultiVector. It is used as the target of the forward mode Import operation (if necessary) in apply() and gaussSeidel(), and the source of the reverse mode Export operation (if necessary) in these methods. Both of these methods create this MultiVector on demand if needed, and reuse it (if possible) for subsequent calls.
This is declared mutable
because the methods in question are const, yet want to cache the MultiVector for later use.
Definition at line 4696 of file Tpetra_CrsMatrix_decl.hpp.
|
mutableprotected |
Row Map MultiVector used in apply().
This is a row Map MultiVector. It is uses as the source of the forward mode Export operation (if necessary) in apply() and gaussSeidel(), and the target of the reverse mode Import operation (if necessary) in these methods. Both of these methods create this MultiVector on demand if needed, and reuse it (if possible) for subsequent calls.
This is declared mutable
because the methods in question are const, yet want to cache the MultiVector for later use.
Definition at line 4710 of file Tpetra_CrsMatrix_decl.hpp.
|
protected |
The local sparse matrix.
Definition at line 4919 of file Tpetra_CrsMatrix_decl.hpp.
|
protected |
Status of the matrix's storage, when not in a fill-complete state.
The phrase "When not in a fill-complete state" is important. When the matrix is fill complete, it always uses 1-D "packed" storage. However, if the "Optimize Storage" parameter to fillComplete was false, the matrix may keep unpacked 1-D or 2-D storage around and resume it on the next resumeFill call.
Definition at line 4947 of file Tpetra_CrsMatrix_decl.hpp.
|
protected |
Whether the matrix is fill complete.
Definition at line 4950 of file Tpetra_CrsMatrix_decl.hpp.
|
protected |
Nonlocal data added using insertGlobalValues().
These data are cleared by globalAssemble(), once it finishes redistributing them to their owning processes.
For a given nonowned global row gRow which was given to insertGlobalValues() or sumIntoGlobalValues(), nonlocals_[gRow].first[k]
is the column index of an inserted entry, and nonlocals_[gRow].second[k]
is its value. Duplicate column indices for the same row index are allowed and will be summed during globalAssemble().
This used to be a map from GlobalOrdinal to (GlobalOrdinal, Scalar) pairs. This makes gcc issue a "note" about the ABI of structs containing std::complex members changing. CDash reports this as a warning, even though it's a "note," not a warning. However, I don't want it to show up, so I rearranged the map's value type to a pair of arrays, rather than an array of pairs.
Definition at line 4980 of file Tpetra_CrsMatrix_decl.hpp.
|
mutableprotected |
Cached Frobenius norm of the (global) matrix.
The value -1 means that the norm has not yet been computed, or that the values in the matrix may have changed and the norm must be recomputed.
Definition at line 4987 of file Tpetra_CrsMatrix_decl.hpp.
|
protectedinherited |
The Map over which this object is distributed.
Definition at line 1140 of file Tpetra_DistObject_decl.hpp.
|
protectedinherited |
Buffer into which packed data are imported (received from other processes).
Unfortunately, I had to declare these protected, because CrsMatrix uses them at one point. Please, nobody else use them.
Definition at line 1149 of file Tpetra_DistObject_decl.hpp.
|
protectedinherited |
Number of packets to receive for each receive operation.
This array is used in Distributor::doPosts() (and doReversePosts()) when starting the ireceive operation.
This may be ignored in doTransfer() if constantNumPackets is nonzero, indicating a constant number of packets per LID. (For example, MultiVector sets the constantNumPackets output argument of packAndPrepare() to the number of columns in the multivector.)
Unfortunately, I had to declare this protected, because CrsMatrix uses it at one point. Please, nobody else use it.
Definition at line 1187 of file Tpetra_DistObject_decl.hpp.
|
protectedinherited |
Buffer from which packed data are exported (sent to other processes).
Unfortunately, I had to declare this protected, because CrsMatrix uses it at one point. Please, nobody else use it.
Definition at line 1194 of file Tpetra_DistObject_decl.hpp.
|
protectedinherited |
Number of packets to send for each send operation.
This array is used in Distributor::doPosts() (and doReversePosts()) for preparing for the send operation.
This may be ignored in doTransfer() if constantNumPackets is nonzero, indicating a constant number of packets per LID. (For example, MultiVector sets the constantNumPackets output argument of packAndPrepare() to the number of columns in the multivector.)
Unfortunately, I had to declare this protected, because CrsMatrix uses them at one point. Please, nobody else use it.
Definition at line 1209 of file Tpetra_DistObject_decl.hpp.