#include <Xpetra_MatrixFactory_fwd.hpp>
Static Public Member Functions | |
static RCP< Matrix > | Build (const RCP< const Map > &rowMap, size_t maxNumEntriesPerRow, Xpetra::ProfileType pftype=Xpetra::DynamicProfile) |
Constructor specifying the number of non-zeros for all rows. More... | |
static RCP< Matrix > | Build (const RCP< const Map > &rowMap, const RCP< const Map > &colMap, size_t maxNumEntriesPerRow, Xpetra::ProfileType pftype=Xpetra::DynamicProfile) |
Constructor specifying the max number of non-zeros per row and providing column map. More... | |
static RCP< Matrix > | Build (const RCP< const Map > &rowMap, const RCP< const Map > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, Xpetra::ProfileType pftype=Xpetra::DynamicProfile) |
Constructor specifying the (possibly different) number of entries per row and providing column map. More... | |
static RCP< Matrix > | Build (const RCP< const Map > &rowMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=Xpetra::DynamicProfile) |
Constructor specifying (possibly different) number of entries in each row. More... | |
static RCP< Matrix > | Build (const RCP< const CrsGraph > &graph, const RCP< ParameterList > ¶mList=Teuchos::null) |
Constructor specifying graph. More... | |
static RCP< Matrix > | Build (const RCP< const Vector > &diagonal) |
Constructor for creating a diagonal Xpetra::Matrix using the entries of a given vector for the diagonal. More... | |
static RCP< Matrix > | Build (const RCP< const Matrix > &sourceMatrix, const Import &importer, const RCP< const Map > &domainMap=Teuchos::null, const RCP< const Map > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Constructor to create a Matrix using a fusedImport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail. More... | |
static RCP< Matrix > | Build (const RCP< const Matrix > &sourceMatrix, const Export &exporter, const RCP< const Map > &domainMap, const RCP< const Map > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) |
Constructor to create a Matrix using a fusedExport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail. More... | |
static RCP< Matrix > | Build (const RCP< const Matrix > &sourceMatrix, const Import &RowImporter, const Import &DomainImporter, const RCP< const Map > &domainMap, const RCP< const Map > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) |
Constructor to create a Matrix using a fusedImport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail. More... | |
static RCP< Matrix > | Build (const RCP< const Matrix > &sourceMatrix, const Export &RowExporter, const Export &DomainExporter, const RCP< const Map > &domainMap=Teuchos::null, const RCP< const Map > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
Constructor to create a Matrix using a fusedExport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail. More... | |
static RCP< Xpetra::Matrix < Scalar, LocalOrdinal, GlobalOrdinal, Node > > | BuildCopy (const RCP< const Xpetra::Matrix< Scalar, LocalOrdinal, GlobalOrdinal, Node > > A) |
Private Member Functions | |
MatrixFactory () | |
Private constructor. This is a static class. More... | |
Definition at line 51 of file Xpetra_MatrixFactory_fwd.hpp.
|
inlineprivate |
Private constructor. This is a static class.
Definition at line 232 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying the number of non-zeros for all rows.
Definition at line 237 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying the max number of non-zeros per row and providing column map.
Definition at line 242 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying the (possibly different) number of entries per row and providing column map.
Definition at line 247 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying (possibly different) number of entries in each row.
Definition at line 275 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying graph.
Definition at line 280 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor for creating a diagonal Xpetra::Matrix using the entries of a given vector for the diagonal.
Definition at line 285 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor to create a Matrix using a fusedImport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail.
Definition at line 302 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor to create a Matrix using a fusedExport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail.
Definition at line 316 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor to create a Matrix using a fusedImport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail.
Definition at line 326 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor to create a Matrix using a fusedExport-style construction. The originalMatrix must be a Xpetra::CrsMatrixWrap under the hood or this will fail.
Definition at line 340 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
create an explicit copy of a given matrix This routine supports blocked and single-block operators
Definition at line 356 of file Xpetra_MatrixFactory.hpp.