MueLu Version of the Day
Loading...
Searching...
No Matches
MueLu_TogglePFactory_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_TOGGLEPFACTORY_DEF_HPP
47#define MUELU_TOGGLEPFACTORY_DEF_HPP
48
49#include <Xpetra_Matrix.hpp>
50
52
53#include "MueLu_Level.hpp"
54#include "MueLu_MasterList.hpp"
55#include "MueLu_Monitor.hpp"
56
57namespace MueLu {
58
59 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
61 RCP<ParameterList> validParamList = rcp(new ParameterList());
62
63#define SET_VALID_ENTRY(name) validParamList->setEntry(name, MasterList::getEntry(name))
64 SET_VALID_ENTRY("toggle: mode");
65 SET_VALID_ENTRY("semicoarsen: number of levels");
66#undef SET_VALID_ENTRY
67
68 return validParamList;
69 }
70
71 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
73 // request/release "P" and coarse level "Nullspace"
74 for (std::vector<RCP<const FactoryBase> >::const_iterator it = prolongatorFacts_.begin(); it != prolongatorFacts_.end(); ++it) {
75 coarseLevel.DeclareInput("P", (*it).get(), this); // request/release "P" (dependencies are not affected)
76 coarseLevel.DeclareInput("RfromPfactory", (*it).get(), this);
77 (*it)->CallDeclareInput(coarseLevel); // request dependencies
78 }
79 for (std::vector<RCP<const FactoryBase> >::const_iterator it = ptentFacts_.begin(); it != ptentFacts_.end(); ++it) {
80 coarseLevel.DeclareInput("P", (*it).get(), this); // request/release "Ptent" (dependencies are not affected)
81 (*it)->CallDeclareInput(coarseLevel); // request dependencies
82 }
83 for (std::vector<RCP<const FactoryBase> >::const_iterator it = nspFacts_.begin(); it != nspFacts_.end(); ++it) {
84 coarseLevel.DeclareInput("Nullspace", (*it).get(), this); // request/release coarse "Nullspace" (dependencies are not affected)
85 (*it)->CallDeclareInput(coarseLevel); // request dependencies
86 }
87
88 // The factory needs the information about the number of z-layers. While this information is
89 // provided by the user for the finest level, the factory itself is responsible to provide the
90 // corresponding information on the coarser levels. Since a factory cannot be dependent on itself
91 // we use the NoFactory class as generator class, but remove the UserData keep flag, such that
92 // "NumZLayers" is part of the request/release mechanism.
93 // Please note, that this prevents us from having several (independent) CoarsePFactory instances!
94 // TODO: allow factory to dependent on self-generated data for TwoLevelFactories -> introduce ExpertRequest/Release in Level
95 fineLevel.DeclareInput("NumZLayers", NoFactory::get(), this);
96 fineLevel.RemoveKeepFlag("NumZLayers", NoFactory::get(), MueLu::UserData);
97
98 hasDeclaredInput_ = true;
99 }
100
101 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
103 FactoryMonitor m(*this, "Prolongator toggle", coarseLevel);
104 std::ostringstream levelstr;
105 levelstr << coarseLevel.GetLevelID();
106
107 TEUCHOS_TEST_FOR_EXCEPTION(nspFacts_.size() != prolongatorFacts_.size(), Exceptions::RuntimeError, "MueLu::TogglePFactory::Build: The number of provided prolongator factories and coarse nullspace factories must be identical.");
108 TEUCHOS_TEST_FOR_EXCEPTION(nspFacts_.size() != 2, Exceptions::RuntimeError, "MueLu::TogglePFactory::Build: TogglePFactory needs two different transfer operator strategies for toggling."); // TODO adapt this/weaken this as soon as other toggling strategies are introduced.
109
110 // decision routine which prolongator factory to be used
111 int nProlongatorFactory = 0; // default behavior: use first prolongator in list
112
113 // extract user parameters
114 const Teuchos::ParameterList & pL = GetParameterList();
115 std::string mode = Teuchos::as<std::string>(pL.get<std::string>("toggle: mode"));
116 int semicoarsen_levels = Teuchos::as<int>(pL.get<int>("semicoarsen: number of levels"));
117
118 TEUCHOS_TEST_FOR_EXCEPTION(mode!="semicoarsen", Exceptions::RuntimeError, "MueLu::TogglePFactory::Build: The 'toggle: mode' parameter must be set to 'semicoarsen'. No other mode supported, yet.");
119
120 LO NumZDir = -1;
121 if(fineLevel.IsAvailable("NumZLayers", NoFactory::get())) {
122 NumZDir = fineLevel.Get<LO>("NumZLayers", NoFactory::get()); //obtain info
123 GetOStream(Runtime1) << "Number of layers for semicoarsening: " << NumZDir << std::endl;
124 }
125
126 // Make a decision which prolongator to be used.
127 if(fineLevel.GetLevelID() >= semicoarsen_levels || NumZDir == 1) {
128 nProlongatorFactory = 1;
129 } else {
130 nProlongatorFactory = 0;
131 }
132
133 RCP<Matrix> P = Teuchos::null;
134 RCP<Matrix> Ptent = Teuchos::null;
135 RCP<MultiVector> coarseNullspace = Teuchos::null;
136
137 // call Build for selected transfer operator
138 GetOStream(Runtime0) << "TogglePFactory: call transfer factory: " << (prolongatorFacts_[nProlongatorFactory])->description() << std::endl;
139 prolongatorFacts_[nProlongatorFactory]->CallBuild(coarseLevel);
140 P = coarseLevel.Get< RCP<Matrix> >("P", (prolongatorFacts_[nProlongatorFactory]).get());
141 RCP<Matrix> R = Teuchos::null;
142 int Rplaceholder = -1; // Used to indicate that an R matrix has not been produced by a prolongator factory, but
143 // that it is capable of producing one and should be invoked a 2nd time in restrictor mode
144 // (e.g. with PgPFactory). prolongatorFacts_[Rplaceholder] is factory that can produce R
145 // matrix, which might be later invoked by MueLu_RfromP_Or_TransP
146 if (coarseLevel.IsAvailable("RfromPfactory",(prolongatorFacts_[nProlongatorFactory]).get())) {
147 std::string strType = coarseLevel.GetTypeName("RfromPfactory", (prolongatorFacts_[nProlongatorFactory]).get());
148 if (strType == "int") Rplaceholder = nProlongatorFactory;
149 else R = coarseLevel.Get< RCP<Matrix> >("RfromPfactory", (prolongatorFacts_[nProlongatorFactory]).get());
150 // Need to get R (and set it below) so that TogglePFactory is given credit for creating R
151 }
152 // do not call "Build" for "Ptent" factory since it should automatically be called recursively
153 // through the "Build" call for "P"
154 Ptent = coarseLevel.Get< RCP<Matrix> >("P", (ptentFacts_[nProlongatorFactory]).get());
155 coarseNullspace = coarseLevel.Get< RCP<MultiVector> >("Nullspace", (nspFacts_[nProlongatorFactory]).get());
156
157 // Release dependencies of all prolongator and coarse level null spaces
158 for(size_t t=0; t<nspFacts_.size(); ++t) {
159 coarseLevel.Release(*(prolongatorFacts_[t]));
160 coarseLevel.Release(*(ptentFacts_[t]));
161 coarseLevel.Release(*(nspFacts_[t]));
162 }
163
164 // store prolongator with this factory identification.
165 Set(coarseLevel, "P", P);
166 // Three cases:
167 // 1) R already computed and TogglePFactory takes credit for constructing it
168 // 2) R not computed but prolongatorFacts_[Rplaceholder] can produce it
169 // 3) R not computed and prolongator can not produce it
170 if (R != Teuchos::null) Set(coarseLevel, "RfromPfactory", R);
171 else if (Rplaceholder != -1) Set(coarseLevel, "RfromPfactory", Teuchos::as<int>(Rplaceholder));
172 Set(coarseLevel, "Nullspace", coarseNullspace);
173 Set(coarseLevel, "Ptent", Ptent);
174 Set(coarseLevel, "Chosen P", nProlongatorFactory);
175 } //Build()
176
177 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
179 // check if it's a TwoLevelFactoryBase based transfer factory
180 TEUCHOS_TEST_FOR_EXCEPTION(Teuchos::rcp_dynamic_cast<const TwoLevelFactoryBase>(factory) == Teuchos::null, Exceptions::BadCast,
181 "MueLu::TogglePFactory::AddProlongatorFactory: Transfer factory is not derived from TwoLevelFactoryBase. "
182 "This is very strange. (Note: you can remove this exception if there's a good reason for)");
183 TEUCHOS_TEST_FOR_EXCEPTION(hasDeclaredInput_, Exceptions::RuntimeError, "MueLu::TogglePFactory::AddProlongatorFactory: Factory is being added after we have already declared input");
184 prolongatorFacts_.push_back(factory);
185 }
186
187 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
189 // check if it's a TwoLevelFactoryBase based transfer factory
190 TEUCHOS_TEST_FOR_EXCEPTION(Teuchos::rcp_dynamic_cast<const TwoLevelFactoryBase>(factory) == Teuchos::null, Exceptions::BadCast,
191 "MueLu::TogglePFactory::AddPtentFactory: Transfer factory is not derived from TwoLevelFactoryBase. "
192 "This is very strange. (Note: you can remove this exception if there's a good reason for)");
193 TEUCHOS_TEST_FOR_EXCEPTION(hasDeclaredInput_, Exceptions::RuntimeError, "MueLu::TogglePFactory::AddPtentFactory: Factory is being added after we have already declared input");
194 ptentFacts_.push_back(factory);
195 }
196
197 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node>
199 // check if it's a TwoLevelFactoryBase based transfer factory
200 TEUCHOS_TEST_FOR_EXCEPTION(Teuchos::rcp_dynamic_cast<const TwoLevelFactoryBase>(factory) == Teuchos::null, Exceptions::BadCast,
201 "MueLu::TogglePFactory::AddCoarseNullspaceFactory: Transfer factory is not derived from TwoLevelFactoryBase. Make sure you provide the factory which generates the coarse level nullspace information. Usually this is a prolongator factory."
202 "This is very strange. (Note: you can remove this exception if there's a good reason for)");
203 TEUCHOS_TEST_FOR_EXCEPTION(hasDeclaredInput_, Exceptions::RuntimeError, "MueLu::TogglePFactory::AddCoarseNullspaceFactory: Factory is being added after we have already declared input");
204 nspFacts_.push_back(factory);
205 }
206
207
208} //namespace MueLu
209
210#endif // MUELU_TOGGLEPFACTORY_DEF_HPP
#define SET_VALID_ENTRY(name)
virtual std::string description() const
Return a simple one-line description of this object.
Exception indicating invalid cast attempted.
Exception throws to report errors in the internal logical of the program.
Timer to be used in factories. Similar to Monitor but with additional timers.
void Set(Level &level, const std::string &varName, const T &data) const
Class that holds all level-specific information.
bool IsAvailable(const std::string &ename, const FactoryBase *factory=NoFactory::get()) const
Test whether a need's value has been saved.
void DeclareInput(const std::string &ename, const FactoryBase *factory, const FactoryBase *requestedBy=NoFactory::get())
Callback from FactoryBase::CallDeclareInput() and FactoryBase::DeclareInput().
void Release(const FactoryBase &factory)
Decrement the storage counter for all the inputs of a factory.
void RemoveKeepFlag(const std::string &ename, const FactoryBase *factory, KeepType keep=MueLu::All)
int GetLevelID() const
Return level number.
std::string GetTypeName(const std::string &ename, const FactoryBase *factory=NoFactory::get())
GetTypeName returns type string of variable stored using ename and factory.
T & Get(const std::string &ename, const FactoryBase *factory=NoFactory::get())
Get data without decrementing associated storage counter (i.e., read-only access)....
static const NoFactory * get()
virtual const Teuchos::ParameterList & GetParameterList() const
std::vector< RCP< const FactoryBase > > ptentFacts_
list of user-defined tentative prolongation operator factories
void AddCoarseNullspaceFactory(const RCP< const FactoryBase > &factory)
Add a coarse nullspace factory in the end of list of coarse nullspace factories.
void AddProlongatorFactory(const RCP< const FactoryBase > &factory)
Add a prolongator factory in the end of list of prolongator factories.
void AddPtentFactory(const RCP< const FactoryBase > &factory)
Add a tentative prolongator factory in the end of list of prolongator factories.
void DeclareInput(Level &fineLevel, Level &coarseLevel) const
Input.
std::vector< RCP< const FactoryBase > > prolongatorFacts_
list of user-defined prolongation operator factories
std::vector< RCP< const FactoryBase > > nspFacts_
list of user-defined nullspace factories (i.e. the prolongator factories which also generate the coar...
RCP< const ParameterList > GetValidParameterList() const
Return a const parameter list of valid parameters that setParameterList() will accept.
void Build(Level &fineLevel, Level &coarseLevel) const
Build method.
Teuchos::FancyOStream & GetOStream(MsgType type, int thisProcRankOnly=0) const
Get an output stream for outputting the input message type.
Namespace for MueLu classes and methods.
@ UserData
User data are always kept. This flag is set automatically when Level::Set("data", data) is used....
@ Runtime0
One-liner description of what is happening.
@ Runtime1
Description of what is happening (more verbose).