|
Tpetra Matrix/Vector Services
Version of the Day
|
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 00043 #ifndef TPETRA_MMHELPERS_DECL_HPP 00044 #define TPETRA_MMHELPERS_DECL_HPP 00045 00046 #include "Tpetra_ConfigDefs.hpp" 00047 #include "Teuchos_Array.hpp" 00048 #include <Kokkos_DefaultNode.hpp> 00049 #include <Kokkos_DefaultKernels.hpp> 00050 #include <set> 00051 #include <map> 00052 00053 00059 namespace Tpetra { 00060 #ifndef DOXYGEN_SHOULD_SKIP_THIS 00061 // forward declaration 00062 template <class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node, class SpMatOps> 00063 class CrsMatrix; 00064 00065 template <class LocalOrdinal, class GlobalOrdinal, class Node> 00066 class Map; 00067 #endif 00068 //struct that holds views of the contents of a CrsMatrix. These 00069 //contents may be a mixture of local and remote rows of the 00070 //actual matrix. 00071 template <class Scalar, 00072 class LocalOrdinal=int, 00073 class GlobalOrdinal=LocalOrdinal, 00074 class Node=Kokkos::DefaultNode::DefaultNodeType, 00075 class SpMatOps= typename Kokkos::DefaultKernels<Scalar, LocalOrdinal, Node>::SparseOps > 00076 class CrsMatrixStruct { 00077 public: 00078 CrsMatrixStruct(); 00079 00080 virtual ~CrsMatrixStruct(); 00081 00082 void deleteContents(); 00083 00084 //The maximum number of row entries a.k.a. the longest of the indice arrays. 00085 typename Array<ArrayView<const LocalOrdinal> >::size_type maxNumRowEntries; 00086 00088 size_t numRows; 00090 Teuchos::Array<size_t> numEntriesPerRow; 00092 Teuchos::Array<Teuchos::ArrayView<const LocalOrdinal> > indices; 00094 Teuchos::Array<Teuchos::ArrayView<const Scalar> > values; 00096 Teuchos::Array<bool> remote; 00098 global_size_t numRemote; 00100 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > origRowMap; 00102 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > rowMap; 00104 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > colMap; 00106 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > domainMap; 00108 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > importColMap; 00110 Teuchos::RCP<CrsMatrix<Scalar, LocalOrdinal, GlobalOrdinal, Node, SpMatOps> > importMatrix; 00111 }; 00112 00113 template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node, class SpMatOps> 00114 int dumpCrsMatrixStruct(const CrsMatrixStruct<Scalar, LocalOrdinal, GlobalOrdinal, Node, SpMatOps >& M); 00115 00116 template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node> 00117 class CrsWrapper { 00118 public: 00119 virtual ~CrsWrapper(){} 00120 00121 virtual Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > getRowMap() const = 0; 00122 00123 virtual bool isFillComplete() = 0; 00124 00125 virtual void insertGlobalValues(GlobalOrdinal globalRow, const Teuchos::ArrayView<const GlobalOrdinal> &indices, const Teuchos::ArrayView<const Scalar> &values) = 0; 00126 00127 virtual void sumIntoGlobalValues(GlobalOrdinal globalRow, const Teuchos::ArrayView<const GlobalOrdinal> &indices, const Teuchos::ArrayView<const Scalar> &values) = 0; 00128 }; 00129 00130 template <class Scalar, 00131 class LocalOrdinal=int, 00132 class GlobalOrdinal=LocalOrdinal, 00133 class Node=Kokkos::DefaultNode::DefaultNodeType, 00134 class SpMatOps= typename Kokkos::DefaultKernels<Scalar, LocalOrdinal, Node>::SparseOps > 00135 class CrsWrapper_CrsMatrix : public CrsWrapper<Scalar, LocalOrdinal, GlobalOrdinal, Node>{ 00136 public: 00137 CrsWrapper_CrsMatrix(CrsMatrix<Scalar, LocalOrdinal, GlobalOrdinal, Node, SpMatOps >& crsmatrix); 00138 virtual ~CrsWrapper_CrsMatrix(); 00139 00140 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > getRowMap() const; 00141 00142 bool isFillComplete(); 00143 00144 void insertGlobalValues(GlobalOrdinal globalRow, const Teuchos::ArrayView<const GlobalOrdinal> &indices, const Teuchos::ArrayView<const Scalar> &values); 00145 void sumIntoGlobalValues(GlobalOrdinal globalRow, const Teuchos::ArrayView<const GlobalOrdinal> &indices, const Teuchos::ArrayView<const Scalar> &values); 00146 00147 private: 00148 CrsMatrix<Scalar, LocalOrdinal, GlobalOrdinal, Node, SpMatOps>& crsmat_; 00149 }; 00150 00151 template<class Scalar, 00152 class LocalOrdinal=int, 00153 class GlobalOrdinal=LocalOrdinal, 00154 class Node=Kokkos::DefaultNode::DefaultNodeType> 00155 class CrsWrapper_GraphBuilder : public CrsWrapper<Scalar, LocalOrdinal, GlobalOrdinal, Node>{ 00156 public: 00157 CrsWrapper_GraphBuilder(const Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> >& map); 00158 virtual ~CrsWrapper_GraphBuilder(); 00159 00160 Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> > getRowMap() const {return rowmap_; } 00161 00162 bool isFillComplete(); 00163 00164 void insertGlobalValues(GlobalOrdinal globalRow, const Teuchos::ArrayView<const GlobalOrdinal> &indices, const Teuchos::ArrayView<const Scalar> &values); 00165 void sumIntoGlobalValues(GlobalOrdinal globalRow, const Teuchos::ArrayView<const GlobalOrdinal> &indices, const Teuchos::ArrayView<const Scalar> &values); 00166 00167 std::map<GlobalOrdinal,std::set<GlobalOrdinal>*>& get_graph(); 00168 00169 size_t get_max_row_length() { return max_row_length_; } 00170 00171 private: 00172 std::map<GlobalOrdinal,std::set<GlobalOrdinal>*> graph_; 00173 const RCP<const Map<LocalOrdinal, GlobalOrdinal, Node> >& rowmap_; 00174 global_size_t max_row_length_; 00175 }; 00176 00177 template<class Scalar, class LocalOrdinal, class GlobalOrdinal, class Node, class SpMatOps> 00178 void insert_matrix_locations(CrsWrapper_GraphBuilder<Scalar, LocalOrdinal, GlobalOrdinal, Node>& graphbuilder, 00179 CrsMatrix<Scalar, LocalOrdinal, GlobalOrdinal, Node, SpMatOps>& C); 00180 00181 00182 00183 } 00184 #endif // TPETRA_MMHELPERS_DECL_HPP 00185
1.7.6.1