Logo AND Algorithmique Numérique Distribuée

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