IODA
Halo.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-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_HALO_H_
9 #define DISTRIBUTION_HALO_H_
10 
11 #include <unordered_map>
12 #include <unordered_set>
13 #include <vector>
14 
15 #include "eckit/geometry/Sphere.h"
16 #include "eckit/mpi/Comm.h"
17 #include "oops/util/Logger.h"
18 
19 #include "ioda/distribution/Distribution.h"
20 
21 namespace ioda {
22 
23 // ---------------------------------------------------------------------
24 /*!
25  * \brief Halo distribution
26  *
27  * \details All obs. are divided into compact overlapping sets assigned to each PE.
28  * Specifically, a record is assigned to a PE if the first location belonging to that record
29  * lies at most a certain distance (controlled by the option `radius`) from the center of the halo
30  * associated with that PE (controlled by the option `center`).
31  *
32  * \author Sergey Frolov (CIRES)
33  */
34 class Halo: public Distribution {
35  public:
36  explicit Halo(const eckit::mpi::Comm & Comm,
37  const eckit::Configuration & config);
38  ~Halo();
39 
40  void assignRecord(const std::size_t RecNum, const std::size_t LocNum,
41  const eckit::geometry::Point2 & point) override;
42  bool isMyRecord(std::size_t RecNum) const override;
43  void computePatchLocs() override;
44  void patchObs(std::vector<bool> &) const override;
45 
46  void min(int & x) const override;
47  void min(std::size_t & x) const override;
48  void min(float & x) const override;
49  void min(double & x) const override;
50  void min(std::vector<int> & x) const override;
51  void min(std::vector<std::size_t> & x) const override;
52  void min(std::vector<float> & x) const override;
53  void min(std::vector<double> & x) const override;
54 
55  void max(int & x) const override;
56  void max(std::size_t & x) const override;
57  void max(float & x) const override;
58  void max(double & x) const override;
59  void max(std::vector<int> & x) const override;
60  void max(std::vector<std::size_t> & x) const override;
61  void max(std::vector<float> & x) const override;
62  void max(std::vector<double> & x) const override;
63 
64  void allGatherv(std::vector<size_t> &x) const override;
65  void allGatherv(std::vector<int> &x) const override;
66  void allGatherv(std::vector<float> &x) const override;
67  void allGatherv(std::vector<double> &x) const override;
68  void allGatherv(std::vector<util::DateTime> &x) const override;
69  void allGatherv(std::vector<std::string> &x) const override;
70 
71  size_t globalUniqueConsecutiveLocationIndex(size_t loc) const override;
72 
73  std::string name() const override {return distName_;}
74 
75  private:
76  template <typename T>
77  void minImpl(T & x) const;
78 
79  template <typename T>
80  void maxImpl(T & x) const;
81 
82  template <typename T>
83  void reductionImpl(T & x, eckit::mpi::Operation::Code op) const;
84 
85  template <typename T>
86  void reductionImpl(std::vector<T> & x, eckit::mpi::Operation::Code op) const;
87 
88  std::unique_ptr<Accumulator<int>>
89  createAccumulatorImpl(int init) const override;
90  std::unique_ptr<Accumulator<std::size_t>>
91  createAccumulatorImpl(std::size_t init) const override;
92  std::unique_ptr<Accumulator<float>>
93  createAccumulatorImpl(float init) const override;
94  std::unique_ptr<Accumulator<double>>
95  createAccumulatorImpl(double init) const override;
96  std::unique_ptr<Accumulator<std::vector<int>>>
97  createAccumulatorImpl(const std::vector<int> &init) const override;
98  std::unique_ptr<Accumulator<std::vector<std::size_t>>>
99  createAccumulatorImpl(const std::vector<std::size_t> &init) const override;
100  std::unique_ptr<Accumulator<std::vector<float>>>
101  createAccumulatorImpl(const std::vector<float> &init) const override;
102  std::unique_ptr<Accumulator<std::vector<double>>>
103  createAccumulatorImpl(const std::vector<double> &init) const override;
104 
105  template <typename T>
106  std::unique_ptr<Accumulator<T>> createAccumulatorImplT(const T &init) const;
107 
108  template <typename T>
109  void allGathervImpl(std::vector<T> &x) const;
110 
112  const std::vector<std::pair<double, int>> &dist_and_lidx_glb);
113 
114  double radius_;
115  eckit::geometry::Point2 center_;
116  // Record numbers held on this PE
117  std::unordered_set<std::size_t> recordsInHalo_;
118  // Indicates which observations held on this PE are "patch obs".
119  std::vector<bool> patchObsBool_;
120  // Maps indices of locations held on this PE to corresponding elements of vectors
121  // produced by allGatherv()
123 
124  // The following four member variables are valid only during record assignment,
125  // i.e. until the call to computePatchLocs().
126 
127  // Record numbers not to be held on this PE
128  std::unordered_set<std::size_t> recordsOutsideHalo_;
129  // The distance of the first location of each record held on this PE
130  // to the center of this PE's halo.
131  std::unordered_map<std::size_t, double> recordDistancesFromCenter_;
132  // Record numbers of locations held on this PE
133  std::vector<size_t> haloLocRecords_;
134  // Indices of locations held on this PE
135  std::vector<size_t> haloLocVector_;
136 
137  // Earth radius in m
138  const double radius_earth_ = 6.371e6;
139  // dist name
140  const std::string distName_ = "Halo";
141 };
142 
143 } // namespace ioda
144 
145 #endif // DISTRIBUTION_HALO_H_
class for distributing obs across multiple process elements
Halo distribution.
Definition: Halo.h:34
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...
Definition: Halo.cc:324
void computeGlobalUniqueConsecutiveLocIndices(const std::vector< std::pair< double, int >> &dist_and_lidx_glb)
Definition: Halo.cc:185
std::vector< bool > patchObsBool_
Definition: Halo.h:119
void min(int &x) const override
Calculates the global minimum (over all locations on all PEs) of a location-dependent quantity.
Definition: Halo.cc:236
std::vector< size_t > haloLocRecords_
Definition: Halo.h:133
void computePatchLocs() override
If necessary, identifies locations of "patch obs", i.e.
Definition: Halo.cc:114
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...
Definition: Halo.cc:109
const double radius_earth_
Definition: Halo.h:138
void allGatherv(std::vector< size_t > &x) const override
Gather observation data from all processes and deliver the combined data to all processes.
Definition: Halo.cc:370
std::unordered_set< std::size_t > recordsInHalo_
Definition: Halo.h:117
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 ...
Definition: Halo.cc:419
void reductionImpl(T &x, eckit::mpi::Operation::Code op) const
Definition: Halo.cc:313
std::unordered_set< std::size_t > recordsOutsideHalo_
Definition: Halo.h:128
void minImpl(T &x) const
Definition: Halo.cc:269
~Halo()
Definition: Halo.cc:74
void patchObs(std::vector< bool > &) const override
Sets each element of the provided vector to true if the corresponding location is a "patch obs",...
Definition: Halo.cc:231
std::unique_ptr< Accumulator< T > > createAccumulatorImplT(const T &init) const
Definition: Halo.cc:365
const std::string distName_
Definition: Halo.h:140
std::unordered_map< std::size_t, double > recordDistancesFromCenter_
Definition: Halo.h:131
double radius_
Definition: Halo.h:114
void max(int &x) const override
Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.
Definition: Halo.cc:274
void allGathervImpl(std::vector< T > &x) const
Definition: Halo.cc:397
std::vector< size_t > haloLocVector_
Definition: Halo.h:135
Halo(const eckit::mpi::Comm &Comm, const eckit::Configuration &config)
Halo selector.
Definition: Halo.cc:42
eckit::geometry::Point2 center_
Definition: Halo.h:115
void maxImpl(T &x) const
Definition: Halo.cc:307
std::vector< size_t > globalUniqueConsecutiveLocIndices_
Definition: Halo.h:122
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.
Definition: Halo.cc:79
std::string name() const override
Definition: Halo.h:73