DUNE PDELab (git)
A class setting up standard communication for a two-valued attribute set with owner/overlap/copy semantics. More...
#include <dune/istl/owneroverlapcopy.hh>
Classes | |
struct | CopyGatherScatter |
gather/scatter callback for communication More... | |
Public Types | |
typedef Dune::ParallelIndexSet< GlobalIdType, LI, 512 > | ParallelIndexSet |
The type of the parallel index set. | |
typedef Dune::RemoteIndices< PIS > | RemoteIndices |
The type of the remote indices. | |
typedef Dune::GlobalLookupIndexSet< ParallelIndexSet > | GlobalLookupIndexSet |
The type of the reverse lookup of indices. | |
Public Member Functions | |
SolverCategory::Category | category () const |
Get Solver Category. More... | |
template<class T > | |
void | copyOwnerToAll (const T &source, T &dest) const |
Communicate values from owner data points to all other data points. More... | |
template<class T > | |
void | copyCopyToAll (const T &source, T &dest) const |
Communicate values from copy data points to all other data points. More... | |
template<class T > | |
void | addOwnerOverlapToAll (const T &source, T &dest) const |
Communicate values from owner data points to all other data points and add them to those values. More... | |
template<class T > | |
void | addOwnerCopyToAll (const T &source, T &dest) const |
Communicate values from owner and copy data points to all other data points and add them to those values. More... | |
template<class T > | |
void | addOwnerCopyToOwnerCopy (const T &source, T &dest) const |
Communicate values from owner and copy data points to owner and copy data points and add them to those values. More... | |
template<class T1 , class T2 > | |
void | dot (const T1 &x, const T1 &y, T2 &result) const |
Compute a global dot product of two vectors. More... | |
template<class T1 > | |
FieldTraits< typenameT1::field_type >::real_type | norm (const T1 &x) const |
Compute the global Euclidean norm of a vector. More... | |
const ParallelIndexSet & | indexSet () const |
Get the underlying parallel index set. More... | |
const RemoteIndices & | remoteIndices () const |
Get the underlying remote indices. More... | |
ParallelIndexSet & | indexSet () |
Get the underlying parallel index set. More... | |
RemoteIndices & | remoteIndices () |
Get the underlying remote indices. More... | |
template<class T1 > | |
void | project (T1 &x) const |
Set vector to zero at copy dofs. More... | |
OwnerOverlapCopyCommunication (MPI_Comm comm_, SolverCategory::Category cat_=SolverCategory::overlapping, bool freecomm_=false) | |
Construct the communication without any indices. More... | |
OwnerOverlapCopyCommunication (SolverCategory::Category cat_=SolverCategory::overlapping) | |
Construct the communication without any indices using MPI_COMM_WORLD. More... | |
OwnerOverlapCopyCommunication (const IndexInfoFromGrid< GlobalIdType, LocalIdType > &indexinfo, MPI_Comm comm_, SolverCategory::Category cat_=SolverCategory::overlapping, bool freecomm_=false) | |
Constructor. More... | |
Friends | |
template<typename M , typename G , typename L > | |
void | loadMatrixMarket (M &, const std::string &, OwnerOverlapCopyCommunication< G, L > &, bool) |
Load a parallel matrix/vector stored in matrix market format. More... | |
Detailed Description
class Dune::OwnerOverlapCopyCommunication< GlobalIdType, LocalIdType >
A class setting up standard communication for a two-valued attribute set with owner/overlap/copy semantics.
set up communication from known distribution with owner/overlap/copy semantics
Constructor & Destructor Documentation
◆ OwnerOverlapCopyCommunication() [1/3]
|
inline |
Construct the communication without any indices.
The local index set and the remote indices have to be set up later on.
- Parameters
-
comm_ The MPI Communicator to use, e. g. MPI_COMM_WORLD cat_ The Solver category, default is overlapping freecomm_ Whether to free the communicator comm_ in the destructor, default is false
◆ OwnerOverlapCopyCommunication() [2/3]
|
inline |
Construct the communication without any indices using MPI_COMM_WORLD.
The local index set and the remote indices have to be set up later on.
- Parameters
-
cat_ The Solver category, default is overlapping is false
◆ OwnerOverlapCopyCommunication() [3/3]
|
inline |
Constructor.
- Parameters
-
indexinfo The set of IndexTripels describing the local and remote indices. comm_ The communicator to use in the communication. cat_ The Solver category, default is overlapping freecomm_ Whether to free the communicator comm_ in the destructor, default is false
References Dune::ParallelIndexSet< TG, TL, N >::add(), Dune::ParallelIndexSet< TG, TL, N >::begin(), Dune::ParallelIndexSet< TG, TL, N >::beginResize(), DUNE_THROW, Dune::ParallelIndexSet< TG, TL, N >::end(), Dune::ParallelIndexSet< TG, TL, N >::endResize(), Dune::RemoteIndexListModifier< T, A, mode >::insert(), Dune::IndexInfoFromGrid< G, L >::localIndices(), Dune::IndexInfoFromGrid< G, L >::remoteIndices(), and Dune::RemoteIndices< T, A >::setIndexSets().
Member Function Documentation
◆ addOwnerCopyToAll()
|
inline |
Communicate values from owner and copy data points to all other data points and add them to those values.
source The data to send from.
dest The data to add them communicated values to.
References Dune::BufferedCommunicator::free().
◆ addOwnerCopyToOwnerCopy()
|
inline |
Communicate values from owner and copy data points to owner and copy data points and add them to those values.
source The data to send from.
dest The data to add the communicated values to.
References Dune::BufferedCommunicator::free().
◆ addOwnerOverlapToAll()
|
inline |
Communicate values from owner data points to all other data points and add them to those values.
source The data to send from.
dest The data to add them communicated values to.
References Dune::BufferedCommunicator::free().
◆ category()
|
inline |
Get Solver Category.
- Returns
- The Solver Category.
◆ copyCopyToAll()
|
inline |
Communicate values from copy data points to all other data points.
source The data to send from.
dest The data to send to.
References Dune::BufferedCommunicator::free().
Referenced by Dune::graphRepartition().
◆ copyOwnerToAll()
|
inline |
Communicate values from owner data points to all other data points.
source The data to send from.
dest The data to send to.
References Dune::BufferedCommunicator::free().
Referenced by Dune::graphRepartition().
◆ dot()
|
inline |
Compute a global dot product of two vectors.
- Parameters
-
x The first vector of the product. y The second vector of the product. result Reference to store the result in.
References Dune::ParallelIndexSet< TG, TL, N >::begin(), Dune::ParallelIndexSet< TG, TL, N >::end(), and Dune::Communication< MPI_Comm >::sum().
◆ indexSet() [1/2]
|
inline |
Get the underlying parallel index set.
- Returns
- The underlying parallel index set.
◆ indexSet() [2/2]
|
inline |
Get the underlying parallel index set.
- Returns
- The underlying parallel index set.
Referenced by Dune::graphRepartition().
◆ norm()
|
inline |
Compute the global Euclidean norm of a vector.
- Parameters
-
x The vector to compute the norm of.
- Returns
- The global Euclidean norm of that vector.
References Dune::ParallelIndexSet< TG, TL, N >::begin(), and Dune::ParallelIndexSet< TG, TL, N >::end().
◆ project()
|
inline |
Set vector to zero at copy dofs.
- Parameters
-
x The vector to project.
References Dune::ParallelIndexSet< TG, TL, N >::begin(), and Dune::ParallelIndexSet< TG, TL, N >::end().
◆ remoteIndices() [1/2]
|
inline |
Get the underlying remote indices.
- Returns
- The underlying remote indices.
◆ remoteIndices() [2/2]
|
inline |
Get the underlying remote indices.
- Returns
- The underlying remote indices.
Friends And Related Function Documentation
◆ loadMatrixMarket
|
friend |
Load a parallel matrix/vector stored in matrix market format.
More about the matrix market exchange format can be found here.
- Parameters
-
matrix Where to store the matrix/vector. filename the name of the filename (without suffix and rank!) rank i will read the file filename_i.mm comm The information about the data distribution. readIndices Whether to read the parallel index information. If true rank i reads the index information form file filename_i.idx And builds the remote indices information.
The documentation for this class was generated from the following files:
- dune/common/parallel/remoteindices.hh
- dune/istl/owneroverlapcopy.hh