#include <Xpetra_TpetraMap.hpp>
Protected Attributes | |
RCP< const Tpetra::Map < LocalOrdinal, GlobalOrdinal, Node > > | map_ |
Constructors and destructor | |
TpetraMap (global_size_t numGlobalElements, GlobalOrdinal indexBase, const Teuchos::RCP< const Teuchos::Comm< int > > &comm, LocalGlobal lg=GloballyDistributed) | |
Constructor with Tpetra-defined contiguous uniform distribution. More... | |
TpetraMap (global_size_t numGlobalElements, size_t numLocalElements, GlobalOrdinal indexBase, const Teuchos::RCP< const Teuchos::Comm< int > > &comm) | |
Constructor with a user-defined contiguous distribution. More... | |
TpetraMap (global_size_t numGlobalElements, const Teuchos::ArrayView< const GlobalOrdinal > &elementList, GlobalOrdinal indexBase, const Teuchos::RCP< const Teuchos::Comm< int > > &comm) | |
Constructor with user-defined arbitrary (possibly noncontiguous) distribution. More... | |
~TpetraMap () | |
Destructor. More... | |
Attributes | |
global_size_t | getGlobalNumElements () const |
The number of elements in this Map. More... | |
size_t | getNodeNumElements () const |
The number of elements belonging to the calling node. More... | |
GlobalOrdinal | getIndexBase () const |
The index base for this Map. More... | |
LocalOrdinal | getMinLocalIndex () const |
The minimum local index. More... | |
LocalOrdinal | getMaxLocalIndex () const |
The maximum local index on the calling process. More... | |
GlobalOrdinal | getMinGlobalIndex () const |
The minimum global index owned by the calling process. More... | |
GlobalOrdinal | getMaxGlobalIndex () const |
The maximum global index owned by the calling process. More... | |
GlobalOrdinal | getMinAllGlobalIndex () const |
The minimum global index over all processes in the communicator. More... | |
GlobalOrdinal | getMaxAllGlobalIndex () const |
The maximum global index over all processes in the communicator. More... | |
LocalOrdinal | getLocalElement (GlobalOrdinal globalIndex) const |
The local index corresponding to the given global index. More... | |
GlobalOrdinal | getGlobalElement (LocalOrdinal localIndex) const |
The global index corresponding to the given local index. More... | |
LookupStatus | getRemoteIndexList (const Teuchos::ArrayView< const GlobalOrdinal > &GIDList, const Teuchos::ArrayView< int > &nodeIDList, const Teuchos::ArrayView< LocalOrdinal > &LIDList) const |
Return the process IDs and corresponding local IDs for the given global IDs. More... | |
LookupStatus | getRemoteIndexList (const Teuchos::ArrayView< const GlobalOrdinal > &GIDList, const Teuchos::ArrayView< int > &nodeIDList) const |
Return the process IDs for the given global IDs. More... | |
Teuchos::ArrayView< const GlobalOrdinal > | getNodeElementList () const |
Return a view of the global indices owned by this node. More... | |
Boolean tests | |
bool | isNodeLocalElement (LocalOrdinal localIndex) const |
True if the local index is valid for this Map on this node, else false. More... | |
bool | isNodeGlobalElement (GlobalOrdinal globalIndex) const |
True if the global index is found in this Map on this node, else false. More... | |
bool | isContiguous () const |
True if this Map is distributed contiguously, else false. More... | |
bool | isDistributed () const |
Whether this Map is globally distributed or locally replicated. More... | |
bool | isCompatible (const Map< LocalOrdinal, GlobalOrdinal, Node > &map) const |
True if and only if map is compatible with this Map. More... | |
bool | isSameAs (const Map< LocalOrdinal, GlobalOrdinal, Node > &map) const |
True if and only if map is identical to this Map. More... | |
Teuchos::RCP< const Teuchos::Comm< int > > | getComm () const |
Get this Map's Comm object. More... | |
std::string | description () const |
Return a simple one-line description of this object. More... | |
void | describe (Teuchos::FancyOStream &out, const Teuchos::EVerbosityLevel verbLevel=Teuchos::Describable::verbLevel_default) const |
Print this object with the given verbosity level to the given FancyOStream. More... | |
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | removeEmptyProcesses () const |
Return a new Map with processes with zero elements removed. More... | |
RCP< const Map< LocalOrdinal, GlobalOrdinal, Node > > | replaceCommWithSubset (const Teuchos::RCP< const Teuchos::Comm< int > > &newComm) const |
Replace this Map's communicator with a subset communicator. More... | |
Xpetra specific | |
TpetraMap (const Teuchos::RCP< const Tpetra::Map< LocalOrdinal, GlobalOrdinal, Node > > &map) | |
TpetraMap constructor to wrap a Tpetra::Map object. More... | |
UnderlyingLib | lib () const |
Get the library used by this object (Tpetra or Epetra?) More... | |
RCP< const Tpetra::Map < LocalOrdinal, GlobalOrdinal, Node > > | getTpetra_Map () const |
Get the underlying Tpetra map. More... | |
Additional Inherited Members | |
Public Types inherited from Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > | |
typedef LocalOrdinal | local_ordinal_type |
typedef GlobalOrdinal | global_ordinal_type |
typedef Node | node_type |
Public Member Functions inherited from Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node > | |
virtual | ~Map () |
Destructor. More... | |
virtual RCP< const Xpetra::Map < LocalOrdinal, GlobalOrdinal, Node > > | getMap () const |
Public Member Functions inherited from Teuchos::Describable | |
void | describe (std::ostream &out, const EVerbosityLevel verbLevel=verbLevel_default) const |
virtual | ~Describable () |
LabeledObject () | |
virtual | ~LabeledObject () |
virtual void | setObjectLabel (const std::string &objectLabel) |
virtual std::string | getObjectLabel () const |
DescribableStreamManipulatorState | describe (const Describable &describable, const EVerbosityLevel verbLevel=Describable::verbLevel_default) |
std::ostream & | operator<< (std::ostream &os, const DescribableStreamManipulatorState &d) |
Static Public Attributes inherited from Teuchos::Describable | |
static const EVerbosityLevel | verbLevel_default |
Definition at line 79 of file Xpetra_TpetraMap.hpp.
|
inline |
Constructor with Tpetra-defined contiguous uniform distribution.
Definition at line 98 of file Xpetra_TpetraMap.hpp.
|
inline |
Constructor with a user-defined contiguous distribution.
Definition at line 118 of file Xpetra_TpetraMap.hpp.
|
inline |
Constructor with user-defined arbitrary (possibly noncontiguous) distribution.
Definition at line 138 of file Xpetra_TpetraMap.hpp.
|
inline |
Destructor.
Definition at line 164 of file Xpetra_TpetraMap.hpp.
|
inline |
TpetraMap constructor to wrap a Tpetra::Map object.
Definition at line 280 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The number of elements in this Map.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 172 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The number of elements belonging to the calling node.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 175 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The index base for this Map.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 178 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The minimum local index.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 181 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The maximum local index on the calling process.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 184 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The minimum global index owned by the calling process.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 187 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The maximum global index owned by the calling process.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 190 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The minimum global index over all processes in the communicator.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 193 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The maximum global index over all processes in the communicator.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 196 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The local index corresponding to the given global index.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 199 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
The global index corresponding to the given local index.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 202 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Return the process IDs and corresponding local IDs for the given global IDs.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 205 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Return the process IDs for the given global IDs.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 208 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Return a view of the global indices owned by this node.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 211 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
True if the local index is valid for this Map on this node, else false.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 219 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
True if the global index is found in this Map on this node, else false.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 222 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
True if this Map is distributed contiguously, else false.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 225 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Whether this Map is globally distributed or locally replicated.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 228 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
True if and only if map is compatible with this Map.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 231 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
True if and only if map is identical to this Map.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 234 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Get this Map's Comm object.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 242 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Return a simple one-line description of this object.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 255 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Print this object with the given verbosity level to the given FancyOStream.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 258 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Return a new Map with processes with zero elements removed.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 260 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Replace this Map's communicator with a subset communicator.
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 263 of file Xpetra_TpetraMap.hpp.
|
inlinevirtual |
Get the library used by this object (Tpetra or Epetra?)
Implements Xpetra::Map< LocalOrdinal, GlobalOrdinal, Node >.
Definition at line 284 of file Xpetra_TpetraMap.hpp.
|
inline |
Get the underlying Tpetra map.
Definition at line 287 of file Xpetra_TpetraMap.hpp.
|
protected |
Definition at line 303 of file Xpetra_TpetraMap.hpp.