IODA
ioda::InefficientDistribution Class Reference

Inefficient distribution. More...

#include <InefficientDistribution.h>

Inheritance diagram for ioda::InefficientDistribution:
Collaboration diagram for ioda::InefficientDistribution:

Public Member Functions

 InefficientDistribution (const eckit::mpi::Comm &Comm, const eckit::Configuration &config)
 
 ~InefficientDistribution ()
 
bool isIdentity () const override
 Returns true if the distribution assigns all records to all PEs, false otherwise. More...
 
bool isMyRecord (std::size_t RecNum) const override
 Returns true if record RecNum has been assigned to the calling PE during a previous call to assignRecord(). More...
 
void patchObs (std::vector< bool > &) const override
 Sets each element of the provided vector to true if the corresponding location is a "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...
 
std::string name () const override
 
- Public Member Functions inherited from ioda::Distribution
 Distribution (const eckit::mpi::Comm &Comm)
 
virtual ~Distribution ()
 
virtual bool isNonoverlapping () const
 Returns true if the distribution does not assign any record to more than one PE, false otherwise. More...
 
virtual void assignRecord (const std::size_t RecNum, const std::size_t LocNum, const eckit::geometry::Point2 &point)
 If the record RecNum has not yet been assigned to a PE, assigns it to the appropriate PE. More...
 
virtual void computePatchLocs ()
 If necessary, identifies locations of "patch obs", i.e. 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...
 

Private Member Functions

std::unique_ptr< Accumulator< int > > createAccumulatorImpl (int init) const override
 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...
 
std::unique_ptr< Accumulator< std::size_t > > createAccumulatorImpl (std::size_t init) const override
 
std::unique_ptr< Accumulator< float > > createAccumulatorImpl (float init) const override
 
std::unique_ptr< Accumulator< double > > createAccumulatorImpl (double init) const override
 
std::unique_ptr< Accumulator< std::vector< int > > > createAccumulatorImpl (const std::vector< int > &init) const override
 Create an object that can be used to calculate the sums of multiple location-dependent quantities over locations held on all PEs, each taken into account only once even if it's held on multiple PEs. More...
 
std::unique_ptr< Accumulator< std::vector< std::size_t > > > createAccumulatorImpl (const std::vector< std::size_t > &init) const override
 
std::unique_ptr< Accumulator< std::vector< float > > > createAccumulatorImpl (const std::vector< float > &init) const override
 
std::unique_ptr< Accumulator< std::vector< double > > > createAccumulatorImpl (const std::vector< double > &init) const override
 
template<typename T >
std::unique_ptr< Accumulator< T > > createAccumulatorImplT (const T &init) const
 

Private Attributes

const std::string distName_ = "InefficientDistribution"
 

Additional Inherited Members

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

Detailed Description

Inefficient distribution.

This class implements distribution that has copies of all observations on each processor (to be used for testing)

Definition at line 29 of file InefficientDistribution.h.

Constructor & Destructor Documentation

◆ InefficientDistribution()

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

Definition at line 29 of file InefficientDistribution.cc.

◆ ~InefficientDistribution()

ioda::InefficientDistribution::~InefficientDistribution ( )

Definition at line 36 of file InefficientDistribution.cc.

Member Function Documentation

◆ allGatherv() [1/6]

void ioda::InefficientDistribution::allGatherv ( std::vector< double > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 66 of file InefficientDistribution.h.

◆ allGatherv() [2/6]

void ioda::InefficientDistribution::allGatherv ( std::vector< float > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 65 of file InefficientDistribution.h.

◆ allGatherv() [3/6]

void ioda::InefficientDistribution::allGatherv ( std::vector< int > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 64 of file InefficientDistribution.h.

◆ allGatherv() [4/6]

void ioda::InefficientDistribution::allGatherv ( std::vector< size_t > &  x) const
inlineoverridevirtual

Gather observation data from all processes and deliver the combined data to all processes.

Parameters
[in,out]xOn input: a vector whose ith element is associated with the ith observation held by the calling process. On output: a concatenation of the vectors x passed by all calling processes, with duplicates removed (i.e. if any observations are duplicated across multiple processes, the elements of x corresponding to these data are included only once).

Implements ioda::Distribution.

Definition at line 63 of file InefficientDistribution.h.

◆ allGatherv() [5/6]

void ioda::InefficientDistribution::allGatherv ( std::vector< std::string > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 68 of file InefficientDistribution.h.

◆ allGatherv() [6/6]

void ioda::InefficientDistribution::allGatherv ( std::vector< util::DateTime > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 67 of file InefficientDistribution.h.

◆ createAccumulatorImpl() [1/8]

std::unique_ptr< Accumulator< std::vector< double > > > ioda::InefficientDistribution::createAccumulatorImpl ( const std::vector< double > &  init) const
overrideprivatevirtual

Implements ioda::Distribution.

Definition at line 88 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [2/8]

std::unique_ptr< Accumulator< std::vector< float > > > ioda::InefficientDistribution::createAccumulatorImpl ( const std::vector< float > &  init) const
overrideprivatevirtual

Implements ioda::Distribution.

Definition at line 83 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [3/8]

std::unique_ptr< Accumulator< std::vector< int > > > ioda::InefficientDistribution::createAccumulatorImpl ( const std::vector< int > &  init) const
overrideprivatevirtual

Create an object that can be used to calculate the sums of multiple location-dependent quantities over locations held on all PEs, each taken into account only once even if it's held on multiple PEs.

Parameters
initA vector of as many elements as there are sums to calculate. The values of these elements are ignored.

Implements ioda::Distribution.

Definition at line 73 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [4/8]

std::unique_ptr< Accumulator< std::vector< std::size_t > > > ioda::InefficientDistribution::createAccumulatorImpl ( const std::vector< std::size_t > &  init) const
overrideprivatevirtual

Implements ioda::Distribution.

Definition at line 78 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [5/8]

std::unique_ptr< Accumulator< double > > ioda::InefficientDistribution::createAccumulatorImpl ( double  init) const
overrideprivatevirtual

Implements ioda::Distribution.

Definition at line 68 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [6/8]

std::unique_ptr< Accumulator< float > > ioda::InefficientDistribution::createAccumulatorImpl ( float  init) const
overrideprivatevirtual

Implements ioda::Distribution.

Definition at line 63 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [7/8]

std::unique_ptr< Accumulator< int > > ioda::InefficientDistribution::createAccumulatorImpl ( int  init) const
overrideprivatevirtual

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.

Parameters
initUsed only to select the right overload – the value is ignored.

Implements ioda::Distribution.

Definition at line 53 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImpl() [8/8]

std::unique_ptr< Accumulator< std::size_t > > ioda::InefficientDistribution::createAccumulatorImpl ( std::size_t  init) const
overrideprivatevirtual

Implements ioda::Distribution.

Definition at line 58 of file InefficientDistribution.cc.

Here is the call graph for this function:

◆ createAccumulatorImplT()

template<typename T >
std::unique_ptr< Accumulator< T > > ioda::InefficientDistribution::createAccumulatorImplT ( const T &  init) const
private

Definition at line 94 of file InefficientDistribution.cc.

Here is the caller graph for this function:

◆ globalUniqueConsecutiveLocationIndex()

size_t ioda::InefficientDistribution::globalUniqueConsecutiveLocationIndex ( size_t  loc) const
overridevirtual

Map the index of a location held on the calling process to the index of the corresponding element of any vector produced by allGatherv().

Implements ioda::Distribution.

Definition at line 99 of file InefficientDistribution.cc.

◆ isIdentity()

bool ioda::InefficientDistribution::isIdentity ( ) const
inlineoverridevirtual

Returns true if the distribution assigns all records to all PEs, false otherwise.

Reimplemented from ioda::Distribution.

Definition at line 35 of file InefficientDistribution.h.

◆ isMyRecord()

bool ioda::InefficientDistribution::isMyRecord ( std::size_t  RecNum) const
inlineoverridevirtual

Returns true if record RecNum has been assigned to the calling PE during a previous call to assignRecord().

Clients can use this function to determine which records to keep when reading in observations.

Implements ioda::Distribution.

Definition at line 37 of file InefficientDistribution.h.

◆ max() [1/8]

void ioda::InefficientDistribution::max ( double &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 56 of file InefficientDistribution.h.

◆ max() [2/8]

void ioda::InefficientDistribution::max ( float &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 55 of file InefficientDistribution.h.

◆ max() [3/8]

void ioda::InefficientDistribution::max ( int &  x) const
inlineoverridevirtual

Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.

Parameters
[in,out]xOn input, the local maximum (over all locations on the current PE) of a location-dependent quantity. On output, its global maximum.

Implements ioda::Distribution.

Definition at line 53 of file InefficientDistribution.h.

◆ max() [4/8]

void ioda::InefficientDistribution::max ( std::size_t &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 54 of file InefficientDistribution.h.

◆ max() [5/8]

void ioda::InefficientDistribution::max ( std::vector< double > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 60 of file InefficientDistribution.h.

◆ max() [6/8]

void ioda::InefficientDistribution::max ( std::vector< float > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 59 of file InefficientDistribution.h.

◆ max() [7/8]

void ioda::InefficientDistribution::max ( std::vector< int > &  x) const
inlineoverridevirtual

Calculates the global maxima (over all locations on all PEs) of multiple location-dependent quantities.

Parameters
[in,out]xOn input, each element of x should be the local maximum (over all locations on the current PE) of a location-dependent quantity. On output, that element will be set to the global maximum of that quantity.

Implements ioda::Distribution.

Definition at line 57 of file InefficientDistribution.h.

◆ max() [8/8]

void ioda::InefficientDistribution::max ( std::vector< std::size_t > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 58 of file InefficientDistribution.h.

◆ min() [1/8]

void ioda::InefficientDistribution::min ( double &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 47 of file InefficientDistribution.h.

◆ min() [2/8]

void ioda::InefficientDistribution::min ( float &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 46 of file InefficientDistribution.h.

◆ min() [3/8]

void ioda::InefficientDistribution::min ( int &  x) const
inlineoverridevirtual

Calculates the global minimum (over all locations on all PEs) of a location-dependent quantity.

Parameters
[in,out]xOn input, the local minimum (over all locations on the current PE) of a location-dependent quantity. On output, its global minimum.

Implements ioda::Distribution.

Definition at line 44 of file InefficientDistribution.h.

◆ min() [4/8]

void ioda::InefficientDistribution::min ( std::size_t &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 45 of file InefficientDistribution.h.

◆ min() [5/8]

void ioda::InefficientDistribution::min ( std::vector< double > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 51 of file InefficientDistribution.h.

◆ min() [6/8]

void ioda::InefficientDistribution::min ( std::vector< float > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 50 of file InefficientDistribution.h.

◆ min() [7/8]

void ioda::InefficientDistribution::min ( std::vector< int > &  x) const
inlineoverridevirtual

Calculates the global minima (over all locations on all PEs) of multiple location-dependent quantities.

Parameters
[in,out]xOn input, each element of x should be the local minimum (over all locations on the current PE) of a location-dependent quantity. On output, that element will be set to the global minimum of that quantity.

Implements ioda::Distribution.

Definition at line 48 of file InefficientDistribution.h.

◆ min() [8/8]

void ioda::InefficientDistribution::min ( std::vector< std::size_t > &  x) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 49 of file InefficientDistribution.h.

◆ name()

std::string ioda::InefficientDistribution::name ( ) const
inlineoverridevirtual

Implements ioda::Distribution.

Definition at line 72 of file InefficientDistribution.h.

Here is the caller graph for this function:

◆ patchObs()

void ioda::InefficientDistribution::patchObs ( std::vector< bool > &  isPatchObs) const
overridevirtual

Sets each element of the provided vector to true if the corresponding location is a "patch obs", i.e.

it belongs to a record owned by this PE, and to false otherwise.

Parameters
isPatchObsPreallocated vector of as many elements as there are locations on this PE.

Implements ioda::Distribution.

Definition at line 41 of file InefficientDistribution.cc.

Member Data Documentation

◆ distName_

const std::string ioda::InefficientDistribution::distName_ = "InefficientDistribution"
private

Definition at line 97 of file InefficientDistribution.h.


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