IODA
InefficientDistribution.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2019 UCAR
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef DISTRIBUTION_INEFFICIENTDISTRIBUTION_H_
9 #define DISTRIBUTION_INEFFICIENTDISTRIBUTION_H_
10 
11 #include <vector>
12 
13 #include "eckit/mpi/Comm.h"
14 
15 #include "oops/util/Logger.h"
16 
17 #include "ioda/distribution/Distribution.h"
18 
19 namespace ioda {
20 
21 // ---------------------------------------------------------------------
22 /*!
23  * \brief Inefficient distribution
24  *
25  * \details This class implements distribution that has copies of all
26  * observations on each processor (to be used for testing)
27  *
28  */
30  public:
31  explicit InefficientDistribution(const eckit::mpi::Comm & Comm,
32  const eckit::Configuration & config);
34 
35  bool isIdentity() const override {return true;}
36 
37  bool isMyRecord(std::size_t RecNum) const override {return true;};
38 
39  void patchObs(std::vector<bool> &) const override;
40 
41  // The min and max reductions do nothing for the inefficient distribution. Each processor has
42  // all observations, so the local reduction is equal to the global reduction.
43 
44  void min(int & x) const override {}
45  void min(std::size_t & x) const override {}
46  void min(float & x) const override {}
47  void min(double & x) const override {}
48  void min(std::vector<int> & x) const override {}
49  void min(std::vector<std::size_t> & x) const override {}
50  void min(std::vector<float> & x) const override {}
51  void min(std::vector<double> & x) const override {}
52 
53  void max(int & x) const override {}
54  void max(std::size_t & x) const override {}
55  void max(float & x) const override {}
56  void max(double & x) const override {}
57  void max(std::vector<int> & x) const override {}
58  void max(std::vector<std::size_t> & x) const override {}
59  void max(std::vector<float> & x) const override {}
60  void max(std::vector<double> & x) const override {}
61 
62  // Similarly, allGatherv does nothing, since each processor has all observations.
63  void allGatherv(std::vector<size_t> &x) const override {}
64  void allGatherv(std::vector<int> &x) const override {}
65  void allGatherv(std::vector<float> &x) const override {}
66  void allGatherv(std::vector<double> &x) const override {}
67  void allGatherv(std::vector<util::DateTime> &x) const override {}
68  void allGatherv(std::vector<std::string> &x) const override {}
69 
70  size_t globalUniqueConsecutiveLocationIndex(size_t loc) const override;
71 
72  std::string name() const override {return distName_;}
73 
74  private:
75  std::unique_ptr<Accumulator<int>>
76  createAccumulatorImpl(int init) const override;
77  std::unique_ptr<Accumulator<std::size_t>>
78  createAccumulatorImpl(std::size_t init) const override;
79  std::unique_ptr<Accumulator<float>>
80  createAccumulatorImpl(float init) const override;
81  std::unique_ptr<Accumulator<double>>
82  createAccumulatorImpl(double init) const override;
83  std::unique_ptr<Accumulator<std::vector<int>>>
84  createAccumulatorImpl(const std::vector<int> &init) const override;
85  std::unique_ptr<Accumulator<std::vector<std::size_t>>>
86  createAccumulatorImpl(const std::vector<std::size_t> &init) const override;
87  std::unique_ptr<Accumulator<std::vector<float>>>
88  createAccumulatorImpl(const std::vector<float> &init) const override;
89  std::unique_ptr<Accumulator<std::vector<double>>>
90  createAccumulatorImpl(const std::vector<double> &init) const override;
91 
92  private:
93  template <typename T>
94  std::unique_ptr<Accumulator<T>> createAccumulatorImplT(const T &init) const;
95 
96  // dist name
97  const std::string distName_ = "InefficientDistribution";
98 };
99 
100 } // namespace ioda
101 
102 #endif // DISTRIBUTION_INEFFICIENTDISTRIBUTION_H_
class for distributing obs across multiple process elements
void min(std::vector< double > &x) const override
void min(std::vector< std::size_t > &x) const override
void patchObs(std::vector< bool > &) const override
Sets each element of the provided vector to true if the corresponding location is a "patch obs",...
void max(double &x) const override
void max(std::vector< double > &x) const override
void allGatherv(std::vector< util::DateTime > &x) const override
void allGatherv(std::vector< double > &x) const override
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 assignRec...
void max(int &x) const override
Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.
void max(std::size_t &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 ...
void max(float &x) const override
void allGatherv(std::vector< float > &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.
void max(std::vector< int > &x) const override
Calculates the global maxima (over all locations on all PEs) of multiple location-dependent quantitie...
void max(std::vector< float > &x) const override
std::string name() const override
void min(std::vector< float > &x) const override
void allGatherv(std::vector< int > &x) const override
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 location...
void min(std::vector< int > &x) const override
Calculates the global minima (over all locations on all PEs) of multiple location-dependent quantitie...
void min(double &x) const override
void min(float &x) const override
void max(std::vector< std::size_t > &x) const override
void min(std::size_t &x) const override
void min(int &x) const override
Calculates the global minimum (over all locations on all PEs) of a location-dependent quantity.
void allGatherv(std::vector< std::string > &x) const override
bool isIdentity() const override
Returns true if the distribution assigns all records to all PEs, false otherwise.
InefficientDistribution(const eckit::mpi::Comm &Comm, const eckit::Configuration &config)
std::unique_ptr< Accumulator< T > > createAccumulatorImplT(const T &init) const