10 #ifndef IFPACK2_LINEAR_PARTITIONER_DEF_HPP
11 #define IFPACK2_LINEAR_PARTITIONER_DEF_HPP
12 #include "Ifpack2_ConfigDefs.hpp"
13 #include "Ifpack2_LinearPartitioner_decl.hpp"
19 template<
class GraphType>
26 template<
class GraphType>
30 template<
class GraphType>
36 template<
class GraphType>
47 const int mod = as<int> (this->Graph_->getLocalNumRows () /
48 this->NumLocalParts_);
49 for (
size_t i = 0; i < this->Graph_->getLocalNumRows (); ++i) {
50 this->Partition_[i] = as<local_ordinal_type> (i / mod);
51 if (this->Partition_[i] >= as<local_ordinal_type> (this->NumLocalParts_)) {
52 this->Partition_[i] = this->NumLocalParts_ - 1;
60 #define IFPACK2_LINEARPARTITIONER_INSTANT(LO,GO,N) \
61 template class Ifpack2::LinearPartitioner<Tpetra::CrsGraph< LO, GO, N > >; \
62 template class Ifpack2::LinearPartitioner<Tpetra::RowGraph< LO, GO, N > >;
64 #endif // IFPACK2_LINEARPARTITIONER_DEF_HPP
void computePartitions()
Compute the partitions.
Definition: Ifpack2_LinearPartitioner_def.hpp:37
virtual ~LinearPartitioner()
Destructor.
Definition: Ifpack2_LinearPartitioner_def.hpp:27
LinearPartitioner(const Teuchos::RCP< const row_graph_type > &graph)
Constructor.
Definition: Ifpack2_LinearPartitioner_def.hpp:21
void setPartitionParameters(Teuchos::ParameterList &List)
Set the partitioner's parameters (none for linear partitioning).
Definition: Ifpack2_LinearPartitioner_def.hpp:33
TypeTo as(const TypeFrom &t)
Create overlapping partitions of a local graph.
Definition: Ifpack2_OverlappingPartitioner_decl.hpp:45