8 #ifndef DISTRIBUTION_INEFFICIENTDISTRIBUTIONACCUMULATOR_H_
9 #define DISTRIBUTION_INEFFICIENTDISTRIBUTIONACCUMULATOR_H_
14 #include "ioda/distribution/Accumulator.h"
26 void addTerm(std::size_t ,
const T &term)
override {
46 void addTerm(std::size_t ,
const std::vector<T> &term)
override {
50 for (std::size_t i = 0, n =
localResult_.size(); i < n; ++i)
54 void addTerm(std::size_t , std::size_t item,
const T &term)
override {
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...
InefficientDistributionAccumulator(const std::vector< T > &init)
Note: only the length of the init vector matters – the values of its elements are ignored.
std::vector< T > computeResult() const override
Return the sums of contributions associated with locations held on all PEs (each taken into account o...
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.
std::vector< T > localResult_
Implementation of the Accumulator interface suitable for the InefficientDistribution.
T computeResult() const override
Return the sum of contributions associated with locations held on all PEs (each taken into account on...
void addTerm(std::size_t, const T &term) override
Increment the sum with the contribution term of location loc held on the current PE.
InefficientDistributionAccumulator(const T &)