source: XIOS/dev/dev_olga/src/transformation/generic_algorithm_transformation.hpp @ 1584

Last change on this file since 1584 was 1584, checked in by oabramkina, 6 years ago

Clean-up in transformation classes related to the new treatment of grid mask at the entrance of a workflow.

File size: 9.7 KB
Line 
1/*!
2   \file generic_algorithm_transformation.hpp
3   \author Ha NGUYEN
4   \since 14 May 2015
5   \date 29 June 2015
6
7   \brief Interface for all transformation algorithms.
8 */
9#ifndef __XIOS_GENERIC_ALGORITHM_TRANSFORMATION_HPP__
10#define __XIOS_GENERIC_ALGORITHM_TRANSFORMATION_HPP__
11
12#include <map>
13#include <set>
14#include "array_new.hpp"
15#include "client_client_dht_template.hpp"
16
17namespace xios {
18  class CGrid;
19  class CDomain;
20  class CAxis;
21  class CScalar;
22
23  /*!
24  \class CGenericAlgorithmTransformation
25  This class defines the interface for all other inherited algorithms class
26  */
27class CGenericAlgorithmTransformation
28{
29public:
30  enum AlgoTransType {
31    ELEMENT_GENERATION = 0,
32    ELEMENT_MODIFICATION_WITHOUT_DATA = 1,
33    ELEMENT_MODIFICATION_WITH_DATA = 2,
34    ELEMENT_NO_MODIFICATION_WITH_DATA = 3,
35    ELEMENT_NO_MODIFICATION_WITHOUT_DATA = 4
36  } ;
37
38public:
39  // Mapping between global index map of DESTINATION and its local index with pair of global index of SOURCE and weights
40  typedef std::unordered_map<int, std::unordered_map<size_t, std::vector<std::pair<size_t,double> > > > SourceDestinationIndexMap;
41
42protected:
43  typedef std::unordered_map<size_t,int> GlobalLocalMap;
44protected:
45  typedef std::unordered_map<int, std::vector<int> > TransformationIndexMap;
46  typedef std::unordered_map<int, std::vector<double> > TransformationWeightMap;
47  typedef std::unordered_map<int, std::vector<int> > TransformationPositionMap;
48
49public:
50  CGenericAlgorithmTransformation();
51
52  virtual ~CGenericAlgorithmTransformation() {}
53
54  bool isDistributedTransformation(int elementPositionInGrid, CGrid* gridSrc, CGrid* gridDst) ;
55
56  void computeGlobalSourceIndex(int elementPositionInGrid,
57                               CGrid* gridSrc,
58                               CGrid* gridDst,
59                               SourceDestinationIndexMap& globaIndexWeightFromSrcToDst);
60
61    /*!
62    Apply a operation on local data.
63    \param [in] localIndex vector contains local index of local data output and the corresponding weight
64    \param [in] dataInput Pointer to the first element of data input array (in form of buffer)
65    \param [in/out] dataOut Array contains local data
66    \param [in/out] flagInitial vector of boolean to mark the local index already initialized. True means there is a need for initalization
67    \param [in] ignoreMissingValue don't count missing value in operation if this flag is true
68    \param [in] firstPass indicate if it is the first time the apply funtion is called for a same transformation, in order to make a clean initialization
69  */
70  virtual void apply(const std::vector<std::pair<int,double> >& localIndex,
71                     const double* dataInput,
72                     CArray<double,1>& dataOut,
73                     std::vector<bool>& flagInitial,                     
74                     bool ignoreMissingValue, bool firstPass);
75
76  /*!
77   * Update whole dataOut (on necessary).
78   * (Example:  Impose a weight, whose value is only known after being applied an operation, on dataOut)
79   * \param [in/out] dataOut dataOut
80   */
81  virtual void updateData(CArray<double,1>& dataOut);
82
83  std::vector<StdString> getIdAuxInputs();
84  AlgoTransType type();
85  /*!
86  Compute global index mapping from one element of destination grid to the corresponding element of source grid
87  */
88  void computeIndexSourceMapping(const std::vector<CArray<double,1>* >& dataAuxInputs = std::vector<CArray<double,1>* >());
89//  void computeTransformationMappingNonDistributed(int elementPositionInGrid, CGrid* gridSrc, CGrid* gridDst,
90//                                                  vector<int>& localSrc, vector<int>& localDst, vector<double>& weight, vector<bool>& localMaskOnGridDest);
91  void computeTransformationMappingNonDistributed(int elementPositionInGrid, CGrid* gridSrc, CGrid* gridDst,
92                                                  vector<int>& localSrc, vector<int>& localDst, vector<double>& weight, int nbLocalIndexOnGridDest);
93//  void nonDistributedrecursiveFunct(int currentPos, bool masked, int elementPositionInGrid,  vector< CArray<bool,1>* >& maskSrc, vector< CArray<bool,1>* >& maskDst, int& srcInd, int& srcIndCompressed, vector<int>& nIndexSrc, int& t, vector<vector<vector<pair<int,double> > > >& dstIndWeight, int currentInd,
94//                                     vector<int>& localSrc, vector<int>& localDst, vector<double>& weight, CArray<bool,1>& localMaskOnGridSrc, vector<bool>& localMaskOnGridDest) ;
95//  void nonDistributedrecursiveFunct(int currentPos, bool masked, int elementPositionInGrid,  vector< CArray<bool,1>* >& maskSrc, vector< CArray<bool,1>* >& maskDst,
96//                                    int& srcInd, int& srcIndCompressed, vector<int>& nIndexSrc,
97//                                    int& t, vector<vector<vector<pair<int,double> > > >& dstIndWeight, int currentInd,
98//                                    vector<int>& localSrc, vector<int>& localDst, vector<double>& weight, vector<bool>& localMaskOnGridDest) ;
99  void nonDistributedrecursiveFunct(int currentPos, bool masked, int elementPositionInGrid,  vector< CArray<bool,1>* >& maskSrc, vector< CArray<bool,1>* >& maskDst,
100                                    int& srcInd, int& srcIndCompressed, vector<int>& nIndexSrc,
101                                    int& t, vector<vector<vector<pair<int,double> > > >& dstIndWeight, int currentInd,
102                                    vector<int>& localSrc, vector<int>& localDst, vector<double>& weight) ;
103
104protected:
105  virtual void computeIndexSourceMapping_(const std::vector<CArray<double,1>* >&) = 0;
106
107  /*!
108  Compute proc which contains global index of an element
109    \param[in] globalElementIndex demanding global index of an element of source grid
110    \param[in] elementType type of source element, 2: domain, 1: axis and 0: scalar
111    \param[out] globalElementIndexOnProc Proc contains the demanding global index
112  */
113  virtual void computeExchangeGlobalIndex(const CArray<size_t,1>& globalElementIndex,
114                                          int elementType,
115                                          CClientClientDHTInt::Index2VectorInfoTypeMap& globalElementIndexOnProc) = 0;
116
117protected:
118  void computeGlobalGridIndexMapping(int elementPositionInGrid,
119                                     const std::vector<int>& srcRank,
120                                     std::unordered_map<int, std::vector<std::pair<int,double> > >& src2DstMap,
121                                     CGrid* gridDst,
122                                     CGrid* gridSrc,
123                                     std::vector<std::unordered_map<int,std::vector<size_t> > >& globalElementIndexOnProc,
124                                     SourceDestinationIndexMap& globaIndexWeightFromSrcToDst);
125
126  void computeExchangeDomainIndex(CDomain* domainDst,
127                                  CDomain* domainSrc,
128                                  CArray<size_t,1>& destGlobalIndexPositionInGrid,
129                                  std::unordered_map<int,std::vector<size_t> >& globalDomainIndexOnProc);
130
131  void computeExchangeAxisIndex(CAxis* axisDst,
132                                CAxis* axisSrc,
133                                CArray<size_t,1>& destGlobalIndexPositionInGrid,
134                                std::unordered_map<int,std::vector<size_t> >& globalAxisIndexOnProc);
135
136  void computeExchangeScalarIndex(CScalar* scalarDst,
137                                  CScalar* scalarSrc,
138                                  CArray<size_t,1>& destGlobalIndexPositionInGrid,
139                                  std::unordered_map<int,std::vector<size_t> >& globalScalarIndexOnProc);
140
141  void computePositionElements(CGrid* dst, CGrid* src);
142
143protected:
144  //! indicate if the transformation is performed on a distributed element
145  bool isDistributed_ ;
146  //! indicate if the method  isDistributedTransformation has been called before
147  bool isDistributedComputed_ ;
148 
149  //! Map between global index of destination element and source element
150  std::vector<TransformationIndexMap> transformationMapping_;
151  //! Weight corresponding of source to destination
152  std::vector<TransformationWeightMap> transformationWeight_;
153  //! Map of global index of destination element and corresponding global index of other elements in the same grid
154  //! By default, one index of an element corresponds to all index of remaining element in the grid. So it's empty
155  std::vector<TransformationPositionMap> transformationPosition_;
156
157  //! Id of auxillary inputs which helps doing transformation dynamically
158  std::vector<StdString> idAuxInputs_;
159  AlgoTransType type_;
160
161  std::set<StdSize> indexElementSrc_;
162
163  std::vector<std::unordered_map<int,std::vector<size_t> > > globalElementIndexOnProc_;
164
165  std::vector<int> procContainSrcElementIdx_;  // List of processes containing source index of transformed elements
166//  std::set<int> procOfNonTransformedElements_; // Processes contain the source index of non-transformed elements
167  std::set<int> commonProc_;
168  std::vector< set<int> > procElementList_ ; // List of processes containing source index of elements
169
170  CClientClientDHTInt::Index2VectorInfoTypeMap globalIndexOfTransformedElementOnProc_;
171 
172  bool computedProcSrcNonTransformedElement_; // Flag to indicate whether we computed proc containing non transformed elements
173
174  std::map<int, int> elementPositionInGridSrc2AxisPosition_, elementPositionInGridSrc2DomainPosition_, elementPositionInGridSrc2ScalarPosition_;
175  std::map<int, int> elementPositionInGridDst2AxisPosition_, elementPositionInGridDst2DomainPosition_, elementPositionInGridDst2ScalarPosition_;
176
177  bool eliminateRedondantSrc_ ; // flag to indicate if the transformation must select only one global source point for all proc.
178                               // In this case it will choose preferentially the current process
179};
180
181}
182#endif // __XIOS_GENERIC_ALGORITHM_TRANSFORMATION_HPP__
Note: See TracBrowser for help on using the repository browser.