IODA
NonoverlappingDistributionAccumulator.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_NONOVERLAPPINGDISTRIBUTIONACCUMULATOR_H_
9 #define DISTRIBUTION_NONOVERLAPPINGDISTRIBUTIONACCUMULATOR_H_
10 
11 #include <cassert>
12 #include <vector>
13 
14 #include "eckit/mpi/Comm.h"
15 #include "ioda/distribution/Accumulator.h"
16 
17 namespace ioda {
18 
19 /// \brief Implementation of the Accumulator interface suitable for the NonoverlappingDistribution.
20 template <typename T>
22  public:
23  NonoverlappingDistributionAccumulator(const T &, const eckit::mpi::Comm &comm)
24  : localResult_(0), comm_(comm)
25  {}
26 
27  void addTerm(std::size_t /*loc*/, const T &term) override {
28  localResult_ += term;
29  }
30 
31  T computeResult() const override {
32  T result = localResult_;
33  comm_.allReduceInPlace(result, eckit::mpi::sum());
34  return result;
35  }
36 
37  private:
39  const eckit::mpi::Comm &comm_;
40 };
41 
42 template <typename T>
43 class NonoverlappingDistributionAccumulator<std::vector<T>> : public Accumulator<std::vector<T>> {
44  public:
45  /// Note: only the length of the `init` vector matters -- the values of its elements are ignored.
46  NonoverlappingDistributionAccumulator(const std::vector<T> &init, const eckit::mpi::Comm &comm)
47  : localResult_(init.size(), 0), comm_(comm)
48  {}
49 
50  void addTerm(std::size_t /*loc*/, const std::vector<T> &term) override {
51  // Using assert() rather than ASSERT() since this can be called from a tight loop
52  // and I want this extra check to disappear in optimised builds.
53  assert(term.size() == localResult_.size());
54  for (std::size_t i = 0, n = localResult_.size(); i < n; ++i)
55  localResult_[i] += term[i];
56  }
57 
58  void addTerm(std::size_t /*loc*/, std::size_t item, const T &term) override {
59  localResult_[item] += term;
60  }
61 
62  std::vector<T> computeResult() const override {
63  std::vector<T> result = localResult_;
64  comm_.allReduceInPlace(result.begin(), result.end(), eckit::mpi::sum());
65  return result;
66  }
67 
68  private:
69  std::vector<T> localResult_;
70  const eckit::mpi::Comm &comm_;
71 };
72 
73 } // namespace ioda
74 
75 #endif // DISTRIBUTION_NONOVERLAPPINGDISTRIBUTIONACCUMULATOR_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...
std::vector< T > computeResult() const override
Return the sums of contributions associated with locations held on all PEs (each taken into account o...
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.
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.
T computeResult() const override
Return the sum of contributions associated with locations held on all PEs (each taken into account on...