IODA
ioda::RoundRobin Class Reference

Round robin distribution. More...

#include <RoundRobin.h>

Inheritance diagram for ioda::RoundRobin:
Collaboration diagram for ioda::RoundRobin:

Public Member Functions

 RoundRobin (const eckit::mpi::Comm &Comm, const eckit::Configuration &config)
 
 ~RoundRobin () override
 
bool isMyRecord (std::size_t RecNum) const override
 Round-robin selector. More...
 
std::string name () const override
 
- Public Member Functions inherited from ioda::NonoverlappingDistribution
 NonoverlappingDistribution (const eckit::mpi::Comm &Comm)
 
 ~NonoverlappingDistribution () override
 
bool isNonoverlapping () const override
 Returns true if the distribution does not assign any record to more than one PE, false otherwise. More...
 
void assignRecord (const std::size_t RecNum, const std::size_t LocNum, const eckit::geometry::Point2 &point) override
 If the record RecNum has not yet been assigned to a PE, assigns it to the appropriate PE. More...
 
void patchObs (std::vector< bool > &patchObsVec) const override
 Sets each element of the provided vector to true if the corresponding location is a "patch obs", i.e. More...
 
void computePatchLocs () override
 If necessary, identifies locations of "patch obs", i.e. More...
 
void min (int &x) const override
 Calculates the global minimum (over all locations on all PEs) of a location-dependent quantity. More...
 
void min (std::size_t &x) const override
 
void min (float &x) const override
 
void min (double &x) const override
 
void min (std::vector< int > &x) const override
 Calculates the global minima (over all locations on all PEs) of multiple location-dependent quantities. More...
 
void min (std::vector< std::size_t > &x) const override
 
void min (std::vector< float > &x) const override
 
void min (std::vector< double > &x) const override
 
void max (int &x) const override
 Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity. More...
 
void max (std::size_t &x) const override
 
void max (float &x) const override
 
void max (double &x) const override
 
void max (std::vector< int > &x) const override
 Calculates the global maxima (over all locations on all PEs) of multiple location-dependent quantities. More...
 
void max (std::vector< std::size_t > &x) const override
 
void max (std::vector< float > &x) const override
 
void max (std::vector< double > &x) const override
 
void allGatherv (std::vector< size_t > &x) const override
 Gather observation data from all processes and deliver the combined data to all processes. More...
 
void allGatherv (std::vector< int > &x) const override
 
void allGatherv (std::vector< float > &x) const override
 
void allGatherv (std::vector< double > &x) const override
 
void allGatherv (std::vector< util::DateTime > &x) const override
 
void allGatherv (std::vector< std::string > &x) const override
 
size_t globalUniqueConsecutiveLocationIndex (size_t loc) const override
 Map the index of a location held on the calling process to the index of the corresponding element of any vector produced by allGatherv(). More...
 
- Public Member Functions inherited from ioda::Distribution
 Distribution (const eckit::mpi::Comm &Comm)
 
virtual ~Distribution ()
 
virtual bool isIdentity () const
 Returns true if the distribution assigns all records to all PEs, false otherwise. More...
 
template<typename T >
std::unique_ptr< Accumulator< T > > createAccumulator () const
 Create an object that can be used to calculate the sum of a location-dependent quantity over locations held on all PEs, each taken into account only once even if it's held on multiple PEs. More...
 
template<typename T >
std::unique_ptr< Accumulator< std::vector< T > > > createAccumulator (std::size_t n) const
 Create an object that can be used to calculate the sums of n location-dependent quantities over locations held on all PEs, each taken into account only once even if it's held on multiple PEs. More...
 
size_t rank () const
 Accessor to MPI rank. More...
 

Additional Inherited Members

- Protected Attributes inherited from ioda::Distribution
const eckit::mpi::Comm & comm_
 Local MPI communicator. More...
 

Detailed Description

Round robin distribution.

This class implements a round-robin style of distribution which optimizes load balancing.

Author
Xin Zhang (JCSDA)

Definition at line 24 of file RoundRobin.h.

Constructor & Destructor Documentation

◆ RoundRobin()

ioda::RoundRobin::RoundRobin ( const eckit::mpi::Comm &  Comm,
const eckit::Configuration &  config 
)

Definition at line 27 of file RoundRobin.cc.

◆ ~RoundRobin()

ioda::RoundRobin::~RoundRobin ( )
override

Definition at line 34 of file RoundRobin.cc.

Member Function Documentation

◆ isMyRecord()

bool ioda::RoundRobin::isMyRecord ( std::size_t  RecNum) const
overridevirtual

Round-robin selector.

This method distributes observations according to a round-robin scheme. The round-robin scheme simply selects all locations where the modulus of the record number relative to the number of process elements equals the rank of the process element we are running on. This does a good job of distributing the observations evenly across processors which optimizes the load balancing.

Parameters
[in]RecNumRecord number, checked if belongs on this process element

Implements ioda::Distribution.

Definition at line 56 of file RoundRobin.cc.

◆ name()

std::string ioda::RoundRobin::name ( ) const
overridevirtual

Implements ioda::Distribution.

Definition at line 39 of file RoundRobin.cc.

Here is the caller graph for this function:

The documentation for this class was generated from the following files: