8 #ifndef DISTRIBUTION_NONOVERLAPPINGDISTRIBUTION_H_
9 #define DISTRIBUTION_NONOVERLAPPINGDISTRIBUTION_H_
13 #include "eckit/mpi/Comm.h"
14 #include "oops/util/Logger.h"
16 #include "ioda/distribution/Distribution.h"
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;
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;
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;
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;
72 void reductionImpl(T & x, eckit::mpi::Operation::Code op)
const;
75 void reductionImpl(std::vector<T> & x, eckit::mpi::Operation::Code op)
const;
77 std::unique_ptr<Accumulator<int>>
79 std::unique_ptr<Accumulator<std::size_t>>
81 std::unique_ptr<Accumulator<float>>
83 std::unique_ptr<Accumulator<double>>
85 std::unique_ptr<Accumulator<std::vector<int>>>
87 std::unique_ptr<Accumulator<std::vector<std::size_t>>>
89 std::unique_ptr<Accumulator<std::vector<float>>>
91 std::unique_ptr<Accumulator<std::vector<double>>>
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)
~NonoverlappingDistribution() override
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 ...
size_t numLocationsOnLowerRanks_
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.
size_t numLocationsOnThisRank_
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