Xpetra Version of the Day
|
#include <Xpetra_TpetraCrsGraph_def.hpp>
Private Types | |
typedef int | LocalOrdinal |
typedef long long | GlobalOrdinal |
typedef EpetraNode | Node |
typedef TpetraCrsGraph< LocalOrdinal, GlobalOrdinal, Node > | TpetraCrsGraphClass |
typedef Map< LocalOrdinal, GlobalOrdinal, Node > | map_type |
Constructor/Destructor Methods | |
TpetraCrsGraph (const RCP< const map_type > &rowMap, size_t maxNumEntriesPerRow, const RCP< ParameterList > ¶ms=null) | |
Constructor specifying fixed number of entries for each row. | |
TpetraCrsGraph (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, const RCP< ParameterList > ¶ms=null) | |
Constructor specifying (possibly different) number of entries in each row. | |
TpetraCrsGraph (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, size_t maxNumEntriesPerRow, const RCP< ParameterList > ¶ms=null) | |
Constructor specifying column Map and fixed number of entries for each row. | |
TpetraCrsGraph (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, const RCP< ParameterList > ¶ms=null) | |
Constructor specifying column Map and number of entries in each row. | |
TpetraCrsGraph (const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const typename local_graph_type::row_map_type &rowPointers, const typename local_graph_type::entries_type::non_const_type &columnIndices, const Teuchos::RCP< Teuchos::ParameterList > &plist=Teuchos::null) | |
Constructor specifying column Map and arrays containing the graph in sorted, local ids. | |
TpetraCrsGraph (const Teuchos::RCP< const map_type > &rowMap, const Teuchos::RCP< const map_type > &colMap, const local_graph_type &lclGraph, const Teuchos::RCP< Teuchos::ParameterList > ¶ms) | |
Constructor specifying column Map and a local (sorted) graph, which the resulting CrsGraph views. | |
TpetraCrsGraph (const local_graph_type &lclGraph, 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 (sorted) graph, which the resulting CrsGraph views. | |
TpetraCrsGraph (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::RCP< Teuchos::ParameterList > ¶ms) | |
Constructor specifying column Map and arrays containing the graph in sorted, local ids. | |
virtual | ~TpetraCrsGraph () |
Destructor. | |
Insertion/Removal Methods | |
void | insertGlobalIndices (GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &indices) |
Insert global indices into the graph. | |
void | insertLocalIndices (const LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &indices) |
Insert local indices into the graph. | |
void | removeLocalIndices (LocalOrdinal localRow) |
Remove all graph indices from the specified local row. | |
void | allocateAllIndices (size_t numNonZeros, ArrayRCP< size_t > &rowptr, ArrayRCP< LocalOrdinal > &colind) |
Allocates the 1D pointer arrays of the graph. | |
void | setAllIndices (const ArrayRCP< size_t > &rowptr, const ArrayRCP< LocalOrdinal > &colind) |
Sets the 1D pointer arrays of the graph. | |
void | getAllIndices (ArrayRCP< const size_t > &rowptr, ArrayRCP< const LocalOrdinal > &colind) const |
Gets the 1D pointer arrays of the graph. | |
Transformational Methods | |
void | fillComplete (const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &domainMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rangeMap, const RCP< ParameterList > ¶ms=null) |
Signal that data entry is complete, specifying domain and range maps. | |
void | fillComplete (const RCP< ParameterList > ¶ms=null) |
Signal that data entry is complete. | |
void | expertStaticFillComplete (const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > &importer=null, const Teuchos::RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > &exporter=null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=null) |
Expert version of fillComplete. | |
Methods implementing RowGraph. | |
RCP< const Comm< int > > | getComm () const |
Returns the communicator. | |
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | getRowMap () const |
Returns the Map that describes the row distribution in this graph. | |
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | getColMap () const |
Returns the Map that describes the column distribution in this graph. | |
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | getDomainMap () const |
Returns the Map associated with the domain of this graph. | |
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | getRangeMap () const |
Returns the Map associated with the domain of this graph. | |
RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > | getImporter () const |
Returns the importer associated with this graph. | |
RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > | getExporter () const |
Returns the exporter associated with this graph. | |
global_size_t | getGlobalNumRows () const |
Returns the number of global rows in the graph. | |
global_size_t | getGlobalNumCols () const |
Returns the number of global columns in the graph. | |
size_t | getLocalNumRows () const |
Returns the number of graph rows owned on the calling node. | |
size_t | getLocalNumCols () const |
Returns the number of columns connected to the locally owned rows of this graph. | |
GlobalOrdinal | getIndexBase () const |
Returns the index base for global indices for this graph. | |
global_size_t | getGlobalNumEntries () const |
Returns the global number of entries in the graph. | |
size_t | getLocalNumEntries () const |
Returns the local number of entries in the graph. | |
size_t | getNumEntriesInGlobalRow (GlobalOrdinal globalRow) const |
Returns the current number of entries on this node in the specified global row. | |
size_t | getNumEntriesInLocalRow (LocalOrdinal localRow) const |
Returns the current number of entries on this node in the specified local row. | |
size_t | getNumAllocatedEntriesInGlobalRow (GlobalOrdinal globalRow) const |
Returns the current number of allocated entries for this node in the specified global row . | |
size_t | getNumAllocatedEntriesInLocalRow (LocalOrdinal localRow) const |
Returns the current number of allocated entries on this node in the specified local row. | |
size_t | getGlobalMaxNumRowEntries () const |
Maximum number of entries in all rows over all processes. | |
size_t | getLocalMaxNumRowEntries () const |
Maximum number of entries in all rows owned by the calling process. | |
bool | hasColMap () const |
Whether the graph has a column Map. | |
bool | isLocallyIndexed () const |
Whether column indices are stored using local indices on the calling process. | |
bool | isGloballyIndexed () const |
Whether column indices are stored using global indices on the calling process. | |
bool | isFillComplete () const |
Whether fillComplete() has been called and the graph is in compute mode. | |
bool | isStorageOptimized () const |
Returns true if storage has been optimized. | |
void | getGlobalRowView (GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &Indices) const |
Return a const, nonpersisting view of global indices in the given row. | |
void | getLocalRowView (LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices) const |
Return a const, nonpersisting view of local indices in the given row. | |
local_graph_type | getLocalGraphDevice () const |
local_graph_type::HostMirror | getLocalGraphHost () const |
Get the local graph. | |
void | computeGlobalConstants () |
Dummy implementation for computeGlobalConstants. | |
Overridden from Teuchos::Describable | |
std::string | description () const |
Return a simple one-line description of this object. | |
void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const |
Print the object with some verbosity level to an FancyOStream object. | |
Advanced methods, at increased risk of deprecation. | |
ArrayRCP< const size_t > | getNodeRowPtrs () const |
Get an ArrayRCP of the row-offsets. | |
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | getMap () const |
Implements DistObject interface. | |
void | doImport (const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Import. | |
void | doExport (const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Export. | |
void | doImport (const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Import (using an Exporter). | |
void | doExport (const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Export (using an Importer). | |
Xpetra specific | |
TpetraCrsGraph (const Teuchos::RCP< Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph) | |
TpetraCrsGraph constructor to wrap a Tpetra::CrsGraph object. | |
RCP< const Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > | getTpetra_CrsGraph () const |
Get the underlying Tpetra graph. | |
Additional Inherited Members | |
![]() | |
typedef int | local_ordinal_type |
typedef long long | global_ordinal_type |
typedef EpetraNode | node_type |
typedef node_type::execution_space | execution_space |
typedef node_type::device_type | device_type |
typedef Kokkos::StaticCrsGraph< int, Kokkos::LayoutLeft, device_type, void, size_t > | local_graph_type |
![]() | |
virtual | ~CrsGraph () |
Destructor. | |
virtual void | expertStaticFillComplete (const RCP< const Map< int, long long, EpetraNode > > &domainMap, const RCP< const Map< int, long long, EpetraNode > > &rangeMap, const RCP< const Import< int, long long, EpetraNode > > &importer=null, const RCP< const Export< int, long long, EpetraNode > > &exporter=null, const RCP< Teuchos::ParameterList > ¶ms=null)=0 |
Expert version of fillComplete. | |
![]() | |
virtual | ~DistObject () |
Destructor. | |
virtual void | doImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)=0 |
Import data into this object using an Import object ("forward mode"). | |
virtual void | beginImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Import data into this object using an Import object ("forward mode"). | |
virtual void | endImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Import data into this object using an Import object ("forward mode"). | |
virtual void | doExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)=0 |
Export data into this object using an Export object ("forward mode"). | |
virtual void | beginExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Export data into this object using an Export object ("forward mode"). | |
virtual void | endExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Export data into this object using an Export object ("forward mode"). | |
virtual void | doImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)=0 |
Import data into this object using an Export object ("reverse mode"). | |
virtual void | beginImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Import data into this object using an Export object ("reverse mode"). | |
virtual void | endImport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM) |
Import data into this object using an Export object ("reverse mode"). | |
virtual void | doExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)=0 |
Export data into this object using an Import object ("reverse mode"). | |
virtual void | beginExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Export data into this object using an Import object ("reverse mode"). | |
virtual void | endExport (const DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM) |
Export data into this object using an Import object ("reverse mode"). | |
![]() | |
void | describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const |
virtual | ~Describable () |
DescribableStreamManipulatorState | describe (const Describable &describable, const EVerbosityLevel verbLevel=Describable::verbLevel_default) |
std::ostream & | operator<< (std::ostream &os, const DescribableStreamManipulatorState &d) |
void | describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const |
virtual | ~Describable () |
![]() | |
LabeledObject () | |
virtual | ~LabeledObject () |
virtual void | setObjectLabel (const std::string &objectLabel) |
virtual std::string | getObjectLabel () const |
![]() | |
static const EVerbosityLevel | verbLevel_default |
Definition at line 758 of file Xpetra_TpetraCrsGraph_def.hpp.
|
private |
Definition at line 761 of file Xpetra_TpetraCrsGraph_def.hpp.
|
private |
Definition at line 762 of file Xpetra_TpetraCrsGraph_def.hpp.
|
private |
Definition at line 763 of file Xpetra_TpetraCrsGraph_def.hpp.
|
private |
Definition at line 766 of file Xpetra_TpetraCrsGraph_def.hpp.
|
private |
Definition at line 767 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying fixed number of entries for each row.
Definition at line 775 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying (possibly different) number of entries in each row.
Definition at line 780 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying column Map and fixed number of entries for each row.
Definition at line 785 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying column Map and number of entries in each row.
Definition at line 790 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying column Map and arrays containing the graph in sorted, local ids.
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 813 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying column Map and a local (sorted) graph, which the resulting CrsGraph views.
Unlike most other CrsGraph constructors, successful completion of this constructor will result in a fill-complete graph.
rowMap | [in] Distribution of rows of the graph. |
colMap | [in] Distribution of columns of the graph. |
lclGraph | [in] A locally indexed Kokkos::StaticCrsGraph whose local row indices come from the specified row Map, and whose local column indices 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 842 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying column, domain and range maps, and a local (sorted) graph, which the resulting CrsGraph views.
Unlike most other CrsGraph constructors, successful completion of this constructor will result in a fill-complete graph.
rowMap | [in] Distribution of rows of the graph. |
colMap | [in] Distribution of columns of the graph. |
domainMap | [in] The graph's domain Map. MUST be one to one! |
rangeMap | [in] The graph's range Map. MUST be one to one! May be, but need not be, the same as the domain Map. |
lclGraph | [in] A locally indexed Kokkos::StaticCrsGraph whose local row indices come from the specified row Map, and whose local column indices 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 876 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Constructor specifying column Map and arrays containing the graph in sorted, local ids.
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 907 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Destructor.
Definition at line 920 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
TpetraCrsGraph constructor to wrap a Tpetra::CrsGraph object.
Definition at line 1115 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Insert global indices into the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 928 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Insert local indices into the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 931 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Remove all graph indices from the specified local row.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 934 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Allocates the 1D pointer arrays of the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 938 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Sets the 1D pointer arrays of the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 941 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Gets the 1D pointer arrays of the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 944 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Signal that data entry is complete, specifying domain and range maps.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 953 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Signal that data entry is complete.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 956 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Expert version of fillComplete.
Definition at line 959 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the communicator.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 971 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the Map that describes the row distribution in this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 974 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the Map that describes the column distribution in this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 977 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the Map associated with the domain of this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 980 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the Map associated with the domain of this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 983 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the importer associated with this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 986 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the exporter associated with this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 989 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the number of global rows in the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 992 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the number of global columns in the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 995 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the number of graph rows owned on the calling node.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 998 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the number of columns connected to the locally owned rows of this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1001 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the index base for global indices for this graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1004 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the global number of entries in the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1007 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the local number of entries in the graph.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1010 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the current number of entries on this node in the specified global row.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1013 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the current number of entries on this node in the specified local row.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1016 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the current number of allocated entries for this node in the specified global row .
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1019 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns the current number of allocated entries on this node in the specified local row.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1022 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Maximum number of entries in all rows over all processes.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1025 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Maximum number of entries in all rows owned by the calling process.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1028 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Whether the graph has a column Map.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1031 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Whether column indices are stored using local indices on the calling process.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1034 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Whether column indices are stored using global indices on the calling process.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1037 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Whether fillComplete() has been called and the graph is in compute mode.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1040 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Returns true if storage has been optimized.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1043 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Return a const, nonpersisting view of global indices in the given row.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1046 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Return a const, nonpersisting view of local indices in the given row.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1049 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1051 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Get the local graph.
This is only a valid representation of the local graph if the (global) graph is fill complete.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1057 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Dummy implementation for computeGlobalConstants.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1064 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Return a simple one-line description of this object.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1072 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Print the object with some verbosity level to an FancyOStream object.
Implements Xpetra::CrsGraph< int, long long, EpetraNode >.
Definition at line 1075 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Get an ArrayRCP of the row-offsets.
Definition at line 1083 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inlinevirtual |
Implements DistObject interface.
Access function for the Tpetra::Map this DistObject was constructed with.
Implements Xpetra::DistObject< Packet, LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 1091 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Definition at line 1094 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Definition at line 1098 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Import (using an Exporter).
Definition at line 1102 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Export (using an Importer).
Definition at line 1106 of file Xpetra_TpetraCrsGraph_def.hpp.
|
inline |
Get the underlying Tpetra graph.
Definition at line 1120 of file Xpetra_TpetraCrsGraph_def.hpp.