IODA
RoundRobin.cc
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 #include "ioda/distribution/RoundRobin.h"
9 
10 #include <iostream>
11 
12 #include "eckit/mpi/Comm.h"
13 #include "ioda/distribution/DistributionFactory.h"
14 #include "oops/util/Logger.h"
15 
16 namespace ioda {
17 
18 // -----------------------------------------------------------------------------
19 namespace {
20 const char DIST_NAME[] = "RoundRobin";
21 } // namespace
22 
23 // -----------------------------------------------------------------------------
25 
26 // -----------------------------------------------------------------------------
27 RoundRobin::RoundRobin(const eckit::mpi::Comm & Comm,
28  const eckit::Configuration & config)
30  oops::Log::trace() << "RoundRobin constructed" << std::endl;
31 }
32 
33 // -----------------------------------------------------------------------------
35  oops::Log::trace() << "RoundRobin destructed" << std::endl;
36 }
37 
38 // -----------------------------------------------------------------------------
39 std::string RoundRobin::name() const {
40  return DIST_NAME;
41 }
42 
43 // -----------------------------------------------------------------------------
44 /*!
45  * \brief Round-robin selector
46  *
47  * \details This method distributes observations according to a round-robin scheme.
48  * The round-robin scheme simply selects all locations where the modulus of
49  * the record number relative to the number of process elements equals
50  * the rank of the process element we are running on. This does a good job
51  * of distributing the observations evenly across processors which optimizes
52  * the load balancing.
53  *
54  * \param[in] RecNum Record number, checked if belongs on this process element
55  */
56 bool RoundRobin::isMyRecord(std::size_t RecNum) const {
57  return (RecNum % comm_.size() == comm_.rank());
58 }
59 
60 // -----------------------------------------------------------------------------
61 
62 } // namespace ioda
const eckit::mpi::Comm & comm_
Local MPI communicator.
A class able to instantiate objects of type T, which should be a subclass of Distribution.
Implements some methods of Distribution in a manner suitable for distributions storing each observati...
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
static DistributionMaker< AtlasDistribution > maker(DIST_NAME)