|
| static Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | Build (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap) |
| | Constructor for empty graph (intended use is an import/export target - can't insert entries directly) More...
|
| |
| static Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | Build (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &map, size_t maxNumEntriesPerRow) |
| | Constructor specifying the number of non-zeros for all rows. More...
|
| |
| static Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | Build (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, size_t maxNumEntriesPerRow, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null) |
| | Constructor specifying column Map and number of entries per row. More...
|
| |
| static Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | Build (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null) |
| | Constructor specifying column Map and number of entries in each row. More...
|
| |
| static Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | Build (const RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &sourceGraph, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node >> &domainMap=Teuchos::null, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap=Teuchos::null, const RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) |
| | Constructor using fused import. More...
|
| |
| static Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | Build (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const Teuchos::ArrayRCP< size_t > &rowPointers, const Teuchos::ArrayRCP< LocalOrdinal > &columnIndices, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null) |
| | Constructor specifying column Map and arrays containing the graph in sorted, local ids. More...
|
| |
template<class LocalOrdinal, class GlobalOrdinal, class Node = KokkosClassic::DefaultNode::DefaultNodeType>
class Xpetra::CrsGraphFactory< LocalOrdinal, GlobalOrdinal, Node >
Definition at line 68 of file Xpetra_CrsGraphFactory.hpp.
template<class LocalOrdinal , class GlobalOrdinal , class Node = KokkosClassic::DefaultNode::DefaultNodeType>
| static Teuchos::RCP<CrsGraph<LocalOrdinal, GlobalOrdinal, Node> > Xpetra::CrsGraphFactory< LocalOrdinal, GlobalOrdinal, Node >::Build |
( |
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & |
rowMap, |
|
|
const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > & |
colMap, |
|
|
const Teuchos::ArrayRCP< size_t > & |
rowPointers, |
|
|
const Teuchos::ArrayRCP< LocalOrdinal > & |
columnIndices, |
|
|
const Teuchos::RCP< Teuchos::ParameterList > & |
plist = Teuchos::null |
|
) |
| |
|
inlinestatic |
Constructor specifying column Map and arrays containing the graph in sorted, local ids.
- Parameters
-
| rowMap | [in] Distribution of rows of the graph. |
| colMap | [in] Distribution of columns of the graph. |
| rowPointers | [in] The beginning of each row in the graph, 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 graph. |
| 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 graph. |
| params | [in/out] Optional list of parameters. If not null, any missing parameters will be filled in with their default values. |
Definition at line 299 of file Xpetra_CrsGraphFactory.hpp.