Logo AND Algorithmique Numérique Distribuée

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