IODA
InefficientDistributionAccumulator.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2021, Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef DISTRIBUTION_INEFFICIENTDISTRIBUTIONACCUMULATOR_H_
9 #define DISTRIBUTION_INEFFICIENTDISTRIBUTIONACCUMULATOR_H_
10 
11 #include <cassert>
12 #include <vector>
13 
14 #include "ioda/distribution/Accumulator.h"
15 
16 namespace ioda {
17 
18 /// \brief Implementation of the Accumulator interface suitable for the InefficientDistribution.
19 template <typename T>
21  public:
23  : localResult_(0)
24  {}
25 
26  void addTerm(std::size_t /*loc*/, const T &term) override {
27  localResult_ += term;
28  }
29 
30  T computeResult() const override {
31  return localResult_;
32  }
33 
34  private:
36 };
37 
38 template <typename T>
39 class InefficientDistributionAccumulator<std::vector<T>> : public Accumulator<std::vector<T>> {
40  public:
41  /// Note: only the length of the `init` vector matters -- the values of its elements are ignored.
42  explicit InefficientDistributionAccumulator(const std::vector<T> &init)
43  : localResult_(init.size(), 0)
44  {}
45 
46  void addTerm(std::size_t /*loc*/, const std::vector<T> &term) override {
47  // Using assert() rather than ASSERT() since this can be called from a tight loop
48  // and I want this extra check to disappear in optimised builds.
49  assert(term.size() == localResult_.size());
50  for (std::size_t i = 0, n = localResult_.size(); i < n; ++i)
51  localResult_[i] += term[i];
52  }
53 
54  void addTerm(std::size_t /*loc*/, std::size_t item, const T &term) override {
55  localResult_[item] += term;
56  }
57 
58  std::vector<T> computeResult() const override {
59  return localResult_;
60  }
61 
62  private:
63  std::vector<T> localResult_;
64 };
65 
66 } // namespace ioda
67 
68 #endif // DISTRIBUTION_INEFFICIENTDISTRIBUTIONACCUMULATOR_H_
Calculates the sum of a location-dependent quantity of type T over locations held on all PEs,...
Definition: Accumulator.h:27
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.
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.