]> AND Private Git Repository - loba.git/blob - deployment.cpp
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
Implement random initial load distribution.
[loba.git] / deployment.cpp
1 #include <algorithm>
2 #include <cstdlib>
3 #include <tr1/functional>
4 #include <iomanip>
5 #include <numeric>
6 #include <sstream>
7 #include <vector>
8 #include <msg/msg.h>
9 #include <xbt/dynar.h>
10 #include <xbt/log.h>
11
12 XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(depl);
13
14 #include "hostdata.h"
15 #include "misc.h"
16 #include "options.h"
17
18 #include "deployment.h"
19
20 void MY_launch_application()
21 {
22     deployment_generator* gen;
23     gen = opt::topologies.new_instance(opt::auto_depl::topology);
24     gen->generate();
25     gen->distribute_load();
26     gen->deploy();
27     delete gen;
28 }
29
30 deployment_generator::deployment_generator()
31     : hosts(opt::auto_depl::nhosts)
32 {
33 }
34
35 void deployment_generator::set_load(int host, double load)
36 {
37     hosts[host].load = load;
38 }
39
40 void deployment_generator::set_neighbor(int host, int neighbor)
41 {
42     hosts[host].neighbors.push_back(neighbor);
43 }
44
45 void deployment_generator::set_link(int host1, int host2)
46 {
47     set_neighbor(host1, host2);
48     set_neighbor(host2, host1);
49 }
50
51 void deployment_generator::distribute_load()
52 {
53     using std::tr1::bind;
54     using std::tr1::placeholders::_1;
55
56     if (!opt::auto_depl::random_distribution) {
57         set_load(0, opt::auto_depl::load);
58         return;
59     }
60     srand48(opt::auto_depl::random_seed);
61     std::vector<double> loads(hosts.size());
62     std::generate(loads.begin(), loads.end(), drand48);
63     double factor = opt::auto_depl::load /
64         std::accumulate(loads.begin(), loads.end(), 0.0);
65     std::transform(loads.begin(), loads.end(), loads.begin(),
66                    bind(std::multiplies<double>(), _1, factor));
67     for (unsigned i = 0 ; i < hosts.size() ; ++i)
68         set_load(i, loads[i]);
69 }
70
71 void deployment_generator::deploy()
72 {
73     xbt_dynar_t args = xbt_dynar_new(sizeof(const char*), NULL);
74     for (unsigned i = 0 ; i < hosts.size() ; ++i) {
75         const char* hostname = hostdata::at(i).get_name();
76         std::ostringstream oss;
77         oss << std::setprecision(12) << hosts[i].load;
78         std::string strload = oss.str();
79         XBT_DEBUG("%s/load -> \"%s\"", hostname, strload.c_str());
80         xbt_dynar_push_as(args, const char*, strload.c_str());
81         for (unsigned j = 0 ; j < hosts[i].neighbors.size() ; ++j) {
82             int neighbor = hosts[i].neighbors[j];
83             const char* neighbor_name = hostdata::at(neighbor).get_name();
84             XBT_DEBUG("%s/neighbor -> \"%s\"", hostname, neighbor_name);
85             xbt_dynar_push_as(args, const char*, neighbor_name);
86         }
87         MSG_set_function(hostname, "compute", args);
88         xbt_dynar_reset(args);
89     }
90     xbt_dynar_free(&args);
91 }
92
93 void deployment_btree::generate()
94 {
95     for (unsigned i = 0 ; i < size() / 2 ; ++i) {
96         unsigned left_child = 2 * i + 1;
97         unsigned right_child = 2 * i + 2;
98         if (left_child < size()) {
99             set_link(i, left_child);
100             if (right_child < size())
101                 set_link(i, right_child);
102         }
103     }
104 }
105
106 void deployment_clique::generate()
107 {
108     for (unsigned i = 0 ; i < size() ; ++i)
109         for (unsigned j = 0 ; j < i ; ++j)
110             set_link(i, j);
111 }
112
113 void deployment_hcube::generate()
114 {
115     for (unsigned i = 0 ; i < size() ; ++i)
116         for (unsigned j = 0 ; j < i ; ++j) {
117             // Adapted from rom http://en.wikipedia.org/wiki/Hamming_distance
118             unsigned dist = 0;
119             unsigned val = i ^ j;
120
121             // Count the number of set bits
122             while (val && dist < 2) {
123                 ++dist;
124                 val &= val - 1;
125             }
126             if (dist == 1)
127                 set_link(i, j);
128         }
129 }
130
131 void deployment_line::generate()
132 {
133     for (unsigned i = 0 ; i < size() - 1 ; ++i)
134         set_link(i, i + 1);
135 }
136
137 void deployment_ring::generate()
138 {
139     set_neighbor(0, size() - 1);
140     for (unsigned i = 0 ; i < size() - 1 ; ++i)
141         set_link(i, i + 1);
142     set_neighbor(size() - 1, 0);
143 }
144
145 void deployment_star::generate()
146 {
147     for (unsigned i = 1 ; i < size() ; ++i)
148         set_link(0, i);
149 }
150
151 void deployment_torus::generate()
152 {
153     unsigned a = 0;
154     unsigned b = size();
155     while (a + 1 < b) {
156         unsigned c = (a + b) / 2;
157         if (c * c < size())
158             a = c;
159         else
160             b = c;
161     }
162     unsigned width = b;
163     // here width == ceil(sqrt(size))
164
165     unsigned first_on_last_line = (size() - 1) - (size() - 1) % width;
166     XBT_DEBUG("torus size = %zu ; width = %u ; height = %zu ; foll = %u",
167               size(), width, size() / width + !!(size() % width),
168               first_on_last_line);
169     for (unsigned i = 0; i < size(); i++) {
170         unsigned next_line;
171         unsigned prev_line;
172         unsigned next_column;
173         unsigned prev_column;
174
175         next_line = i + width;
176         if (next_line >= size())
177             next_line %= width; // rewind
178
179         if (i >= width) {
180             prev_line = i - width;
181         } else {
182             prev_line = first_on_last_line + i; // rewind
183             if (prev_line >= size())
184                 prev_line -= width; // need to go at last but one line
185         }
186
187         if (i != size() - 1) {
188             next_column = i + 1;
189             if (next_column % width == 0)
190                 next_column -= width; // rewind
191         } else {
192             next_column = first_on_last_line; // special case for last cell
193         }
194
195         if (i % width != 0) {
196             prev_column = i - 1;
197         } else if (i < first_on_last_line) {
198             prev_column = i + width - 1; // rewind
199         } else {
200             prev_column = size() - 1; // special case for 1st cell of last line
201         }
202         if (next_line != i) {
203             set_neighbor(i, next_line);
204             if (prev_line != next_line)
205                 set_neighbor(i, prev_line);
206         }
207         if (next_column != i) {
208             set_neighbor(i, next_column);
209             if (prev_column != next_column)
210                 set_neighbor(i, prev_column);
211         }
212     }
213 }