Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
742af85a321ca480cafc0056eae0d9fa7a33d388
[simgrid.git] / src / smpi / internals / smpi_process.cpp
1 /* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "mc/mc.h"
7 #include "src/mc/mc_replay.h"
8 #include "src/msg/msg_private.h"
9 #include "src/simix/smx_private.h"
10 #include "private.h"
11 #include "private.hpp"
12 #include "smpi_process.hpp"
13 #include "smpi_group.hpp"
14 #include "smpi_comm.hpp"
15
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_process, smpi, "Logging specific to SMPI (kernel)");
18
19 //TODO : replace
20 extern simgrid::smpi::Process **process_data;
21 extern int* index_to_process_data;
22
23 #define MAILBOX_NAME_MAXLEN (5 + sizeof(int) * 2 + 1)
24
25 static char *get_mailbox_name(char *str, int index)
26 {
27   snprintf(str, MAILBOX_NAME_MAXLEN, "SMPI-%0*x", static_cast<int>(sizeof(int) * 2), static_cast<unsigned>(index));
28   return str;
29 }
30
31 static char *get_mailbox_name_small(char *str, int index)
32 {
33   snprintf(str, MAILBOX_NAME_MAXLEN, "small%0*x", static_cast<int>(sizeof(int) * 2), static_cast<unsigned>(index));
34   return str;
35 }
36
37 namespace simgrid{
38 namespace smpi{
39
40 Process::Process(int index, msg_bar_t finalization_barrier)
41   : finalization_barrier_(finalization_barrier)
42 {
43   char name[MAILBOX_NAME_MAXLEN];
44   mailbox_              = simgrid::s4u::Mailbox::byName(get_mailbox_name(name, index));
45   mailbox_small_        = simgrid::s4u::Mailbox::byName(get_mailbox_name_small(name, index));
46   mailboxes_mutex_      = xbt_mutex_init();
47   timer_                = xbt_os_timer_new();
48   state_                = SMPI_UNINITIALIZED;
49   if (MC_is_active())
50     MC_ignore_heap(timer_, xbt_os_timer_size());
51
52 #if HAVE_PAPI
53   if (xbt_cfg_get_string("smpi/papi-events")[0] != '\0') {
54     // TODO: Implement host/process/thread based counters. This implementation
55     // just always takes the values passed via "default", like this:
56     // "default:COUNTER1:COUNTER2:COUNTER3;".
57     auto it = units2papi_setup.find(papi_default_config_name);
58     if (it != units2papi_setup.end()) {
59       papi_event_set_    = it->second.event_set;
60       papi_counter_data_ = it->second.counter_data;
61       XBT_DEBUG("Setting PAPI set for process %i", i);
62     } else {
63       papi_event_set_ = PAPI_NULL;
64       XBT_DEBUG("No PAPI set for process %i", i);
65     }
66   }
67 #endif
68 }
69
70 void Process::set_data(int index, int* argc, char*** argv)
71 {
72     char* instance_id = (*argv)[1];
73     comm_world_         = smpi_deployment_comm_world(instance_id);
74     msg_bar_t bar = smpi_deployment_finalization_barrier(instance_id);
75     if (bar!=nullptr) // don't overwrite the default one
76       finalization_barrier_ = bar;
77     instance_id_ = instance_id;
78     index_ = index;
79
80     static_cast<simgrid::msg::ActorExt*>(SIMIX_process_self()->userdata)->data = this;
81
82     if (*argc > 3) {
83       memmove(&(*argv)[0], &(*argv)[2], sizeof(char *) * (*argc - 2));
84       (*argv)[(*argc) - 1] = nullptr;
85       (*argv)[(*argc) - 2] = nullptr;
86     }
87     (*argc)-=2;
88     argc_ = argc;
89     argv_ = argv;
90     // set the process attached to the mailbox
91     mailbox_small_->setReceiver(simgrid::s4u::Actor::self());
92     process_ = SIMIX_process_self();
93     XBT_DEBUG("<%d> New process in the game: %p", index_, SIMIX_process_self());
94 }
95
96 /** @brief Prepares the current process for termination. */
97 void Process::finalize()
98 {
99   state_ = SMPI_FINALIZED;
100   XBT_DEBUG("<%d> Process left the game", index_);
101
102     // This leads to an explosion of the search graph which cannot be reduced:
103     if(MC_is_active() || MC_record_replay_is_active())
104       return;
105     // wait for all pending asynchronous comms to finish
106     MSG_barrier_wait(finalization_barrier_);
107 }
108
109 /** @brief Check if a process is finalized */
110 int Process::finalized()
111 {
112     if (index_ != MPI_UNDEFINED)
113       return (state_ == SMPI_FINALIZED);
114     else
115       return 0;
116 }
117
118 /** @brief Check if a process is initialized */
119 int Process::initialized()
120 {
121   if (index_to_process_data == nullptr){
122     return false;
123   } else{
124     return ((index_ != MPI_UNDEFINED) && (state_ == SMPI_INITIALIZED));
125   }
126 }
127
128 /** @brief Mark a process as initialized (=MPI_Init called) */
129 void Process::mark_as_initialized()
130 {
131   if ((index_ != MPI_UNDEFINED) && (state_ != SMPI_FINALIZED))
132     state_ = SMPI_INITIALIZED;
133 }
134
135 void Process::set_replaying(bool value){
136   if ((index_ != MPI_UNDEFINED) && (state_ != SMPI_FINALIZED))
137     replaying_ = value;
138 }
139
140 bool Process::replaying(){
141   if (index_ != MPI_UNDEFINED)
142     return replaying_;
143   else
144     return false;
145 }
146
147 void Process::set_user_data(void *data)
148 {
149   data_ = data;
150 }
151
152 void *Process::get_user_data()
153 {
154   return data_;
155 }
156
157 smx_actor_t Process::process(){
158   return process_;
159 }
160
161 /**
162  * \brief Returns a structure that stores the location (filename + linenumber) of the last calls to MPI_* functions.
163  *
164  * \see smpi_trace_set_call_location
165  */
166 smpi_trace_call_location_t* Process::call_location()
167 {
168   return &trace_call_loc_;
169 }
170
171 int Process::index()
172 {
173   return index_;
174 }
175
176 MPI_Comm Process::comm_world()
177 {
178   return comm_world_==nullptr ? MPI_COMM_NULL : *comm_world_;
179 }
180
181 smx_mailbox_t Process::mailbox()
182 {
183   return mailbox_->getImpl();
184 }
185
186 smx_mailbox_t Process::mailbox_small()
187 {
188   return mailbox_small_->getImpl();
189 }
190
191 xbt_mutex_t Process::mailboxes_mutex()
192 {
193   return mailboxes_mutex_;
194 }
195
196 #if HAVE_PAPI
197 int Process::papi_event_set()
198 {
199   return papi_event_set_;
200 }
201
202 papi_counter_t& smpi_process_papi_counters()
203 {
204   return papi_counter_data_;
205 }
206 #endif
207
208 xbt_os_timer_t Process::timer()
209 {
210   return timer_;
211 }
212
213 void Process::simulated_start()
214 {
215   simulated_ = SIMIX_get_clock();
216 }
217
218 double Process::simulated_elapsed()
219 {
220   return SIMIX_get_clock() - simulated_;
221 }
222
223 MPI_Comm Process::comm_self()
224 {
225   if(comm_self_==MPI_COMM_NULL){
226     MPI_Group group = new  Group(1);
227     comm_self_ = new  Comm(group, nullptr);
228     group->set_mapping(index_, 0);
229   }
230   return comm_self_;
231 }
232
233 MPI_Comm Process::comm_intra()
234 {
235   return comm_intra_;
236 }
237
238 void Process::set_comm_intra(MPI_Comm comm)
239 {
240   comm_intra_ = comm;
241 }
242
243 void Process::set_sampling(int s)
244 {
245   sampling_ = s;
246 }
247
248 int Process::sampling()
249 {
250   return sampling_;
251 }
252
253 msg_bar_t Process::finalization_barrier(){
254   return finalization_barrier_;
255 }
256
257 int Process::return_value(){
258   return return_value_;
259 }
260
261 void Process::set_return_value(int val){
262   return_value_=val;
263 }
264
265 void Process::init(int *argc, char ***argv){
266
267   if (process_data == nullptr){
268     printf("SimGrid was not initialized properly before entering MPI_Init. Aborting, please check compilation process and use smpirun\n");
269     exit(1);
270   }
271   if (argc != nullptr && argv != nullptr) {
272     smx_actor_t proc = SIMIX_process_self();
273     proc->context->set_cleanup(&MSG_process_cleanup_from_SIMIX);
274
275     int index = proc->pid - 1;
276
277     if(index_to_process_data == nullptr){
278       index_to_process_data=static_cast<int*>(xbt_malloc(SIMIX_process_count()*sizeof(int)));
279     }
280
281     char* instance_id = (*argv)[1];
282     try {
283       int rank = std::stoi(std::string((*argv)[2]));
284       smpi_deployment_register_process(instance_id, rank, index);
285     } catch (std::invalid_argument& ia) {
286       throw std::invalid_argument(std::string("Invalid rank: ") + (*argv)[2]);
287     }
288
289     if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP){
290       /* Now using segment index of the process  */
291       index = proc->segment_index;
292       /* Done at the process's creation */
293       SMPI_switch_data_segment(index);
294     }
295
296     Process* process = smpi_process_remote(index);
297     process->set_data(index, argc, argv);
298   }
299   xbt_assert(smpi_process(),
300       "smpi_process() returned nullptr. You probably gave a nullptr parameter to MPI_Init. "
301       "Although it's required by MPI-2, this is currently not supported by SMPI.");
302 }
303
304 }
305 }