Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / src / kernel / routing / TorusZone.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/TorusZone.hpp"
7 #include "src/kernel/routing/NetPoint.hpp"
8 #include "src/surf/network_interface.hpp"
9
10 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster_torus, surf_route_cluster, "Torus Routing part of surf");
11
12 inline unsigned int* rankId_to_coords(int rankId, std::vector<unsigned int> dimensions)
13 {
14
15   unsigned int dim_size_product = 1;
16   unsigned int* coords =  new unsigned int[dimensions.size()];
17   unsigned int i = 0;
18   for (auto cur_dim_size: dimensions) {
19     coords[i]    = (rankId / dim_size_product) % cur_dim_size;
20     dim_size_product *= cur_dim_size;
21     i++;
22   }
23
24   return coords;
25 }
26
27 namespace simgrid {
28 namespace kernel {
29 namespace routing {
30 TorusZone::TorusZone(NetZone* father, const char* name) : ClusterZone(father, name)
31 {
32 }
33
34 void TorusZone::create_links_for_node(sg_platf_cluster_cbarg_t cluster, int id, int rank, int position)
35 {
36   /*
37    * Create all links that exist in the torus.
38    * Each rank creates @a dimensions-1 links
39    */
40   int neighbor_rank_id  = 0; // The other node the link connects
41   int current_dimension = 0; // which dimension are we currently in?
42       // we need to iterate over all dimensions
43       // and create all links there
44   int dim_product = 1; // Needed to calculate the next neighbor_id
45   for (unsigned int j = 0; j < dimensions_.size(); j++) {
46
47     LinkCreationArgs link;
48     current_dimension = dimensions_.at(j);
49     neighbor_rank_id  = ((static_cast<int>(rank) / dim_product) % current_dimension == current_dimension - 1)
50                            ? rank - (current_dimension - 1) * dim_product
51                            : rank + dim_product;
52     // name of neighbor is not right for non contiguous cluster radicals (as id != rank in this case)
53     char* link_id  = bprintf("%s_link_from_%i_to_%i", cluster->id, id, neighbor_rank_id);
54     link.id        = link_id;
55     link.bandwidth = cluster->bw;
56     link.latency   = cluster->lat;
57     link.policy    = cluster->sharing_policy;
58     sg_platf_new_link(&link);
59     surf::LinkImpl* linkUp;
60     surf::LinkImpl* linkDown;
61     if (link.policy == SURF_LINK_FULLDUPLEX) {
62       char* tmp_link = bprintf("%s_UP", link_id);
63       linkUp         = surf::LinkImpl::byName(tmp_link);
64       free(tmp_link);
65       tmp_link = bprintf("%s_DOWN", link_id);
66       linkDown = surf::LinkImpl::byName(tmp_link);
67       free(tmp_link);
68     } else {
69       linkUp   = surf::LinkImpl::byName(link_id);
70       linkDown = linkUp;
71     }
72     /*
73      * Add the link to its appropriate position;
74      * note that position rankId*(xbt_dynar_length(dimensions)+has_loopback?+has_limiter?)
75      * holds the link "rankId->rankId"
76      */
77     privateLinks_.insert({position + j, {linkUp, linkDown}});
78     dim_product *= current_dimension;
79     xbt_free(link_id);
80   }
81   rank++;
82 }
83
84 void TorusZone::parse_specific_arguments(sg_platf_cluster_cbarg_t cluster)
85 {
86
87   unsigned int iter;
88   char* groups;
89   xbt_dynar_t dimensions = xbt_str_split(cluster->topo_parameters, ",");
90
91   if (!xbt_dynar_is_empty(dimensions)) {
92     /* We are in a torus cluster
93      * Parse attribute dimensions="dim1,dim2,dim3,...,dimN" and safe it in a vector.
94      * Additionally, we need to know how many ranks we have in total
95      */
96     xbt_dynar_foreach (dimensions, iter, groups) {
97       dimensions_.push_back(surf_parse_get_int(groups));
98     }
99
100     linkCountPerNode_ = dimensions_.size();
101   }
102   xbt_dynar_free(&dimensions);
103 }
104
105 void TorusZone::getLocalRoute(NetPoint* src, NetPoint* dst, sg_platf_route_cbarg_t route, double* lat)
106 {
107
108   XBT_VERB("torus getLocalRoute from '%s'[%d] to '%s'[%d]", src->name().c_str(), src->id(), dst->name().c_str(),
109            dst->id());
110
111   if (dst->isRouter() || src->isRouter())
112     return;
113
114   if (src->id() == dst->id() && hasLoopback_) {
115     std::pair<surf::LinkImpl*, surf::LinkImpl*> info = privateLinks_.at(src->id() * linkCountPerNode_);
116
117     route->link_list->push_back(info.first);
118     if (lat)
119       *lat += info.first->latency();
120     return;
121   }
122
123   /*
124    * Dimension based routing routes through each dimension consecutively
125    * TODO Change to dynamic assignment
126    */
127   unsigned int dim_product = 1;
128   unsigned int current_node = src->id();
129   unsigned int next_node    = 0;
130   /*
131    * Arrays that hold the coordinates of the current node and
132    * the target; comparing the values at the i-th position of
133    * both arrays, we can easily assess whether we need to route
134    * into this dimension or not.
135    */
136   unsigned int* myCoords     = rankId_to_coords(src->id(), dimensions_);
137   unsigned int* targetCoords = rankId_to_coords(dst->id(), dimensions_);
138   /*
139    * linkOffset describes the offset where the link
140    * we want to use is stored
141    * (+1 is added because each node has a link from itself to itself,
142    * which can only be the case if src->m_id == dst->m_id -- see above
143    * for this special case)
144    */
145   int nodeOffset = (dimensions_.size() + 1) * src->id();
146
147   int linkOffset  = nodeOffset;
148   bool use_lnk_up = false; // Is this link of the form "cur -> next" or "next -> cur"?
149   // false means: next -> cur
150   while (current_node != dst->id()) {
151     dim_product = 1; // First, we will route in x-dimension
152     int j=0;
153     for (auto cur_dim : dimensions_){
154       // current_node/dim_product = position in current dimension
155       if ((current_node / dim_product) % cur_dim != (dst->id() / dim_product) % cur_dim) {
156
157         if ((targetCoords[j] > myCoords[j] &&
158              targetCoords[j] <= myCoords[j] + cur_dim / 2) // Is the target node on the right, without the wrap-around?
159             || (myCoords[j] > cur_dim / 2 &&
160                 (myCoords[j] + cur_dim / 2) % cur_dim >=
161                     targetCoords[j])) { // Or do we need to use the wrap around to reach it?
162           if ((current_node / dim_product) % cur_dim == cur_dim - 1)
163             next_node = (current_node + dim_product - dim_product * cur_dim);
164           else
165             next_node = (current_node + dim_product);
166
167           // HERE: We use *CURRENT* node for calculation (as opposed to next_node)
168           nodeOffset = current_node * (linkCountPerNode_);
169           linkOffset = nodeOffset + (hasLoopback_ ? 1 : 0) + (hasLimiter_ ? 1 : 0) + j;
170           use_lnk_up = true;
171           assert(linkOffset >= 0);
172         } else { // Route to the left
173           if ((current_node / dim_product) % cur_dim == 0)
174             next_node = (current_node - dim_product + dim_product * cur_dim);
175           else
176             next_node = (current_node - dim_product);
177
178           // HERE: We use *next* node for calculation (as opposed to current_node!)
179           nodeOffset = next_node * (linkCountPerNode_);
180           linkOffset = nodeOffset + j + (hasLoopback_ ? 1 : 0) + (hasLimiter_ ? 1 : 0);
181           use_lnk_up = false;
182
183           assert(linkOffset >= 0);
184         }
185         XBT_DEBUG("torus_get_route_and_latency - current_node: %i, next_node: %u, linkOffset is %i", current_node,
186                   next_node, linkOffset);
187         break;
188       }
189
190       j++;
191       dim_product *= cur_dim;
192     }
193
194     std::pair<surf::LinkImpl*, surf::LinkImpl*> info;
195
196     if (hasLimiter_) { // limiter for sender
197       info = privateLinks_.at(nodeOffset + hasLoopback_);
198       route->link_list->push_back(info.first);
199     }
200
201     info = privateLinks_.at(linkOffset);
202
203     if (use_lnk_up == false) {
204       route->link_list->push_back(info.second);
205       if (lat)
206         *lat += info.second->latency();
207     } else {
208       route->link_list->push_back(info.first);
209       if (lat)
210         *lat += info.first->latency();
211     }
212     current_node = next_node;
213     next_node    = 0;
214   }
215   delete[] myCoords;
216   delete[] targetCoords;
217 }
218 }
219 }
220 } // namespace