Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
woops
[simgrid.git] / src / kernel / routing / DragonflyZone.cpp
1 /* Copyright (c) 2014-2016. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "src/kernel/routing/DragonflyZone.hpp"
7 #include "src/kernel/routing/NetPoint.hpp"
8 #include "src/surf/network_interface.hpp"
9
10 #include <boost/algorithm/string/classification.hpp>
11 #include <boost/algorithm/string/split.hpp>
12 #include <string>
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster_dragonfly, surf_route_cluster, "Dragonfly Routing part of surf");
15
16 namespace simgrid {
17 namespace kernel {
18 namespace routing {
19
20 DragonflyZone::DragonflyZone(NetZone* father, const char* name) : ClusterZone(father, name)
21 {
22 }
23
24 DragonflyZone::~DragonflyZone()
25 {
26   if (this->routers_ != nullptr) {
27     for (unsigned int i = 0; i < this->numGroups_ * this->numChassisPerGroup_ * this->numBladesPerChassis_; i++)
28       delete (routers_[i]);
29     xbt_free(routers_);
30   }
31 }
32
33 unsigned int* DragonflyZone::rankId_to_coords(int rankId)
34 {
35   // coords : group, chassis, blade, node
36   unsigned int* coords = (unsigned int*)malloc(4 * sizeof(unsigned int));
37   coords[0]            = rankId / (numChassisPerGroup_ * numBladesPerChassis_ * numNodesPerBlade_);
38   rankId               = rankId % (numChassisPerGroup_ * numBladesPerChassis_ * numNodesPerBlade_);
39   coords[1]            = rankId / (numBladesPerChassis_ * numNodesPerBlade_);
40   rankId               = rankId % (numBladesPerChassis_ * numNodesPerBlade_);
41   coords[2]            = rankId / numNodesPerBlade_;
42   coords[3]            = rankId % numNodesPerBlade_;
43
44   return coords;
45 }
46
47 void DragonflyZone::parse_specific_arguments(sg_platf_cluster_cbarg_t cluster)
48 {
49   std::vector<std::string> parameters;
50   std::vector<std::string> tmp;
51   boost::split(parameters, cluster->topo_parameters, boost::is_any_of(";"));
52
53   // TODO : we have to check for zeros and negative numbers, or it might crash
54   if (parameters.size() != 4) {
55     surf_parse_error(
56         "Dragonfly are defined by the number of groups, chassis per groups, blades per chassis, nodes per blade");
57   }
58
59   // Blue network : number of groups, number of links between each group
60   boost::split(tmp, parameters[0], boost::is_any_of(","));
61   if (tmp.size() != 2) {
62     surf_parse_error("Dragonfly topologies are defined by 3 levels with 2 elements each, and one with one element");
63   }
64
65   this->numGroups_    = xbt_str_parse_int(tmp[0].c_str(), "Invalid number of groups: %s");
66   this->numLinksBlue_ = xbt_str_parse_int(tmp[1].c_str(), "Invalid number of links for the blue level: %s");
67
68   // Black network : number of chassis/group, number of links between each router on the black network
69   boost::split(tmp, parameters[1], boost::is_any_of(","));
70   if (tmp.size() != 2) {
71     surf_parse_error("Dragonfly topologies are defined by 3 levels with 2 elements each, and one with one element");
72   }
73
74   this->numChassisPerGroup_ = xbt_str_parse_int(tmp[0].c_str(), "Invalid number of groups: %s");
75   this->numLinksBlack_      = xbt_str_parse_int(tmp[1].c_str(), "Invalid number of links  for the black level: %s");
76
77   // Green network : number of blades/chassis, number of links between each router on the green network
78   boost::split(tmp, parameters[2], boost::is_any_of(","));
79   if (tmp.size() != 2) {
80     surf_parse_error("Dragonfly topologies are defined by 3 levels with 2 elements each, and one with one element");
81   }
82
83   this->numBladesPerChassis_ = xbt_str_parse_int(tmp[0].c_str(), "Invalid number of groups: %s");
84   this->numLinksGreen_       = xbt_str_parse_int(tmp[1].c_str(), "Invalid number of links for the green level: %s");
85
86   // The last part of topo_parameters should be the number of nodes per blade
87   this->numNodesPerBlade_ =
88       xbt_str_parse_int(parameters[3].c_str(), "Last parameter is not the amount of nodes per blade: %s");
89   this->cluster_ = cluster;
90 }
91
92 /*
93 * Generate the cluster once every node is created
94 */
95 void DragonflyZone::seal()
96 {
97   if (this->numNodesPerBlade_ == 0) {
98     return;
99   }
100
101   this->generateRouters();
102   this->generateLinks();
103 }
104
105 DragonflyRouter::DragonflyRouter(int group, int chassis, int blade) : group_(group), chassis_(chassis), blade_(blade)
106 {
107 }
108
109 DragonflyRouter::~DragonflyRouter()
110 {
111   if (this->myNodes_ != nullptr)
112     xbt_free(myNodes_);
113   if (this->greenLinks_ != nullptr)
114     xbt_free(greenLinks_);
115   if (this->blackLinks_ != nullptr)
116     xbt_free(blackLinks_);
117   if (this->blueLinks_ != nullptr)
118     xbt_free(blueLinks_);
119 }
120
121 void DragonflyZone::generateRouters()
122 {
123   this->routers_ = static_cast<DragonflyRouter**>(xbt_malloc0(this->numGroups_ * this->numChassisPerGroup_ *
124                                                               this->numBladesPerChassis_ * sizeof(DragonflyRouter*)));
125
126   for (unsigned int i = 0; i < this->numGroups_; i++) {
127     for (unsigned int j = 0; j < this->numChassisPerGroup_; j++) {
128       for (unsigned int k = 0; k < this->numBladesPerChassis_; k++) {
129         DragonflyRouter* router = new DragonflyRouter(i, j, k);
130         this->routers_[i * this->numChassisPerGroup_ * this->numBladesPerChassis_ + j * this->numBladesPerChassis_ +
131                        k] = router;
132       }
133     }
134   }
135 }
136
137 void DragonflyZone::createLink(char* id, int numlinks, surf::LinkImpl** linkup, surf::LinkImpl** linkdown)
138 {
139   *linkup   = nullptr;
140   *linkdown = nullptr;
141   s_sg_platf_link_cbarg_t linkTemplate;
142   memset(&linkTemplate, 0, sizeof(linkTemplate));
143   linkTemplate.bandwidth = this->cluster_->bw * numlinks;
144   linkTemplate.latency   = this->cluster_->lat;
145   linkTemplate.policy    = this->cluster_->sharing_policy; // sthg to do with that ?
146   linkTemplate.id        = std::string(id);
147   sg_platf_new_link(&linkTemplate);
148   XBT_DEBUG("Generating link %s", id);
149   surf::LinkImpl* link;
150   std::string tmpID;
151   if (this->cluster_->sharing_policy == SURF_LINK_FULLDUPLEX) {
152     tmpID     = std::string(linkTemplate.id) + "_UP";
153     link      = surf::LinkImpl::byName(tmpID.c_str());
154     *linkup   = link; // check link?
155     tmpID     = std::string(linkTemplate.id) + "_DOWN";
156     link      = surf::LinkImpl::byName(tmpID.c_str());
157     *linkdown = link; // check link ?
158   } else {
159     link      = surf::LinkImpl::byName(linkTemplate.id.c_str());
160     *linkup   = link;
161     *linkdown = link;
162   }
163 }
164
165 void DragonflyZone::generateLinks()
166 {
167   static int uniqueId = 0;
168   char* id            = nullptr;
169   surf::LinkImpl* linkup;
170   surf::LinkImpl* linkdown;
171
172   unsigned int numRouters = this->numGroups_ * this->numChassisPerGroup_ * this->numBladesPerChassis_;
173
174   if (this->cluster_->sharing_policy == SURF_LINK_FULLDUPLEX)
175     numLinksperLink_ = 2;
176
177   // Links from routers to their local nodes.
178   for (unsigned int i = 0; i < numRouters; i++) {
179     // allocate structures
180     this->routers_[i]->myNodes_ = static_cast<surf::LinkImpl**>(
181         xbt_malloc0(numLinksperLink_ * this->numNodesPerBlade_ * sizeof(surf::LinkImpl*)));
182     this->routers_[i]->greenLinks_ =
183         static_cast<surf::LinkImpl**>(xbt_malloc0(this->numBladesPerChassis_ * sizeof(surf::LinkImpl*)));
184     this->routers_[i]->blackLinks_ =
185         static_cast<surf::LinkImpl**>(xbt_malloc0(this->numChassisPerGroup_ * sizeof(surf::LinkImpl*)));
186
187     for (unsigned int j = 0; j < numLinksperLink_ * this->numNodesPerBlade_; j += numLinksperLink_) {
188       id = bprintf("local_link_from_router_%d_to_node_%d_%d", i, j / numLinksperLink_, uniqueId);
189       this->createLink(id, 1, &linkup, &linkdown);
190       if (this->cluster_->sharing_policy == SURF_LINK_FULLDUPLEX) {
191         this->routers_[i]->myNodes_[j]     = linkup;
192         this->routers_[i]->myNodes_[j + 1] = linkdown;
193       } else {
194         this->routers_[i]->myNodes_[j] = linkup;
195       }
196       uniqueId++;
197     }
198   }
199
200   // Green links from routers to same chassis routers - alltoall
201   for (unsigned int i = 0; i < this->numGroups_ * this->numChassisPerGroup_; i++) {
202     for (unsigned int j = 0; j < this->numBladesPerChassis_; j++) {
203       for (unsigned int k = j + 1; k < this->numBladesPerChassis_; k++) {
204         id = bprintf("green_link_in_chassis_%d_between_routers_%d_and_%d_%d", i % numChassisPerGroup_, j, k, uniqueId);
205         this->createLink(id, this->numLinksGreen_, &linkup, &linkdown);
206         this->routers_[i * numBladesPerChassis_ + j]->greenLinks_[k] = linkup;
207         this->routers_[i * numBladesPerChassis_ + k]->greenLinks_[j] = linkdown;
208         uniqueId++;
209       }
210     }
211   }
212
213   // Black links from routers to same group routers - alltoall
214   for (unsigned int i = 0; i < this->numGroups_; i++) {
215     for (unsigned int j = 0; j < this->numChassisPerGroup_; j++) {
216       for (unsigned int k = j + 1; k < this->numChassisPerGroup_; k++) {
217         for (unsigned int l = 0; l < this->numBladesPerChassis_; l++) {
218           id = bprintf("black_link_in_group_%d_between_chassis_%d_and_%d_blade_%d_%d", i, j, k, l, uniqueId);
219           this->createLink(id, this->numLinksBlack_, &linkup, &linkdown);
220           this->routers_[i * numBladesPerChassis_ * numChassisPerGroup_ + j * numBladesPerChassis_ + l]
221               ->blackLinks_[k] = linkup;
222           this->routers_[i * numBladesPerChassis_ * numChassisPerGroup_ + k * numBladesPerChassis_ + l]
223               ->blackLinks_[j] = linkdown;
224           uniqueId++;
225         }
226       }
227     }
228   }
229
230   // Blue links between groups - Not all routers involved, only one per group is linked to others. Let's say router n of
231   // each group is linked to group n.
232   // FIXME: in reality blue links may be attached to several different routers
233   for (unsigned int i = 0; i < this->numGroups_; i++) {
234     for (unsigned int j = i + 1; j < this->numGroups_; j++) {
235       unsigned int routernumi                = i * numBladesPerChassis_ * numChassisPerGroup_ + j;
236       unsigned int routernumj                = j * numBladesPerChassis_ * numChassisPerGroup_ + i;
237       this->routers_[routernumi]->blueLinks_ = static_cast<surf::LinkImpl**>(xbt_malloc0(sizeof(surf::LinkImpl*)));
238       this->routers_[routernumj]->blueLinks_ = static_cast<surf::LinkImpl**>(xbt_malloc0(sizeof(surf::LinkImpl*)));
239       id = bprintf("blue_link_between_group_%d_and_%d_routers_%d_and_%d_%d", i, j, routernumi, routernumj, uniqueId);
240       this->createLink(id, this->numLinksBlue_, &linkup, &linkdown);
241       this->routers_[routernumi]->blueLinks_[0] = linkup;
242       this->routers_[routernumj]->blueLinks_[0] = linkdown;
243       uniqueId++;
244     }
245   }
246 }
247
248 void DragonflyZone::getLocalRoute(NetPoint* src, NetPoint* dst, sg_platf_route_cbarg_t route, double* latency)
249 {
250   // Minimal routing version.
251   // TODO : non-minimal random one, and adaptive ?
252
253   if (dst->isRouter() || src->isRouter())
254     return;
255
256   XBT_VERB("dragonfly getLocalRout from '%s'[%d] to '%s'[%d]", src->name().c_str(), src->id(), dst->name().c_str(),
257            dst->id());
258
259   if ((src->id() == dst->id()) && hasLoopback_) {
260     std::pair<surf::LinkImpl*, surf::LinkImpl*> info = privateLinks_.at(src->id() * linkCountPerNode_);
261
262     route->link_list->push_back(info.first);
263     if (latency)
264       *latency += info.first->latency();
265     return;
266   }
267
268   unsigned int* myCoords     = rankId_to_coords(src->id());
269   unsigned int* targetCoords = rankId_to_coords(dst->id());
270   XBT_DEBUG("src : %u group, %u chassis, %u blade, %u node", myCoords[0], myCoords[1], myCoords[2], myCoords[3]);
271   XBT_DEBUG("dst : %u group, %u chassis, %u blade, %u node", targetCoords[0], targetCoords[1], targetCoords[2],
272             targetCoords[3]);
273
274   DragonflyRouter* myRouter = routers_[myCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) +
275                                        myCoords[1] * numBladesPerChassis_ + myCoords[2]];
276   DragonflyRouter* targetRouter = routers_[targetCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) +
277                                            targetCoords[1] * numBladesPerChassis_ + targetCoords[2]];
278   DragonflyRouter* currentRouter = myRouter;
279
280   // node->router local link
281   route->link_list->push_back(myRouter->myNodes_[myCoords[3] * numLinksperLink_]);
282   if (latency)
283     *latency += myRouter->myNodes_[myCoords[3] * numLinksperLink_]->latency();
284
285   if (hasLimiter_) { // limiter for sender
286     std::pair<surf::LinkImpl*, surf::LinkImpl*> info = privateLinks_.at(src->id() * linkCountPerNode_ + hasLoopback_);
287     route->link_list->push_back(info.first);
288   }
289
290   if (targetRouter != myRouter) {
291
292     // are we on a different group ?
293     if (targetRouter->group_ != currentRouter->group_) {
294       // go to the router of our group connected to this one.
295       if (currentRouter->blade_ != targetCoords[0]) {
296         // go to the nth router in our chassis
297         route->link_list->push_back(currentRouter->greenLinks_[targetCoords[0]]);
298         if (latency)
299           *latency += currentRouter->greenLinks_[targetCoords[0]]->latency();
300         currentRouter = routers_[myCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) +
301                                  myCoords[1] * numBladesPerChassis_ + targetCoords[0]];
302       }
303
304       if (currentRouter->chassis_ != 0) {
305         // go to the first chassis of our group
306         route->link_list->push_back(currentRouter->blackLinks_[0]);
307         if (latency)
308           *latency += currentRouter->blackLinks_[0]->latency();
309         currentRouter = routers_[myCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) + targetCoords[0]];
310       }
311
312       // go to destination group - the only optical hop
313       route->link_list->push_back(currentRouter->blueLinks_[0]);
314       if (latency)
315         *latency += currentRouter->blueLinks_[0]->latency();
316       currentRouter = routers_[targetCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) + myCoords[0]];
317     }
318
319     // same group, but same blade ?
320     if (targetRouter->blade_ != currentRouter->blade_) {
321       route->link_list->push_back(currentRouter->greenLinks_[targetCoords[2]]);
322       if (latency)
323         *latency += currentRouter->greenLinks_[targetCoords[2]]->latency();
324       currentRouter = routers_[targetCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) + targetCoords[2]];
325     }
326
327     // same blade, but same chassis ?
328     if (targetRouter->chassis_ != currentRouter->chassis_) {
329       route->link_list->push_back(currentRouter->blackLinks_[targetCoords[1]]);
330       if (latency)
331         *latency += currentRouter->blackLinks_[targetCoords[1]]->latency();
332       currentRouter = routers_[targetCoords[0] * (numChassisPerGroup_ * numBladesPerChassis_) +
333                                targetCoords[1] * numBladesPerChassis_ + targetCoords[2]];
334     }
335   }
336
337   if (hasLimiter_) { // limiter for receiver
338     std::pair<surf::LinkImpl*, surf::LinkImpl*> info = privateLinks_.at(dst->id() * linkCountPerNode_ + hasLoopback_);
339     route->link_list->push_back(info.first);
340   }
341
342   // router->node local link
343   route->link_list->push_back(targetRouter->myNodes_[targetCoords[3] * numLinksperLink_ + numLinksperLink_ - 1]);
344   if (latency)
345     *latency += targetRouter->myNodes_[targetCoords[3] * numLinksperLink_ + numLinksperLink_ - 1]->latency();
346
347   xbt_free(myCoords);
348   xbt_free(targetCoords);
349 }
350 }
351 }
352 } // namespace