Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
In <host> and <link>, attributes availability and state are gone.
[simgrid.git] / src / surf / network_ib.cpp
1 /* Copyright (c) 2014-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <algorithm>
8 #include <utility>
9
10 #include "network_ib.hpp"
11 #include "simgrid/sg_config.h"
12 #include "maxmin_private.hpp"
13 #include "src/surf/host_interface.hpp"
14
15 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_network);
16
17 static void IB_create_host_callback(simgrid::s4u::Host& host){
18   using namespace simgrid::surf;
19   
20   static int id=0;
21 // pour t->id -> rajouter une nouvelle struct dans le dict, pour stocker les comms actives
22   if(((NetworkIBModel*)surf_network_model)->active_nodes==NULL)
23     ((NetworkIBModel*)surf_network_model)->active_nodes=xbt_dict_new();
24   
25   IBNode* act = new IBNode(id);
26
27   id++;
28   xbt_dict_set(((NetworkIBModel*)surf_network_model)->active_nodes,
29     host.name().c_str(), act, NULL);
30
31 }
32
33 static void IB_action_state_changed_callback(
34   simgrid::surf::NetworkAction *action,
35   e_surf_action_state_t statein, e_surf_action_state_t stateout)
36 {
37  using namespace simgrid::surf;
38  if(statein!=SURF_ACTION_RUNNING|| stateout!=SURF_ACTION_DONE)
39     return;
40   std::pair<IBNode*,IBNode*> pair = ((NetworkIBModel*)surf_network_model)->active_comms[action];
41   XBT_DEBUG("IB callback - action %p finished", action);
42  
43  ((NetworkIBModel*)surf_network_model)->updateIBfactors(action, pair.first, pair.second, 1);
44
45   ((NetworkIBModel*)surf_network_model)->active_comms.erase(action);
46   
47 }
48
49
50 static void IB_action_init_callback(
51   simgrid::surf::NetworkAction *action, simgrid::surf::NetCard *src, simgrid::surf::NetCard *dst,
52   double size, double rate)
53 {
54   using namespace simgrid::surf;
55   if(((NetworkIBModel*)surf_network_model)->active_nodes==NULL)
56     xbt_die("IB comm added, without any node connected !");
57   
58   IBNode* act_src= (IBNode*) xbt_dict_get_or_null(((NetworkIBModel*)surf_network_model)->active_nodes, src->name());
59   if(act_src==NULL)
60     xbt_die("could not find src node active comms !");
61   //act_src->rate=rate;
62   
63   IBNode* act_dst= (IBNode*) xbt_dict_get_or_null(((NetworkIBModel*)surf_network_model)->active_nodes, dst->name());
64   if(act_dst==NULL)
65     xbt_die("could not find dst node active comms !");  
66  // act_dst->rate=rate;
67   
68   ((NetworkIBModel*)surf_network_model)->active_comms[action]=std::make_pair(act_src, act_dst);
69   //post the action in the second dist, to retrieve in the other callback
70   XBT_DEBUG("IB callback - action %p init", action);
71
72   ((NetworkIBModel*)surf_network_model)->updateIBfactors(action, act_src, act_dst, 0);
73   
74 }
75
76 /*********
77  * Model *
78  *********/
79
80 /************************************************************************/
81 /* New model based on MPI contention model for Infiniband platforms */
82 /************************************************************************/
83 /* @Inproceedings{mescal_vienne_phd, */
84 /*  author={Jérôme Vienne}, */
85 /*  title={prédiction de performances d’applications de calcul haute performance sur réseau Infiniband}, */
86 /*  address={Grenoble FRANCE}, */
87 /*  month=june, */
88 /*  year={2010} */
89 /*  } */
90 void surf_network_model_init_IB(void)
91 {
92   using simgrid::surf::networkActionStateChangedCallbacks;
93   using simgrid::surf::networkCommunicateCallbacks;
94
95   if (surf_network_model)
96     return;
97
98   simgrid::surf::on_link.connect(netlink_parse_init);
99   surf_network_model = new simgrid::surf::NetworkIBModel();
100   xbt_dynar_push(all_existing_models, &surf_network_model);
101   networkActionStateChangedCallbacks.connect(IB_action_state_changed_callback);
102   networkCommunicateCallbacks.connect(IB_action_init_callback);
103   simgrid::s4u::Host::onCreation.connect(IB_create_host_callback);
104   xbt_cfg_setdefault_double(_sg_cfg_set, "network/weight_S", 8775);
105   
106 }
107
108 #include "src/surf/xml/platf.hpp" // FIXME: move that back to the parsing area
109
110 namespace simgrid {
111 namespace surf {
112
113 NetworkIBModel::NetworkIBModel()
114  : NetworkSmpiModel() {
115   m_haveGap=false;
116   active_nodes=NULL;
117     
118   const char* IB_factors_string=sg_cfg_get_string("smpi/IB_penalty_factors");
119   xbt_dynar_t radical_elements = xbt_str_split(IB_factors_string, ";");
120   
121   surf_parse_assert(xbt_dynar_length(radical_elements)==3,
122     "smpi/IB_penalty_factors should be provided and contain 3 elements, semi-colon separated : for example 0.965;0.925;1.35");
123   
124   Be = xbt_str_parse_double(xbt_dynar_get_as(radical_elements, 0, char *), "First part of smpi/IB_penalty_factors is not numerical: %s");
125   Bs = xbt_str_parse_double(xbt_dynar_get_as(radical_elements, 1, char *), "Second part of smpi/IB_penalty_factors is not numerical: %s");
126   ys = xbt_str_parse_double(xbt_dynar_get_as(radical_elements, 2, char *), "Third part of smpi/IB_penalty_factors is not numerical: %s");
127
128   xbt_dynar_free(&radical_elements);
129 }
130
131 NetworkIBModel::~NetworkIBModel()
132 {
133   xbt_dict_cursor_t cursor = NULL;
134   IBNode* instance = NULL;
135   char *name = NULL;
136   xbt_dict_foreach(active_nodes, cursor, name, instance)
137     delete instance;
138   xbt_dict_free(&active_nodes);
139 }
140
141 void NetworkIBModel::computeIBfactors(IBNode *root) {
142   double penalized_bw=0.0;
143   double num_comm_out = (double) root->ActiveCommsUp.size();
144   double max_penalty_out=0.0;
145   //first, compute all outbound penalties to get their max
146   for (std::vector<ActiveComm*>::iterator it= root->ActiveCommsUp.begin(); it != root->ActiveCommsUp.end(); ++it) {
147     double my_penalty_out = 1.0;
148
149     if(num_comm_out!=1){
150       if((*it)->destination->nbActiveCommsDown > 2)//number of comms sent to the receiving node
151   my_penalty_out = num_comm_out * Bs * ys;
152       else
153   my_penalty_out = num_comm_out * Bs;
154     }
155
156     max_penalty_out = std::max(max_penalty_out,my_penalty_out);
157   }
158
159   for (std::vector<ActiveComm*>::iterator it= root->ActiveCommsUp.begin(); it != root->ActiveCommsUp.end(); ++it) {
160
161     //compute inbound penalty
162     double my_penalty_in = 1.0;
163     int nb_comms = (*it)->destination->nbActiveCommsDown;//total number of incoming comms
164     if(nb_comms!=1)
165       my_penalty_in = ((*it)->destination->ActiveCommsDown)[root] //number of comm sent to dest by root node
166           * Be 
167           * (*it)->destination->ActiveCommsDown.size();//number of different nodes sending to dest
168     
169     double penalty = std::max(my_penalty_in,max_penalty_out);
170     
171     double rate_before_update = (*it)->action->getBound();
172     //save initial rate of the action
173     if((*it)->init_rate==-1) 
174       (*it)->init_rate= rate_before_update;
175     
176     penalized_bw= ! num_comm_out ? (*it)->init_rate : (*it)->init_rate /penalty;
177     
178     if (!double_equals(penalized_bw, rate_before_update, sg_surf_precision)){
179       XBT_DEBUG("%d->%d action %p penalty updated : bw now %f, before %f , initial rate %f", root->id,(*it)->destination->id,(*it)->action,penalized_bw, (*it)->action->getBound(), (*it)->init_rate );
180       lmm_update_variable_bound(p_maxminSystem, (*it)->action->getVariable(), penalized_bw);
181     }else{
182       XBT_DEBUG("%d->%d action %p penalty not updated : bw %f, initial rate %f", root->id,(*it)->destination->id,(*it)->action,penalized_bw, (*it)->init_rate );
183     }
184
185   }
186   XBT_DEBUG("Finished computing IB penalties");
187 }
188
189 void NetworkIBModel::updateIBfactors_rec(IBNode *root, bool* updatedlist) {
190   if(updatedlist[root->id]==0){
191     XBT_DEBUG("IB - Updating rec %d", root->id);
192     computeIBfactors(root);
193     updatedlist[root->id]=1;
194     for (std::vector<ActiveComm*>::iterator it= root->ActiveCommsUp.begin(); it != root->ActiveCommsUp.end(); ++it) {
195         if(updatedlist[(*it)->destination->id]!=1)
196           updateIBfactors_rec((*it)->destination, updatedlist);
197     }
198     for (std::map<IBNode*, int>::iterator it= root->ActiveCommsDown.begin(); it != root->ActiveCommsDown.end(); ++it) {
199         if(updatedlist[it->first->id]!=1)
200           updateIBfactors_rec(it->first, updatedlist);
201     }
202   }
203 }
204
205
206 void NetworkIBModel::updateIBfactors(NetworkAction *action, IBNode *from, IBNode * to, int remove) {
207   if (from == to)//disregard local comms (should use loopback)
208     return;
209   
210   bool* updated=(bool*)xbt_malloc0(xbt_dict_size(active_nodes)*sizeof(bool));
211   ActiveComm* comm=NULL;
212   if(remove){
213     if(to->ActiveCommsDown[from]==1)
214       to->ActiveCommsDown.erase(from);
215     else
216       to->ActiveCommsDown[from]-=1;
217
218     to->nbActiveCommsDown--;
219     for (std::vector<ActiveComm*>::iterator it= from->ActiveCommsUp.begin(); 
220    it != from->ActiveCommsUp.end(); ++it) {
221       if((*it)->action==action){
222   comm=(*it);
223   from->ActiveCommsUp.erase(it);
224   break;
225       }
226     }
227     action->unref();
228
229   }else{
230     action->ref();
231     ActiveComm* comm=new ActiveComm();
232     comm->action=action;
233     comm->destination=to;
234     from->ActiveCommsUp.push_back(comm);
235
236     to->ActiveCommsDown[from]+=1;
237     to->nbActiveCommsDown++;
238   }
239   XBT_DEBUG("IB - Updating %d", from->id);
240   updateIBfactors_rec(from, updated);
241   XBT_DEBUG("IB - Finished updating %d", from->id);
242   if(comm)
243     delete comm;
244   xbt_free(updated);
245 }
246
247 }
248 }