8 #ifndef DISTRIBUTION_PAIROFDISTRIBUTIONSACCUMULATOR_H_
9 #define DISTRIBUTION_PAIROFDISTRIBUTIONSACCUMULATOR_H_
14 #include "ioda/distribution/Accumulator.h"
25 std::size_t firstNumLocs)
31 void addTerm(std::size_t loc,
const T &term)
override {
52 std::unique_ptr<
Accumulator<std::vector<T>>> firstAccumulator,
53 std::unique_ptr<
Accumulator<std::vector<T>>> secondAccumulator,
54 std::size_t firstNumLocs)
60 void addTerm(std::size_t loc,
const std::vector<T> &term)
override {
67 void addTerm(std::size_t loc, std::size_t item,
const T &term)
override {
77 for (std::size_t i = 0, n = result.size(); i < n; ++i)
78 result[i] += secondResult[i];
Calculates the sum of a location-dependent quantity of type T over locations held on all PEs,...
std::unique_ptr< Accumulator< std::vector< T > > > firstAccumulator_
std::size_t firstNumLocs_
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 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.
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...
PairOfDistributionsAccumulator(std::unique_ptr< Accumulator< std::vector< T >>> firstAccumulator, std::unique_ptr< Accumulator< std::vector< T >>> secondAccumulator, std::size_t firstNumLocs)
std::unique_ptr< Accumulator< std::vector< T > > > secondAccumulator_
Implementation of the Accumulator interface suitable for the PairOfDistributions.
T computeResult() const override
Return the sum of contributions associated with locations held on all PEs (each taken into account on...
PairOfDistributionsAccumulator(std::unique_ptr< Accumulator< T >> firstAccumulator, std::unique_ptr< Accumulator< T >> secondAccumulator, std::size_t firstNumLocs)
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.
std::size_t firstNumLocs_
std::unique_ptr< Accumulator< T > > firstAccumulator_
std::unique_ptr< Accumulator< T > > secondAccumulator_