Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
banish some surf parsing files to a src/surf/xml jail
[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   surf_network_model = new simgrid::surf::NetworkIBModel();
98   net_define_callbacks();
99   xbt_dynar_push(all_existing_models, &surf_network_model);
100   networkActionStateChangedCallbacks.connect(IB_action_state_changed_callback);
101   networkCommunicateCallbacks.connect(IB_action_init_callback);
102   simgrid::s4u::Host::onCreation.connect(IB_create_host_callback);
103   xbt_cfg_setdefault_double(_sg_cfg_set, "network/weight_S", 8775);
104   
105 }
106
107 #include "src/surf/xml/platf.hpp" // FIXME: move that back to the parsing area
108
109 namespace simgrid {
110 namespace surf {
111
112 NetworkIBModel::NetworkIBModel()
113  : NetworkSmpiModel() {
114   m_haveGap=false;
115   active_nodes=NULL;
116     
117   const char* IB_factors_string=sg_cfg_get_string("smpi/IB_penalty_factors");
118   xbt_dynar_t radical_elements = xbt_str_split(IB_factors_string, ";");
119   
120   surf_parse_assert(xbt_dynar_length(radical_elements)==3,
121     "smpi/IB_penalty_factors should be provided and contain 3 elements, semi-colon separated : for example 0.965;0.925;1.35");
122   
123   Be = xbt_str_parse_double(xbt_dynar_get_as(radical_elements, 0, char *), "First part of smpi/IB_penalty_factors is not numerical: %s");
124   Bs = xbt_str_parse_double(xbt_dynar_get_as(radical_elements, 1, char *), "Second part of smpi/IB_penalty_factors is not numerical: %s");
125   ys = xbt_str_parse_double(xbt_dynar_get_as(radical_elements, 2, char *), "Third part of smpi/IB_penalty_factors is not numerical: %s");
126
127   xbt_dynar_free(&radical_elements);
128 }
129
130 NetworkIBModel::~NetworkIBModel()
131 {
132   xbt_dict_cursor_t cursor = NULL;
133   IBNode* instance = NULL;
134   char *name = NULL;
135   xbt_dict_foreach(active_nodes, cursor, name, instance)
136     delete instance;
137   xbt_dict_free(&active_nodes);
138 }
139
140 void NetworkIBModel::computeIBfactors(IBNode *root) {
141   double penalized_bw=0.0;
142   double num_comm_out = (double) root->ActiveCommsUp.size();
143   double max_penalty_out=0.0;
144   //first, compute all outbound penalties to get their max
145   for (std::vector<ActiveComm*>::iterator it= root->ActiveCommsUp.begin(); it != root->ActiveCommsUp.end(); ++it) {
146     double my_penalty_out = 1.0;
147
148     if(num_comm_out!=1){
149       if((*it)->destination->nbActiveCommsDown > 2)//number of comms sent to the receiving node
150   my_penalty_out = num_comm_out * Bs * ys;
151       else
152   my_penalty_out = num_comm_out * Bs;
153     }
154
155     max_penalty_out = std::max(max_penalty_out,my_penalty_out);
156   }
157
158   for (std::vector<ActiveComm*>::iterator it= root->ActiveCommsUp.begin(); it != root->ActiveCommsUp.end(); ++it) {
159
160     //compute inbound penalty
161     double my_penalty_in = 1.0;
162     int nb_comms = (*it)->destination->nbActiveCommsDown;//total number of incoming comms
163     if(nb_comms!=1)
164       my_penalty_in = ((*it)->destination->ActiveCommsDown)[root] //number of comm sent to dest by root node
165           * Be 
166           * (*it)->destination->ActiveCommsDown.size();//number of different nodes sending to dest
167     
168     double penalty = std::max(my_penalty_in,max_penalty_out);
169     
170     double rate_before_update = (*it)->action->getBound();
171     //save initial rate of the action
172     if((*it)->init_rate==-1) 
173       (*it)->init_rate= rate_before_update;
174     
175     penalized_bw= ! num_comm_out ? (*it)->init_rate : (*it)->init_rate /penalty;
176     
177     if (!double_equals(penalized_bw, rate_before_update, sg_surf_precision)){
178       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 );
179       lmm_update_variable_bound(p_maxminSystem, (*it)->action->getVariable(), penalized_bw);
180     }else{
181       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 );
182     }
183
184   }
185   XBT_DEBUG("Finished computing IB penalties");
186 }
187
188 void NetworkIBModel::updateIBfactors_rec(IBNode *root, bool* updatedlist) {
189   if(updatedlist[root->id]==0){
190     XBT_DEBUG("IB - Updating rec %d", root->id);
191     computeIBfactors(root);
192     updatedlist[root->id]=1;
193     for (std::vector<ActiveComm*>::iterator it= root->ActiveCommsUp.begin(); it != root->ActiveCommsUp.end(); ++it) {
194         if(updatedlist[(*it)->destination->id]!=1)
195           updateIBfactors_rec((*it)->destination, updatedlist);
196     }
197     for (std::map<IBNode*, int>::iterator it= root->ActiveCommsDown.begin(); it != root->ActiveCommsDown.end(); ++it) {
198         if(updatedlist[it->first->id]!=1)
199           updateIBfactors_rec(it->first, updatedlist);
200     }
201   }
202 }
203
204
205 void NetworkIBModel::updateIBfactors(NetworkAction *action, IBNode *from, IBNode * to, int remove) {
206   if (from == to)//disregard local comms (should use loopback)
207     return;
208   
209   bool* updated=(bool*)xbt_malloc0(xbt_dict_size(active_nodes)*sizeof(bool));
210   ActiveComm* comm=NULL;
211   if(remove){
212     if(to->ActiveCommsDown[from]==1)
213       to->ActiveCommsDown.erase(from);
214     else
215       to->ActiveCommsDown[from]-=1;
216
217     to->nbActiveCommsDown--;
218     for (std::vector<ActiveComm*>::iterator it= from->ActiveCommsUp.begin(); 
219    it != from->ActiveCommsUp.end(); ++it) {
220       if((*it)->action==action){
221   comm=(*it);
222   from->ActiveCommsUp.erase(it);
223   break;
224       }
225     }
226     action->unref();
227
228   }else{
229     action->ref();
230     ActiveComm* comm=new ActiveComm();
231     comm->action=action;
232     comm->destination=to;
233     from->ActiveCommsUp.push_back(comm);
234
235     to->ActiveCommsDown[from]+=1;
236     to->nbActiveCommsDown++;
237   }
238   XBT_DEBUG("IB - Updating %d", from->id);
239   updateIBfactors_rec(from, updated);
240   XBT_DEBUG("IB - Finished updating %d", from->id);
241   if(comm)
242     delete comm;
243   xbt_free(updated);
244 }
245
246 }
247 }