8 #ifndef DISTRIBUTION_NONOVERLAPPINGDISTRIBUTIONACCUMULATOR_H_
9 #define DISTRIBUTION_NONOVERLAPPINGDISTRIBUTIONACCUMULATOR_H_
14 #include "eckit/mpi/Comm.h"
15 #include "ioda/distribution/Accumulator.h"
27 void addTerm(std::size_t ,
const T &term)
override {
33 comm_.allReduceInPlace(result, eckit::mpi::sum());
50 void addTerm(std::size_t ,
const std::vector<T> &term)
override {
54 for (std::size_t i = 0, n =
localResult_.size(); i < n; ++i)
58 void addTerm(std::size_t , std::size_t item,
const T &term)
override {
64 comm_.allReduceInPlace(result.begin(), result.end(), eckit::mpi::sum());
Calculates the sum of a location-dependent quantity of type T over locations held on all PEs,...
void addTerm(std::size_t, const std::vector< T > &term) override
Increment each sum with the contribution of location loc (held on the current PE) taken from the corr...
std::vector< T > computeResult() const override
Return the sums of contributions associated with locations held on all PEs (each taken into account o...
std::vector< T > localResult_
NonoverlappingDistributionAccumulator(const std::vector< T > &init, const eckit::mpi::Comm &comm)
Note: only the length of the init vector matters – the values of its elements are ignored.
const eckit::mpi::Comm & comm_
void addTerm(std::size_t, std::size_t item, const T &term) override
Increment the ith sum with the contribution term of location loc held on the current PE.
Implementation of the Accumulator interface suitable for the NonoverlappingDistribution.
NonoverlappingDistributionAccumulator(const T &, const eckit::mpi::Comm &comm)
void addTerm(std::size_t, const T &term) override
Increment the sum with the contribution term of location loc held on the current PE.
const eckit::mpi::Comm & comm_
T computeResult() const override
Return the sum of contributions associated with locations held on all PEs (each taken into account on...