Go to the documentation of this file.
46 #ifndef XPETRA_TPETRACRSGRAPH_DEF_HPP
47 #define XPETRA_TPETRACRSGRAPH_DEF_HPP
51 #include "Tpetra_CrsGraph.hpp"
56 #include "Xpetra_TpetraMap.hpp"
57 #include "Xpetra_TpetraImport.hpp"
58 #include "Xpetra_TpetraExport.hpp"
62 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
65 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
69 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
73 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
74 TpetraCrsGraph<LocalOrdinal,GlobalOrdinal,Node>::TpetraCrsGraph(
const RCP<
const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap,
const RCP<
const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap,
size_t maxNumEntriesPerRow,
ProfileType pftype,
const RCP< ParameterList > ¶ms)
77 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
78 TpetraCrsGraph<LocalOrdinal,GlobalOrdinal,Node>::TpetraCrsGraph(
const RCP<
const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap,
const RCP<
const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap,
const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc,
ProfileType pftype,
const RCP< ParameterList > ¶ms)
81 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
82 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
86 const typename local_graph_type::row_map_type& rowPointers,
87 const typename local_graph_type::entries_type::non_const_type& columnIndices,
92 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
96 const local_graph_type& lclGraph,
98 : graph_(
Teuchos::
rcp(new Tpetra::CrsGraph<LocalOrdinal, GlobalOrdinal, Node>(
toTpetra(rowMap),
toTpetra(colMap), lclGraph, params))) { }
100 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
111 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
114 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
116 {
XPETRA_MONITOR(
"TpetraCrsGraph::insertGlobalIndices"); graph_->insertGlobalIndices(globalRow, indices); }
118 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
120 {
XPETRA_MONITOR(
"TpetraCrsGraph::insertLocalIndices"); graph_->insertLocalIndices(localRow, indices); }
122 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
124 {
XPETRA_MONITOR(
"TpetraCrsGraph::removeLocalIndices"); graph_->removeLocalIndices(localRow); }
126 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
130 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
132 {
XPETRA_MONITOR(
"TpetraCrsGraph::fillComplete"); graph_->fillComplete(params); }
134 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
136 {
XPETRA_MONITOR(
"TpetraCrsGraph::getComm");
return graph_->getComm(); }
138 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
142 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
146 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
150 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
154 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
158 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
162 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
164 {
XPETRA_MONITOR(
"TpetraCrsGraph::getGlobalNumRows");
return graph_->getGlobalNumRows(); }
166 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
168 {
XPETRA_MONITOR(
"TpetraCrsGraph::getGlobalNumCols");
return graph_->getGlobalNumCols(); }
170 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
172 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNodeNumRows");
return graph_->getNodeNumRows(); }
174 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
176 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNodeNumCols");
return graph_->getNodeNumCols(); }
178 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
180 {
XPETRA_MONITOR(
"TpetraCrsGraph::getIndexBase");
return graph_->getIndexBase(); }
182 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
184 {
XPETRA_MONITOR(
"TpetraCrsGraph::getGlobalNumEntries");
return graph_->getGlobalNumEntries(); }
186 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
188 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNodeNumEntries");
return graph_->getNodeNumEntries(); }
190 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
192 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNumEntriesInGlobalRow");
return graph_->getNumEntriesInGlobalRow(globalRow); }
194 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
196 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNumEntriesInLocalRow");
return graph_->getNumEntriesInLocalRow(localRow); }
198 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
200 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNumAllocatedEntriesInGlobalRow");
return graph_->getNumAllocatedEntriesInGlobalRow(globalRow); }
202 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
204 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNumAllocatedEntriesInLocalRow");
return graph_->getNumAllocatedEntriesInLocalRow(localRow); }
206 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
208 {
XPETRA_MONITOR(
"TpetraCrsGraph::getGlobalMaxNumRowEntries");
return graph_->getGlobalMaxNumRowEntries(); }
210 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
212 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNodeMaxNumRowEntries");
return graph_->getNodeMaxNumRowEntries(); }
214 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
216 {
XPETRA_MONITOR(
"TpetraCrsGraph::hasColMap");
return graph_->hasColMap(); }
218 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
220 {
XPETRA_MONITOR(
"TpetraCrsGraph::isLocallyIndexed");
return graph_->isLocallyIndexed(); }
222 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
224 {
XPETRA_MONITOR(
"TpetraCrsGraph::isGloballyIndexed");
return graph_->isGloballyIndexed(); }
226 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
228 {
XPETRA_MONITOR(
"TpetraCrsGraph::isFillComplete");
return graph_->isFillComplete(); }
230 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
232 {
XPETRA_MONITOR(
"TpetraCrsGraph::isStorageOptimized");
return graph_->isStorageOptimized(); }
234 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
236 {
XPETRA_MONITOR(
"TpetraCrsGraph::getGlobalRowView"); graph_->getGlobalRowView(GlobalRow, Indices); }
238 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
240 {
XPETRA_MONITOR(
"TpetraCrsGraph::getLocalRowView"); graph_->getLocalRowView(LocalRow, indices); }
242 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
243 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
245 return getTpetra_CrsGraph()->getLocalGraph();
249 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
252 constexpr
bool computeLocalTriangularConstants =
true;
253 graph_->computeGlobalConstants(computeLocalTriangularConstants);
256 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
258 {
XPETRA_MONITOR(
"TpetraCrsGraph::description");
return graph_->description(); }
260 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
262 {
XPETRA_MONITOR(
"TpetraCrsGraph::describe"); graph_->describe(out, verbLevel); }
264 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
266 {
XPETRA_MONITOR(
"TpetraCrsGraph::getNodeRowPtrs");
return graph_->getNodeRowPtrs(); }
268 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
272 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
284 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
295 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
307 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
319 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
323 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
328 #ifdef HAVE_XPETRA_EPETRA
330 #if ((defined(EPETRA_HAVE_OMP) && (!defined(HAVE_TPETRA_INST_OPENMP) || !defined(HAVE_TPETRA_INST_INT_INT))) || \
331 (!defined(EPETRA_HAVE_OMP) && (!defined(HAVE_TPETRA_INST_SERIAL) || !defined(HAVE_TPETRA_INST_INT_INT))))
336 :
public CrsGraph<int,int,EpetraNode>
371 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
393 const typename local_graph_type::row_map_type& rowPointers,
394 const typename local_graph_type::entries_type::non_const_type& columnIndices,
422 const local_graph_type& lclGraph,
425 typeid(TpetraCrsGraph<LocalOrdinal,GlobalOrdinal,EpetraNode>).name(),
461 typeid(TpetraCrsGraph<LocalOrdinal,GlobalOrdinal,EpetraNode>).name(),
581 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
582 local_graph_type getLocalGraph ()
const {
585 "Epetra does not support Kokkos::StaticCrsGraph!");
653 #if ((defined(EPETRA_HAVE_OMP) && (!defined(HAVE_TPETRA_INST_OPENMP) || !defined(HAVE_TPETRA_INST_INT_LONG_LONG))) || \
654 (!defined(EPETRA_HAVE_OMP) && (!defined(HAVE_TPETRA_INST_SERIAL) || !defined(HAVE_TPETRA_INST_INT_LONG_LONG))))
659 :
public CrsGraph<int,long long,EpetraNode>
694 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
716 const typename local_graph_type::row_map_type& rowPointers,
717 const typename local_graph_type::entries_type::non_const_type& columnIndices,
745 const local_graph_type& lclGraph,
748 typeid(TpetraCrsGraph<LocalOrdinal,GlobalOrdinal,EpetraNode>).name(),
784 typeid(TpetraCrsGraph<LocalOrdinal,GlobalOrdinal,EpetraNode>).name(),
904 #ifdef HAVE_XPETRA_KOKKOS_REFACTOR
905 local_graph_type getLocalGraph ()
const {
908 "Epetra does not support Kokkos::StaticCrsGraph!");
976 #endif // HAVE_XPETRA_EPETRA
980 #endif //XPETRA_TPETRACRSGRAPH_DEF_HPP
void doImport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
Import.
ArrayRCP< const size_t > getNodeRowPtrs() const
Get an ArrayRCP of the row-offsets.
bool isFillComplete() const
Whether fillComplete() has been called and the graph is in compute mode.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getColMap() const
Returns the Map that describes the column distribution in this graph.
size_t getNodeMaxNumRowEntries() const
Maximum number of entries in all rows owned by the calling process.
size_t getNumEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of entries on this node in the specified local row.
global_size_t getGlobalNumEntries() const
Returns the global number of entries in the graph.
global_size_t getGlobalNumCols() const
Returns the number of global columns in the graph.
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.
TpetraCrsGraph(const Teuchos::RCP< Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph)
TpetraCrsGraph constructor to wrap a Tpetra::CrsGraph object.
bool hasColMap() const
Whether the graph has a column Map.
void insertLocalIndices(const LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &indices)
Insert local indices into the 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 > > getRowMap() const
Returns the Map that describes the row distribution in this graph.
size_t getNodeNumEntries() const
Returns the local number of entries in the graph.
void getLocalRowView(LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices) const
Return a const, nonpersisting view of local indices in the given row.
void doExport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
Export.
RCP< const Comm< int > > getComm() const
Returns the communicator.
size_t global_size_t
Global size_t object.
virtual ~TpetraCrsGraph()
Destructor.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getRangeMap() const
Returns the Map associated with the domain of this graph.
void doExport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
Export.
size_t getNumEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of entries on this node in the specified global row.
TpetraCrsGraph(const RCP< const map_type > &rowMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying fixed number of entries for each row.
RCP< const Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > getTpetra_CrsGraph() const
Get the underlying Tpetra graph.
bool isGloballyIndexed() const
Whether column indices are stored using global indices on the calling process.
TpetraCrsGraph(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying column Map and fixed number of entries for each row.
bool isStorageOptimized() const
Returns true if storage has been optimized.
RCP< const Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > toTpetra(const RCP< const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph)
RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > getExporter() const
Returns the exporter associated with this graph.
TpetraCrsGraph(const RCP< const map_type > &rowMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying fixed number of entries for each row.
void fillComplete(const RCP< ParameterList > ¶ms=null)
Signal that data entry is complete.
size_t getGlobalMaxNumRowEntries() const
Maximum number of entries in all rows over all processes.
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getMap() const
Implements DistObject interface.
global_size_t getGlobalNumRows() const
Returns the number of global rows in the graph.
size_t getNodeNumRows() const
Returns the number of graph rows owned on the calling node.
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.
#define XPETRA_DYNAMIC_CAST(type, obj, newObj, exceptionMsg)
RCP< const Comm< int > > getComm() const
Returns the communicator.
size_t getNodeMaxNumRowEntries() const
Maximum number of entries in all rows owned by the calling process.
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 doExport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)
Export (using an Importer).
void computeGlobalConstants()
Dummy implementation for computeGlobalConstants.
RCP< const CrsGraph< int, GlobalOrdinal, Node > > toXpetra(const Epetra_CrsGraph &g)
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getMap() const
Implements DistObject interface.
size_t getNumAllocatedEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of allocated entries for this node in the specified global row .
size_t getNodeNumCols() const
Returns the number of columns connected to the locally owned rows of this graph.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
size_t getNumEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of entries on this node in the specified global row.
RCP< const Export< LocalOrdinal, GlobalOrdinal, Node > > getExporter() const
Returns the exporter associated with this graph.
void doExport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)
Export (using an Importer).
void getLocalRowView(LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices) const
Return a const, nonpersisting view of local indices in the given row.
void computeGlobalConstants()
Dummy implementation for computeGlobalConstants.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getRangeMap() const
Returns the Map associated with the domain of this graph.
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.
CombineMode
Xpetra::Combine Mode enumerable type.
size_t getNodeNumRows() const
Returns the number of graph rows owned on the calling node.
void getGlobalRowView(GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &Indices) const
Return a const, nonpersisting view of global indices in the given row.
size_t getNumAllocatedEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of allocated entries for this node in the specified global row .
size_t getNumAllocatedEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of allocated entries for this node in the specified global row .
virtual ~TpetraCrsGraph()
Destructor.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getColMap() const
Returns the Map that describes the column distribution in this graph.
void computeGlobalConstants()
Force the computation of global constants if we don't have them.
void doImport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)
Import (using an Exporter).
bool hasColMap() const
Whether the graph has a column Map.
size_t getNodeMaxNumRowEntries() const
Maximum number of entries in all rows owned by the calling process.
TpetraCrsGraph(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying column Map and number of entries in each row.
bool isStorageOptimized() const
Returns true if storage has been optimized.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getColMap() const
Returns the Map that describes the column distribution in this graph.
TpetraCrsGraph(const RCP< const map_type > &rowMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying fixed number of entries for each row.
GlobalOrdinal getIndexBase() const
Returns the index base for global indices for this graph.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getDomainMap() 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.
Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getMap() const
Implements DistObject interface.
void doImport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Export< LocalOrdinal, GlobalOrdinal, Node > &exporter, CombineMode CM)
Import (using an Exporter).
GlobalOrdinal getIndexBase() const
Returns the index base for global indices for this graph.
ArrayRCP< const size_t > getNodeRowPtrs() const
Get an ArrayRCP of the row-offsets.
size_t getNodeNumCols() const
Returns the number of columns connected to the locally owned rows of this graph.
size_t getNumEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of entries on this node in the specified local row.
Exception throws to report errors in the internal logical of the program.
bool isLocallyIndexed() const
Whether column indices are stored using local indices on the calling process.
void insertGlobalIndices(GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &indices)
Insert global indices into the graph.
#define XPETRA_TPETRA_ETI_EXCEPTION(cl, obj, go, node)
Map< LocalOrdinal, GlobalOrdinal, Node > map_type
TpetraCrsGraph(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying (possibly different) number of entries in each row.
void removeLocalIndices(LocalOrdinal localRow)
Remove all graph indices from the specified local row.
void getLocalRowView(LocalOrdinal LocalRow, ArrayView< const LocalOrdinal > &indices) const
Return a const, nonpersisting view of local indices in the given row.
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getDomainMap() const
Returns the Map associated with the domain of this graph.
size_t getNumAllocatedEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of allocated entries on this node in the specified local row.
bool hasColMap() const
Whether the graph has a column Map.
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.
size_t getNodeNumEntries() const
Returns the local number of entries in the graph.
bool isGloballyIndexed() const
Whether column indices are stored using global indices on the calling process.
void removeLocalIndices(LocalOrdinal localRow)
Remove all graph indices from the specified local row.
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.
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.
void getGlobalRowView(GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &Indices) const
Return a const, nonpersisting view of global indices in the given row.
void removeLocalIndices(LocalOrdinal localRow)
Remove all graph indices from the specified local row.
global_size_t getGlobalNumEntries() const
Returns the global number of entries in the graph.
global_size_t getGlobalNumRows() const
Returns the number of global rows in the graph.
size_t getNodeNumRows() const
Returns the number of graph rows owned on the calling node.
void insertGlobalIndices(GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &indices)
Insert global indices into the graph.
TpetraCrsGraph< LocalOrdinal, GlobalOrdinal, Node > TpetraCrsGraphClass
std::string description() const
Return a simple one-line description of this object.
RCP< const Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > getTpetra_CrsGraph() const
Get the underlying Tpetra graph.
RCP< const Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > getTpetra_CrsGraph() const
Get the underlying Tpetra graph.
std::string description() const
Return a simple one-line description of this object.
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.
Map< LocalOrdinal, GlobalOrdinal, Node > map_type
global_size_t getGlobalNumEntries() const
Returns the global number of entries in the graph.
void doExport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &dest, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
Export.
void insertLocalIndices(const LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &indices)
Insert local indices into the graph.
size_t getGlobalMaxNumRowEntries() const
Maximum number of entries in all rows over all processes.
size_t getNumEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of entries on this node in the specified local row.
void insertLocalIndices(const LocalOrdinal localRow, const ArrayView< const LocalOrdinal > &indices)
Insert local indices into the graph.
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.
TpetraCrsGraph< LocalOrdinal, GlobalOrdinal, Node > TpetraCrsGraphClass
size_t getNumEntriesInGlobalRow(GlobalOrdinal globalRow) const
Returns the current number of entries on this node in the specified global row.
bool isFillComplete() const
Whether fillComplete() has been called and the graph is in compute mode.
void doImport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
Import.
size_t getNumAllocatedEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of allocated entries on this node in the specified local row.
std::string description() const
Return a simple one-line description of this object.
size_t getNodeNumCols() const
Returns the number of columns connected to the locally owned rows of this graph.
void insertGlobalIndices(GlobalOrdinal globalRow, const ArrayView< const GlobalOrdinal > &indices)
Insert global indices into the graph.
size_t getNumAllocatedEntriesInLocalRow(LocalOrdinal localRow) const
Returns the current number of allocated entries on this node in the specified local row.
RCP< const Import< LocalOrdinal, GlobalOrdinal, Node > > getImporter() const
Returns the importer associated with this graph.
global_size_t getGlobalNumCols() const
Returns the number of global columns in the graph.
TpetraCrsGraph(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying (possibly different) number of entries in each row.
bool isStorageOptimized() const
Returns true if storage has been optimized.
void doImport(const DistObject< GlobalOrdinal, LocalOrdinal, GlobalOrdinal, Node > &source, const Import< LocalOrdinal, GlobalOrdinal, Node > &importer, CombineMode CM)
Import.
GlobalOrdinal getIndexBase() const
Returns the index base for global indices for this graph.
virtual ~TpetraCrsGraph()
Destructor.
static const EVerbosityLevel verbLevel_default
#define TEUCHOS_TEST_FOR_EXCEPTION(throw_exception_test, Exception, msg)
bool isFillComplete() const
Whether fillComplete() has been called and the graph is in compute mode.
bool isLocallyIndexed() const
Whether column indices are stored using local indices on the calling process.
#define XPETRA_MONITOR(funcName)
ArrayRCP< const size_t > getNodeRowPtrs() const
Get an ArrayRCP of the row-offsets.
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.
TpetraCrsGraph(const Teuchos::RCP< Tpetra::CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > &graph)
TpetraCrsGraph constructor to wrap a Tpetra::CrsGraph object.
TpetraCrsGraph(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, const ArrayRCP< const size_t > &NumEntriesPerRowToAlloc, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying column Map and number of entries in each row.
size_t getNodeNumEntries() const
Returns the local number of entries in the graph.
global_size_t getGlobalNumCols() const
Returns the number of global columns in the graph.
void getGlobalRowView(GlobalOrdinal GlobalRow, ArrayView< const GlobalOrdinal > &Indices) const
Return a const, nonpersisting view of global indices in the given row.
size_t getGlobalMaxNumRowEntries() const
Maximum number of entries in all rows over all processes.
TpetraCrsGraph(const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &rowMap, const RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > &colMap, size_t maxNumEntriesPerRow, ProfileType pftype=DynamicProfile, const RCP< ParameterList > ¶ms=null)
Constructor specifying column Map and fixed number of entries for each row.
void fillComplete(const RCP< ParameterList > ¶ms=null)
Signal that data entry is complete.
#define TEUCHOS_UNREACHABLE_RETURN(dummyReturnVal)
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > getRowMap() const
Returns the Map that describes the row distribution in this graph.