queso-0.57.1
|
A class for partitioning vectors and matrices. More...
#include <Map.h>
Public Member Functions | |
Constructor/Destructor methods | |
Map (int numGlobalElements, int indexBase, const MpiComm &comm) | |
Constructor for a uniform linear distribution of elements. More... | |
Map (const Map &src) | |
Copy constructor. More... | |
~Map () | |
Destructor. More... | |
Set methods | |
Map & | operator= (const Map &rhs) |
Assignment operator. More... | |
Size, dimension and local ID accessor methods | |
int | NumGlobalElements () const |
Returns the total number of elements across all processors. More... | |
int | IndexBase () const |
int | NumMyElements () const |
Returns the number of elements owned by the calling processor. More... | |
int | MinMyGID () const |
The minimum global index value on the calling processor. More... | |
Miscellaneous methods | |
const MpiComm & | Comm () const |
Access function for MpiComm communicator. More... | |
const Epetra_Map & | epetraMap () const |
Trilinos Epetra_Map: A class for partitioning vectors and matrices. More... | |
Private Member Functions | |
Map () | |
Default constructor. Do not call this directly. More... | |
void | copy (const Map &src) |
Copies the map. More... | |
Private Attributes | |
MpiComm | m_MpiComm |
This communicator can be queried for processor rank and size information. More... | |
Epetra_Map * | m_epetraMap |
Epetra_Map. More... | |
int | m_numGlobalElements |
Total number of elements across all processors. More... | |
int | m_indexBase |
Base integer value for indexed array references. More... | |
int | m_numMyElements |
Number of elements owned by the calling processor. More... | |
A class for partitioning vectors and matrices.
It is often the case that multiple matrix and vector objects have an identical distribution of elements on a parallel machine. The Map keeps information that describes this distribution for matrices and vectors. Inspired by Trilinos Epetra_Map class.
QUESO::Map::Map | ( | int | numGlobalElements, |
int | indexBase, | ||
const MpiComm & | comm | ||
) |
Constructor for a uniform linear distribution of elements.
QUESO::Map::Map | ( | const Map & | src | ) |
Copy constructor.
QUESO::Map::~Map | ( | ) |
Destructor.
|
private |
Default constructor. Do not call this directly.
Definition at line 63 of file Map.C.
References m_epetraMap.
const MpiComm & QUESO::Map::Comm | ( | ) | const |
Access function for MpiComm communicator.
Definition at line 131 of file Map.C.
References m_MpiComm.
Referenced by QUESO::Matrix::numOfProcsForStorage(), QUESO::Vector::numOfProcsForStorage(), QUESO::GPMSAFactory< V, M >::setUpEmulator(), and QUESO::GslMatrix::transpose().
|
private |
Copies the map.
Definition at line 146 of file Map.C.
References m_epetraMap, m_indexBase, m_MpiComm, m_numGlobalElements, and m_numMyElements.
Referenced by operator=().
const Epetra_Map & QUESO::Map::epetraMap | ( | ) | const |
Trilinos Epetra_Map: A class for partitioning vectors and matrices.
Definition at line 138 of file Map.C.
References m_epetraMap.
int QUESO::Map::IndexBase | ( | ) | const |
Returns the base integer value for indexed array references. The first position in the global processor in my processors.
Definition at line 96 of file Map.C.
References m_epetraMap, and m_indexBase.
int QUESO::Map::MinMyGID | ( | ) | const |
The minimum global index value on the calling processor.
Definition at line 118 of file Map.C.
References m_epetraMap.
int QUESO::Map::NumGlobalElements | ( | ) | const |
Returns the total number of elements across all processors.
Definition at line 85 of file Map.C.
References m_epetraMap, and m_numGlobalElements.
Referenced by QUESO::ConcatenatedJointPdf< V, M >::distributionVariance(), QUESO::GslVector::GslVector(), QUESO::ConcatenationSubset< V, M >::moments(), QUESO::GslVector::sizeGlobal(), QUESO::TeuchosVector::sizeGlobal(), QUESO::TeuchosMatrix::TeuchosMatrix(), QUESO::TeuchosVector::TeuchosVector(), and QUESO::VectorSpace< V, M >::VectorSpace().
int QUESO::Map::NumMyElements | ( | ) | const |
Returns the number of elements owned by the calling processor.
Definition at line 107 of file Map.C.
References m_epetraMap, and m_numMyElements.
Referenced by QUESO::GslVector::GslVector(), QUESO::GslVector::sizeLocal(), QUESO::TeuchosVector::sizeLocal(), and QUESO::TeuchosVector::TeuchosVector().
|
private |
Epetra_Map.
Definition at line 113 of file Map.h.
Referenced by copy(), epetraMap(), IndexBase(), Map(), MinMyGID(), NumGlobalElements(), and NumMyElements().
|
private |
Base integer value for indexed array references.
Definition at line 119 of file Map.h.
Referenced by copy(), and IndexBase().
|
private |
|
private |
Total number of elements across all processors.
Definition at line 116 of file Map.h.
Referenced by copy(), and NumGlobalElements().
|
private |
Number of elements owned by the calling processor.
Definition at line 122 of file Map.h.
Referenced by copy(), and NumMyElements().