source: XIOS/dev/dev_ym/XIOS_COUPLING/src/manager/servers_ressource.cpp @ 2246

Last change on this file since 2246 was 2246, checked in by ymipsl, 3 years ago
  • Update of the tranfer protocol using one sided communication
  • Introduce MPI_Improb/MPI_mrecv to listen incomming request
  • Introducing latency when looping over managers

YM

  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 4.9 KB
Line 
1#include "servers_ressource.hpp"
2#include "window_manager.hpp"
3#include "ressources_manager.hpp"
4#include "pool_ressource.hpp"
5#include "cxios.hpp"
6#include "mpi.hpp"
7#include "timer.hpp"
8#include <vector>
9#include <string>
10
11
12
13
14namespace xios
15{
16  using namespace std ;
17
18  CServersRessource::CServersRessource(MPI_Comm serverComm) : poolRessource_(nullptr), finalizeSignal_(false)
19  {
20
21    MPI_Comm_dup(serverComm, &serverComm_) ;
22    MPI_Comm xiosComm=CXios::getXiosComm() ;
23 
24    int localRank, globalRank ;
25    MPI_Comm_rank(xiosComm,&globalRank) ;
26    MPI_Comm_rank(serverComm_,&localRank) ;
27   
28    winNotify_ = new CWindowManager(serverComm_, maxBufferSize_) ;
29    MPI_Barrier(serverComm_) ;
30    if (localRank==localLeader_) 
31    {
32      int commSize ;
33      MPI_Comm_size(serverComm_,&commSize) ;
34      CXios::getRessourcesManager()->registerServerLeader(globalRank) ;
35      CXios::getRessourcesManager()->registerRessourcesSize(commSize) ;
36      freeRessourcesRank_.resize(commSize) ;
37      for(int i=0;i<commSize;i++) freeRessourcesRank_[i]=i ;
38    }
39
40    MPI_Comm_dup(serverComm_, &freeRessourcesComm_) ; 
41
42  }
43
44  void CServersRessource::createPool(const string& poolId, const int size)
45  {
46    int commSize ;
47    MPI_Comm_size(serverComm_,&commSize) ;
48    vector<int> newFreeRessourcesRank(freeRessourcesRank_.size()-size) ;
49
50    bool isPartOf ;
51
52    for(int i=0; i<freeRessourcesRank_.size();i++) 
53    {
54       if (i<size) isPartOf=true ;
55       else 
56       {
57         isPartOf=false ;
58         newFreeRessourcesRank[i]=freeRessourcesRank_[i] ;
59       }
60       
61       notifyOutType_=NOTIFY_CREATE_POOL ;
62       notifyOutCreatePool_ = make_tuple(poolId, isPartOf) ;
63       sendNotification(freeRessourcesRank_[i]) ;
64    }
65    freeRessourcesRank_ = std::move(newFreeRessourcesRank) ;
66  }
67
68  void CServersRessource::finalize(void)
69  {
70    int commSize ;
71    MPI_Comm_size(serverComm_,&commSize) ;
72
73    for(int rank=0; rank<commSize;rank++)
74    { 
75      notifyOutType_=NOTIFY_FINALIZE ;
76      sendNotification(rank) ;
77    }
78  }
79
80  void CServersRessource::sendNotification(int rank)
81  {
82    winNotify_->lockWindow(rank,0) ;
83    winNotify_->pushToWindow(rank, this, &CServersRessource::notificationsDumpOut) ;
84    winNotify_->unlockWindow(rank,0) ;
85  }
86
87
88  void CServersRessource::notificationsDumpOut(CBufferOut& buffer)
89  {
90   
91    buffer.realloc(maxBufferSize_) ;
92   
93    if (notifyOutType_==NOTIFY_CREATE_POOL)
94    {
95      auto& arg=notifyOutCreatePool_ ;
96      buffer << notifyOutType_ << std::get<0>(arg) << std::get<1>(arg) ;
97    }
98    else if (notifyOutType_==NOTIFY_FINALIZE) buffer << notifyOutType_ ;
99  }
100
101  void CServersRessource::notificationsDumpIn(CBufferIn& buffer)
102  {
103    if (buffer.bufferSize() == 0) notifyInType_= NOTIFY_NOTHING ;
104    else
105    {
106      buffer>>notifyInType_;
107      if (notifyInType_==NOTIFY_CREATE_POOL)
108      {
109        auto& arg=notifyInCreatePool_ ;
110        buffer >> std::get<0>(arg) >> std::get<1>(arg)  ;
111      }
112      else if (notifyInType_==NOTIFY_FINALIZE) { /*nothing to do*/}
113    }
114  }
115
116  bool CServersRessource::eventLoop(bool serviceOnly)
117  {
118    CTimer::get("CServersRessource::eventLoop").resume();
119    double time=MPI_Wtime() ;
120    if (time-lastEventLoop_ > eventLoopLatency_) 
121    {
122      checkNotifications() ;
123      lastEventLoop_=time ;
124    }
125
126    if (poolRessource_!=nullptr) 
127    {
128      if (poolRessource_->eventLoop(serviceOnly))
129      {
130        poolRessource_=nullptr ;
131        // don't forget to free pool ressource later
132      } 
133    }
134    CTimer::get("CServersRessource::eventLoop").suspend();
135    if (poolRessource_==nullptr && finalizeSignal_) return true ;
136    else return false ;
137  }
138
139  void CServersRessource::checkNotifications(void)
140  {
141    int commRank ;
142    MPI_Comm_rank(serverComm_, &commRank) ;
143    winNotify_->lockWindow(commRank,0) ;
144    winNotify_->popFromWindow(commRank, this, &CServersRessource::notificationsDumpIn) ;
145    winNotify_->unlockWindow(commRank,0) ;
146    if (notifyInType_==NOTIFY_CREATE_POOL) createPool() ;
147    else if (notifyInType_==NOTIFY_FINALIZE) finalizeSignal() ;
148  }
149
150  void CServersRessource::createPool(void)
151  {
152    auto& arg=notifyInCreatePool_ ;
153    string poolId=get<0>(arg) ;
154    bool isPartOf=get<1>(arg) ;
155   
156    int commRank ;
157    MPI_Comm poolComm ;
158    MPI_Comm_rank(freeRessourcesComm_,&commRank) ;
159    MPI_Comm_split(freeRessourcesComm_, isPartOf, commRank, &poolComm) ;
160   
161    if (isPartOf)
162    { 
163      poolRessource_ = new CPoolRessource(poolComm, poolId) ;
164      MPI_Comm_free(&poolComm) ;
165    }
166    else 
167    {
168      MPI_Comm_free(&freeRessourcesComm_) ;
169      freeRessourcesComm_=poolComm ;
170    }
171
172  }
173 
174  void CServersRessource::finalizeSignal(void)
175  {
176    finalizeSignal_=true ;
177    if (poolRessource_!=nullptr) poolRessource_->finalizeSignal() ;
178  }
179
180  bool CServersRessource::isServerLeader(void)
181  {
182    int commRank ;
183    MPI_Comm_rank(serverComm_,&commRank) ;
184    if (commRank==localLeader_) return true ;
185    else return false ;
186  }
187}
Note: See TracBrowser for help on using the repository browser.