Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] smpi types declaration updated
[simgrid.git] / src / instr / instr_smpi.c
1 /* Copyright (c) 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 "instr/instr_private.h"
8
9 #ifdef HAVE_TRACING
10
11 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_smpi, instr, "Tracing SMPI");
12
13 static xbt_dict_t keys;
14
15 static char *TRACE_smpi_container(int rank, char *container, int n)
16 {
17   snprintf(container, n, "rank-%d", rank);
18   return container;
19 }
20
21 static char *TRACE_smpi_put_key(int src, int dst, char *key, int n)
22 {
23   //get the dynar for src#dst
24   char aux[INSTR_DEFAULT_STR_SIZE];
25   snprintf(aux, INSTR_DEFAULT_STR_SIZE, "%d#%d", src, dst);
26   xbt_dynar_t d = xbt_dict_get_or_null(keys, aux);
27   if (d == NULL) {
28     d = xbt_dynar_new(sizeof(char *), &xbt_free_ref);
29     xbt_dict_set(keys, aux, d, xbt_free);
30   }
31   //generate the key
32   static unsigned long long counter = 0;
33   snprintf(key, n, "%d%d%lld", src, dst, counter++);
34
35   //push it
36   char *a = (char*)xbt_strdup(key);
37   xbt_dynar_push_as(d, char *, a);
38
39   return key;
40 }
41
42 static char *TRACE_smpi_get_key(int src, int dst, char *key, int n)
43 {
44   char aux[INSTR_DEFAULT_STR_SIZE];
45   snprintf(aux, INSTR_DEFAULT_STR_SIZE, "%d#%d", src, dst);
46   xbt_dynar_t d = xbt_dict_get_or_null(keys, aux);
47
48   int length = xbt_dynar_length(d);
49   char *s = xbt_dynar_get_as (d, length-1, char *);
50   snprintf (key, n, "%s", s);
51   xbt_dynar_remove_at (d, length-1, NULL);
52   return key;
53 }
54
55 static xbt_dict_t process_category;
56
57 void TRACE_internal_smpi_set_category (const char *category)
58 {
59   if (!TRACE_smpi_is_enabled()) return;
60
61   //declare category
62   TRACE_category (category);
63
64   char processid[INSTR_DEFAULT_STR_SIZE];
65   snprintf (processid, INSTR_DEFAULT_STR_SIZE, "%p", SIMIX_process_self());
66   if (xbt_dict_get_or_null (process_category, processid))
67     xbt_dict_remove (process_category, processid);
68   if (category != NULL)
69     xbt_dict_set (process_category, processid, xbt_strdup(category), xbt_free);
70 }
71
72 const char *TRACE_internal_smpi_get_category (void)
73 {
74   if (!TRACE_smpi_is_enabled()) return NULL;
75
76   char processid[INSTR_DEFAULT_STR_SIZE];
77   snprintf (processid, INSTR_DEFAULT_STR_SIZE, "%p", SIMIX_process_self());
78   return xbt_dict_get_or_null (process_category, processid);
79 }
80
81 void TRACE_smpi_alloc()
82 {
83   keys = xbt_dict_new();
84   process_category = xbt_dict_new();
85 }
86
87 void TRACE_smpi_start(void)
88 {
89   if (TRACE_smpi_is_enabled()) {
90     TRACE_start();
91   }
92 }
93
94 void TRACE_smpi_release(void)
95 {
96   TRACE_surf_release();
97   if (TRACE_smpi_is_enabled()) {
98     TRACE_end();
99   }
100 }
101
102 void TRACE_smpi_init(int rank)
103 {
104   if (!TRACE_smpi_is_enabled())
105     return;
106
107   char str[INSTR_DEFAULT_STR_SIZE];
108   TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE);
109   if (TRACE_smpi_is_grouped()){
110     pajeCreateContainer(SIMIX_get_clock(), str, "MPI_PROCESS",
111                       SIMIX_host_self_get_name(), str);
112   }else{
113     pajeCreateContainer(SIMIX_get_clock(), str, "MPI_PROCESS",
114                       "platform", str);
115   }
116 }
117
118 void TRACE_smpi_finalize(int rank)
119 {
120   if (!TRACE_smpi_is_enabled())
121     return;
122
123   char str[INSTR_DEFAULT_STR_SIZE];
124   pajeDestroyContainer(SIMIX_get_clock(), "MPI_PROCESS",
125                        TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE));
126 }
127
128 void TRACE_smpi_collective_in(int rank, int root, const char *operation)
129 {
130   if (!TRACE_smpi_is_enabled())
131     return;
132
133   char str[INSTR_DEFAULT_STR_SIZE];
134   pajePushState(SIMIX_get_clock(), "MPI_STATE",
135                 TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE), operation);
136 }
137
138 void TRACE_smpi_collective_out(int rank, int root, const char *operation)
139 {
140   if (!TRACE_smpi_is_enabled())
141     return;
142
143   char str[INSTR_DEFAULT_STR_SIZE];
144   pajePopState(SIMIX_get_clock(), "MPI_STATE",
145                TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE));
146 }
147
148 void TRACE_smpi_ptp_in(int rank, int src, int dst, const char *operation)
149 {
150   if (!TRACE_smpi_is_enabled())
151     return;
152
153   char str[INSTR_DEFAULT_STR_SIZE];
154   pajePushState(SIMIX_get_clock(), "MPI_STATE",
155                 TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE), operation);
156 }
157
158 void TRACE_smpi_ptp_out(int rank, int src, int dst, const char *operation)
159 {
160   if (!TRACE_smpi_is_enabled())
161     return;
162
163   char str[INSTR_DEFAULT_STR_SIZE];
164   pajePopState(SIMIX_get_clock(), "MPI_STATE",
165                TRACE_smpi_container(rank, str, INSTR_DEFAULT_STR_SIZE));
166 }
167
168 void TRACE_smpi_send(int rank, int src, int dst)
169 {
170   if (!TRACE_smpi_is_enabled())
171     return;
172
173   char key[INSTR_DEFAULT_STR_SIZE], str[INSTR_DEFAULT_STR_SIZE];
174   TRACE_smpi_put_key(src, dst, key, INSTR_DEFAULT_STR_SIZE);
175   pajeStartLink(SIMIX_get_clock(), "MPI_LINK", "0", "PTP",
176                 TRACE_smpi_container(src, str, INSTR_DEFAULT_STR_SIZE), key);
177 }
178
179 void TRACE_smpi_recv(int rank, int src, int dst)
180 {
181   if (!TRACE_smpi_is_enabled())
182     return;
183
184   char key[INSTR_DEFAULT_STR_SIZE], str[INSTR_DEFAULT_STR_SIZE];
185   TRACE_smpi_get_key(src, dst, key, INSTR_DEFAULT_STR_SIZE);
186   pajeEndLink(SIMIX_get_clock(), "MPI_LINK", "0", "PTP",
187               TRACE_smpi_container(dst, str, INSTR_DEFAULT_STR_SIZE), key);
188 }
189 #endif /* HAVE_TRACING */