MueLu  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
MueLu_RebalanceAcFactory_def.hpp
Go to the documentation of this file.
1 // @HEADER
2 //
3 // ***********************************************************************
4 //
5 // MueLu: A package for multigrid based preconditioning
6 // Copyright 2012 Sandia Corporation
7 //
8 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
9 // the U.S. Government retains certain rights in this software.
10 //
11 // Redistribution and use in source and binary forms, with or without
12 // modification, are permitted provided that the following conditions are
13 // met:
14 //
15 // 1. Redistributions of source code must retain the above copyright
16 // notice, this list of conditions and the following disclaimer.
17 //
18 // 2. Redistributions in binary form must reproduce the above copyright
19 // notice, this list of conditions and the following disclaimer in the
20 // documentation and/or other materials provided with the distribution.
21 //
22 // 3. Neither the name of the Corporation nor the names of the
23 // contributors may be used to endorse or promote products derived from
24 // this software without specific prior written permission.
25 //
26 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
27 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
30 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
31 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
32 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
33 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
34 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
35 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
36 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
37 //
38 // Questions? Contact
39 // Jonathan Hu (jhu@sandia.gov)
40 // Andrey Prokopenko (aprokop@sandia.gov)
41 // Ray Tuminaro (rstumin@sandia.gov)
42 //
43 // ***********************************************************************
44 //
45 // @HEADER
46 #ifndef MUELU_REBALANCEACFACTORY_DEF_HPP
47 #define MUELU_REBALANCEACFACTORY_DEF_HPP
48 
49 #include <Xpetra_Matrix.hpp>
50 #include <Xpetra_CrsMatrix.hpp>
51 #include <Xpetra_CrsMatrixWrap.hpp>
52 #include <Xpetra_MatrixFactory.hpp>
53 
55 
56 #include "MueLu_MasterList.hpp"
57 #include "MueLu_Monitor.hpp"
58 #include "MueLu_PerfUtils.hpp"
59 #include "MueLu_RAPFactory.hpp"
60 
61 namespace MueLu {
62 
63 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
65  RCP<ParameterList> validParamList = rcp(new ParameterList());
66 
67 #define SET_VALID_ENTRY(name) validParamList->setEntry(name, MasterList::getEntry(name))
68  SET_VALID_ENTRY("repartition: use subcommunicators");
69  SET_VALID_ENTRY("repartition: use subcommunicators in place");
70 #undef SET_VALID_ENTRY
71 
72  validParamList->set<RCP<const FactoryBase> >("A", Teuchos::null, "Generating factory of the matrix A for rebalancing");
73  validParamList->set<RCP<const FactoryBase> >("Importer", Teuchos::null, "Generating factory of the importer");
74  validParamList->set<RCP<const FactoryBase> >("InPlaceMap", Teuchos::null, "Generating factory of the InPlaceMap");
75 
76  return validParamList;
77 }
78 
79 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
81  Input(coarseLevel, "A");
82  const Teuchos::ParameterList &pL = GetParameterList();
83  if (pL.isParameter("repartition: use subcommunicators in place") && pL.get<bool>("repartition: use subcommunicators in place") == true) {
84  Input(coarseLevel, "InPlaceMap");
85  } else
86  Input(coarseLevel, "Importer");
87 }
88 
89 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
91  FactoryMonitor m(*this, "Computing Ac", coarseLevel);
92 
93  const Teuchos::ParameterList &pL = GetParameterList();
94  RCP<Matrix> originalAc = Get<RCP<Matrix> >(coarseLevel, "A");
95 
96  // This is a short-circuit for if we want to leave A where it is, but restrict its communicator
97  // to something corresponding to a given map. Maxwell1 is the prime customer for this.
98  bool inPlace = pL.get<bool>("repartition: use subcommunicators in place");
99  if (inPlace) {
100  SubFactoryMonitor subM(*this, "Rebalancing existing Ac in-place", coarseLevel);
101  RCP<const Map> newMap = Get<RCP<const Map> >(coarseLevel, "InPlaceMap");
102 
103  originalAc->removeEmptyProcessesInPlace(newMap);
104 
105  // The "in place" still leaves a dummy matrix here. That needs to go
106  if (newMap.is_null()) originalAc = Teuchos::null;
107 
108  Set(coarseLevel, "A", originalAc);
109  return;
110  }
111 
112  RCP<const Import> rebalanceImporter = Get<RCP<const Import> >(coarseLevel, "Importer");
113 
114  if (rebalanceImporter != Teuchos::null) {
115  RCP<Matrix> rebalancedAc;
116  {
117  SubFactoryMonitor subM(*this, "Rebalancing existing Ac", coarseLevel);
118  RCP<const Map> targetMap = rebalanceImporter->getTargetMap();
119 
120  ParameterList XpetraList;
121  if (pL.get<bool>("repartition: use subcommunicators") == true) {
122  GetOStream(Runtime0) << "Replacing maps with a subcommunicator" << std::endl;
123  XpetraList.set("Restrict Communicator", true);
124  }
125  // NOTE: If the communicator is restricted away, Build returns Teuchos::null.
126  XpetraList.set("Timer Label", "MueLu::RebalanceAc-" + Teuchos::toString(coarseLevel.GetLevelID()));
127  {
128  SubFactoryMonitor subM2(*this, "Rebalancing existing Ac: MatrixFactory::Build", coarseLevel);
129  rebalancedAc = MatrixFactory::Build(originalAc, *rebalanceImporter, *rebalanceImporter, targetMap, targetMap, rcp(&XpetraList, false));
130  }
131 
132  if (!rebalancedAc.is_null()) {
133  rebalancedAc->SetFixedBlockSize(originalAc->GetFixedBlockSize());
134  std::ostringstream oss;
135  oss << "A_" << coarseLevel.GetLevelID();
136  rebalancedAc->setObjectLabel(oss.str());
137  }
138  Set(coarseLevel, "A", rebalancedAc);
139  }
140  if (!rebalancedAc.is_null() && IsPrint(Statistics2)) {
141  int oldRank = SetProcRankVerbose(rebalancedAc->getRowMap()->getComm()->getRank());
142 
143  RCP<ParameterList> params = rcp(new ParameterList());
144  params->set("printLoadBalancingInfo", true);
145  params->set("printCommInfo", true);
146  GetOStream(Statistics2) << PerfUtils::PrintMatrixInfo(*rebalancedAc, "Ac (rebalanced)", params);
147 
148  SetProcRankVerbose(oldRank);
149  }
150 
151  } else {
152  // Ac already built by the load balancing process and no load balancing needed
153  GetOStream(Runtime1) << "No rebalancing" << std::endl;
154  Set(coarseLevel, "A", originalAc);
155  }
156 
157  if (rebalanceFacts_.begin() != rebalanceFacts_.end()) {
158  SubFactoryMonitor m2(*this, "Rebalance additional data", coarseLevel);
159 
160  // call Build of all user-given transfer factories
161  for (std::vector<RCP<const FactoryBase> >::const_iterator it = rebalanceFacts_.begin(); it != rebalanceFacts_.end(); ++it) {
162  GetOStream(Runtime0) << "RebalanceAc: call rebalance factory " << (*it).get() << ": " << (*it)->description() << std::endl;
163  (*it)->CallBuild(coarseLevel);
164  }
165  }
166 } // Build()
167 
168 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
170  /*TEUCHOS_TEST_FOR_EXCEPTION(Teuchos::rcp_dynamic_cast<const TwoLevelFactoryBase>(factory) == Teuchos::null, Exceptions::BadCast,
171  "MueLu::RAPFactory::AddTransferFactory: Transfer factory is not derived from TwoLevelFactoryBase. "
172  "This is very strange. (Note: you can remove this exception if there's a good reason for)");
173  TEUCHOS_TEST_FOR_EXCEPTION(hasDeclaredInput_, Exceptions::RuntimeError, "MueLu::RAPFactory::AddTransferFactory: Factory is being added after we have already declared input");*/
174  rebalanceFacts_.push_back(factory);
175 } // AddRebalanceFactory()
176 
177 } // namespace MueLu
178 
179 #endif // MUELU_REBALANCEACFACTORY_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)
Timer to be used in factories. Similar to Monitor but with additional timers.
One-liner description of what is happening.
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
Print even more statistics.
bool isParameter(const std::string &name) const
void AddRebalanceFactory(const RCP< const FactoryBase > &factory)
Add rebalancing factory in the end of list of rebalancing factories in RebalanceAcFactory.
TEUCHOS_DEPRECATED RCP< T > rcp(T *p, Dealloc_T dealloc, bool owns_mem)
Class that holds all level-specific information.
Definition: MueLu_Level.hpp:99
#define SET_VALID_ENTRY(name)
Timer to be used in factories. Similar to SubMonitor but adds a timer level by level.
static std::string PrintMatrixInfo(const Matrix &A, const std::string &msgTag, RCP< const Teuchos::ParameterList > params=Teuchos::null)
void Build(Level &fineLevel, Level &coarseLevel) const
Build an object with this factory.
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
Description of what is happening (more verbose)
std::string toString(const T &t)
bool is_null() const