|
Ifpack2 Templated Preconditioning Package
Version 1.0
|
00001 /*@HEADER 00002 // *********************************************************************** 00003 // 00004 // Ifpack2: Tempated Object-Oriented Algebraic Preconditioner Package 00005 // Copyright (2009) Sandia Corporation 00006 // 00007 // Under terms of Contract DE-AC04-94AL85000, there is a non-exclusive 00008 // license for use of this work by or on behalf of the U.S. Government. 00009 // 00010 // This library is free software; you can redistribute it and/or modify 00011 // it under the terms of the GNU Lesser General Public License as 00012 // published by the Free Software Foundation; either version 2.1 of the 00013 // License, or (at your option) any later version. 00014 // 00015 // This library is distributed in the hope that it will be useful, but 00016 // WITHOUT ANY WARRANTY; without even the implied warranty of 00017 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00018 // Lesser General Public License for more details. 00019 // 00020 // You should have received a copy of the GNU Lesser General Public 00021 // License along with this library; if not, write to the Free Software 00022 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00023 // USA 00024 // Questions? Contact Michael A. Heroux (maherou@sandia.gov) 00025 // 00026 // *********************************************************************** 00027 //@HEADER 00028 */ 00029 00030 #ifndef IFPACK2_DROPFILTER_DECL_HPP 00031 #define IFPACK2_DROPFILTER_DECL_HPP 00032 00033 #include "Ifpack2_ConfigDefs.hpp" 00034 #include "Tpetra_ConfigDefs.hpp" 00035 #include "Tpetra_RowMatrix.hpp" 00036 #include "Teuchos_RefCountPtr.hpp" 00037 #include "Teuchos_ScalarTraits.hpp" 00038 00039 00040 namespace Ifpack2 { 00042 00066 template<class MatrixType> 00067 class DropFilter : virtual public Tpetra::RowMatrix<typename MatrixType::scalar_type,typename MatrixType::local_ordinal_type,typename MatrixType::global_ordinal_type,typename MatrixType::node_type> { 00068 00069 public: 00070 typedef typename MatrixType::scalar_type Scalar; 00071 typedef typename MatrixType::local_ordinal_type LocalOrdinal; 00072 typedef typename MatrixType::global_ordinal_type GlobalOrdinal; 00073 typedef typename MatrixType::node_type Node; 00074 typedef typename Teuchos::ScalarTraits<Scalar>::magnitudeType magnitudeType; 00075 00076 00077 public: 00079 00080 00082 explicit DropFilter(const Teuchos::RCP<const Tpetra::RowMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node> >& Matrix, 00083 magnitudeType DropTol); 00085 virtual ~DropFilter(); 00086 00088 00090 00091 00093 virtual const Teuchos::RCP<const Teuchos::Comm<int> > & getComm() const; 00094 00096 virtual Teuchos::RCP<Node> getNode() const; 00097 00099 virtual const Teuchos::RCP<const Tpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > & getRowMap() const; 00100 00102 virtual const Teuchos::RCP<const Tpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > & getColMap() const; 00103 00105 virtual const Teuchos::RCP<const Tpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > & getDomainMap() const; 00106 00108 virtual const Teuchos::RCP<const Tpetra::Map<LocalOrdinal,GlobalOrdinal,Node> > & getRangeMap() const; 00109 00111 virtual Teuchos::RCP<const Tpetra::RowGraph<LocalOrdinal,GlobalOrdinal,Node> > getGraph() const; 00112 00114 virtual global_size_t getGlobalNumRows() const; 00115 00117 virtual global_size_t getGlobalNumCols() const; 00118 00120 virtual size_t getNodeNumRows() const; 00121 00123 virtual size_t getNodeNumCols() const; 00124 00126 virtual GlobalOrdinal getIndexBase() const; 00127 00129 virtual global_size_t getGlobalNumEntries() const; 00130 00132 virtual size_t getNodeNumEntries() const; 00133 00135 00136 virtual size_t getNumEntriesInGlobalRow(GlobalOrdinal globalRow) const; 00137 00139 00140 virtual size_t getNumEntriesInLocalRow(LocalOrdinal localRow) const; 00141 00143 virtual global_size_t getGlobalNumDiags() const; 00144 00146 virtual size_t getNodeNumDiags() const; 00147 00149 virtual size_t getGlobalMaxNumRowEntries() const; 00150 00152 virtual size_t getNodeMaxNumRowEntries() const; 00153 00155 virtual bool hasColMap() const; 00156 00158 virtual bool isLowerTriangular() const; 00159 00161 virtual bool isUpperTriangular() const; 00162 00164 virtual bool isLocallyIndexed() const; 00165 00167 virtual bool isGloballyIndexed() const; 00168 00170 virtual bool isFillComplete() const; 00171 00172 00174 00176 00177 00179 00189 virtual void getGlobalRowCopy(GlobalOrdinal GlobalRow, 00190 const Teuchos::ArrayView<GlobalOrdinal> &Indices, 00191 const Teuchos::ArrayView<Scalar> &Values, 00192 size_t &NumEntries) const; 00193 00195 00205 virtual void getLocalRowCopy(LocalOrdinal DropRow, 00206 const Teuchos::ArrayView<LocalOrdinal> &Indices, 00207 const Teuchos::ArrayView<Scalar> &Values, 00208 size_t &NumEntries) const ; 00209 00211 00220 virtual void getGlobalRowView(GlobalOrdinal GlobalRow, 00221 Teuchos::ArrayView<const GlobalOrdinal> &indices, 00222 Teuchos::ArrayView<const Scalar> &values) const; 00223 00225 00234 virtual void getLocalRowView(LocalOrdinal DropRow, 00235 Teuchos::ArrayView<const LocalOrdinal> &indices, 00236 Teuchos::ArrayView<const Scalar> &values) const; 00237 00239 00241 virtual void getLocalDiagCopy(Tpetra::Vector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &diag) const; 00242 00244 00246 00247 00257 virtual void leftScale(const Tpetra::Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& x); 00258 00268 virtual void rightScale(const Tpetra::Vector<Scalar, LocalOrdinal, GlobalOrdinal, Node>& x); 00269 00271 00274 virtual typename Teuchos::ScalarTraits<Scalar>::magnitudeType getFrobeniusNorm() const; 00275 00277 00282 virtual void apply(const Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &X, 00283 Tpetra::MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &Y, 00284 Teuchos::ETransp mode = Teuchos::NO_TRANS, 00285 Scalar alpha = Teuchos::ScalarTraits<Scalar>::one(), 00286 Scalar beta = Teuchos::ScalarTraits<Scalar>::zero()) const; 00287 00289 virtual bool hasTransposeApply() const; 00290 00292 00294 00295 00297 00306 TPETRA_DEPRECATED virtual void getGlobalRowView(GlobalOrdinal GlobalRow, 00307 Teuchos::ArrayRCP<const GlobalOrdinal> &indices, 00308 Teuchos::ArrayRCP<const Scalar> &values) const; 00309 00311 00320 TPETRA_DEPRECATED virtual void getLocalRowView(LocalOrdinal DropRow, 00321 Teuchos::ArrayRCP<const LocalOrdinal> &indices, 00322 Teuchos::ArrayRCP<const Scalar> &values) const; 00324 00325 00326 private: 00327 00329 Teuchos::RCP<const Tpetra::RowMatrix<Scalar,LocalOrdinal,GlobalOrdinal,Node> > A_; 00331 magnitudeType DropTol_; 00333 size_t NumRows_; 00335 size_t NumNonzeros_; 00337 size_t MaxNumEntries_; 00339 size_t MaxNumEntriesA_; 00341 std::vector<size_t> NumEntries_; 00343 mutable Teuchos::Array<LocalOrdinal> Indices_; 00345 mutable Teuchos::Array<Scalar> Values_; 00346 00347 };// class DropFilter 00348 00349 }// namespace Ifpack2 00350 00351 #endif /* IFPACK2_DROPFILTER_DECL_HPP */
1.7.6.1