Tpetra Matrix/Vector Services  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines
Tpetra_CrsMatrixMultiplyOp_decl.hpp
Go to the documentation of this file.
00001 // @HEADER
00002 // ***********************************************************************
00003 //
00004 //          Tpetra: Templated Linear Algebra Services Package
00005 //                 Copyright (2008) Sandia Corporation
00006 //
00007 // Under the terms of Contract DE-AC04-94AL85000 with Sandia Corporation,
00008 // the U.S. Government retains certain rights in this software.
00009 //
00010 // Redistribution and use in source and binary forms, with or without
00011 // modification, are permitted provided that the following conditions are
00012 // met:
00013 //
00014 // 1. Redistributions of source code must retain the above copyright
00015 // notice, this list of conditions and the following disclaimer.
00016 //
00017 // 2. Redistributions in binary form must reproduce the above copyright
00018 // notice, this list of conditions and the following disclaimer in the
00019 // documentation and/or other materials provided with the distribution.
00020 //
00021 // 3. Neither the name of the Corporation nor the names of the
00022 // contributors may be used to endorse or promote products derived from
00023 // this software without specific prior written permission.
00024 //
00025 // THIS SOFTWARE IS PROVIDED BY SANDIA CORPORATION "AS IS" AND ANY
00026 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00027 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
00028 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SANDIA CORPORATION OR THE
00029 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
00030 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
00031 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
00032 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
00033 // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
00034 // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00035 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00036 //
00037 // Questions? Contact Michael A. Heroux (maherou@sandia.gov)
00038 //
00039 // ************************************************************************
00040 // @HEADER
00041 
00042 #ifndef TPETRA_CRSMATRIXMULTIPLYOP_DECL_HPP
00043 #define TPETRA_CRSMATRIXMULTIPLYOP_DECL_HPP
00044 
00048 
00049 #include <Tpetra_CrsMatrix.hpp>
00050 #include <Teuchos_TimeMonitor.hpp>
00051 
00052 namespace Tpetra {
00053 
00054 #ifndef DOXYGEN_SHOULD_SKIP_THIS
00055   // forward declaration
00056   template <class MatScalar,
00057             class LocalOrdinal,
00058             class GlobalOrdinal,
00059             class Node>
00060   class CrsMatrix;
00061 #endif
00062 
00127   template <class Scalar,
00128             class MatScalar = Scalar,
00129             class LocalOrdinal =
00130             typename CrsMatrix<MatScalar>::local_ordinal_type,
00131             class GlobalOrdinal =
00132             typename CrsMatrix<MatScalar, LocalOrdinal>::global_ordinal_type,
00133             class Node =
00134             typename CrsMatrix<MatScalar, LocalOrdinal, GlobalOrdinal>::node_type>
00135   class CrsMatrixMultiplyOp :
00136     public Operator<Scalar, LocalOrdinal, GlobalOrdinal, Node>
00137   {
00138   public:
00140     typedef CrsMatrix<MatScalar, LocalOrdinal, GlobalOrdinal, Node> crs_matrix_type;
00142     typedef Map<LocalOrdinal, GlobalOrdinal, Node> map_type;
00143 
00145 
00146 
00151     CrsMatrixMultiplyOp (const Teuchos::RCP<const crs_matrix_type>& A);
00152 
00154     virtual ~CrsMatrixMultiplyOp ();
00155 
00157 
00158 
00159 
00165     void
00166     apply (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& X,
00167            MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& Y,
00168            Teuchos::ETransp mode = Teuchos::NO_TRANS,
00169            Scalar alpha = Teuchos::ScalarTraits<Scalar>::one(),
00170            Scalar beta = Teuchos::ScalarTraits<Scalar>::zero()) const;
00171 
00211     void
00212     gaussSeidel (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &B,
00213                  MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &X,
00214                  const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &D,
00215                  const Scalar& dampingFactor,
00216                  const ESweepDirection direction,
00217                  const int numSweeps) const;
00218 
00243     void
00244     gaussSeidelCopy (MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &X,
00245                      const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &B,
00246                      const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &D,
00247                      const Scalar& dampingFactor,
00248                      const ESweepDirection direction,
00249                      const int numSweeps) const;
00250 
00256     bool hasTransposeApply() const;
00257 
00259     Teuchos::RCP<const map_type> getDomainMap () const;
00260 
00262     Teuchos::RCP<const map_type> getRangeMap () const;
00263 
00265 
00266   protected:
00267     typedef MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> MV;
00268 
00270     const Teuchos::RCP<const crs_matrix_type> matrix_;
00271 
00284     mutable Teuchos::RCP<MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> > importMV_;
00285 
00298     mutable Teuchos::RCP<MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> > exportMV_;
00299 
00300 #ifdef HAVE_KOKKOSCLASSIC_CUDA_NODE_MEMORY_PROFILING
00301     Teuchos::RCP<Teuchos::Time> importTimer_, exportTimer_;
00302 #endif
00303 
00306     void
00307     applyTranspose (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& X,
00308                     MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &Y,
00309                     Teuchos::ETransp mode,
00310                     Scalar alpha,
00311                     Scalar beta) const;
00312 
00314     void
00315     applyNonTranspose (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& X,
00316                        MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node> &Y,
00317                        Scalar alpha,
00318                        Scalar beta) const;
00319 
00320   private:
00340     Teuchos::RCP<MV>
00341     getColumnMapMultiVector (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& X_domainMap,
00342                              const bool force = false) const;
00343 
00365     Teuchos::RCP<MV>
00366     getRowMapMultiVector (const MultiVector<Scalar,LocalOrdinal,GlobalOrdinal,Node>& Y_rangeMap,
00367                           const bool force = false) const;
00368   };
00369 
00377   template <class Scalar,
00378             class MatScalar,
00379             class LocalOrdinal,
00380             class GlobalOrdinal,
00381             class Node>
00382   Teuchos::RCP<
00383     CrsMatrixMultiplyOp<Scalar,MatScalar,LocalOrdinal,GlobalOrdinal,Node> >
00384   createCrsMatrixMultiplyOp (const Teuchos::RCP<
00385     const CrsMatrix<MatScalar,LocalOrdinal,GlobalOrdinal,Node> > &A);
00386 
00387 } // end of namespace Tpetra
00388 
00389 #endif // TPETRA_CRSMATRIXMULTIPLYOP_DECL_HPP
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Defines