source: XIOS/dev/dev_ym/XIOS_COUPLING/src/distribution/distribution.hpp @ 1960

Last change on this file since 1960 was 1918, checked in by ymipsl, 4 years ago

Big update on on going work related to data distribution and transfer between clients and servers.

  • move all related file into distribution directorie
  • implement the concept of data "View"
  • implement the concept of "connector" which make the data transfer between 2 differents "Views"

YM

File size: 1.2 KB
Line 
1/*!
2   \file distribution.hpp
3   \author Ha NGUYEN
4   \since 13 Jan 2015
5   \date 09 Feb 2015
6
7   \brief Index distribution on server side.
8 */
9#ifndef __XIOS_DISTRIBUTION_HPP__
10#define __XIOS_DISTRIBUTION_HPP__
11
12#include "xios_spl.hpp"
13#include "array_new.hpp"
14#include <unordered_map>
15
16namespace xios {
17/*!
18 \class CDistribution
19 The parent class of CDistributionClient and CDistributionServer, which declares and defines
20some basic methods and properties for its children. This class allows its descendants to calculate
21distribution of index on client or server side.
22*/
23class CDistribution
24{
25  public:
26  typedef std::unordered_map<size_t,int> GlobalLocalMap;
27
28  public:
29    /** Default constructor */
30    CDistribution(int rank, int dims, const CArray<size_t,1>& globalIndex = CArray<size_t,1>());
31
32    /** Default destructor */
33    virtual ~CDistribution();
34
35    int getDims() const; //! Get dimension size
36    int getRank() const; //! Get rank of current process
37    const CArray<size_t,1>& getGlobalIndex() const;
38   
39  protected:
40    virtual void createGlobalIndex() {};
41
42  protected:
43    CArray<size_t,1> globalIndex_;
44    int dims_;
45    int rank_;
46};
47
48} // namespace xios
49#endif // __XIOS_DISTRIBUTION_HPP__
Note: See TracBrowser for help on using the repository browser.