Ifpack2 Templated Preconditioning Package  Version 1.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
Ifpack2_Zoltan2Partitioner_def.hpp
1 /*@HEADER
2 // ***********************************************************************
3 //
4 // Ifpack2: Templated Object-Oriented Algebraic Preconditioner Package
5 // Copyright (2009) Sandia Corporation
6 //
7 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive
8 // license for use of this work by or on behalf of the U.S. Government.
9 //
10 // Redistribution and use in source and binary forms, with or without
11 // modification, are permitted provided that the following conditions are
12 // met:
13 //
14 // 1. Redistributions of source code must retain the above copyright
15 // notice, this list of conditions and the following disclaimer.
16 //
17 // 2. Redistributions in binary form must reproduce the above copyright
18 // notice, this list of conditions and the following disclaimer in the
19 // documentation and/or other materials provided with the distribution.
20 //
21 // 3. Neither the name of the Corporation nor the names of the
22 // contributors may be used to endorse or promote products derived from
23 // this software without specific prior written permission.
24 //
25 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
26 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
29 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
30 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
31 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
32 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
33 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
34 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
35 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 //
37 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
38 //
39 // ***********************************************************************
40 //@HEADER
41 */
42 
43 #ifndef IFPACK2_ZOLTAN2_PARTITIONER_DEF_HPP
44 #define IFPACK2_ZOLTAN2_PARTITIONER_DEF_HPP
45 
46 #if defined(HAVE_IFPACK2_ZOLTAN2)
47 #include "Ifpack2_ConfigDefs.hpp"
48 #include "Ifpack2_Zoltan2Partitioner_decl.hpp"
49 
50 namespace Ifpack2 {
51 
52 //==============================================================================
53 // Constructor
54 template<class GraphType>
55 Zoltan2Partitioner<GraphType>::
56 Zoltan2Partitioner (const Teuchos::RCP<const row_graph_type>& graph) :
57  OverlappingPartitioner<GraphType> (graph), zoltan2AlgoName_ ("phg")
58 {}
59 
60 
61 template<class GraphType>
62 Zoltan2Partitioner<GraphType>::~Zoltan2Partitioner() {}
63 
64 
65 template<class GraphType>
66 void
67 Zoltan2Partitioner<GraphType>::
68 setPartitionParameters (Teuchos::ParameterList& List) {
69  // Default is Parallel Hypergraph
70  zoltan2AlgoName_ = List.get<std::string>("zoltan2: algorithm", zoltan2AlgoName_);
71 }
72 
73 template<class GraphType>
74 void Zoltan2Partitioner<GraphType>::computePartitions()
75 {
76  // Create an input adapter for the Tpetra matrix.
77  Zoltan2GraphAdapterType zoltan2_graph(this->Graph_);
78 
79  // Specify partitioning parameters
80  Teuchos::ParameterList zoltan2_params;
81  zoltan2_params.set("partitioning_approach", "partition");
82  zoltan2_params.set("num_local_parts", this->NumLocalParts_);
83  if (zoltan2AlgoName_ == "parmetis") {
84  zoltan2_params.set("algorithm", "parmetis");
85  zoltan2_params.set("symmetrize_input", "transpose"); // not sure if this does anything, and may fail with non-symm graph
86  zoltan2_params.set("partitioning_objective", "minimize_cut_edge_weight");
87  } else {
88  zoltan2_params.set("algorithm", zoltan2AlgoName_);
89  }
90 
91  // Create and solve partitioning problem
92  Zoltan2::PartitioningProblem<Zoltan2GraphAdapterType>
93  problem(&zoltan2_graph, &zoltan2_params, this->Graph_->getComm());
94  problem.solve();
95 
96  // Save partition
97  auto parts = problem.getSolution().getPartListView();
98  for (size_t i = 0; i < this->Graph_->getLocalNumRows (); ++i) {
99  this->Partition_[i] = parts[i];
100  }
101 }
102 
103 
104 }// namespace Ifpack2
105 
106 #define IFPACK2_ZOLTAN2PARTITIONER_INSTANT(LO,GO,N) \
107  template class Ifpack2::Zoltan2Partitioner<Tpetra::CrsGraph< LO, GO, N > >; \
108  template class Ifpack2::Zoltan2Partitioner<Tpetra::RowGraph< LO, GO, N > >;
109 
110 #endif // HAVE_IFPACK2_ZOLTAN2
111 #endif // IFPACK2_ZOLTAN2PARTITIONER_DEF_HPP
T & get(const std::string &name, T def_value)
ParameterList & set(std::string const &name, T const &value, std::string const &docString="", RCP< const ParameterEntryValidator > const &validator=null)