11 #ifndef TPETRA_CRSGRAPH_DECL_HPP
12 #define TPETRA_CRSGRAPH_DECL_HPP
20 #include "Tpetra_DistObject.hpp"
21 #include "Tpetra_Exceptions.hpp"
22 #include "Tpetra_RowGraph.hpp"
24 #include "Tpetra_Details_WrappedDualView.hpp"
26 #include "KokkosSparse_findRelOffset.hpp"
27 #include "Kokkos_DualView.hpp"
28 #include "Kokkos_StaticCrsGraph.hpp"
30 #include "Teuchos_CommHelpers.hpp"
31 #include "Teuchos_Describable.hpp"
32 #include "Teuchos_OrdinalTraits.hpp"
33 #include "Teuchos_ParameterListAcceptorDefaultBase.hpp"
42 template<
class LocalOrdinal,
class GlobalOrdinal,
class Node>
class crsGraph_Swap_Tester;
44 #ifndef DOXYGEN_SHOULD_SKIP_THIS
46 template<
class LocalOrdinal,
53 template<
class ViewType>
54 struct UnmanagedView {
55 static_assert (Kokkos::is_view<ViewType>::value,
56 "ViewType must be a Kokkos::View specialization.");
60 typedef Kokkos::View<
typename ViewType::data_type,
61 typename ViewType::array_layout,
62 typename ViewType::device_type,
63 Kokkos::MemoryUnmanaged> type;
67 #endif // DOXYGEN_SHOULD_SKIP_THIS
186 template <
class LocalOrdinal,
190 public RowGraph<LocalOrdinal, GlobalOrdinal, Node>,
195 public Teuchos::ParameterListAcceptorDefaultBase
197 template <
class S,
class LO,
class GO,
class N>
199 template <
class LO2,
class GO2,
class N2>
201 template <
class LO,
class GO,
class N>
240 using local_inds_dualv_type =
241 Kokkos::DualView<local_ordinal_type*, device_type>;
246 using global_inds_dualv_type =
247 Kokkos::DualView<global_ordinal_type*, device_type>;
253 using row_ptrs_device_view_type =
254 typename row_graph_type::row_ptrs_device_view_type;
255 using row_ptrs_host_view_type =
256 typename row_graph_type::row_ptrs_host_view_type;
260 typename row_graph_type::local_inds_device_view_type;
261 using local_inds_host_view_type =
262 typename row_graph_type::local_inds_host_view_type;
263 using nonconst_local_inds_host_view_type =
264 typename row_graph_type::nonconst_local_inds_host_view_type;
268 typename row_graph_type::global_inds_device_view_type;
269 using global_inds_host_view_type =
270 typename row_graph_type::global_inds_host_view_type;
271 using nonconst_global_inds_host_view_type =
272 typename row_graph_type::nonconst_global_inds_host_view_type;
274 using offset_device_view_type =
275 typename row_ptrs_device_view_type::non_const_type;
292 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
293 const size_t maxNumEntriesPerRow,
294 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
308 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
309 const Kokkos::DualView<const size_t*, device_type>& numEntPerRow,
310 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
325 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
326 const Teuchos::ArrayView<const size_t>& numEntPerRow,
327 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
346 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
347 const Teuchos::RCP<const map_type>& colMap,
348 const size_t maxNumEntriesPerRow,
349 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
365 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
366 const Teuchos::RCP<const map_type>& colMap,
367 const Kokkos::DualView<const size_t*, device_type>& numEntPerRow,
368 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
385 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
386 const Teuchos::RCP<const map_type>& colMap,
387 const Teuchos::ArrayView<const size_t>& numEntPerRow,
388 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
403 const Teuchos::RCP<const map_type>& rowMap,
404 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
428 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
429 const Teuchos::RCP<const map_type>& colMap,
430 const typename local_graph_device_type::row_map_type& rowPointers,
431 const typename local_graph_device_type::entries_type::non_const_type& columnIndices,
432 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
456 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
457 const Teuchos::RCP<const map_type>& colMap,
458 const Teuchos::ArrayRCP<size_t>& rowPointers,
459 const Teuchos::ArrayRCP<local_ordinal_type>& columnIndices,
460 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
483 CrsGraph (
const Teuchos::RCP<const map_type>& rowMap,
484 const Teuchos::RCP<const map_type>& colMap,
486 const Teuchos::RCP<Teuchos::ParameterList>& params);
515 const Teuchos::RCP<const map_type>& rowMap,
516 const Teuchos::RCP<const map_type>& colMap,
517 const Teuchos::RCP<const map_type>& domainMap = Teuchos::null,
518 const Teuchos::RCP<const map_type>& rangeMap = Teuchos::null,
519 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
526 const Teuchos::RCP<const map_type>& rowMap,
527 const Teuchos::RCP<const map_type>& colMap,
528 const Teuchos::RCP<const map_type>& domainMap,
529 const Teuchos::RCP<const map_type>& rangeMap,
530 const Teuchos::RCP<const import_type>& importer,
531 const Teuchos::RCP<const export_type>& exporter,
532 const Teuchos::RCP<Teuchos::ParameterList>& params =
576 CrsGraph (
const row_ptrs_device_view_type& rowPointers,
578 const Teuchos::RCP<const map_type>& rowMap,
579 const Teuchos::RCP<const map_type>& colMap,
580 const Teuchos::RCP<const map_type>& domainMap,
581 const Teuchos::RCP<const map_type>& rangeMap,
582 const Teuchos::RCP<const import_type>& importer,
583 const Teuchos::RCP<const export_type>& exporter,
584 const Teuchos::RCP<Teuchos::ParameterList>& params =
662 setParameterList (
const Teuchos::RCP<Teuchos::ParameterList>& params)
override;
665 Teuchos::RCP<const Teuchos::ParameterList>
695 const Teuchos::ArrayView<const global_ordinal_type>& indices);
725 const Teuchos::ArrayView<const local_ordinal_type>& indices);
782 resumeFill (
const Teuchos::RCP<Teuchos::ParameterList>& params =
823 fillComplete (
const Teuchos::RCP<const map_type>& domainMap,
824 const Teuchos::RCP<const map_type>& rangeMap,
825 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
855 fillComplete (
const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null);
887 const Teuchos::RCP<const map_type>& rangeMap,
888 const Teuchos::RCP<const import_type>& importer =
890 const Teuchos::RCP<const export_type>& exporter =
892 const Teuchos::RCP<Teuchos::ParameterList>& params =
899 Teuchos::RCP<const Teuchos::Comm<int> >
getComm()
const override;
903 Teuchos::RCP<const map_type>
getRowMap ()
const override;
906 Teuchos::RCP<const map_type>
getColMap ()
const override;
909 Teuchos::RCP<const map_type>
getDomainMap ()
const override;
912 Teuchos::RCP<const map_type>
getRangeMap ()
const override;
915 Teuchos::RCP<const import_type>
getImporter ()
const override;
918 Teuchos::RCP<const export_type>
getExporter ()
const override;
1100 nonconst_global_inds_host_view_type &gblColInds,
1101 size_t& numColInds)
const override;
1112 nonconst_local_inds_host_view_type &gblColInds,
1113 size_t& numColInds)
const override;
1128 global_inds_host_view_type &gblColInds)
const override;
1148 const LocalOrdinal lclRow,
1149 local_inds_host_view_type &lclColInds)
const override;
1162 describe (Teuchos::FancyOStream& out,
1163 const Teuchos::EVerbosityLevel verbLevel =
1164 Teuchos::Describable::verbLevel_default)
const override;
1190 const size_t numSameIDs,
1202 const bool verbose);
1204 std::unique_ptr<padding_type>
1208 const size_t numSameIDs,
1213 const bool verbose)
const;
1216 std::unique_ptr<padding_type>
1217 computeCrsPaddingForImports(
1220 Kokkos::DualView<packet_type*, buffer_device_type> imports,
1221 Kokkos::DualView<size_t*, buffer_device_type> numPacketsPerLID,
1222 const bool verbose)
const;
1224 std::unique_ptr<padding_type>
1225 computePaddingForCrsMatrixUnpack(
1228 Kokkos::DualView<char*, buffer_device_type> imports,
1229 Kokkos::DualView<size_t*, buffer_device_type> numPacketsPerLID,
1230 const bool verbose)
const;
1233 computeCrsPaddingForSameIDs(
1240 computeCrsPaddingForPermutedIDs(
1252 const Kokkos::DualView<const local_ordinal_type*, buffer_device_type>& exportLIDs,
1253 Kokkos::DualView<packet_type*, buffer_device_type>& exports,
1254 Kokkos::DualView<size_t*, buffer_device_type> numPacketsPerLID,
1255 size_t& constantNumPackets)
override;
1265 pack (
const Teuchos::ArrayView<const local_ordinal_type>& exportLIDs,
1266 Teuchos::Array<global_ordinal_type>& exports,
1267 const Teuchos::ArrayView<size_t>& numPacketsPerLID,
1268 size_t& constantNumPackets)
const override;
1271 packFillActive (
const Teuchos::ArrayView<const local_ordinal_type>& exportLIDs,
1272 Teuchos::Array<global_ordinal_type>& exports,
1273 const Teuchos::ArrayView<size_t>& numPacketsPerLID,
1274 size_t& constantNumPackets)
const;
1281 Kokkos::DualView<
size_t*,
1283 size_t& constantNumPackets)
const;
1298 Kokkos::DualView<
size_t*,
1300 const size_t constantNumPackets,
1350 getLocalDiagOffsets (
const Kokkos::View<size_t*, device_type, Kokkos::MemoryUnmanaged>& offsets)
const;
1378 setAllIndices (
const typename local_graph_device_type::row_map_type& rowPointers,
1379 const typename local_graph_device_type::entries_type::non_const_type& columnIndices);
1391 setAllIndices (
const Teuchos::ArrayRCP<size_t> & rowPointers,
1392 const Teuchos::ArrayRCP<local_ordinal_type> & columnIndices);
1426 void replaceColMap (
const Teuchos::RCP<const map_type>& newColMap);
1449 const Teuchos::RCP<const import_type>& newImport = Teuchos::null,
1450 const bool sortIndicesInEachRow =
true);
1476 const Teuchos::RCP<const import_type>& newImporter);
1502 const Teuchos::RCP<const export_type>& newExporter);
1536 template<
class DestViewType,
class SrcViewType,
1537 class DestOffsetViewType,
class SrcOffsetViewType >
1538 struct pack_functor {
1542 SrcOffsetViewType src_offset;
1543 DestOffsetViewType dest_offset;
1544 typedef typename DestOffsetViewType::non_const_value_type ScalarIndx;
1546 pack_functor(DestViewType dest_,
1547 const SrcViewType src_,
1548 DestOffsetViewType dest_offset_,
1549 const SrcOffsetViewType src_offset_):
1550 src(src_),dest(dest_),
1551 src_offset(src_offset_),dest_offset(dest_offset_) {};
1553 KOKKOS_INLINE_FUNCTION
1554 void operator() (
size_t row)
const {
1555 ScalarIndx i = src_offset(row);
1556 ScalarIndx j = dest_offset(row);
1557 const ScalarIndx k = dest_offset(row+1);
1566 template<
class CrsGraphType>
1567 friend Teuchos::RCP<CrsGraphType>
1568 importAndFillCompleteCrsGraph (
const Teuchos::RCP<const CrsGraphType>& sourceGraph,
1569 const Import<
typename CrsGraphType::local_ordinal_type,
1570 typename CrsGraphType::global_ordinal_type,
1571 typename CrsGraphType::node_type>& importer,
1572 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1573 typename CrsGraphType::global_ordinal_type,
1574 typename CrsGraphType::node_type> >& domainMap,
1575 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1576 typename CrsGraphType::global_ordinal_type,
1577 typename CrsGraphType::node_type> >& rangeMap,
1578 const Teuchos::RCP<Teuchos::ParameterList>& params);
1581 template<
class CrsGraphType>
1582 friend Teuchos::RCP<CrsGraphType>
1583 importAndFillCompleteCrsGraph (
const Teuchos::RCP<const CrsGraphType>& sourceGraph,
1584 const Import<
typename CrsGraphType::local_ordinal_type,
1585 typename CrsGraphType::global_ordinal_type,
1586 typename CrsGraphType::node_type>& rowImporter,
1587 const Import<
typename CrsGraphType::local_ordinal_type,
1588 typename CrsGraphType::global_ordinal_type,
1589 typename CrsGraphType::node_type>& domainImporter,
1590 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1591 typename CrsGraphType::global_ordinal_type,
1592 typename CrsGraphType::node_type> >& domainMap,
1593 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1594 typename CrsGraphType::global_ordinal_type,
1595 typename CrsGraphType::node_type> >& rangeMap,
1596 const Teuchos::RCP<Teuchos::ParameterList>& params);
1600 template<
class CrsGraphType>
1601 friend Teuchos::RCP<CrsGraphType>
1602 exportAndFillCompleteCrsGraph (
const Teuchos::RCP<const CrsGraphType>& sourceGraph,
1603 const Export<
typename CrsGraphType::local_ordinal_type,
1604 typename CrsGraphType::global_ordinal_type,
1605 typename CrsGraphType::node_type>& exporter,
1606 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1607 typename CrsGraphType::global_ordinal_type,
1608 typename CrsGraphType::node_type> >& domainMap,
1609 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1610 typename CrsGraphType::global_ordinal_type,
1611 typename CrsGraphType::node_type> >& rangeMap,
1612 const Teuchos::RCP<Teuchos::ParameterList>& params);
1615 template<
class CrsGraphType>
1616 friend Teuchos::RCP<CrsGraphType>
1617 exportAndFillCompleteCrsGraph (
const Teuchos::RCP<const CrsGraphType>& sourceGraph,
1618 const Export<
typename CrsGraphType::local_ordinal_type,
1619 typename CrsGraphType::global_ordinal_type,
1620 typename CrsGraphType::node_type>& rowExporter,
1621 const Export<
typename CrsGraphType::local_ordinal_type,
1622 typename CrsGraphType::global_ordinal_type,
1623 typename CrsGraphType::node_type>& domainExporter,
1624 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1625 typename CrsGraphType::global_ordinal_type,
1626 typename CrsGraphType::node_type> >& domainMap,
1627 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
1628 typename CrsGraphType::global_ordinal_type,
1629 typename CrsGraphType::node_type> >& rangeMap,
1630 const Teuchos::RCP<Teuchos::ParameterList>& params);
1649 importAndFillComplete (Teuchos::RCP<CrsGraph<local_ordinal_type, global_ordinal_type, Node> >& destGraph,
1651 const Teuchos::RCP<const map_type>& domainMap,
1652 const Teuchos::RCP<const map_type>& rangeMap,
1653 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null)
const;
1671 importAndFillComplete (Teuchos::RCP<CrsGraph<local_ordinal_type, global_ordinal_type, Node> >& destGraph,
1674 const Teuchos::RCP<const map_type>& domainMap,
1675 const Teuchos::RCP<const map_type>& rangeMap,
1676 const Teuchos::RCP<Teuchos::ParameterList>& params)
const;
1695 exportAndFillComplete (Teuchos::RCP<CrsGraph<local_ordinal_type, global_ordinal_type, Node> >& destGraph,
1697 const Teuchos::RCP<const map_type>& domainMap = Teuchos::null,
1698 const Teuchos::RCP<const map_type>& rangeMap = Teuchos::null,
1699 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null)
const;
1717 exportAndFillComplete (Teuchos::RCP<CrsGraph<local_ordinal_type, global_ordinal_type, Node> >& destGraph,
1720 const Teuchos::RCP<const map_type>& domainMap,
1721 const Teuchos::RCP<const map_type>& rangeMap,
1722 const Teuchos::RCP<Teuchos::ParameterList>& params)
const;
1747 transferAndFillComplete (Teuchos::RCP<CrsGraph<local_ordinal_type, global_ordinal_type, Node> >& destGraph,
1748 const ::Tpetra::Details::Transfer<local_ordinal_type, global_ordinal_type, Node>& rowTransfer,
1749 const Teuchos::RCP<const ::Tpetra::Details::Transfer<local_ordinal_type, global_ordinal_type, Node> > & domainTransfer,
1750 const Teuchos::RCP<const map_type>& domainMap = Teuchos::null,
1751 const Teuchos::RCP<const map_type>& rangeMap = Teuchos::null,
1752 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null)
const;
1757 struct SLocalGlobalViews {
1758 Teuchos::ArrayView<const global_ordinal_type> ginds;
1759 Teuchos::ArrayView<const local_ordinal_type> linds;
1761 struct SLocalGlobalNCViews {
1762 Teuchos::ArrayView<global_ordinal_type> ginds;
1763 Teuchos::ArrayView<local_ordinal_type> linds;
1766 bool indicesAreAllocated ()
const;
1769 allocateIndices(
const ELocalGlobal lg,
const bool verbose=
false);
1783 void makeColMap (Teuchos::Array<int>& remotePIDs);
1805 std::pair<size_t, std::string>
1818 const bool useRemotePIDs);
1860 const SLocalGlobalViews& newInds,
1861 const ELocalGlobal lg,
1862 const ELocalGlobal I);
1876 const size_t numInputInds);
1890 const size_t numInputInds,
1891 std::function<
void(
const size_t,
const size_t,
const size_t)> fun =
1892 std::function<
void(
const size_t,
const size_t,
const size_t)>());
1896 const Teuchos::ArrayView<const local_ordinal_type>& gblColInds,
1897 std::function<
void(
const size_t,
const size_t,
const size_t)> fun =
1898 std::function<
void(
const size_t,
const size_t,
const size_t)>());
1917 const Teuchos::ArrayView<const global_ordinal_type>& indices,
1918 std::function<
void(
const size_t,
const size_t,
const size_t)> fun)
const;
1957 #ifdef KOKKOS_ENABLE_SERIAL
1958 ! std::is_same<execution_space, Kokkos::Serial>::value;
1961 #endif // KOKKOS_ENABLE_SERIAL
1983 sortAndMergeAllIndices (
const bool sorted,
const bool merged);
2012 const Teuchos::RCP<const map_type>& rangeMap);
2014 void staticAssertions()
const;
2015 void clearGlobalConstants();
2040 bool haveLocalOffRankOffsets()
const {
return haveLocalOffRankOffsets_;}
2096 void fillLocalGraph (
const Teuchos::RCP<Teuchos::ParameterList>& params);
2104 void swap(CrsGraph<local_ordinal_type, global_ordinal_type, Node> & graph);
2139 Teuchos::OrdinalTraits<size_t>::invalid();
2145 Teuchos::OrdinalTraits<global_size_t>::invalid();
2152 Teuchos::OrdinalTraits<global_size_t>::invalid();
2166 row_ptrs_device_view_type rowPtrsUnpacked_dev_;
2167 mutable row_ptrs_host_view_type rowPtrsUnpacked_host_;
2172 row_ptrs_device_view_type rowPtrsPacked_dev_;
2173 mutable row_ptrs_host_view_type rowPtrsPacked_host_;
2176 bool packedUnpackedRowPtrsMatch_ =
false;
2179 void setRowPtrsUnpacked(
const row_ptrs_device_view_type &dview) {
2180 packedUnpackedRowPtrsMatch_ =
false;
2181 rowPtrsUnpacked_dev_ = dview;
2183 rowPtrsUnpacked_host_ = row_ptrs_host_view_type();
2189 return rowPtrsUnpacked_dev_;
2195 if(rowPtrsUnpacked_host_.extent(0) != rowPtrsUnpacked_dev_.extent(0))
2201 if constexpr(std::is_same_v<typename Node::memory_space, Kokkos::HostSpace>)
2203 rowPtrsUnpacked_host_ = rowPtrsUnpacked_dev_;
2208 typename row_ptrs_host_view_type::non_const_type rowPtrsTemp(
2209 Kokkos::view_alloc(Kokkos::WithoutInitializing,
"rowPtrsUnpacked_host_"), rowPtrsUnpacked_dev_.extent(0));
2211 rowPtrsUnpacked_host_= rowPtrsTemp;
2214 if(packedUnpackedRowPtrsMatch_)
2216 rowPtrsPacked_host_ = rowPtrsUnpacked_host_;
2219 return rowPtrsUnpacked_host_;
2222 void setRowPtrsPacked(
const row_ptrs_device_view_type &dview) {
2223 packedUnpackedRowPtrsMatch_ =
false;
2224 rowPtrsPacked_dev_ = dview;
2226 rowPtrsPacked_host_ = row_ptrs_host_view_type();
2232 return rowPtrsPacked_dev_;
2238 if(rowPtrsPacked_host_.extent(0) != rowPtrsPacked_dev_.extent(0))
2244 if constexpr(std::is_same_v<typename Node::memory_space, Kokkos::HostSpace>)
2246 rowPtrsPacked_host_ = rowPtrsPacked_dev_;
2251 typename row_ptrs_host_view_type::non_const_type rowPtrsTemp(
2252 Kokkos::view_alloc(Kokkos::WithoutInitializing,
"rowPtrsPacked_host_"), rowPtrsPacked_dev_.extent(0));
2254 rowPtrsPacked_host_= rowPtrsTemp;
2257 if(packedUnpackedRowPtrsMatch_)
2259 rowPtrsUnpacked_host_ = rowPtrsPacked_host_;
2262 return rowPtrsPacked_host_;
2269 void setRowPtrs(
const row_ptrs_device_view_type &dview) {
2270 packedUnpackedRowPtrsMatch_ =
true;
2271 rowPtrsUnpacked_dev_ = dview;
2272 rowPtrsPacked_dev_ = dview;
2274 rowPtrsUnpacked_host_ = row_ptrs_host_view_type();
2275 rowPtrsPacked_host_ = row_ptrs_host_view_type();
2328 typename local_inds_dualv_type::t_host::const_type
2334 typename local_inds_dualv_type::t_dev::const_type
2340 typename global_inds_dualv_type::t_host::const_type
2346 typename global_inds_dualv_type::t_dev::const_type
2352 typename local_inds_dualv_type::t_host
2384 typename Kokkos::View<const size_t*, device_type>::HostMirror
2469 Details::STORAGE_1D_UNPACKED;
2471 bool indicesAreAllocated_ =
false;
2472 bool indicesAreLocal_ =
false;
2473 bool indicesAreGlobal_ =
false;
2474 bool fillComplete_ =
false;
2486 mutable bool haveLocalOffRankOffsets_ =
false;
2488 typedef typename std::map<global_ordinal_type, std::vector<global_ordinal_type> > nonlocals_type;
2511 static bool getDebug();
2515 bool debug_ = getDebug();
2518 static bool getVerbose();
2523 bool verbose_ = getVerbose();
2527 mutable bool need_sync_host_uvm_access =
false;
2530 void set_need_sync_host_uvm_access() {
2531 need_sync_host_uvm_access =
true;
2535 void execute_sync_host_uvm_access()
const {
2536 if(need_sync_host_uvm_access) {
2537 Kokkos::fence(
"CrsGraph::execute_sync_host_uvm_access");
2538 need_sync_host_uvm_access =
false;
2550 template <
class LocalOrdinal,
class GlobalOrdinal,
class Node>
2551 Teuchos::RCP<CrsGraph<LocalOrdinal, GlobalOrdinal, Node> >
2555 size_t maxNumEntriesPerRow = 0,
2556 const Teuchos::RCP<Teuchos::ParameterList>& params =
2561 return rcp(
new graph_type(map, maxNumEntriesPerRow,
2614 template<
class CrsGraphType>
2615 Teuchos::RCP<CrsGraphType>
2617 const Import<
typename CrsGraphType::local_ordinal_type,
2618 typename CrsGraphType::global_ordinal_type,
2619 typename CrsGraphType::node_type>& importer,
2620 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2621 typename CrsGraphType::global_ordinal_type,
2622 typename CrsGraphType::node_type> >& domainMap = Teuchos::null,
2623 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2624 typename CrsGraphType::global_ordinal_type,
2625 typename CrsGraphType::node_type> >& rangeMap = Teuchos::null,
2626 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null)
2628 Teuchos::RCP<CrsGraphType> destGraph;
2629 sourceGraph->importAndFillComplete (destGraph,importer,domainMap, rangeMap, params);
2683 template<
class CrsGraphType>
2684 Teuchos::RCP<CrsGraphType>
2686 const Import<
typename CrsGraphType::local_ordinal_type,
2687 typename CrsGraphType::global_ordinal_type,
2688 typename CrsGraphType::node_type>& rowImporter,
2689 const Import<
typename CrsGraphType::local_ordinal_type,
2690 typename CrsGraphType::global_ordinal_type,
2691 typename CrsGraphType::node_type>& domainImporter,
2692 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2693 typename CrsGraphType::global_ordinal_type,
2694 typename CrsGraphType::node_type> >& domainMap,
2695 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2696 typename CrsGraphType::global_ordinal_type,
2697 typename CrsGraphType::node_type> >& rangeMap,
2698 const Teuchos::RCP<Teuchos::ParameterList>& params)
2700 Teuchos::RCP<CrsGraphType> destGraph;
2701 sourceGraph->importAndFillComplete (destGraph,rowImporter,domainImporter, domainMap, rangeMap, params);
2738 template<
class CrsGraphType>
2739 Teuchos::RCP<CrsGraphType>
2741 const Export<
typename CrsGraphType::local_ordinal_type,
2742 typename CrsGraphType::global_ordinal_type,
2743 typename CrsGraphType::node_type>& exporter,
2744 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2745 typename CrsGraphType::global_ordinal_type,
2746 typename CrsGraphType::node_type> >& domainMap = Teuchos::null,
2747 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2748 typename CrsGraphType::global_ordinal_type,
2749 typename CrsGraphType::node_type> >& rangeMap = Teuchos::null,
2750 const Teuchos::RCP<Teuchos::ParameterList>& params = Teuchos::null)
2752 Teuchos::RCP<CrsGraphType> destGraph;
2753 sourceGraph->exportAndFillComplete (destGraph,exporter,domainMap, rangeMap, params);
2790 template<
class CrsGraphType>
2791 Teuchos::RCP<CrsGraphType>
2793 const Export<
typename CrsGraphType::local_ordinal_type,
2794 typename CrsGraphType::global_ordinal_type,
2795 typename CrsGraphType::node_type>& rowExporter,
2796 const Export<
typename CrsGraphType::local_ordinal_type,
2797 typename CrsGraphType::global_ordinal_type,
2798 typename CrsGraphType::node_type>& domainExporter,
2799 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2800 typename CrsGraphType::global_ordinal_type,
2801 typename CrsGraphType::node_type> >& domainMap,
2802 const Teuchos::RCP<
const Map<
typename CrsGraphType::local_ordinal_type,
2803 typename CrsGraphType::global_ordinal_type,
2804 typename CrsGraphType::node_type> >& rangeMap,
2805 const Teuchos::RCP<Teuchos::ParameterList>& params)
2807 Teuchos::RCP<CrsGraphType> destGraph;
2808 sourceGraph->exportAndFillComplete (destGraph,rowExporter,domainExporter,domainMap, rangeMap, params);
2815 #endif // TPETRA_CRSGRAPH_DECL_HPP
Communication plan for data redistribution from a uniquely-owned to a (possibly) multiply-owned distr...
void setDomainRangeMaps(const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap)
void setAllIndices(const typename local_graph_device_type::row_map_type &rowPointers, const typename local_graph_device_type::entries_type::non_const_type &columnIndices)
Set the graph's data directly, using 1-D storage.
Teuchos::RCP< const map_type > getRowMap() const override
Returns the Map that describes the row distribution in this graph.
offset_device_view_type k_offRankOffsets_
The offsets for off-rank entries.
size_t nodeMaxNumRowEntries_
Local maximum of the number of entries in each row.
bool indicesAreSorted_
Whether the graph's indices are sorted in each row, on this process.
A distributed graph accessed by rows (adjacency lists) and stored sparsely.
::Tpetra::Export< LocalOrdinal, GlobalOrdinal, Node > export_type
The Export specialization used by this class.
Sparse matrix that presents a row-oriented interface that lets users read or modify entries...
Teuchos::RCP< const map_type > rangeMap_
The Map describing the range of the (matrix corresponding to the) graph.
Teuchos::RCP< const map_type > getColMap() const override
Returns the Map that describes the column distribution in this graph.
local_inds_host_view_type getLocalIndicesHost() const
Get a host view of the packed column indicies.
GO global_ordinal_type
The type of the graph's global indices.
local_inds_dualv_type::t_host::const_type getLocalIndsViewHost(const RowInfo &rowinfo) const
Get a const, locally indexed view of the locally owned row myRow, such that rowinfo = getRowInfo(myRo...
An abstract interface for graphs accessed by rows.
Kokkos::View< const size_t *, device_type >::HostMirror k_numAllocPerRow_
The maximum number of entries to allow in each locally owned row, per row.
void getLocalOffRankOffsets(offset_device_view_type &offsets) const
Get offsets of the off-rank entries in the graph.
void insertGlobalIndicesFiltered(const local_ordinal_type lclRow, const global_ordinal_type gblColInds[], const local_ordinal_type numGblColInds)
Like insertGlobalIndices(), but with column Map filtering.
local_inds_dualv_type::t_host getLocalIndsViewHostNonConst(const RowInfo &rowinfo)
Get a ReadWrite locally indexed view of the locally owned row myRow, such that rowinfo = getRowInfo(m...
bool sortGhostsAssociatedWithEachProcessor_
Whether to require makeColMap() (and therefore fillComplete()) to order column Map GIDs associated wi...
virtual void copyAndPermute(const SrcDistObject &source, const size_t numSameIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteToLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteFromLIDs, const CombineMode CM)
Perform copies and permutations that are local to the calling (MPI) process.
size_t insertGlobalIndicesImpl(const local_ordinal_type lclRow, const global_ordinal_type inputGblColInds[], const size_t numInputInds)
Insert global indices, using an input local row index.
void resumeFill(const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Resume fill operations.
bool haveGlobalConstants_
Whether all processes have computed global constants.
size_t getLocalNumRows() const override
Returns the number of graph rows owned on the calling node.
void expertStaticFillComplete(const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< const import_type > &importer=Teuchos::null, const Teuchos::RCP< const export_type > &exporter=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Perform a fillComplete on a graph that already has data, via setAllIndices().
Teuchos::RCP< const import_type > getImporter() const override
Returns the importer associated with this graph.
void getLocalDiagOffsets(const Kokkos::View< size_t *, device_type, Kokkos::MemoryUnmanaged > &offsets) const
Get offsets of the diagonal entries in the graph.
void insertGlobalIndices(const global_ordinal_type globalRow, const Teuchos::ArrayView< const global_ordinal_type > &indices)
Insert global indices into the graph.
size_t getNumEntriesInLocalRow(local_ordinal_type localRow) const override
Get the number of entries in the given row (local index).
size_t getLocalAllocationSize() const
The local number of indices allocated for the graph, over all rows on the calling (MPI) process...
Teuchos::RCP< const Teuchos::ParameterList > getValidParameters() const override
Default parameter list suitable for validation.
void computeLocalConstants()
Compute local constants, if they have not yet been computed.
typename row_graph_type::local_inds_device_view_type local_inds_device_view_type
The Kokkos::View type for views of local ordinals on device and host.
bool isIdenticalTo(const CrsGraph< LocalOrdinal, GlobalOrdinal, Node > &graph) const
Create a cloned CrsGraph for a different Node type.
bool isMerged() const
Whether duplicate column indices in each row have been merged.
Kokkos::StaticCrsGraph< local_ordinal_type, Kokkos::LayoutLeft, device_type, void, size_t > local_graph_device_type
The type of the part of the sparse graph on each MPI process.
virtual bool checkSizes(const SrcDistObject &source) override
Compare the source and target (this) objects for compatibility.
Forward declaration of Tpetra::BlockCrsMatrix.
Teuchos::RCP< const map_type > getDomainMap() const override
Returns the Map associated with the domain of this graph.
size_t getGlobalMaxNumRowEntries() const override
Maximum number of entries in any row of the graph, over all processes in the graph's communicator...
virtual ~CrsGraph()=default
Destructor (virtual for memory safety of derived classes).
bool noRedundancies_
Whether the graph's indices are non-redundant (merged) in each row, on this process.
global_inds_dualv_type::t_dev::const_type getGlobalIndsViewDevice(const RowInfo &rowinfo) const
Get a const, globally indexed view of the locally owned row myRow, such that rowinfo = getRowInfo(myR...
void replaceRangeMap(const Teuchos::RCP< const map_type > &newRangeMap)
Replace the current Range Map with the given objects.
row_ptrs_device_view_type getLocalRowPtrsDevice() const
Get a device view of the packed row offsets.
virtual void unpackAndCombine(const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &importLIDs, Kokkos::DualView< packet_type *, buffer_device_type > imports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, const size_t constantNumPackets, const CombineMode combineMode)
Perform any unpacking and combining after communication.
global_inds_dualv_type::t_host::const_type getGlobalIndsViewHost(const RowInfo &rowinfo) const
Get a const, globally indexed view of the locally owned row myRow, such that rowinfo = getRowInfo(myR...
const row_ptrs_host_view_type & getRowPtrsPackedHost() const
Get the packed row pointers on host. Lazily make a copy from device.
size_t getNumAllocatedEntriesInGlobalRow(global_ordinal_type globalRow) const
Current number of allocated entries in the given row on the calling (MPI) process, using a global row index.
Allocation information for a locally owned row in a CrsGraph or CrsMatrix.
local_inds_wdv_type lclIndsUnpacked_wdv
Local ordinals of column indices for all rows Valid when isLocallyIndexed is true If OptimizedStorage...
void replaceRangeMapAndExporter(const Teuchos::RCP< const map_type > &newRangeMap, const Teuchos::RCP< const export_type > &newExporter)
Replace the current Range Map and Export with the given parameters.
bool hasColMap() const override
Whether the graph has a column Map.
bool isGloballyIndexed() const override
Whether the graph's column indices are stored as global indices.
void exportAndFillComplete(Teuchos::RCP< CrsGraph< local_ordinal_type, global_ordinal_type, Node > > &destGraph, const export_type &exporter, 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) const
Export from this to the given destination graph, and make the result fill complete.
virtual void unpackAndCombine(const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &importLIDs, Kokkos::DualView< packet_type *, buffer_device_type > imports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, const size_t constantNumPackets, const CombineMode combineMode) override
bool haveGlobalConstants() const
Returns true if globalConstants have been computed; false otherwise.
bool isStorageOptimized() const
Returns true if storage has been optimized.
bool haveLocalConstants_
Whether this process has computed local constants.
size_t findGlobalIndices(const RowInfo &rowInfo, const Teuchos::ArrayView< const global_ordinal_type > &indices, std::function< void(const size_t, const size_t, const size_t)> fun) const
Finds indices in the given row.
std::string description() const override
Return a one-line human-readable description of this object.
void makeColMap(Teuchos::Array< int > &remotePIDs)
Make and set the graph's column Map.
Teuchos::RCP< const export_type > getExporter() const override
Returns the exporter associated with this graph.
std::pair< size_t, std::string > makeIndicesLocal(const bool verbose=false)
Convert column indices from global to local.
size_t global_size_t
Global size_t object.
virtual void removeEmptyProcessesInPlace(const Teuchos::RCP< const map_type > &newMap) override
Remove processes owning zero rows from the Maps and their communicator.
node_type node_type
This class' Kokkos Node type.
void reindexColumns(const Teuchos::RCP< const map_type > &newColMap, const Teuchos::RCP< const import_type > &newImport=Teuchos::null, const bool sortIndicesInEachRow=true)
Reindex the column indices in place, and replace the column Map. Optionally, replace the Import objec...
void deep_copy(MultiVector< DS, DL, DG, DN > &dst, const MultiVector< SS, SL, SG, SN > &src)
Copy the contents of the MultiVector src into dst.
Teuchos::RCP< CrsGraphType > importAndFillCompleteCrsGraph(const Teuchos::RCP< const CrsGraphType > &sourceGraph, const Import< typename CrsGraphType::local_ordinal_type, typename CrsGraphType::global_ordinal_type, typename CrsGraphType::node_type > &importer, const Teuchos::RCP< const Map< typename CrsGraphType::local_ordinal_type, typename CrsGraphType::global_ordinal_type, typename CrsGraphType::node_type > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< typename CrsGraphType::local_ordinal_type, typename CrsGraphType::global_ordinal_type, typename CrsGraphType::node_type > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Nonmember CrsGraph constructor that fuses Import and fillComplete().
void makeImportExport(Teuchos::Array< int > &remotePIDs, const bool useRemotePIDs)
Make the Import and Export objects, if needed.
size_t sortAndMergeRowIndices(const RowInfo &rowInfo, const bool sorted, const bool merged)
Sort and merge duplicate column indices in the given row.
void insertLocalIndices(const local_ordinal_type localRow, const Teuchos::ArrayView< const local_ordinal_type > &indices)
Insert local indices into the graph.
bool isSorted() const
Whether graph indices in all rows are known to be sorted.
void getLocalRowCopy(local_ordinal_type gblRow, nonconst_local_inds_host_view_type &gblColInds, size_t &numColInds) const override
Get a copy of the given row, using local indices.
Teuchos::RCP< const map_type > rowMap_
The Map describing the distribution of rows of the graph.
Teuchos::RCP< const import_type > importer_
The Import from the domain Map to the column Map.
num_row_entries_type k_numRowEntries_
The number of local entries in each locally owned row.
local_inds_device_view_type getLocalIndicesDevice() const
Get a device view of the packed column indicies.
Teuchos::RCP< const map_type > domainMap_
The Map describing the domain of the (matrix corresponding to the) graph.
global_size_t getGlobalNumRows() const override
Returns the number of global rows in the graph.
Kokkos::View< size_t *, Kokkos::LayoutLeft, device_type >::HostMirror num_row_entries_type
Row offsets for "1-D" storage.
void setLocallyModified()
Report that we made a local modification to its structure.
Communication plan for data redistribution from a (possibly) multiply-owned to a uniquely-owned distr...
virtual void packAndPrepare(const SrcDistObject &source, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &exportLIDs, Kokkos::DualView< packet_type *, buffer_device_type > &exports, Kokkos::DualView< size_t *, buffer_device_type > numPacketsPerLID, size_t &constantNumPackets)
Pack data and metadata for communication (sends).
void checkInternalState() const
Throw an exception if the internal state is not consistent.
Keep track of how much more space a CrsGraph or CrsMatrix needs, when the graph or matrix is the targ...
CombineMode
Rule for combining data in an Import or Export.
Teuchos::RCP< const export_type > exporter_
The Export from the row Map to the range Map.
void insertGlobalIndicesIntoNonownedRows(const global_ordinal_type gblRow, const global_ordinal_type gblColInds[], const local_ordinal_type numGblColInds)
Implementation of insertGlobalIndices for nonowned rows.
bool isFillComplete() const override
Whether fillComplete() has been called and the graph is in compute mode.
size_t getNumAllocatedEntriesInLocalRow(local_ordinal_type localRow) const
Current number of allocated entries in the given row on the calling (MPI) process, using a local row index.
void swap(CrsGraph< local_ordinal_type, global_ordinal_type, Node > &graph)
Swaps the data from *this with the data and maps from graph.
void globalAssemble()
Communicate nonlocal contributions to other processes.
typename device_type::execution_space execution_space
This class' Kokkos execution space.
RowInfo getRowInfoFromGlobalRowIndex(const global_ordinal_type gblRow) const
Get information about the locally owned row with global index gblRow.
Forward declaration of Tpetra::CrsMatrix.
size_t getLocalNumCols() const override
Returns the number of columns connected to the locally owned rows of this graph.
size_t getLocalNumEntries() const override
The local number of entries in the graph.
Abstract base class for objects that can be the source of an Import or Export operation.
void removeLocalIndices(local_ordinal_type localRow)
Remove all graph indices from the specified local row.
LO local_ordinal_type
The type of the graph's local indices.
global_size_t globalNumEntries_
Global number of entries in the graph.
global_inds_wdv_type gblInds_wdv
Global ordinals of column indices for all rows.
local_inds_dualv_type::t_dev::const_type getLocalIndsViewDevice(const RowInfo &rowinfo) const
Get a const, locally indexed view of the locally owned row myRow, such that rowinfo = getRowInfo(myRo...
Teuchos::RCP< const map_type > getRangeMap() const override
Returns the Map associated with the domain of this graph.
virtual void pack(const Teuchos::ArrayView< const local_ordinal_type > &exportLIDs, Teuchos::Array< global_ordinal_type > &exports, const Teuchos::ArrayView< size_t > &numPacketsPerLID, size_t &constantNumPackets) const override
row_ptrs_host_view_type getLocalRowPtrsHost() const
Get a host view of the packed row offsets.
const row_ptrs_host_view_type & getRowPtrsUnpackedHost() const
Get the unpacked row pointers on host. Lazily make a copy from device.
void replaceColMap(const Teuchos::RCP< const map_type > &newColMap)
Replace the graph's current column Map with the given Map.
global_size_t getGlobalNumCols() const override
Returns the number of global columns in the graph.
size_t getLocalMaxNumRowEntries() const override
Maximum number of entries in any row of the graph, on this process.
RowInfo getRowInfo(const local_ordinal_type myRow) const
Get information about the locally owned row with local index myRow.
void replaceDomainMapAndImporter(const Teuchos::RCP< const map_type > &newDomainMap, const Teuchos::RCP< const import_type > &newImporter)
Replace the current domain Map and Import with the given parameters.
typename row_graph_type::global_inds_device_view_type global_inds_device_view_type
The Kokkos::View type for views of global ordinals on device and host.
bool supportsRowViews() const override
Whether this class implements getLocalRowView() and getGlobalRowView() (it does). ...
typename dist_object_type::buffer_device_type buffer_device_type
Teuchos::RCP< CrsGraph< LocalOrdinal, GlobalOrdinal, Node > > createCrsGraph(const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node >> &map, size_t maxNumEntriesPerRow=0, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Nonmember function to create an empty CrsGraph given a row Map and the max number of entries allowed ...
local_inds_wdv_type lclIndsPacked_wdv
Local ordinals of column indices for all rows Valid when isLocallyIndexed is true Built during fillCo...
A distributed graph accessed by rows (adjacency lists) and stored sparsely.
Details::EStorageStatus storageStatus_
Status of the graph's storage, when not in a fill-complete state.
const row_ptrs_device_view_type & getRowPtrsPackedDevice() const
Get the packed row pointers on device.
const row_ptrs_device_view_type & getRowPtrsUnpackedDevice() const
Get the unpacked row pointers on device.
CrsGraph & operator=(const CrsGraph< local_ordinal_type, global_ordinal_type, node_type > &)=default
Assignment operator (default).
void setParameterList(const Teuchos::RCP< Teuchos::ParameterList > ¶ms) override
Set the given list of parameters (must be nonnull).
size_t getNumEntriesInGlobalRow(global_ordinal_type globalRow) const override
Returns the current number of entries on this node in the specified global row.
void fillComplete(const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Tell the graph that you are done changing its structure.
void getLocalRowView(const LocalOrdinal lclRow, local_inds_host_view_type &lclColInds) const override
Get a const view of the given local row's local column indices.
typename node_type::device_type device_type
This class' Kokkos device type.
bool isLocallyIndexed() const override
Whether the graph's column indices are stored as local indices.
::Tpetra::Import< LocalOrdinal, GlobalOrdinal, Node > import_type
The Import specialization used by this class.
Stand-alone utility functions and macros.
bool isFillActive() const
Whether resumeFill() has been called and the graph is in edit mode.
virtual void copyAndPermute(const SrcDistObject &source, const size_t numSameIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteToLIDs, const Kokkos::DualView< const local_ordinal_type *, buffer_device_type > &permuteFromLIDs, const CombineMode CM) override
Teuchos::RCP< const Teuchos::Comm< int > > getComm() const override
Returns the communicator.
void importAndFillComplete(Teuchos::RCP< CrsGraph< local_ordinal_type, global_ordinal_type, Node > > &destGraph, const import_type &importer, const Teuchos::RCP< const map_type > &domainMap, const Teuchos::RCP< const map_type > &rangeMap, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null) const
Import from this to the given destination graph, and make the result fill complete.
global_size_t globalMaxNumRowEntries_
Global maximum of the number of entries in each row.
static const bool useAtomicUpdatesByDefault
Whether transformLocalValues should use atomic updates by default.
size_t insertIndices(RowInfo &rowInfo, const SLocalGlobalViews &newInds, const ELocalGlobal lg, const ELocalGlobal I)
Insert indices into the given row.
global_size_t getGlobalNumEntries() const override
Returns the global number of entries in the graph.
Kokkos::Device< typename device_type::execution_space, buffer_memory_space > buffer_device_type
size_t numAllocForAllRows_
The maximum number of entries to allow in each locally owned row.
local_graph_device_type getLocalGraphDevice() const
Get the local graph.
Base class for distributed Tpetra objects that support data redistribution.
void getGlobalRowView(const global_ordinal_type gblRow, global_inds_host_view_type &gblColInds) const override
Get a const view of the given global row's global column indices.
global_ordinal_type packet_type
Type of each entry of the DistObject communication buffer.
Teuchos::RCP< const map_type > colMap_
The Map describing the distribution of columns of the graph.
global_ordinal_type getIndexBase() const override
Returns the index base for global indices for this graph.
typename local_graph_device_type::HostMirror local_graph_host_type
The type of the part of the sparse graph on each MPI process.
void replaceDomainMap(const Teuchos::RCP< const map_type > &newDomainMap)
Replace the current domain Map with the given objects.
EStorageStatus
Status of the graph's or matrix's storage, when not in a fill-complete state.
Forward declaration of Tpetra::CrsGraph.
Teuchos::RCP< CrsGraphType > exportAndFillCompleteCrsGraph(const Teuchos::RCP< const CrsGraphType > &sourceGraph, const Export< typename CrsGraphType::local_ordinal_type, typename CrsGraphType::global_ordinal_type, typename CrsGraphType::node_type > &exporter, const Teuchos::RCP< const Map< typename CrsGraphType::local_ordinal_type, typename CrsGraphType::global_ordinal_type, typename CrsGraphType::node_type > > &domainMap=Teuchos::null, const Teuchos::RCP< const Map< typename CrsGraphType::local_ordinal_type, typename CrsGraphType::global_ordinal_type, typename CrsGraphType::node_type > > &rangeMap=Teuchos::null, const Teuchos::RCP< Teuchos::ParameterList > ¶ms=Teuchos::null)
Nonmember CrsGraph constructor that fuses Export and fillComplete().
nonlocals_type nonlocals_
Nonlocal data given to insertGlobalIndices.
void describe(Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const override
Print this object to the given output stream with the given verbosity level.
void computeGlobalConstants()
Compute global constants, if they have not yet been computed.
void getGlobalRowCopy(global_ordinal_type gblRow, nonconst_global_inds_host_view_type &gblColInds, size_t &numColInds) const override
Get a copy of the given row, using global indices.