source: XIOS/dev/dev_olga/src/distribution_server.hpp @ 1201

Last change on this file since 1201 was 1201, checked in by oabramkina, 7 years ago

Two server levels: merging trunk r1200 (except for non-contiguous zoom) into dev. Tested on Curie. Todo: non-contiguous zoom.

File size: 2.2 KB
RevLine 
[553]1/*!
2   \file distribution_server.hpp
3   \author Ha NGUYEN
4   \since 13 Jan 2015
5   \date 04 Feb 2015
6
7   \brief Index distribution on server side.
8 */
9
[551]10#ifndef __XIOS_DISTRIBUTION_SERVER_HPP__
11#define __XIOS_DISTRIBUTION_SERVER_HPP__
12
13#include "distribution.hpp"
14
15namespace xios {
[553]16
[552]17/*!
[553]18  \class CDistributionServer
19  The class, for now, plays a role of computing local index for writing data on server
[552]20*/
[551]21class CDistributionServer : public CDistribution
22{
23  public:
24    /** Default constructor */
[1201]25    CDistributionServer(int rank, int dims, const CArray<size_t,1>& globalIndex = CArray<size_t,1>());
[567]26    CDistributionServer(int rank, const std::vector<int>& nZoomBeginServer,
[1201]27                        const std::vector<int>& nZoomSizeServer, const std::vector<int>& nGlobal);
28    CDistributionServer(int rank, const std::vector<int>& nZoomBeginServer,
[567]29                        const std::vector<int>& nZoomSizeServer,
30                        const std::vector<int>& nZoomBeginGlobal,
31                        const std::vector<int>& nGlobal);
[551]32
[1201]33    CDistributionServer(int rank, 
34                        const std::vector<CArray<int,1> >& globalIndexElements,
35                        const CArray<int,1>& elementOrder,
36                        const std::vector<int>& nZoomBeginServer,
37                        const std::vector<int>& nZoomSizeServer,
38                        const std::vector<int>& nZoomBeginGlobal,
39                        const std::vector<int>& nGlobal);
40
[551]41    /** Default destructor */
42    virtual ~CDistributionServer();
43
[676]44    const std::vector<int>& getZoomBeginGlobal() const;
45    const std::vector<int>& getZoomBeginServer() const;
46    const std::vector<int>& getZoomSizeServer() const;
[1144]47    const GlobalLocalMap& getGlobalLocalIndex() const { return globalLocalIndexMap_; }   
[1099]48    int getGridSize() const;
[1144]49   
[554]50    virtual void computeLocalIndex(CArray<size_t,1>& globalIndex);
[676]51    virtual void computeGlobalIndex(CArray<int,1>& indexes) const;
[552]52
[551]53  protected:
54    virtual void createGlobalIndex();
[930]55
56  protected:
57    GlobalLocalMap globalLocalIndexMap_;
58
[551]59  private:
60    std::vector<int> nGlobal_;
[567]61    std::vector<int> nZoomBeginGlobal_;
[552]62    std::vector<int> nZoomSize_;
63    std::vector<int> nZoomBegin_;
[1201]64
[551]65};
66
[552]67} // namespace xios
[551]68#endif // __XIOS_DISTRIBUTION_SERVER_HPP__
Note: See TracBrowser for help on using the repository browser.