Xpetra
Version of the Day
|
#include <Xpetra_MatrixFactory_fwd.hpp>
Static Public Member Functions | |
static RCP< Matrix > | Build (const RCP< const Map > &rowMap) |
static RCP< Matrix > | Build (const RCP< const Map > &rowMap, size_t maxNumEntriesPerRow) |
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) |
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) |
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) |
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, bool setFixedBlockSize=true) |
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 229 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor for an empty, DynamicProfile matrix. Supports Epetra only, as DynamicProfile no longer exists in Tpetra.
Definition at line 234 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying the number of non-zeros for all rows.
Definition at line 239 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying the max number of non-zeros per row and providing column map.
Definition at line 244 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying the (possibly different) number of entries per row and providing column map.
Definition at line 249 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying (possibly different) number of entries in each row.
Definition at line 277 of file Xpetra_MatrixFactory.hpp.
|
inlinestatic |
Constructor specifying graph.
Definition at line 282 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 287 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 304 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 318 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 328 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 342 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 358 of file Xpetra_MatrixFactory.hpp.