source: XIOS/trunk/src/transformation/axis_algorithm_transformation.cpp @ 869

Last change on this file since 869 was 867, checked in by mhnguyen, 8 years ago

Various clean up

+) Remove some redundant codes

Test
+) On Curie
+) tests pass

File size: 2.3 KB
Line 
1/*!
2   \file axis_algorithm_transformation.hpp
3   \author Ha NGUYEN
4   \since 14 May 2015
5   \date 29 June 2015
6
7   \brief Interface for all axis transformation algorithms.
8 */
9
10#include "axis_algorithm_transformation.hpp"
11#include "axis_algorithm_inverse.hpp"
12#include "axis_algorithm_zoom.hpp"
13#include "context.hpp"
14#include "context_client.hpp"
15#include "client_client_dht_template.hpp"
16#include "axis.hpp"
17
18namespace xios {
19
20CAxisAlgorithmTransformation::CAxisAlgorithmTransformation(CAxis* axisDestination, CAxis* axisSource)
21 : CGenericAlgorithmTransformation(), axisDest_(axisDestination), axisSrc_(axisSource)
22{
23  axisDestGlobalSize_ = axisDestination->n_glo.getValue();
24  int niDest = axisDestination->n.getValue();
25  int ibeginDest = axisDestination->begin.getValue();
26
27  for (int idx = 0; idx < niDest; ++idx)
28    if ((axisDestination->mask)(idx)) axisDestGlobalIndex_.push_back(ibeginDest+idx);
29}
30
31CAxisAlgorithmTransformation::~CAxisAlgorithmTransformation()
32{
33}
34
35void CAxisAlgorithmTransformation::computeIndexSourceMapping_(const std::vector<CArray<double,1>* >& dataAuxInputs)
36{
37}
38
39/*!
40  Compute global index of axis on different processes
41  \param [in] globalAxisIndex global index of axis source
42  \param [out] globalAxisIndexOnProc processes which contain the corresponding global index of axis source
43*/
44void CAxisAlgorithmTransformation::computeExchangeGlobalIndex(const CArray<size_t,1>& globalAxisIndex,
45                                                              CClientClientDHTInt::Index2VectorInfoTypeMap& globalAxisIndexOnProc)
46{
47  CContext* context = CContext::getCurrent();
48  CContextClient* client=context->client;
49  int clientRank = client->clientRank;
50  int clientSize = client->clientSize;
51
52  size_t globalIndex;
53  int nIndexSize = axisSrc_->index.numElements();
54  CClientClientDHTInt::Index2VectorInfoTypeMap globalIndex2ProcRank;
55  globalIndex2ProcRank.rehash(std::ceil(nIndexSize/globalIndex2ProcRank.max_load_factor()));
56  for (int idx = 0; idx < nIndexSize; ++idx)
57  {
58    globalIndex = axisSrc_->index(idx);
59    globalIndex2ProcRank[globalIndex].resize(1);
60    globalIndex2ProcRank[globalIndex][0] = clientRank;
61  }
62
63  CClientClientDHTInt dhtIndexProcRank(globalIndex2ProcRank, client->intraComm);
64  dhtIndexProcRank.computeIndexInfoMapping(globalAxisIndex);
65
66  globalAxisIndexOnProc = dhtIndexProcRank.getInfoIndexMap();
67}
68
69}
Note: See TracBrowser for help on using the repository browser.