Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Corrected GTNetS to cople with the tracing facillity.
[simgrid.git] / examples / msg / gtnets / gtnets.c
1 #include <stdio.h>
2 #include <stdlib.h>
3 #include "msg/msg.h"
4 #include "xbt/log.h"
5 #include "xbt/asserts.h"
6
7 XBT_LOG_NEW_DEFAULT_CATEGORY(msg_test,
8                              "Messages specific for this msg example");
9
10 int master(int argc, char *argv[]);
11 int slave(int argc, char *argv[]);
12 MSG_error_t test_all(const char *platform_file, const char *application_file);
13
14 typedef enum {
15   PORT_22 = 0,
16   MAX_CHANNEL
17 } channel_t;
18
19 //keep a pointer to all surf running tasks.
20 #define NTASKS 1500
21 int bool_printed = 0;
22 double start_time, end_time, elapsed_time;
23 double gl_data_size[NTASKS];
24 m_task_t gl_task_array[NTASKS];
25 const char *slavenames[NTASKS];
26 const char *masternames[NTASKS];
27 int gl_task_array_id = 0;
28
29 #define FINALIZE ((void*)221297)        /* a magic number to tell people to stop working */
30
31 /** master */
32 int master(int argc, char *argv[])
33 {
34   char *slavename = NULL;
35   double task_comm_size = 0;
36   m_task_t todo;
37   m_host_t slave;
38   char id_alias[10];
39   //unique id to control statistics
40   int id = -1;
41
42   if (argc != 4) {
43     INFO1("Strange number of arguments expected 3 got %d", argc - 1);
44   }
45
46   /* data size */
47   xbt_assert1(sscanf(argv[1], "%lg", &task_comm_size),
48               "Invalid argument %s\n", argv[1]);
49
50   /* slave name */
51   slavename = argv[2];
52   id = atoi(argv[3]);
53   sprintf(id_alias, "%d", id);
54   slavenames[id] = slavename;
55
56   TRACE_category (slavename);
57
58   masternames[id] = MSG_host_get_name(MSG_host_self());
59
60   {                             /*  Task creation.  */
61     char sprintf_buffer[64] = "Task_0";
62     todo = MSG_task_create(sprintf_buffer, 0, task_comm_size, NULL);
63     TRACE_msg_set_task_category(todo,slavename);
64     //keep track of running tasks
65     gl_task_array[id] = todo;
66     gl_data_size[id] = task_comm_size;
67   }
68
69   {                             /* Process organisation */
70     slave = MSG_get_host_by_name(slavename);
71   }
72
73   /* time measurement */
74   start_time = MSG_get_clock();
75   MSG_task_send(todo, id_alias);
76
77   end_time = MSG_get_clock();
78   INFO3("Send completed (to %s). Transfer time: %f\t Agregate bandwidth: %f",
79         slave->name, (end_time - start_time),
80         task_comm_size / (end_time - start_time));
81   INFO2("Completed peer: %s time: %f", slave->name, (end_time - start_time));
82
83   return 0;
84 }                               /* end_of_master */
85
86 /** Receiver function  */
87 int slave(int argc, char *argv[])
88 {
89
90   m_task_t task = NULL;
91   int a;
92   int id = 0;
93   double remaining = 0;
94   char id_alias[10];
95
96   if (argc != 2) {
97     INFO1("Strange number of arguments expected 1 got %d", argc - 1);
98   }
99
100   id = atoi(argv[1]);
101   sprintf(id_alias, "%d", id);
102
103   a = MSG_task_receive(&(task), id_alias);
104
105   if (a != MSG_OK) {
106     INFO0("Hey?! What's up?");
107     xbt_assert0(0, "Unexpected behavior.");
108   }
109
110   elapsed_time = MSG_get_clock() - start_time;
111
112   if (!bool_printed) {
113     bool_printed = 1;
114     for (id = 0; id < NTASKS; id++) {
115       if (gl_task_array[id] == NULL) {
116       } else if (gl_task_array[id] == task) {
117         INFO5
118           ("===> Estimated Bw of FLOW[%d] : %f ;  message from %s to %s  with remaining : %f",
119            id, gl_data_size[id] / elapsed_time, masternames[id],
120            slavenames[id], 0.0);
121       } else {
122         remaining = MSG_task_get_remaining_communication(gl_task_array[id]);
123         INFO5
124           ("===> Estimated Bw of FLOW[%d] : %f ;  message from %s to %s  with remaining : %f",
125            id, (gl_data_size[id] - remaining) / elapsed_time, masternames[id],
126            slavenames[id], remaining);
127       }
128     }
129   }  
130
131   MSG_task_destroy(task);
132   return 0;
133 }                               /* end_of_slave */
134
135 /** Test function */
136 MSG_error_t test_all(const char *platform_file, const char *application_file)
137 {
138   MSG_error_t res = MSG_OK;
139
140   /* MSG_config("workstation/model", "GTNETS"); */
141   /* MSG_config("workstation/model","KCCFLN05"); */
142   {                             /*  Simulation setting */
143     MSG_set_channel_number(MAX_CHANNEL);
144     MSG_create_environment(platform_file);
145   }
146   {                             /*   Application deployment */
147     MSG_function_register("master", master);
148     MSG_function_register("slave", slave);
149     MSG_launch_application(application_file);
150   }
151   res = MSG_main();
152   return res;
153 }                               /* end_of_test_all */
154
155 /** Main function */
156 int main(int argc, char *argv[])
157 {
158   MSG_error_t res = MSG_OK;
159   bool_printed = 0;
160
161   TRACE_start ("z_gtnets.trace");
162
163   MSG_global_init(&argc, argv);
164   if (argc < 3) {
165     printf("Usage: %s platform_file deployment_file\n", argv[0]);
166     exit(1);
167   }
168   res = test_all(argv[1], argv[2]);
169
170   MSG_clean();
171
172   TRACE_end ();
173
174   if (res == MSG_OK)
175     return 0;
176   else
177     return 1;
178 }                               /* end_of_main */