IODA
RoundRobin.h
Go to the documentation of this file.
1 /*
2  * (C) Copyright 2017-2019 UCAR
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_ROUNDROBIN_H_
9 #define DISTRIBUTION_ROUNDROBIN_H_
10 
11 #include "ioda/distribution/NonoverlappingDistribution.h"
12 
13 namespace ioda {
14 
15 // ---------------------------------------------------------------------
16 /*!
17  * \brief Round robin distribution
18  *
19  * \details This class implements a round-robin style of distribution which
20  * optimizes load balancing.
21  *
22  * \author Xin Zhang (JCSDA)
23  */
25  public:
26  RoundRobin(const eckit::mpi::Comm & Comm,
27  const eckit::Configuration & config);
28  ~RoundRobin() override;
29 
30  bool isMyRecord(std::size_t RecNum) const override;
31 
32  std::string name() const override;
33 };
34 
35 } // namespace ioda
36 
37 #endif // DISTRIBUTION_ROUNDROBIN_H_
Implements some methods of Distribution in a manner suitable for distributions storing each observati...
Round robin distribution.
Definition: RoundRobin.h:24
std::string name() const override
Definition: RoundRobin.cc:39
~RoundRobin() override
Definition: RoundRobin.cc:34
bool isMyRecord(std::size_t RecNum) const override
Round-robin selector.
Definition: RoundRobin.cc:56
RoundRobin(const eckit::mpi::Comm &Comm, const eckit::Configuration &config)
Definition: RoundRobin.cc:27