Xpetra  Version of the Day
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Xpetra_StridedMapFactory_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 
47 // WARNING: This code is experimental. Backwards compatibility should not be expected.
48 
49 #ifndef XPETRA_STRIDEDMAPFACTORY_DECL_HPP
50 #define XPETRA_STRIDEDMAPFACTORY_DECL_HPP
51 
52 #include <Kokkos_DefaultNode.hpp>
53 
54 #include "Xpetra_ConfigDefs.hpp"
55 
57 
58 // This factory creates Xpetra::Map. User have to specify the exact class of
59 // object that he want to create (ie: a Xpetra::TpetraMap or a Xpetra::EpetraMap).
60 
61 namespace Xpetra {
62 
63 template<class LocalOrdinal,
64  class GlobalOrdinal,
66 class StridedMapFactory
67 {
68 
69 #undef XPETRA_STRIDEDMAPFACTORY_SHORT
71 
72  private:
73 
76 
77  public:
78 
80 
81 
82  static RCP<Xpetra::StridedMap<LocalOrdinal, GlobalOrdinal, Node>>
83  Build(UnderlyingLib lib,
84  global_size_t numGlobalElements,
85  GlobalOrdinal indexBase,
86  std::vector<size_t>& stridingInfo,
87  const Teuchos::RCP<const Teuchos::Comm<int>>& comm,
88  LocalOrdinal stridedBlockId = -1,
89  GlobalOrdinal offset = 0,
91 
92 
94 
95 
96  static RCP<StridedMap>
97  Build(UnderlyingLib lib,
98  global_size_t numGlobalElements,
99  size_t numLocalElements,
100  GlobalOrdinal indexBase,
101  std::vector<size_t>& stridingInfo,
102  const Teuchos::RCP<const Teuchos::Comm<int>>& comm,
103  LocalOrdinal stridedBlockId = -1,
104  GlobalOrdinal offset = 0);
105 
106 
107  static RCP<StridedMap>
108  Build(const RCP<const Map>& map, std::vector<size_t>& stridingInfo, LocalOrdinal stridedBlockId = -1, GlobalOrdinal offset = 0);
109 
110 
111  // special constructor for generating a given subblock of a strided map
112  static RCP<StridedMap>
113  Build(const RCP<const StridedMap>& map, LocalOrdinal stridedBlockId);
114 
115 
117  static RCP<StridedMap>
118  Build(const StridedMap& map);
119 
120 
123 
124 
125  static RCP<StridedMap>
126  Build(UnderlyingLib lib,
127  global_size_t numGlobalElements,
128  const Teuchos::ArrayView<const GlobalOrdinal>& elementList,
129  GlobalOrdinal indexBase,
130  std::vector<size_t>& stridingInfo,
131  const Teuchos::RCP<const Teuchos::Comm<int>>& comm,
132  LocalOrdinal stridedBlockId = -1, // FIXME (mfh 03 Sep 2014) This breaks if LocalOrdinal is unsigned
133  GlobalOrdinal /* offset */ = 0);
134 
135 }; // class StridedMapFactory
136 
137 
138 } // namespace Xpetra
139 
140 
141 #define XPETRA_STRIDEDMAPFACTORY_SHORT
142 
143 #endif // XPETRA_STRIDEDMAPFACTORY_DECL_HPP__
144 
145 // TODO: removed unused methods
146 
147 
148 
size_t global_size_t
Global size_t object.
StridedMapFactory()
Private constructor. This is a static class.
static RCP< Xpetra::StridedMap< LocalOrdinal, GlobalOrdinal, Node > > Build(UnderlyingLib lib, global_size_t numGlobalElements, GlobalOrdinal indexBase, std::vector< size_t > &stridingInfo, const Teuchos::RCP< const Teuchos::Comm< int >> &comm, LocalOrdinal stridedBlockId=-1, GlobalOrdinal offset=0, LocalGlobal lg=Xpetra::GloballyDistributed)
Map constructor with Xpetra-defined contiguous uniform distribution.