source: XIOS/dev/XIOS_DEV_CMIP6/src/distribution_client.hpp @ 1293

Last change on this file since 1293 was 1250, checked in by mhnguyen, 7 years ago

Fixing bug on mask grid

+) Add mask_0d for scalar grid
+) Transmit grid's attributes (mask) from client and reconstruct them correctly on server
+) Rebuild data in the input of data flow on the server side

Test
+) On Curie
+) Simple test

File size: 6.0 KB
Line 
1/*!
2   \file distribution_client.hpp
3   \author Ha NGUYEN
4   \since 13 Jan 2015
5   \date 09 Mars 2015
6
7   \brief Index distribution on client side.
8 */
9#ifndef __XIOS_DISTRIBUTIONCLIENT_HPP__
10#define __XIOS_DISTRIBUTIONCLIENT_HPP__
11
12#include <distribution.hpp>
13#include "axis.hpp"
14#include "domain.hpp"
15#include "grid.hpp"
16
17namespace xios {
18
19class CGrid;
20class CDomain;
21class CAxis;
22class CScalar;
23
24/*!
25  \class CDistributionClient
26  This class bases on the knowledge of distribution on client side (decided by users)
27to calculate the global index of its local data.
28*/
29class CDistributionClient : public CDistribution
30{
31public:
32  typedef CDistribution::GlobalLocalMap GlobalLocalDataMap;
33
34  public:
35    /** Default constructor */       
36    CDistributionClient(int rank, CGrid* grid);
37
38    void createGlobalIndexSendToServer();
39
40    /** Default destructor */
41    virtual ~CDistributionClient();
42
43    virtual const std::vector<int>& getLocalDataIndexOnClient();
44    GlobalLocalDataMap& getGlobalLocalDataSendToServer();
45    GlobalLocalDataMap& getGlobalDataIndexOnClient();
46    const std::vector<int>& getLocalMaskIndexOnClient();
47    const std::vector<int>& getLocalMaskedDataIndexOnClient();
48
49    std::vector<int> getNGlob() { return nGlob_; }
50    std::vector<int> getDataNIndex() { return dataNIndex_; }
51
52    bool isDataDistributed() { return isDataDistributed_; }
53
54    static int getDomainIndex(const int& dataIIndex, const int& dataJIndex,
55                                     const int& dataIBegin, const int& dataJBegin,
56                                     const int& dataDim, const int& ni, int& j);
57    static int getAxisIndex(const int& dataIndex, const int& dataBegin, const int& ni);
58
59  protected:
60    void createGlobalIndex();
61    void readDistributionInfo(CGrid* grid);
62    void readDistributionInfo(const std::vector<CDomain*>& domList,
63                              const std::vector<CAxis*>& axisList,
64                              const std::vector<CScalar*>& scalarList,
65                              const CArray<int,1>& axisDomainOrder);
66  private:
67    //! Create local index of a domain
68    void createLocalDomainDataIndex();
69
70    //! Create local index of an axis
71    void createLocalAxisDataIndex();
72
73    //! Create local index of a scalar
74    void createLocalScalarDataIndex();
75
76    template<int N>
77    void readGridMaskInfo(const CArray<bool,N>& gridMask);
78
79  private:
80    //!< LocalData index on client
81    GlobalLocalDataMap globalLocalDataSendToServerMap_;
82    GlobalLocalDataMap globalDataIndex_;
83    std::vector<int> localDataIndex_;
84    std::vector<int> localMaskIndex_;
85    std::vector<int> localMaskedDataIndex_;
86
87  private:
88    /*! Domains and axis are considered elements.
89     * A grid composed of 1 domain and 1 axis has 2 elements */
90    int numElement_;
91    CArray<int,1> axisDomainOrder_; //!< Order of axis and domain of a grid
92
93    std::vector<int> nLocal_; //!< Local size of each dimension (ni, nj, etc, ...)
94    std::vector<int> nGlob_; //!< Global size of each dimension (e.x: ni_glo, nj_glo, etc, ...)
95    std::vector<int> nBeginLocal_;//!< Begin index of each dimension (e.x: for domain, it's always 0, for axis, it's zoom_begin, ...)
96    std::vector<int> nBeginGlobal_; //!< Begin index of each dimension (e.x: ibegin, jbegin, ...)
97    std::vector<int> nZoomBegin_; //!< Begin index of zoom of each dimension
98    std::vector<int> nZoomEnd_; //!< End index of zoom of each dimension
99
100    // Data_n_index of domain or axis (For now, axis uses its size as data_n_index
101    std::vector<int> dataNIndex_; //!< Data_n_index in case of domain
102    std::vector<int> dataDims_; //!< Data_dim, domain can have data_dim == 1 or 2
103    std::vector<int> dataBegin_; //!< Data begin (data_ibegin, data_jbegin, etc)
104    std::vector<CArray<int,1> > dataIndex_; //!< Data index
105    std::vector<CArray<int,1> > infoIndex_; //!< i_index, j_index
106
107    std::vector<CArray<bool,1> > domainMasks_; //!< Domain mask
108    std::vector<CArray<bool,1> > axisMasks_; //!< Axis mask
109
110    std::vector<int> indexMap_; //!< Mapping element index to dimension index
111    std::vector<CArray<int,1> > elementLocalIndex_;  //!< Local index of each element
112    std::vector<CArray<size_t,1> > elementGlobalIndex_; //!< Global index of each element
113    std::vector<CArray<bool,1> > elementIndexData_; //!< // The correct index of a domain has true value, the ghost one has false value
114    std::vector<CArray<bool,1> > elementZoomMask_; //!< Only zoomed region are true
115    std::vector<size_t> elementNLocal_;
116    std::vector<size_t> elementNGlobal_;
117
118    //!< (Only for grid with one axis or scalar)Flag to determine whether data is distributed or not
119    bool isDataDistributed_;
120    int axisNum_;
121    int domainNum_;
122    bool isComputed_;
123
124  private:
125    // Just suppose that grid mask has 3 dimension. Need change
126    CArray<bool,1> gridMask_; //!< Mask of grid
127
128  private:
129    CDistributionClient(const CDistributionClient& distClient); //! Not implement
130};
131
132/*!
133  A grid can have multiple dimension, so can its mask in the form of multi-dimension array.
134It's not a good idea to store all multi-dimension arrays corresponding to each mask.
135One of the ways is to convert this array into 1-dimension one and every process is taken place on it.
136  \param [in] multi-dimension array grid mask
137*/
138template<int N>
139void CDistributionClient::readGridMaskInfo(const CArray<bool,N>& gridMask)
140{
141  int dim = gridMask.dimensions();
142  std::vector<int> dimensionSizes(dim);
143  for (int i = 0; i < dim; ++i) dimensionSizes[i] = gridMask.extent(i);
144
145  std::vector<int> idxLoop(dim,0);
146  int ssize = gridMask.numElements(), idx = 0;
147  gridMask_.resize(ssize);
148  while (idx < ssize)
149  {
150    for (int i = 0; i < dim-1; ++i)
151    {
152      if (idxLoop[i] == dimensionSizes[i])
153      {
154        idxLoop[i] = 0;
155        ++idxLoop[i+1];
156      }
157    }
158
159    int maskIndex = idxLoop[0];
160    int mulDim = 1;
161    for (int k = 1; k < dim; ++k)
162    {
163      mulDim *= dimensionSizes[k-1];
164      maskIndex += idxLoop[k]*mulDim;
165    }
166    gridMask_(maskIndex) = *(gridMask.dataFirst()+maskIndex);
167
168    ++idxLoop[0];
169    ++idx;
170  }
171}
172
173} // namespace xios
174#endif // __XIOS_DISTRIBUTIONCLIENT_HPP__
Note: See TracBrowser for help on using the repository browser.