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 | |
---|
17 | namespace xios { |
---|
18 | |
---|
19 | class CGrid; |
---|
20 | class CDomain; |
---|
21 | class CAxis; |
---|
22 | class CScalar; |
---|
23 | |
---|
24 | /*! |
---|
25 | \class CDistributionClient |
---|
26 | This class bases on the knowledge of distribution on client side (decided by users) |
---|
27 | to calculate the global index of its local data. |
---|
28 | */ |
---|
29 | class CDistributionClient : public CDistribution |
---|
30 | { |
---|
31 | public: |
---|
32 | typedef CDistribution::GlobalLocalMap GlobalLocalDataMap; |
---|
33 | |
---|
34 | public: |
---|
35 | /** Default constructor */ |
---|
36 | CDistributionClient(int rank, CGrid* grid, bool isTiled = false); |
---|
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<bool>& 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 | void partialClear(void) ; //! clear heavy sized attibutes |
---|
60 | |
---|
61 | protected: |
---|
62 | void createGlobalIndex(); |
---|
63 | void readDistributionInfo(CGrid* grid, bool isTiled); |
---|
64 | void readDistributionInfo(const std::vector<CDomain*>& domList, |
---|
65 | const std::vector<CAxis*>& axisList, |
---|
66 | const std::vector<CScalar*>& scalarList, |
---|
67 | const CArray<int,1>& axisDomainOrder, |
---|
68 | bool isTiled); |
---|
69 | private: |
---|
70 | //! Create local index of a domain |
---|
71 | void createLocalDomainDataIndex(); |
---|
72 | |
---|
73 | //! Create local index of an axis |
---|
74 | void createLocalAxisDataIndex(); |
---|
75 | |
---|
76 | //! Create local index of a scalar |
---|
77 | void createLocalScalarDataIndex(); |
---|
78 | |
---|
79 | template<int N> |
---|
80 | void readGridMaskInfo(const CArray<bool,N>& gridMask); |
---|
81 | |
---|
82 | private: |
---|
83 | //!< LocalData index on client |
---|
84 | GlobalLocalDataMap globalLocalDataSendToServerMap_; |
---|
85 | GlobalLocalDataMap globalDataIndex_; |
---|
86 | |
---|
87 | /*! Array holding masked data indexes. |
---|
88 | * It includes: |
---|
89 | * masking on data (data_i/j_index or data_ni/nj and data_ibegin) |
---|
90 | * masking on grid elements (domains, axes or scalars) |
---|
91 | * It DOES NOT include grid mask. |
---|
92 | * The array size defines the data size entering the workflow. It is used by source filter of client or server1. |
---|
93 | */ |
---|
94 | std::vector<int> localDataIndex_; |
---|
95 | |
---|
96 | /*! Array holding grid mask. If grid mask is not defined, its size is zero. |
---|
97 | * It is used by source filter of client for replacing unmasked data by NaN. |
---|
98 | */ |
---|
99 | std::vector<bool> localMaskIndex_; |
---|
100 | |
---|
101 | std::vector<int> localMaskedDataIndex_; |
---|
102 | |
---|
103 | private: |
---|
104 | /*! Domains and axis are considered elements. |
---|
105 | * A grid composed of 1 domain and 1 axis has 2 elements */ |
---|
106 | int numElement_; |
---|
107 | CArray<int,1> axisDomainOrder_; //!< Order of axis and domain of a grid |
---|
108 | |
---|
109 | std::vector<int> nLocal_; //!< Local size of each dimension (ni, nj, etc, ...) |
---|
110 | std::vector<int> nGlob_; //!< Global size of each dimension (e.x: ni_glo, nj_glo, etc, ...) |
---|
111 | std::vector<int> nBeginLocal_;//!< Begin index of each dimension (e.x: for domain, it's always 0, for axis, it's zoom_begin, ...) |
---|
112 | std::vector<int> nBeginGlobal_; //!< Begin index of each dimension (e.x: ibegin, jbegin, ...) |
---|
113 | |
---|
114 | // Data_n_index of domain or axis (For now, axis uses its size as data_n_index |
---|
115 | std::vector<int> dataNIndex_; //!< Data_n_index in case of domain |
---|
116 | std::vector<int> dataDims_; //!< Data_dim, domain can have data_dim == 1 or 2 |
---|
117 | std::vector<int> dataBegin_; //!< Data begin (data_ibegin, data_jbegin, etc) |
---|
118 | std::vector<CArray<int,1> > dataIndex_; //!< Data index |
---|
119 | std::vector<CArray<int,1> > infoIndex_; //!< i_index, j_index |
---|
120 | |
---|
121 | std::vector<int> indexMap_; //!< Mapping element index to dimension index |
---|
122 | std::vector<CArray<int,1> > elementLocalIndex_; //!< Local index of each element |
---|
123 | std::vector<CArray<size_t,1> > elementGlobalIndex_; //!< Global index of each element |
---|
124 | std::vector<CArray<bool,1> > elementIndexData_; //!< // The correct index of a domain has true value, the ghost one has false value |
---|
125 | std::vector<size_t> elementNLocal_; |
---|
126 | std::vector<size_t> elementNGlobal_; |
---|
127 | |
---|
128 | //!< (Only for grid with one axis or scalar)Flag to determine whether data is distributed or not |
---|
129 | bool isDataDistributed_; |
---|
130 | int axisNum_; |
---|
131 | int domainNum_; |
---|
132 | bool isComputed_; |
---|
133 | |
---|
134 | private: |
---|
135 | // Just suppose that grid mask has 3 dimension. Need change |
---|
136 | CArray<bool,1> gridMask_; //!< Mask of grid |
---|
137 | |
---|
138 | private: |
---|
139 | CDistributionClient(const CDistributionClient& distClient); //! Not implement |
---|
140 | }; |
---|
141 | |
---|
142 | /*! |
---|
143 | A grid can have multiple dimension, so can its mask in the form of multi-dimension array. |
---|
144 | It's not a good idea to store all multi-dimension arrays corresponding to each mask. |
---|
145 | One of the ways is to convert this array into 1-dimension one and every process is taken place on it. |
---|
146 | \param [in] multi-dimension array grid mask |
---|
147 | */ |
---|
148 | template<int N> |
---|
149 | void CDistributionClient::readGridMaskInfo(const CArray<bool,N>& gridMask) |
---|
150 | { |
---|
151 | int dim = gridMask.dimensions(); |
---|
152 | std::vector<int> dimensionSizes(dim); |
---|
153 | for (int i = 0; i < dim; ++i) dimensionSizes[i] = gridMask.extent(i); |
---|
154 | |
---|
155 | std::vector<int> idxLoop(dim,0); |
---|
156 | int ssize = gridMask.numElements(), idx = 0; |
---|
157 | gridMask_.resize(ssize); |
---|
158 | while (idx < ssize) |
---|
159 | { |
---|
160 | for (int i = 0; i < dim-1; ++i) |
---|
161 | { |
---|
162 | if (idxLoop[i] == dimensionSizes[i]) |
---|
163 | { |
---|
164 | idxLoop[i] = 0; |
---|
165 | ++idxLoop[i+1]; |
---|
166 | } |
---|
167 | } |
---|
168 | |
---|
169 | int maskIndex = idxLoop[0]; |
---|
170 | int mulDim = 1; |
---|
171 | for (int k = 1; k < dim; ++k) |
---|
172 | { |
---|
173 | mulDim *= dimensionSizes[k-1]; |
---|
174 | maskIndex += idxLoop[k]*mulDim; |
---|
175 | } |
---|
176 | gridMask_(maskIndex) = *(gridMask.dataFirst()+maskIndex); |
---|
177 | |
---|
178 | ++idxLoop[0]; |
---|
179 | ++idx; |
---|
180 | } |
---|
181 | } |
---|
182 | |
---|
183 | } // namespace xios |
---|
184 | #endif // __XIOS_DISTRIBUTIONCLIENT_HPP__ |
---|