8 #include "ioda/distribution/NonoverlappingDistribution.h"
15 #include <boost/make_unique.hpp>
17 #include "ioda/distribution/DistributionFactory.h"
18 #include "ioda/distribution/NonoverlappingDistributionAccumulator.h"
19 #include "oops/mpi/mpi.h"
20 #include "oops/util/DateTime.h"
21 #include "oops/util/Logger.h"
28 oops::Log::trace() <<
"NonoverlappingDistribution constructed" << std::endl;
33 oops::Log::trace() <<
"NonoverlappingDistribution destructed" << std::endl;
39 const eckit::geometry::Point2 & ) {
52 std::fill(patchObsVec.begin(), patchObsVec.end(),
true);
126 template <
typename T>
132 template <
typename T>
134 comm_.allReduceInPlace(x, op);
137 template <
typename T>
139 eckit::mpi::Operation::Code op)
const {
140 comm_.allReduceInPlace(x.begin(), x.end(), op);
144 std::unique_ptr<Accumulator<int>>
149 std::unique_ptr<Accumulator<std::size_t>>
154 std::unique_ptr<Accumulator<float>>
159 std::unique_ptr<Accumulator<double>>
164 std::unique_ptr<Accumulator<std::vector<int>>>
169 std::unique_ptr<Accumulator<std::vector<std::size_t>>>
174 std::unique_ptr<Accumulator<std::vector<float>>>
179 std::unique_ptr<Accumulator<std::vector<double>>>
184 template <
typename T>
185 std::unique_ptr<Accumulator<T>>
187 return boost::make_unique<NonoverlappingDistributionAccumulator<T>>(init,
comm_);
193 oops::mpi::allGatherv(
comm_, x);
198 oops::mpi::allGatherv(
comm_, x);
203 oops::mpi::allGatherv(
comm_, x);
208 oops::mpi::allGatherv(
comm_, x);
213 oops::mpi::allGatherv(
comm_, x);
218 oops::mpi::allGatherv(
comm_, x);
class for distributing obs across multiple process elements
const eckit::mpi::Comm & comm_
Local MPI communicator.
virtual bool isMyRecord(std::size_t RecNum) const =0
Returns true if record RecNum has been assigned to the calling PE during a previous call to assignRec...
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.
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