10#ifndef IFPACK2_USER_PARTITIONER_DEF_HPP
11#define IFPACK2_USER_PARTITIONER_DEF_HPP
13#include <Ifpack2_ConfigDefs.hpp>
15#include <Ifpack2_OverlappingPartitioner.hpp>
20template <
class GraphType>
24 , userProvidedParts_(
false)
25 , userProvidedMap_(
false) {}
27template <
class GraphType>
30template <
class GraphType>
35 userProvidedParts_ =
List.isParameter(
"partitioner: parts");
40 userProvidedParts_ =
true;
43 userProvidedMap_ =
List.isParameter(
"partitioner: map");
47 "Ifpack2::UserPartitioner::setPartitionParameters: "
48 "you may specify only one of \"partitioner: parts\", \"partitioner: global ID parts\" and \"partitioner: map\","
51 if (userProvidedMap_) {
52 map_ =
List.get(
"partitioner: map", map_);
54 map_.is_null(), std::runtime_error,
55 "Ifpack2::UserPartitioner::"
56 "setPartitionParameters: map_ is null.");
58 if (userProvidedParts_) {
59 typedef Teuchos::Array<typename Teuchos::ArrayRCP<typename GraphType::local_ordinal_type>>
parts_type;
60 typedef Teuchos::Array<typename Teuchos::ArrayRCP<typename GraphType::global_ordinal_type>>
gparts_type;
67 typedef Teuchos::RCP<Tpetra::Map<typename GraphType::local_ordinal_type, typename GraphType::global_ordinal_type, typename GraphType::node_type>
const> map_type;
69 this->Parts_.resize(
gparts.size());
74 if (
itmp == Teuchos::OrdinalTraits<local_ordinal_type>::invalid())
printf(
"global id %d (%d,%d) not found\n", (
int)
gparts[
ii][
jj], (
int)
ii, (
int)
jj);
75 TEUCHOS_TEST_FOR_EXCEPTION(
itmp == Teuchos::OrdinalTraits<local_ordinal_type>::invalid(), std::runtime_error,
" \"partitioner: global ID parts\" requires that all global IDs within a block reside on the MPI rank owning the block. This can be done using overlapping Schwarz with a BLOCK_RELAXATION subdomain solver making sure that \"schwarz: overlap level\" is sufficient. Note: zeroed out Dirichlet columns will never be included in overlap parts of domains.");
79 List.remove(
"partitioner: global ID parts");
84 List.remove(
"partitioner: parts");
91template <
class GraphType>
93 if (userProvidedParts_) {
94 this->NumLocalParts_ = this->Parts_.size();
96 this->Partition_.resize(0);
99 map_.is_null(), std::logic_error,
100 "Ifpack2::UserPartitioner::"
101 "computePartitions: map_ is null.");
102 const size_t localNumRows = this->Graph_->getLocalNumRows();
104 this->Partition_[
ii] = map_[
ii];
Declaration of a user-defined partitioner in which the user can define a partition of the graph....
Ifpack2's implementation of Trilinos::Details::LinearSolver interface.
Definition Ifpack2_Details_LinearSolver_decl.hpp:75
virtual ~UserPartitioner()
Destructor.
Definition Ifpack2_Details_UserPartitioner_def.hpp:28
void computePartitions()
Compute the partitions.
Definition Ifpack2_Details_UserPartitioner_def.hpp:92
void setPartitionParameters(Teuchos::ParameterList &List)
Sets all the parameters for the partitioner. The only valid parameters are:
Definition Ifpack2_Details_UserPartitioner_def.hpp:32
UserPartitioner(const Teuchos::RCP< const row_graph_type > &graph)
Constructor.
Definition Ifpack2_Details_UserPartitioner_def.hpp:22
Create overlapping partitions of a local graph.
Definition Ifpack2_OverlappingPartitioner_decl.hpp:45
Ifpack2 implementation details.
Preconditioners and smoothers for Tpetra sparse matrices.
Definition Ifpack2_AdditiveSchwarz_decl.hpp:40