All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Xpetra_MultiVectorFactory_decl.hpp
Go to the documentation of this file.
1 // @HEADER
2 //
3 // ***********************************************************************
4 //
5 // Xpetra: A linear algebra interface package
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 XPETRA_MULTIVECTORFACTORY_DECL_HPP
47 #define XPETRA_MULTIVECTORFACTORY_DECL_HPP
48 
49 #include "Xpetra_ConfigDefs.hpp"
50 #include "Xpetra_MultiVector.hpp"
51 
52 #ifdef HAVE_XPETRA_TPETRA
53 #include "Xpetra_TpetraMultiVector.hpp"
54 #endif
55 
56 #ifdef HAVE_XPETRA_EPETRA
59 #endif
60 
61 // #include "Xpetra_BlockedMap.hpp"
62 #include "Xpetra_Exceptions.hpp"
63 
64 namespace Xpetra {
65 
66 
67 template<class Scalar,
68  class LocalOrdinal,
69  class GlobalOrdinal,
72 {
73  private:
74 
77 
78  public:
79 
82  Build(const Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node>>& map, size_t NumVectors, bool zeroOut = true);
83 
87  const Teuchos::ArrayView<const Teuchos::ArrayView<const Scalar>>& ArrayOfPtrs,
88  size_t NumVectors);
89 };
90 
91 
92 
93 // we need the Epetra specialization only if Epetra is enabled
94 #if defined(HAVE_XPETRA_EPETRA)
95 
96 #if !defined(XPETRA_EPETRA_NO_32BIT_GLOBAL_INDICES)
97 
98 
99 // Specialization for Scalar=double, LO=GO=int and Serial node
100 // Used both for Epetra and Tpetra
101 // For any other node definition the general default implementation is used which allows Tpetra only
102 template<>
103 class MultiVectorFactory<double, int, int, EpetraNode>
104 {
105 
106  typedef double Scalar;
107  typedef int LocalOrdinal;
108  typedef int GlobalOrdinal;
109  typedef EpetraNode Node;
110 
111  private:
112 
115 
116  public:
117 
119  Build(const Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node>>& map, size_t NumVectors, bool zeroOut = true);
120 
124  const Teuchos::ArrayView<const Teuchos::ArrayView<const Scalar>>& ArrayOfPtrs,
125  size_t NumVectors);
126 };
127 
128 
129 
130 template<>
131 class MultiVectorFactory<int, int, int, EpetraNode>
132 {
133 
134  typedef int Scalar;
135  typedef int LocalOrdinal;
136  typedef int GlobalOrdinal;
137  typedef EpetraNode Node;
138 
139  private:
140 
143 
144  public:
145 
147  Build(const Teuchos::RCP<const Map<LocalOrdinal, GlobalOrdinal, Node>>& map, size_t NumVectors, bool zeroOut = true);
148 
152  const Teuchos::ArrayView<const Teuchos::ArrayView<const Scalar>>& ArrayOfPtrs,
153  size_t NumVectors);
154 };
155 
156 
157 // we need the Epetra specialization only if Epetra is enabled
158 #if !defined(XPETRA_EPETRA_NO_64BIT_GLOBAL_INDICES)
159 
160 
161 template <>
162 class MultiVectorFactory<double, int, long long, EpetraNode>
163 {
164  typedef double Scalar;
165  typedef int LocalOrdinal;
166  typedef long long GlobalOrdinal;
167  typedef EpetraNode Node;
168 
169 private:
170 
173 
174 public:
175 
178  size_t NumVectors,
179  bool zeroOut = true);
180 
184  const Teuchos::ArrayView< const Teuchos::ArrayView< const Scalar > > &ArrayOfPtrs,
185  size_t NumVectors);
186 
187 };
188 
189 
190 template <>
191 class MultiVectorFactory<int, int, long long, EpetraNode>
192 {
193 
194  typedef int Scalar;
195  typedef int LocalOrdinal;
196  typedef long long GlobalOrdinal;
197  typedef EpetraNode Node;
198 
199 private:
200 
203 
204 public:
205 
208  size_t NumVectors,
209  bool zeroOut = true);
210 
214  const Teuchos::ArrayView< const Teuchos::ArrayView< const Scalar > > &ArrayOfPtrs,
215  size_t NumVectors);
216 
217 };
218 
219 
220 #endif // END !defined(XPETRA_EPETRA_NO_64BIT_GLOBAL_INDICES)
221 
222 #endif // END !defined(XPETRA_EPETRA_NO_32BIT_GLOBAL_INDICES)
223 
224 #endif // END HAVE_XPETRA_EPETRA
225 
226 
227 } // namespace Xpetra
228 
229 #define XPETRA_MULTIVECTORFACTORY_SHORT
230 #endif
static Teuchos::RCP< MultiVector< Scalar, LocalOrdinal, GlobalOrdinal, Node > > Build(const Teuchos::RCP< const Map< LocalOrdinal, GlobalOrdinal, Node >> &map, size_t NumVectors, bool zeroOut=true)
Constructor specifying the number of non-zeros for all rows.
MultiVectorFactory()
Private constructor. This is a static class.