8 #ifndef DISTRIBUTION_GENERALDISTRIBUTIONACCUMULATOR_H_
9 #define DISTRIBUTION_GENERALDISTRIBUTIONACCUMULATOR_H_
14 #include "eckit/mpi/Comm.h"
15 #include "ioda/distribution/Accumulator.h"
25 const std::vector<bool> &patchObs)
29 void addTerm(std::size_t loc,
const T &term)
override {
36 comm_.allReduceInPlace(result, eckit::mpi::sum());
51 const eckit::mpi::Comm &comm,
52 const std::vector<bool> &patchObs)
56 void addTerm(std::size_t loc,
const std::vector<T> &term)
override {
61 for (std::size_t i = 0, n =
localResult_.size(); i < n; ++i)
66 void addTerm(std::size_t loc, std::size_t item,
const T &term)
override {
73 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 loc, std::size_t item, const T &term) override
Increment the ith sum with the contribution term of location loc held on the current PE.
const eckit::mpi::Comm & comm_
std::vector< T > computeResult() const override
Return the sums of contributions associated with locations held on all PEs (each taken into account o...
const std::vector< bool > & patchObs_
GeneralDistributionAccumulator(const std::vector< T > &init, const eckit::mpi::Comm &comm, const std::vector< bool > &patchObs)
Note: only the length of the init vector matters – the values of its elements are ignored.
void addTerm(std::size_t loc, 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 > localResult_
Implementation of the Accumulator interface suitable for any (possibly overlapping) distribution,...
T computeResult() const override
Return the sum of contributions associated with locations held on all PEs (each taken into account on...
const std::vector< bool > & patchObs_
GeneralDistributionAccumulator(const T &, const eckit::mpi::Comm &comm, const std::vector< bool > &patchObs)
const eckit::mpi::Comm & comm_
void addTerm(std::size_t loc, const T &term) override
Increment the sum with the contribution term of location loc held on the current PE.