Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Bugfix:delete unused variables in order to compile
[simgrid.git] / examples / simdag / sd_test2.c
1 /* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10
11 #include "simdag/simdag.h"
12 #include "xbt/log.h"
13
14 #include "xbt/sysdep.h"         /* calloc, printf */
15
16 XBT_LOG_NEW_DEFAULT_CATEGORY(sd_test,
17                              "Logging specific to this SimDag example");
18
19 static int nameCompareHosts(const void *n1, const void *n2)
20 {
21   return strcmp(SD_workstation_get_name(*((SD_workstation_t *) n1)),
22                 SD_workstation_get_name(*((SD_workstation_t *) n2)));
23 }
24
25 int main(int argc, char **argv)
26 {
27   int i, j;
28   SD_task_t *changed_tasks;
29   int n_hosts;
30   const SD_workstation_t *hosts;
31   SD_task_t taskInit;
32   SD_task_t PtoPComm1;
33   SD_task_t PtoPComm2;
34   SD_task_t ParComp_wocomm;
35   SD_task_t IntraRedist;
36   SD_task_t ParComp_wcomm1;
37   SD_task_t InterRedist;
38   SD_task_t taskFinal;
39   SD_task_t ParComp_wcomm2;
40   SD_workstation_t PtoPcomm1_hosts[2];
41   SD_workstation_t PtoPcomm2_hosts[2];
42   double PtoPcomm1_table[] = { 0, 12500000, 0, 0 };     /* 100Mb */
43   double PtoPcomm2_table[] = { 0, 1250000, 0, 0 };      /* 10Mb */
44   double ParComp_wocomm_cost[] = { 1e+9, 1e+9, 1e+9, 1e+9, 1e+9 };      /* 1 Gflop per Proc */
45   double *ParComp_wocomm_table;
46   SD_workstation_t ParComp_wocomm_hosts[5];
47   double *IntraRedist_cost;
48   double *IntraRedist_table;
49   SD_workstation_t IntraRedist_hosts[5];
50   double ParComp_wcomm1_cost[] = { 1e+9, 1e+9, 1e+9, 1e+9, 1e+9 };      /* 1 Gflop per Proc */
51   double *ParComp_wcomm1_table;
52   SD_workstation_t ParComp_wcomm1_hosts[5];
53   double *InterRedist_cost;
54   double *InterRedist_table;
55   double ParComp_wcomm2_cost[] = { 1e+8, 1e+8, 1e+8, 1e+8, 1e+8 };      /* 1 Gflop per Proc (0.02sec duration) */
56   SD_workstation_t ParComp_wcomm2_hosts[5];
57   double final_cost = 5e+9;
58   double *ParComp_wcomm2_table;
59
60   /* initialisation of SD */
61   SD_init(&argc, argv);
62
63   /* creation of the environment */
64   SD_create_environment(argv[1]);
65
66   /* getting platform infos */
67   n_hosts = SD_workstation_get_number();
68   hosts = SD_workstation_get_list();
69
70   /* sorting hosts by hostname */
71   qsort((void *) hosts, n_hosts, sizeof(SD_workstation_t), nameCompareHosts);
72
73   /* creation of the tasks */
74   taskInit = SD_task_create("Initial", NULL, 1.0);
75   PtoPComm1 = SD_task_create("PtoP Comm 1", NULL, 1.0);
76   PtoPComm2 = SD_task_create("PtoP Comm 2", NULL, 1.0);
77   ParComp_wocomm = SD_task_create("Par Comp without comm", NULL, 1.0);
78   IntraRedist = SD_task_create("intra redist", NULL, 1.0);
79   ParComp_wcomm1 = SD_task_create("Par Comp with comm 1", NULL, 1.0);
80   InterRedist = SD_task_create("inter redist", NULL, 1.0);
81   taskFinal = SD_task_create("Final", NULL, 1.0);
82   ParComp_wcomm2 = SD_task_create("Par Comp with comm 2", NULL, 1.0);
83
84
85   /* creation of the dependencies */
86   SD_task_dependency_add(NULL, NULL, taskInit, PtoPComm1);
87   SD_task_dependency_add(NULL, NULL, taskInit, PtoPComm2);
88   SD_task_dependency_add(NULL, NULL, PtoPComm1, ParComp_wocomm);
89   SD_task_dependency_add(NULL, NULL, ParComp_wocomm, IntraRedist);
90   SD_task_dependency_add(NULL, NULL, IntraRedist, ParComp_wcomm1);
91   SD_task_dependency_add(NULL, NULL, ParComp_wcomm1, InterRedist);
92   SD_task_dependency_add(NULL, NULL, InterRedist, ParComp_wcomm2);
93   SD_task_dependency_add(NULL, NULL, ParComp_wcomm2, taskFinal);
94   SD_task_dependency_add(NULL, NULL, PtoPComm2, taskFinal);
95
96
97   /* scheduling parameters */
98
99   /* large point-to-point communication (0.1 sec duration) */
100   PtoPcomm1_hosts[0] = hosts[0];
101   PtoPcomm1_hosts[1] = hosts[1];
102
103   /* small point-to-point communication (0.01 sec duration) */
104   PtoPcomm2_hosts[0] = hosts[0];
105   PtoPcomm2_hosts[1] = hosts[2];
106
107   /* parallel task without intra communications (1 sec duration) */
108   ParComp_wocomm_table = xbt_new0(double, 25);
109
110   for (i = 0; i < 5; i++) {
111     ParComp_wocomm_hosts[i] = hosts[i];
112   }
113
114   /* redistribution within a cluster (small latencies) */
115   /* each host send (4*2.5Mb =) 10Mb */
116   /* bandwidth is shared between 5 flows (0.05sec duration) */
117   IntraRedist_cost = xbt_new0(double, 5);
118   IntraRedist_table = xbt_new0(double, 25);
119   for (i = 0; i < 5; i++) {
120     for (j = 0; j < 5; j++) {
121       if (i == j)
122         IntraRedist_table[i * 5 + j] = 0.;
123       else
124         IntraRedist_table[i * 5 + j] = 312500.; /* 2.5Mb */
125     }
126   }
127
128   for (i = 0; i < 5; i++) {
129     IntraRedist_hosts[i] = hosts[i];
130   }
131
132   /* parallel task with intra communications */
133   /* Computation domination (1 sec duration) */
134   ParComp_wcomm1_table = xbt_new0(double, 25);
135
136   for (i = 0; i < 5; i++) {
137     ParComp_wcomm1_hosts[i] = hosts[i];
138   }
139
140   for (i = 0; i < 5; i++) {
141     for (j = 0; j < 5; j++) {
142       if (i == j)
143         ParComp_wcomm1_table[i * 5 + j] = 0.;
144       else
145         ParComp_wcomm1_table[i * 5 + j] = 312500.;      /* 2.5Mb */
146     }
147   }
148
149   /* inter cluster redistribution (big latency on the backbone) */
150   /* (0.5sec duration without latency impact) */
151   InterRedist_cost = xbt_new0(double, 10);
152   InterRedist_table = xbt_new0(double, 100);
153   for (i = 0; i < 5; i++) {
154     InterRedist_table[i * 10 + i + 5] = 1250000.;       /* 10Mb */
155   }
156
157   /* parallel task with intra communications */
158   /* Communication domination (0.1 sec duration) */
159
160   ParComp_wcomm2_table = xbt_new0(double, 25);
161
162   for (i = 0; i < 5; i++) {
163     ParComp_wcomm2_hosts[i] = hosts[i + 5];
164   }
165
166   for (i = 0; i < 5; i++) {
167     for (j = 0; j < 5; j++) {
168       if (i == j)
169         ParComp_wcomm2_table[i * 5 + j] = 0.;
170       else
171         ParComp_wcomm2_table[i * 5 + j] = 625000.;      /* 5Mb */
172     }
173   }
174
175   /* Sequential task */
176
177
178   /* scheduling the tasks */
179   SD_task_schedule(taskInit, 1, hosts, SD_SCHED_NO_COST, SD_SCHED_NO_COST, -1.0);
180   SD_task_schedule(PtoPComm1, 2, PtoPcomm1_hosts, SD_SCHED_NO_COST, PtoPcomm1_table,
181                    -1.0);
182   SD_task_schedule(PtoPComm2, 2, PtoPcomm2_hosts, SD_SCHED_NO_COST, PtoPcomm2_table,
183                    -1.0);
184   SD_task_schedule(ParComp_wocomm, 5, ParComp_wocomm_hosts,
185                    ParComp_wocomm_cost, ParComp_wocomm_table, -1.0);
186   SD_task_schedule(IntraRedist, 5, IntraRedist_hosts, IntraRedist_cost,
187                    IntraRedist_table, -1.0);
188   SD_task_schedule(ParComp_wcomm1, 5, ParComp_wcomm1_hosts,
189                    ParComp_wcomm1_cost, ParComp_wcomm1_table, -1.0);
190   SD_task_schedule(InterRedist, 10, hosts, InterRedist_cost,
191                    InterRedist_table, -1.0);
192   SD_task_schedule(ParComp_wcomm2, 5, ParComp_wcomm2_hosts,
193                    ParComp_wcomm2_cost, ParComp_wcomm2_table, -1.0);
194   SD_task_schedule(taskFinal, 1, &(hosts[9]), &final_cost, SD_SCHED_NO_COST, -1.0);
195
196   /* let's launch the simulation! */
197   changed_tasks = SD_simulate(-1.0);
198
199   free(changed_tasks);
200
201   free(ParComp_wocomm_table);
202   free(IntraRedist_cost);
203   free(IntraRedist_table);
204   free(ParComp_wcomm1_table);
205   free(InterRedist_cost);
206   free(InterRedist_table);
207   free(ParComp_wcomm2_table);
208
209   SD_task_destroy(taskInit);
210   SD_task_destroy(PtoPComm1);
211   SD_task_destroy(PtoPComm2);
212   SD_task_destroy(ParComp_wocomm);
213   SD_task_destroy(IntraRedist);
214   SD_task_destroy(ParComp_wcomm1);
215   SD_task_destroy(InterRedist);
216   SD_task_destroy(ParComp_wcomm2);
217   SD_task_destroy(taskFinal);
218
219   SD_exit();
220   return 0;
221 }