source: XIOS/dev/dev_olga/src/distribution.hpp @ 1620

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

Replacing Boost's unordered_map and shared_pointer by its STL counterparts.

Two notes for Curie:

  • one can see the content of unordered_map with ddt only if XIOS has been compiled with gnu
  • XIOS will not compile any more with pgi (all available versions use old STL which are not up to the c++11 norms)
File size: 1.2 KB
Line 
1/*!
2   \file distribution.hpp
3   \author Ha NGUYEN
4   \since 13 Jan 2015
5   \date 09 Feb 2015
6
7   \brief Index distribution on server side.
8 */
9#ifndef __XIOS_DISTRIBUTION_HPP__
10#define __XIOS_DISTRIBUTION_HPP__
11
12#include "xios_spl.hpp"
13#include "array_new.hpp"
14#include <unordered_map>
15
16namespace xios {
17/*!
18 \class CDistribution
19 The parent class of CDistributionClient and CDistributionServer, which declares and defines
20some basic methods and properties for its children. This class allows its descendants to calculate
21distribution of index on client or server side.
22*/
23class CDistribution
24{
25  public:
26  typedef std::unordered_map<size_t,int> GlobalLocalMap;
27
28  public:
29    /** Default constructor */
30    CDistribution(int rank, int dims, const CArray<size_t,1>& globalIndex = CArray<size_t,1>());
31
32    /** Default destructor */
33    virtual ~CDistribution();
34
35    int getDims() const; //! Get dimension size
36    int getRank() const; //! Get rank of current process
37    const CArray<size_t,1>& getGlobalIndex() const;
38   
39  protected:
40    virtual void createGlobalIndex() {};
41
42  protected:
43    CArray<size_t,1> globalIndex_;
44    int dims_;
45    int rank_;
46};
47
48} // namespace xios
49#endif // __XIOS_DISTRIBUTION_HPP__
Note: See TracBrowser for help on using the repository browser.