8 #ifndef DISTRIBUTION_HALO_H_
9 #define DISTRIBUTION_HALO_H_
11 #include <unordered_map>
12 #include <unordered_set>
15 #include "eckit/geometry/Sphere.h"
16 #include "eckit/mpi/Comm.h"
17 #include "oops/util/Logger.h"
19 #include "ioda/distribution/Distribution.h"
36 explicit Halo(
const eckit::mpi::Comm & Comm,
37 const eckit::Configuration & config);
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;
44 void patchObs(std::vector<bool> &)
const override;
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;
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;
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;
83 void reductionImpl(T & x, eckit::mpi::Operation::Code op)
const;
86 void reductionImpl(std::vector<T> & x, eckit::mpi::Operation::Code op)
const;
88 std::unique_ptr<Accumulator<int>>
90 std::unique_ptr<Accumulator<std::size_t>>
92 std::unique_ptr<Accumulator<float>>
94 std::unique_ptr<Accumulator<double>>
96 std::unique_ptr<Accumulator<std::vector<int>>>
98 std::unique_ptr<Accumulator<std::vector<std::size_t>>>
100 std::unique_ptr<Accumulator<std::vector<float>>>
102 std::unique_ptr<Accumulator<std::vector<double>>>
105 template <
typename T>
108 template <
typename T>
112 const std::vector<std::pair<double, int>> &dist_and_lidx_glb);
class for distributing obs across multiple process elements
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 computeGlobalUniqueConsecutiveLocIndices(const std::vector< std::pair< double, int >> &dist_and_lidx_glb)
std::vector< bool > patchObsBool_
void min(int &x) const override
Calculates the global minimum (over all locations on all PEs) of a location-dependent quantity.
std::vector< size_t > haloLocRecords_
void computePatchLocs() override
If necessary, identifies locations of "patch obs", i.e.
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...
const double radius_earth_
void allGatherv(std::vector< size_t > &x) const override
Gather observation data from all processes and deliver the combined data to all processes.
std::unordered_set< std::size_t > recordsInHalo_
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 reductionImpl(T &x, eckit::mpi::Operation::Code op) const
std::unordered_set< std::size_t > recordsOutsideHalo_
void patchObs(std::vector< bool > &) const override
Sets each element of the provided vector to true if the corresponding location is a "patch obs",...
std::unique_ptr< Accumulator< T > > createAccumulatorImplT(const T &init) const
const std::string distName_
std::unordered_map< std::size_t, double > recordDistancesFromCenter_
void max(int &x) const override
Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.
void allGathervImpl(std::vector< T > &x) const
std::vector< size_t > haloLocVector_
Halo(const eckit::mpi::Comm &Comm, const eckit::Configuration &config)
Halo selector.
eckit::geometry::Point2 center_
std::vector< size_t > globalUniqueConsecutiveLocIndices_
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.
std::string name() const override