IODA
NonoverlappingDistribution.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2021 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_NONOVERLAPPINGDISTRIBUTION_H_
9 #define DISTRIBUTION_NONOVERLAPPINGDISTRIBUTION_H_
10 
11 #include <vector>
12 
13 #include "eckit/mpi/Comm.h"
14 #include "oops/util/Logger.h"
15 
16 #include "ioda/distribution/Distribution.h"
17 
18 namespace ioda {
19 
20 // ---------------------------------------------------------------------
21 /*!
22  * \brief Implements some methods of Distribution in a manner suitable for distributions
23  * storing each observation on one and only one process.
24  */
26  public:
27  explicit NonoverlappingDistribution(const eckit::mpi::Comm & Comm);
28  ~NonoverlappingDistribution() override;
29 
30  bool isNonoverlapping() const override { return true; }
31 
32  void assignRecord(const std::size_t RecNum, const std::size_t LocNum,
33  const eckit::geometry::Point2 & point) override;
34  void patchObs(std::vector<bool> & patchObsVec) const override;
35  void computePatchLocs() override;
36 
37  void min(int & x) const override;
38  void min(std::size_t & x) const override;
39  void min(float & x) const override;
40  void min(double & x) const override;
41  void min(std::vector<int> & x) const override;
42  void min(std::vector<std::size_t> & x) const override;
43  void min(std::vector<float> & x) const override;
44  void min(std::vector<double> & x) const override;
45 
46  void max(int & x) const override;
47  void max(std::size_t & x) const override;
48  void max(float & x) const override;
49  void max(double & x) const override;
50  void max(std::vector<int> & x) const override;
51  void max(std::vector<std::size_t> & x) const override;
52  void max(std::vector<float> & x) const override;
53  void max(std::vector<double> & x) const override;
54 
55  void allGatherv(std::vector<size_t> &x) const override;
56  void allGatherv(std::vector<int> &x) const override;
57  void allGatherv(std::vector<float> &x) const override;
58  void allGatherv(std::vector<double> &x) const override;
59  void allGatherv(std::vector<util::DateTime> &x) const override;
60  void allGatherv(std::vector<std::string> &x) const override;
61 
62  size_t globalUniqueConsecutiveLocationIndex(size_t loc) const override;
63 
64  private:
65  template <typename T>
66  void minImpl(T & x) const;
67 
68  template <typename T>
69  void maxImpl(T & x) const;
70 
71  template <typename T>
72  void reductionImpl(T & x, eckit::mpi::Operation::Code op) const;
73 
74  template <typename T>
75  void reductionImpl(std::vector<T> & x, eckit::mpi::Operation::Code op) const;
76 
77  std::unique_ptr<Accumulator<int>>
78  createAccumulatorImpl(int init) const override;
79  std::unique_ptr<Accumulator<std::size_t>>
80  createAccumulatorImpl(std::size_t init) const override;
81  std::unique_ptr<Accumulator<float>>
82  createAccumulatorImpl(float init) const override;
83  std::unique_ptr<Accumulator<double>>
84  createAccumulatorImpl(double init) const override;
85  std::unique_ptr<Accumulator<std::vector<int>>>
86  createAccumulatorImpl(const std::vector<int> &init) const override;
87  std::unique_ptr<Accumulator<std::vector<std::size_t>>>
88  createAccumulatorImpl(const std::vector<std::size_t> &init) const override;
89  std::unique_ptr<Accumulator<std::vector<float>>>
90  createAccumulatorImpl(const std::vector<float> &init) const override;
91  std::unique_ptr<Accumulator<std::vector<double>>>
92  createAccumulatorImpl(const std::vector<double> &init) const override;
93 
94  template <typename T>
95  std::unique_ptr<Accumulator<T>> createAccumulatorImplT(const T &init) const;
96 
97  private:
100 };
101 
102 } // namespace ioda
103 
104 #endif // DISTRIBUTION_NONOVERLAPPINGDISTRIBUTION_H_
class for distributing obs across multiple process elements
Implements some methods of Distribution in a manner suitable for distributions storing each observati...
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",...
NonoverlappingDistribution(const eckit::mpi::Comm &Comm)
void computePatchLocs() override
If necessary, identifies locations of "patch obs", i.e.
void max(int &x) const override
Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.
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 ...
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 allGatherv(std::vector< size_t > &x) const override
Gather observation data from all processes and deliver the combined data to all processes.
bool isNonoverlapping() const override
Returns true if the distribution does not assign any record to more than one PE, false otherwise.
std::unique_ptr< Accumulator< T > > createAccumulatorImplT(const T &init) const
void min(int &x) const override
Calculates the global minimum (over all locations on all PEs) of a location-dependent quantity.
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.
void reductionImpl(T &x, eckit::mpi::Operation::Code op) const