8 #ifndef DISTRIBUTION_REPLICAOFGENERALDISTRIBUTION_H_
9 #define DISTRIBUTION_REPLICAOFGENERALDISTRIBUTION_H_
11 #include <unordered_set>
14 #include "ioda/distribution/Distribution.h"
21 std::shared_ptr<const Distribution> masterDist,
22 const std::vector<std::size_t> &masterRecordNumbers);
25 void assignRecord(
const std::size_t RecNum,
const std::size_t LocNum,
26 const eckit::geometry::Point2 & point)
override;
27 bool isMyRecord(std::size_t RecNum)
const override;
29 void patchObs(std::vector<bool> &)
const override;
31 void min(
int & x)
const override;
32 void min(std::size_t & x)
const override;
33 void min(
float & x)
const override;
34 void min(
double & x)
const override;
35 void min(std::vector<int> & x)
const override;
36 void min(std::vector<std::size_t> & x)
const override;
37 void min(std::vector<float> & x)
const override;
38 void min(std::vector<double> & x)
const override;
40 void max(
int & x)
const override;
41 void max(std::size_t & x)
const override;
42 void max(
float & x)
const override;
43 void max(
double & x)
const override;
44 void max(std::vector<int> & x)
const override;
45 void max(std::vector<std::size_t> & x)
const override;
46 void max(std::vector<float> & x)
const override;
47 void max(std::vector<double> & x)
const override;
49 void allGatherv(std::vector<size_t> &x)
const override;
50 void allGatherv(std::vector<int> &x)
const override;
51 void allGatherv(std::vector<float> &x)
const override;
52 void allGatherv(std::vector<double> &x)
const override;
53 void allGatherv(std::vector<util::DateTime> &x)
const override;
54 void allGatherv(std::vector<std::string> &x)
const override;
58 std::string
name()
const override {
return "ReplicaOfGeneralDistribution"; }
68 void reductionImpl(T & x, eckit::mpi::Operation::Code op)
const;
71 void reductionImpl(std::vector<T> & x, eckit::mpi::Operation::Code op)
const;
73 std::unique_ptr<Accumulator<int>>
75 std::unique_ptr<Accumulator<std::size_t>>
77 std::unique_ptr<Accumulator<float>>
79 std::unique_ptr<Accumulator<double>>
81 std::unique_ptr<Accumulator<std::vector<int>>>
83 std::unique_ptr<Accumulator<std::vector<std::size_t>>>
85 std::unique_ptr<Accumulator<std::vector<float>>>
87 std::unique_ptr<Accumulator<std::vector<double>>>
97 const std::vector<std::pair<double, int>> &dist_and_lidx_glb);
class for distributing obs across multiple process elements
ReplicaOfGeneralDistribution(const eckit::mpi::Comm &comm, std::shared_ptr< const Distribution > masterDist, const std::vector< std::size_t > &masterRecordNumbers)
std::unordered_set< std::size_t > myRecords_
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.
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...
std::string name() const override
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 > globalUniqueConsecutiveLocIndices_
void reductionImpl(T &x, eckit::mpi::Operation::Code op) const
void allGatherv(std::vector< size_t > &x) const override
Gather observation data from all processes and deliver the combined data to all processes.
void computePatchLocs() override
If necessary, identifies locations of "patch obs", i.e.
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 allGathervImpl(std::vector< T > &x) const
std::size_t numMasterLocs_
std::unordered_set< std::size_t > masterPatchRecords_
std::vector< std::size_t > myGlobalLocs_
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 computeGlobalUniqueConsecutiveLocIndices(const std::vector< std::pair< double, int >> &dist_and_lidx_glb)
~ReplicaOfGeneralDistribution() override
std::vector< bool > isMyPatchObs_
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...
std::unique_ptr< Accumulator< T > > createAccumulatorImplT(const T &init) const
std::shared_ptr< const Distribution > masterDist_
void max(int &x) const override
Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.