8 #ifndef DISTRIBUTION_MASTERANDREPLICADISTRIBUTION_H_
9 #define DISTRIBUTION_MASTERANDREPLICADISTRIBUTION_H_
11 #include "ioda/distribution/Distribution.h"
37 std::shared_ptr<const Distribution> first,
38 std::shared_ptr<const Distribution> second,
39 std::size_t firstNumLocs,
40 std::size_t secondRecordNumOffset);
45 void assignRecord(
const std::size_t RecNum,
const std::size_t LocNum,
46 const eckit::geometry::Point2 & point)
override;
47 bool isMyRecord(std::size_t RecNum)
const override;
48 void patchObs(std::vector<bool> &)
const override;
50 void min(
int & x)
const override;
51 void min(std::size_t & x)
const override;
52 void min(
float & x)
const override;
53 void min(
double & x)
const override;
54 void min(std::vector<int> & x)
const override;
55 void min(std::vector<std::size_t> & x)
const override;
56 void min(std::vector<float> & x)
const override;
57 void min(std::vector<double> & x)
const override;
59 void max(
int & x)
const override;
60 void max(std::size_t & x)
const override;
61 void max(
float & x)
const override;
62 void max(
double & x)
const override;
63 void max(std::vector<int> & x)
const override;
64 void max(std::vector<std::size_t> & x)
const override;
65 void max(std::vector<float> & x)
const override;
66 void max(std::vector<double> & x)
const override;
68 void allGatherv(std::vector<size_t> &x)
const override;
69 void allGatherv(std::vector<int> &x)
const override;
70 void allGatherv(std::vector<float> &x)
const override;
71 void allGatherv(std::vector<double> &x)
const override;
72 void allGatherv(std::vector<util::DateTime> &x)
const override;
73 void allGatherv(std::vector<std::string> &x)
const override;
77 std::string
name()
const override {
return "PairOfDistributions"; }
86 std::unique_ptr<Accumulator<int>>
88 std::unique_ptr<Accumulator<std::size_t>>
90 std::unique_ptr<Accumulator<float>>
92 std::unique_ptr<Accumulator<double>>
94 std::unique_ptr<Accumulator<std::vector<int>>>
96 std::unique_ptr<Accumulator<std::vector<std::size_t>>>
98 std::unique_ptr<Accumulator<std::vector<float>>>
100 std::unique_ptr<Accumulator<std::vector<double>>>
103 template <
typename T>
106 template <
typename T>
109 template <
typename T>
112 std::shared_ptr<const Distribution>
first_;
class for distributing obs across multiple process elements
Represents a concatenation of locations and records from two distributions.
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...
void allGatherv(std::vector< size_t > &x) const override
Gather observation data from all processes and deliver the combined data to all processes.
std::size_t secondGlobalUniqueConsecutiveLocationIndexOffset_
std::size_t firstNumLocs_
std::string name() const override
void allGathervImpl(std::vector< T > &x) 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
std::shared_ptr< const Distribution > second_
~PairOfDistributions() override
std::size_t secondRecordNumOffset_
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< 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::shared_ptr< const Distribution > first_
std::unique_ptr< Accumulator< T > > createScalarAccumulator() const
void max(int &x) const override
Calculates the global maximum (over all locations on all PEs) of a location-dependent quantity.
std::unique_ptr< Accumulator< std::vector< T > > > createVectorAccumulator(std::size_t n) const
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 ...
PairOfDistributions(const eckit::mpi::Comm &comm, std::shared_ptr< const Distribution > first, std::shared_ptr< const Distribution > second, std::size_t firstNumLocs, std::size_t secondRecordNumOffset)
Create a PairOfDistributions object.