Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Make SMPI parameters names more consistent.
[simgrid.git] / src / smpi / smpi_global.c
1 #include <stdint.h>
2
3 #include "private.h"
4 #include "smpi_mpi_dt_private.h"
5
6 XBT_LOG_NEW_CATEGORY(smpi, "All SMPI categories");
7
8 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_kernel, smpi,
9                                 "Logging specific to SMPI (kernel)");
10
11 typedef struct s_smpi_process_data {
12   int index;
13   xbt_fifo_t pending_sent;
14   xbt_fifo_t pending_recv;
15   xbt_os_timer_t timer;
16   MPI_Comm comm_self;
17 } s_smpi_process_data_t;
18
19 static smpi_process_data_t* process_data = NULL;
20 static int process_count = 0;
21
22 MPI_Comm MPI_COMM_WORLD = MPI_COMM_NULL;
23
24 smpi_process_data_t smpi_process_data(void) {
25   return SIMIX_process_get_data(SIMIX_process_self());
26 }
27
28 smpi_process_data_t smpi_process_remote_data(int index) {
29   return process_data[index];
30 }
31
32 int smpi_process_count(void) {
33   return process_count;
34 }
35
36 int smpi_process_index(void) {
37   smpi_process_data_t data = smpi_process_data();
38
39   return data->index;
40 }
41
42 xbt_os_timer_t smpi_process_timer(void) {
43   smpi_process_data_t data = smpi_process_data();
44
45   return data->timer;
46 }
47
48 MPI_Comm smpi_process_comm_self(void) {
49   smpi_process_data_t data = smpi_process_data();
50
51   return data->comm_self;
52 }
53
54 void smpi_process_post_send(MPI_Comm comm, MPI_Request request) {
55   int index = smpi_group_index(smpi_comm_group(comm), request->dst);
56   smpi_process_data_t data = smpi_process_remote_data(index);
57   xbt_fifo_item_t item;
58   MPI_Request req;
59
60   DEBUG4("isend for request %p [src = %d, dst = %d, tag = %d]",
61          request, request->src, request->dst, request->tag);
62   xbt_fifo_foreach(data->pending_recv, item, req, MPI_Request) {
63     if(req->comm == request->comm
64        && (req->src == MPI_ANY_SOURCE || req->src == request->src)
65        && (req->tag == MPI_ANY_TAG || req->tag == request->tag)){
66       DEBUG4("find matching request %p [src = %d, dst = %d, tag = %d]",
67              req, req->src, req->dst, req->tag);
68       xbt_fifo_remove_item(data->pending_recv, item);
69       /* Materialize the *_ANY_* fields from corresponding irecv request */
70       req->src = request->src;
71       req->tag = request->tag;
72       req->data = request->data;
73       request->rdv = req->rdv;
74       return;
75     } else {
76       DEBUG4("not matching request %p [src = %d, dst = %d, tag = %d]",
77              req, req->src, req->dst, req->tag);
78     }
79   }
80   request->rdv = SIMIX_rdv_create(NULL);
81   xbt_fifo_push(data->pending_sent, request);
82 }
83
84 void smpi_process_post_recv(MPI_Request request) {
85   smpi_process_data_t data = smpi_process_data();
86   xbt_fifo_item_t item;
87   MPI_Request req;
88
89   DEBUG4("irecv for request %p [src = %d, dst = %d, tag = %d]",
90          request, request->src, request->dst, request->tag);
91   xbt_fifo_foreach(data->pending_sent, item, req, MPI_Request) {
92     if(req->comm == request->comm
93        && (request->src == MPI_ANY_SOURCE || req->src == request->src)
94        && (request->tag == MPI_ANY_TAG || req->tag == request->tag)){
95       DEBUG4("find matching request %p [src = %d, dst = %d, tag = %d]",
96              req, req->src, req->dst, req->tag);
97       xbt_fifo_remove_item(data->pending_sent, item);
98       /* Materialize the *_ANY_* fields from the irecv request */
99       request->src = req->src;
100       request->tag = req->tag;
101       request->data = req->data;
102       request->rdv = req->rdv;
103       return;
104     } else {
105       DEBUG4("not matching request %p [src = %d, dst = %d, tag = %d]",
106              req, req->src, req->dst, req->tag);
107     }
108   }
109   request->rdv = SIMIX_rdv_create(NULL);
110   xbt_fifo_push(data->pending_recv, request);
111 }
112
113 void smpi_global_init(void) {
114   int i;
115   MPI_Group group;
116
117   SIMIX_network_set_copy_data_callback(&SIMIX_network_copy_buffer_callback);
118   process_count = SIMIX_process_count();
119   process_data = xbt_new(smpi_process_data_t, process_count);
120   for(i = 0; i < process_count; i++) {
121     process_data[i] = xbt_new(s_smpi_process_data_t, 1);
122     process_data[i]->index = i;
123     process_data[i]->pending_sent = xbt_fifo_new();
124     process_data[i]->pending_recv = xbt_fifo_new();
125     process_data[i]->timer = xbt_os_timer_new();
126     group = smpi_group_new(1);
127     process_data[i]->comm_self = smpi_comm_new(group);
128     smpi_group_set_mapping(group, i, 0);
129   }
130   group = smpi_group_new(process_count);
131   MPI_COMM_WORLD = smpi_comm_new(group);
132   for(i = 0; i < process_count; i++) {
133     smpi_group_set_mapping(group, i, i);
134   }
135 }
136
137 void smpi_global_destroy(void) {
138   int count = smpi_process_count();
139   int i;
140
141   smpi_comm_destroy(MPI_COMM_WORLD);
142   MPI_COMM_WORLD = MPI_COMM_NULL;
143   for(i = 0; i < count; i++) {
144     smpi_comm_destroy(process_data[i]->comm_self);
145     xbt_os_timer_free(process_data[i]->timer);
146     xbt_fifo_free(process_data[i]->pending_recv);
147     xbt_fifo_free(process_data[i]->pending_sent);
148     xbt_free(process_data[i]);
149   }
150   xbt_free(process_data);
151   process_data = NULL;
152 }
153
154 int main(int argc, char **argv)
155 {
156   srand(SMPI_RAND_SEED);
157
158   double default_reference_speed = 20000.0;
159   xbt_cfg_register(&_surf_cfg_set, "smpi/running_power",
160                    "Power of the host running the simulation (in flop/s). Used to bench the operations.",
161                    xbt_cfgelm_double, &default_reference_speed, 1, 1, NULL, NULL);
162
163   int default_display_timing = 0;
164   xbt_cfg_register(&_surf_cfg_set, "smpi/display_timing",
165                    "Boolean indicating whether we should display the timing after simulation.",
166                    xbt_cfgelm_int, &default_display_timing, 1, 1, NULL, NULL);
167
168   int default_display_smpe = 0;
169   xbt_cfg_register(&_surf_cfg_set, "smpi/log_events",
170                    "Boolean indicating whether we should display simulated time spent in MPI calls.",
171                    xbt_cfgelm_int, &default_display_smpe, 1, 1, NULL, NULL);
172
173   double default_threshold = 1e-6;
174   xbt_cfg_register(&_surf_cfg_set, "smpi/cpu_threshold",
175                    "Minimal computation time (in seconds) not discarded.",
176                    xbt_cfgelm_double, &default_threshold, 1, 1, NULL, NULL);
177
178   SIMIX_global_init(&argc, argv);
179
180   // parse the platform file: get the host list
181   SIMIX_create_environment(argv[1]);
182
183   SIMIX_function_register("smpi_simulated_main", smpi_simulated_main);
184   SIMIX_launch_application(argv[2]);
185
186   smpi_global_init();
187
188   /* Clean IO before the run */
189   fflush(stdout);
190   fflush(stderr);
191   SIMIX_init();
192
193   while (SIMIX_solve(NULL, NULL) != -1.0);
194
195   if (xbt_cfg_get_int(_surf_cfg_set, "smpi/display_timing"))
196     INFO1("simulation time %g", SIMIX_get_clock());
197
198   smpi_global_destroy();
199
200   SIMIX_message_sizes_output("toto.txt");
201
202   SIMIX_clean();
203   return 0;
204 }