Teko  Version of the Day
 All Classes Files Functions Variables Pages
Teko_TpetraBlockedMappingStrategy.hpp
1 // @HEADER
2 // *****************************************************************************
3 // Teko: A package for block and physics based preconditioning
4 //
5 // Copyright 2010 NTESS and the Teko contributors.
6 // SPDX-License-Identifier: BSD-3-Clause
7 // *****************************************************************************
8 // @HEADER
9 
10 #ifndef __Teko_TpetraBlockedMappingStrategy_hpp__
11 #define __Teko_TpetraBlockedMappingStrategy_hpp__
12 
13 // stl includes
14 #include <vector>
15 
16 // Teuchos includes
17 #include "Teuchos_RCP.hpp"
18 
19 // Thyra includes
20 #include "Thyra_MultiVectorBase.hpp"
21 #include "Thyra_LinearOpBase.hpp"
22 #include "Thyra_BlockedLinearOpBase.hpp"
23 
24 // Tpetra includes
25 #include "Tpetra_Map.hpp"
26 #include "Tpetra_MultiVector.hpp"
27 #include "Tpetra_Import.hpp"
28 #include "Tpetra_Export.hpp"
29 #include "Tpetra_CrsMatrix.hpp"
30 
31 // Teko includes
32 #include "Teko_TpetraOperatorWrapper.hpp"
33 #include "Teko_BlockingTpetra.hpp"
34 #include "Teko_ConfigDefs.hpp"
35 
36 namespace Teko {
37 namespace TpetraHelpers {
38 
39 class TpetraBlockedMappingStrategy : public MappingStrategy {
40  public:
42 
43 
53  TpetraBlockedMappingStrategy(const std::vector<std::vector<GO> >& vars,
54  const Teuchos::RCP<const Tpetra::Map<LO, GO, NT> >& baseMap,
55  const Teuchos::Comm<int>& comm);
57 
59 
60 
68  virtual void copyTpetraIntoThyra(const Tpetra::MultiVector<ST, LO, GO, NT>& tpetra_X,
69  const Teuchos::Ptr<Thyra::MultiVectorBase<ST> >& thyra_X) const;
70 
78  virtual void copyThyraIntoTpetra(const Teuchos::RCP<const Thyra::MultiVectorBase<ST> >& thyra_Y,
79  Tpetra::MultiVector<ST, LO, GO, NT>& tpetra_Y) const;
80 
88  virtual const Teuchos::RCP<const Tpetra::Map<LO, GO, NT> > domainMap() const {
89  return domainMap_;
90  }
91 
99  virtual const Teuchos::RCP<const Tpetra::Map<LO, GO, NT> > rangeMap() const { return rangeMap_; }
100 
105  virtual std::string toString() const { return std::string("TpetraBlockedMappingStrategy"); }
106 
108 
110 
111 
126  void buildBlockTransferData(const std::vector<std::vector<GO> >& vars,
127  const Teuchos::RCP<const Tpetra::Map<LO, GO, NT> >& baseMap,
128  const Teuchos::Comm<int>& comm);
129 
141  const std::vector<Blocking::MapPair>& getMaps() const { return blockMaps_; }
142 
154  const Teuchos::RCP<Thyra::BlockedLinearOpBase<ST> > buildBlockedThyraOp(
155  const Teuchos::RCP<const Tpetra::CrsMatrix<ST, LO, GO, NT> >& mat,
156  const std::string& label = "<ANYM>") const;
157 
167  void rebuildBlockedThyraOp(const RCP<const Tpetra::CrsMatrix<ST, LO, GO, NT> >& mat,
168  const RCP<Thyra::BlockedLinearOpBase<ST> >& A) const;
169 
171 
172  protected:
173  // member variables
174 
176 
177  Teuchos::RCP<const Tpetra::Map<LO, GO, NT> > domainMap_;
178  Teuchos::RCP<const Tpetra::Map<LO, GO, NT> > rangeMap_;
180 
182 
183  std::vector<Blocking::MapPair> blockMaps_;
184  std::vector<Teuchos::RCP<Tpetra::Import<LO, GO, NT> > > blockImport_;
185  std::vector<Teuchos::RCP<Tpetra::Export<LO, GO, NT> > > blockExport_;
187 };
188 
189 } // end namespace TpetraHelpers
190 } // end namespace Teko
191 
192 #endif
virtual void copyThyraIntoTpetra(const RCP< const Thyra::MultiVectorBase< ST > > &thyraX, Tpetra::MultiVector< ST, LO, GO, NT > &tpetraX) const =0
Copy an Thyra::MultiVectorBase into a Epetra_MultiVector.