Logo AND Algorithmique Numérique Distribuée

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