/usr/include/trilinos/Ifpack2_Partitioner.hpp is in libtrilinos-ifpack2-dev 12.10.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | /*@HEADER
// ***********************************************************************
//
// Ifpack2: Tempated Object-Oriented Algebraic Preconditioner Package
// Copyright (2009) Sandia Corporation
//
// Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
// license for use of this work by or on behalf of the U.S. Government.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// 3. Neither the name of the Corporation nor the names of the
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// Questions? Contact Michael A. Heroux (maherou@sandia.gov)
//
// ***********************************************************************
//@HEADER
*/
#ifndef IFPACK2_PARTITIONER_HPP
#define IFPACK2_PARTITIONER_HPP
#include "Ifpack2_ConfigDefs.hpp"
#include "Teuchos_ParameterList.hpp"
#include "Teuchos_ArrayRCP.hpp"
#include <iostream>
namespace Ifpack2 {
//! Ifpack2::Partitioner:
/** \class Partitioner
\brief A class to decompose local graphs.
\section Ifpack2_Partitioner_Summary Summary
Most Ifpack2 users will not need to create or use a Partitioner
instance, or write a Partitioner subclass. However, those
implementing their own block relaxation algorithms may need to
interact with Partitioner or write their own subclass thereof.
Ifpack2's main application of this class is in BlockRelaxation.
Partitioner defines the diagonal blocks of the matrix that
BlockRelaxation uses. BlockRelaxation creates a Partitioner
subclass instance internally.
\section Ifpack2_Partitioner_Partitions Partitions
A Partitioner instance can partition a local graph by rows. A
<i>local</i> graph is one for which, on every process, the column
Map contains no entries not in the domain Map on that process. You
may use LocalFilter on the graph of a matrix to make a local graph;
it excludes entries in the column Map not in the domain Map. This
class assumes that the graph is local.
The partitions created by Partitioner implementations are
<i>nonoverlapping</i> in the graph sense. This means that each row
(or, more appropriately, vertex) of the graph belongs to at most one
partition. Furthermore, these nonoverlapping partitions are
<i>local</i>: partitions do not cross process boundaries.
<tt>operator () (LocalOrdinal i)</tt> returns the local partition
index corresponding to local row i of the graph. The above implies
that the local partition index is unique.
\section Ifpack2_Partitioner_OverlappingPartitions Overlapping decomposition
The OverlappingPartitioner subclass extends the nonoverlapping
partitions by the required amount of overlap, considering local
vertices only. That is, this overlap does <i>not</i> modify the
overlap among the processes. (The mathematical definition of
"partition" does not allow overlap, but we accept this as a useful
extension.)
\section Ifpack2_Partitioner_Subclasses Subclasses of Partitioner
Partitioner is just an interface; it does not implement any
fucntionality. You cannot create an instance of Partitioner; you
must instantiate a concrete implementation thereof. Concrete
implementations include:
- LinearPartitioner, which partitions the graph into contiguous
row blocks
- Zoltan2Partitioner, which calls Zoltan2 to partition the graph
The constructor takes a Tpetra::RowGraph instance, which is the
graph to partition.
\section Ifpack2_Partitioner_Example Example code
The following example code shows how to use LinearPartitioner, a
subclass of Partitioner. Note that most Ifpack2 users will
<i>not</i> need to create or interact with Partitioner instances.
We only show this example for the sake of developers who might need
to implement or use Preconditioner subclasses, and want an example
of a Partitioner "in action."
\code
#include "Ifpack2_LinearPartitioner.hpp"
#include "Tpetra_CrsMatrix.hpp"
// ...
// The matrix A must be fill complete.
void example (Tpetra::CrsMatrix<double, int>& A) {
using std::cout;
using std::endl;
typedef Tpetra::CrsGraph<int> graph_type;
typedef Ifpack2::LinearPartitioner<graph_type> partitioner_type;
// Create the partitioner.
partitioner_type partitioner (A.getGraph ());
// Set up the partitioner's parameters.
// We want 16 local partitions,
// and an overlap of 0 among the local partitions.
Teuchos::ParameterList params;
params.set ("partitioner: local parts", 16);
params.set ("partitioner: overlap", 0);
partitioner.setParameters (params);
// Partition the graph. If the structure of the
// graph changes, you must call compute() again,
// but you need not call setParameters() again.
partitioner.compute ();
// Get the number of partitions created on the calling process.
const int numParts = partitioner.numLocalParts ();
// Get the number of rows in each partition.
for (int i = 0; i < numParts; ++i) {
cout << "Number of rows in partition " << i << ": "
<< partitioner.numRowsInPart (i) << endl;
}
// For nonoverlapping partitions only, operator()(i)
// returns the partition index for each local row.
const size_t numLocalRows = A.getNodeNumRows ();
for (size_t i = 0; i < numLocalRows; ++i) {
cout << "Partition[" << i <<"] = " << partitioner(i) << endl;
}
}
\endcode
When overlapping partitions are created, users can get the local
indices of the rows in each partition:
\code
const int numLocalParts = partitioner.numLocalParts ();
for (int i = 0; i < numLocalParts; ++i) {
cout << "Local rows of Partition " << i << ": [";
for (size_t j = 0; j < partitioner.numRowsInPart (i); ++j) {
cout << partitioner(i,j) << " ";
}
cout << "]";
}
\endcode
*/
template <class GraphType>
class Partitioner : public Teuchos::Describable {
public:
typedef typename GraphType::local_ordinal_type LocalOrdinal;
typedef typename GraphType::global_ordinal_type GlobalOrdinal;
typedef typename GraphType::node_type Node;
//! Destructor.
virtual ~Partitioner() {};
/// \brief Number of computed local partitions.
///
/// See Ifpack2_OverlappingPartitioner_decl.hpp for explanation
/// of why this is an \c int instead of \c LocalOrdinal.
virtual int numLocalParts () const = 0;
//! The level of overlap.
virtual int overlappingLevel() const = 0;
/// \brief The local (nonoverlapping) partition index of the
/// specified local row.
///
/// \param MyRow [in] Local index of the row.
virtual LocalOrdinal operator() (LocalOrdinal MyRow) const = 0;
//! The local overlapping partition index of the j-th node in partition i.
virtual LocalOrdinal operator() (LocalOrdinal i, LocalOrdinal j) const = 0;
//! The number of rows contained in the specified partition.
virtual size_t numRowsInPart (const LocalOrdinal Part) const = 0;
//! Copy into List the rows in the (overlapping) partition Part.
virtual void
rowsInPart (const LocalOrdinal Part,
Teuchos::ArrayRCP<LocalOrdinal>& List) const = 0;
//! The nonoverlapping partition indices of each local row.
virtual Teuchos::ArrayView<const LocalOrdinal>
nonOverlappingPartition () const = 0;
//! Set all the parameters for the partitioner.
virtual void setParameters (Teuchos::ParameterList& List) = 0;
//! Compute the partitions.
virtual void compute () = 0;
//! Return true if partitions have been computed successfully.
virtual bool isComputed () const = 0;
//! Print basic information about the partitioning object.
virtual std::ostream& print (std::ostream& os) const = 0;
};
// Overloaded output stream operator for Partitioner
template <class GraphType>
inline std::ostream&
operator<< (std::ostream& os,
const Ifpack2::Partitioner<GraphType>& obj)
{
return obj.print (os);
}
} // namespace Ifpack2
#endif // IFPACK2_PARTITIONER_HPP
|