Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Remove duplicated initialization (rank).
[simgrid.git] / src / smpi / instr_smpi.c
1 /* Copyright (c) 2010, 2012-2013. 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 "private.h"
8 #include <ctype.h>
9 #include <wchar.h>
10
11
12 #ifdef HAVE_TRACING
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_smpi, instr, "Tracing SMPI");
15
16 static xbt_dict_t keys;
17
18 static const char *smpi_colors[] ={
19     "recv",     "1 0 0",
20     "irecv",    "1 0.52 0.52",
21     "send",     "0 0 1",
22     "isend",    "0.52 0.52 1",
23     "sendrecv", "0 1 1",
24     "wait",     "1 1 0",
25     "waitall",  "0.78 0.78 0",
26     "waitany",  "0.78 0.78 0.58",
27
28     "allgather",     "1 0 0",
29     "allgatherv",    "1 0.52 0.52",
30     "allreduce",     "1 0 1",
31     "alltoall",      "0.52 0 1",
32     "alltoallv",     "0.78 0.52 1",
33     "barrier",       "0 0.78 0.78",
34     "bcast",         "0 0.78 0.39",
35     "gather",        "1 1 0",
36     "gatherv",       "1 1 0.52",
37     "reduce",        "0 1 0",
38     "reducescatter", "0.52 1 0.52",
39     "scan",          "1 0.58 0.23",
40     "exscan",          "1 0.54 0.25",
41     "scatterv",      "0.52 0 0.52",
42     "scatter",       "1 0.74 0.54",
43     "computing",     "0 1 1",
44     NULL, NULL,
45 };
46
47 static char *str_tolower (const char *str)
48 {
49   char *ret = xbt_strdup (str);
50   int i, n = strlen (ret);
51   for (i = 0; i < n; i++)
52     ret[i] = tolower (str[i]);
53   return ret;
54 }
55
56 static const char *instr_find_color (const char *state)
57 {
58   char *target = str_tolower (state);
59   const char *ret = NULL;
60   const char *current;
61   unsigned int i = 0;
62   while ((current = smpi_colors[i])){
63     if (strcmp (state, current) == 0){ ret = smpi_colors[i+1]; break; } //exact match
64     if (strstr(target, current)) { ret = smpi_colors[i+1]; break; }; //as substring
65     i+=2;
66   }
67   free (target);
68   return ret;
69 }
70
71
72 static char *smpi_container(int rank, char *container, int n)
73 {
74   snprintf(container, n, "rank-%d", rank);
75   return container;
76 }
77
78 static char *TRACE_smpi_put_key(int src, int dst, char *key, int n)
79 {
80   //get the dynar for src#dst
81   char aux[INSTR_DEFAULT_STR_SIZE];
82   snprintf(aux, INSTR_DEFAULT_STR_SIZE, "%d#%d", src, dst);
83   xbt_dynar_t d = xbt_dict_get_or_null(keys, aux);
84   if (d == NULL) {
85     d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
86     xbt_dict_set(keys, aux, d, NULL);
87   }
88   //generate the key
89   static unsigned long long counter = 0;
90
91   snprintf(key, n, "%d_%d_%llu", src, dst, counter++);
92
93   //push it
94   char *a = (char*)xbt_strdup(key);
95   xbt_dynar_push_as(d, char *, a);
96
97   return key;
98 }
99
100 static char *TRACE_smpi_get_key(int src, int dst, char *key, int n)
101 {
102   char aux[INSTR_DEFAULT_STR_SIZE];
103   snprintf(aux, INSTR_DEFAULT_STR_SIZE, "%d#%d", src, dst);
104   xbt_dynar_t d = xbt_dict_get_or_null(keys, aux);
105
106   xbt_assert(!xbt_dynar_is_empty(d),
107       "Trying to get a link key (for message reception) that has no corresponding send (%s).", __FUNCTION__);
108   char *s = xbt_dynar_get_as (d, 0, char *);
109   snprintf (key, n, "%s", s);
110   xbt_dynar_remove_at (d, 0, NULL);
111   return key;
112 }
113
114 static xbt_dict_t process_category;
115
116 void TRACE_internal_smpi_set_category (const char *category)
117 {
118   if (!TRACE_smpi_is_enabled()) return;
119
120   //declare category
121   TRACE_category (category);
122
123   char processid[INSTR_DEFAULT_STR_SIZE];
124   snprintf (processid, INSTR_DEFAULT_STR_SIZE, "%p", SIMIX_process_self());
125   if (xbt_dict_get_or_null (process_category, processid))
126     xbt_dict_remove (process_category, processid);
127   if (category != NULL)
128     xbt_dict_set (process_category, processid, xbt_strdup(category), NULL);
129 }
130
131 const char *TRACE_internal_smpi_get_category (void)
132 {
133   if (!TRACE_smpi_is_enabled()) return NULL;
134
135   char processid[INSTR_DEFAULT_STR_SIZE];
136   snprintf (processid, INSTR_DEFAULT_STR_SIZE, "%p", SIMIX_process_self());
137   return xbt_dict_get_or_null (process_category, processid);
138 }
139
140 void TRACE_smpi_alloc()
141 {
142   keys = xbt_dict_new_homogeneous(xbt_dynar_free_voidp);
143   process_category = xbt_dict_new_homogeneous(xbt_free);
144 }
145
146 void TRACE_smpi_release(void)
147 {
148   xbt_dict_free(&keys);
149   xbt_dict_free(&process_category);
150 }
151
152 void TRACE_smpi_init(int rank)
153 {
154   if (!TRACE_smpi_is_enabled()) return;
155
156   char str[INSTR_DEFAULT_STR_SIZE];
157   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
158
159   container_t father;
160   if (TRACE_smpi_is_grouped()){
161     father = PJ_container_get (SIMIX_host_self_get_name());
162   }else{
163     father = PJ_container_get_root ();
164   }
165   xbt_assert(father!=NULL,
166       "Could not find a parent for mpi rank %s at function %s", str, __FUNCTION__);
167   PJ_container_new(str, INSTR_SMPI, father);
168 }
169
170 void TRACE_smpi_finalize(int rank)
171 {
172   if (!TRACE_smpi_is_enabled()) return;
173
174   char str[INSTR_DEFAULT_STR_SIZE];
175   container_t container = PJ_container_get(smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE));
176   PJ_container_remove_from_parent (container);
177   PJ_container_free (container);
178 }
179
180 void TRACE_smpi_collective_in(int rank, int root, const char *operation, int size)
181 {
182   if (!TRACE_smpi_is_enabled()) return;
183
184   char str[INSTR_DEFAULT_STR_SIZE];
185   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
186   container_t container = PJ_container_get (str);
187   type_t type = PJ_type_get ("MPI_STATE", container->type);
188   const char *color = instr_find_color (operation);
189   val_t value = PJ_value_get_or_new (operation, color, type);
190   new_pajePushStateWithSize (SIMIX_get_clock(), container, type, value, size);
191 }
192
193 void TRACE_smpi_collective_out(int rank, int root, const char *operation)
194 {
195   if (!TRACE_smpi_is_enabled()) return;
196
197   char str[INSTR_DEFAULT_STR_SIZE];
198   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
199   container_t container = PJ_container_get (str);
200   type_t type = PJ_type_get ("MPI_STATE", container->type);
201
202   new_pajePopState (SIMIX_get_clock(), container, type);
203 }
204
205 void TRACE_smpi_computing_init(int rank)
206 {
207  //first use, initialize the color in the trace
208  //TODO : check with lucas and Pierre how to generalize this approach
209   //to avoid unnecessary access to the color array
210   if (!TRACE_smpi_is_enabled() || !TRACE_smpi_is_computing()) return;
211
212   char str[INSTR_DEFAULT_STR_SIZE];
213   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
214   container_t container = PJ_container_get (str);
215   type_t type = PJ_type_get ("MPI_STATE", container->type);
216   const char *color = instr_find_color ("computing");
217   val_t value = PJ_value_get_or_new ("computing", color, type);
218   new_pajePushState (SIMIX_get_clock(), container, type, value);
219 }
220
221 void TRACE_smpi_computing_in(int rank)
222 {
223   //do not forget to set the color first, otherwise this will explode
224   if (!TRACE_smpi_is_enabled()|| !TRACE_smpi_is_computing()) return;
225
226   char str[INSTR_DEFAULT_STR_SIZE];
227   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
228   container_t container = PJ_container_get (str);
229   type_t type = PJ_type_get ("MPI_STATE", container->type);
230   val_t value = PJ_value_get_or_new ("computing", NULL, type);
231   new_pajePushState (SIMIX_get_clock(), container, type, value);
232 }
233
234 void TRACE_smpi_computing_out(int rank)
235 {
236   if (!TRACE_smpi_is_enabled()|| !TRACE_smpi_is_computing()) return;
237   char str[INSTR_DEFAULT_STR_SIZE];
238   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
239   container_t container = PJ_container_get (str);
240   type_t type = PJ_type_get ("MPI_STATE", container->type);
241   new_pajePopState (SIMIX_get_clock(), container, type);
242 }
243
244 void TRACE_smpi_ptp_in(int rank, int src, int dst, const char *operation, int size)
245 {
246   if (!TRACE_smpi_is_enabled()) return;
247
248
249   char str[INSTR_DEFAULT_STR_SIZE];
250   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
251   container_t container = PJ_container_get (str);
252   type_t type = PJ_type_get ("MPI_STATE", container->type);
253   const char *color = instr_find_color (operation);
254   val_t value = PJ_value_get_or_new (operation, color, type);
255   new_pajePushStateWithSize (SIMIX_get_clock(), container, type, value, size);
256 }
257
258 void TRACE_smpi_ptp_out(int rank, int src, int dst, const char *operation)
259 {
260   if (!TRACE_smpi_is_enabled()) return;
261
262   char str[INSTR_DEFAULT_STR_SIZE];
263   smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
264   container_t container = PJ_container_get (str);
265   type_t type = PJ_type_get ("MPI_STATE", container->type);
266
267   new_pajePopState (SIMIX_get_clock(), container, type);
268 }
269
270 void TRACE_smpi_send(int rank, int src, int dst, int size)
271 {
272   if (!TRACE_smpi_is_enabled()) return;
273
274   char key[INSTR_DEFAULT_STR_SIZE] = {0};
275   TRACE_smpi_put_key(src, dst, key, INSTR_DEFAULT_STR_SIZE);
276
277   char str[INSTR_DEFAULT_STR_SIZE];
278   smpi_container(src, str, INSTR_DEFAULT_STR_SIZE);
279   container_t container = PJ_container_get (str);
280   type_t type = PJ_type_get ("MPI_LINK", PJ_type_get_root());
281
282   new_pajeStartLinkWithSize (SIMIX_get_clock(), PJ_container_get_root(), type, container, "PTP", key, size);
283 }
284
285 void TRACE_smpi_recv(int rank, int src, int dst)
286 {
287   if (!TRACE_smpi_is_enabled()) return;
288
289   char key[INSTR_DEFAULT_STR_SIZE] = {0};
290   TRACE_smpi_get_key(src, dst, key, INSTR_DEFAULT_STR_SIZE);
291
292   char str[INSTR_DEFAULT_STR_SIZE];
293   smpi_container(dst, str, INSTR_DEFAULT_STR_SIZE);
294   container_t container = PJ_container_get (str);
295   type_t type = PJ_type_get ("MPI_LINK", PJ_type_get_root());
296
297   new_pajeEndLink (SIMIX_get_clock(), PJ_container_get_root(), type, container, "PTP", key);
298 }
299 #endif /* HAVE_TRACING */