Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Convert enum smpi_process_state to enum class.
[simgrid.git] / src / smpi / bindings / smpi_pmpi.cpp
1 /* Copyright (c) 2007-2018. 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 "private.hpp"
7 #include "simgrid/s4u/Engine.hpp"
8 #include "simgrid/s4u/Host.hpp"
9 #include "smpi_comm.hpp"
10 #include "smpi_datatype_derived.hpp"
11 #include "smpi_process.hpp"
12 #include "smpi_status.hpp"
13 #include "src/simix/ActorImpl.hpp"
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_pmpi, smpi, "Logging specific to SMPI (pmpi)");
16
17 //this function need to be here because of the calls to smpi_bench
18 void TRACE_smpi_set_category(const char *category)
19 {
20   //need to end bench otherwise categories for execution tasks are wrong
21   smpi_bench_end();
22   TRACE_internal_smpi_set_category (category);
23   //begin bench after changing process's category
24   smpi_bench_begin();
25 }
26
27 /* PMPI User level calls */
28
29 int PMPI_Init(int *argc, char ***argv)
30 {
31   xbt_assert(simgrid::s4u::Engine::is_initialized(),
32              "Your MPI program was not properly initialized. The easiest is to use smpirun to start it.");
33   // PMPI_Init is called only once per SMPI process
34   int already_init;
35   MPI_Initialized(&already_init);
36   if(already_init == 0){
37     simgrid::smpi::Process::init(argc, argv);
38     smpi_process()->mark_as_initialized();
39     int rank = simgrid::s4u::this_actor::get_pid();
40     TRACE_smpi_init(rank);
41     TRACE_smpi_comm_in(rank, __func__, new simgrid::instr::NoOpTIData("init"));
42     TRACE_smpi_comm_out(rank);
43     TRACE_smpi_computing_init(rank);
44     smpi_bench_begin();
45   }
46
47   smpi_mpi_init();
48
49   return MPI_SUCCESS;
50 }
51
52 int PMPI_Finalize()
53 {
54   smpi_bench_end();
55   int rank = simgrid::s4u::this_actor::get_pid();
56   TRACE_smpi_comm_in(rank, __func__, new simgrid::instr::NoOpTIData("finalize"));
57
58   smpi_process()->finalize();
59
60   TRACE_smpi_comm_out(rank);
61   TRACE_smpi_finalize(rank);
62   return MPI_SUCCESS;
63 }
64
65 int PMPI_Finalized(int* flag)
66 {
67   *flag=smpi_process()!=nullptr ? smpi_process()->finalized() : 0;
68   return MPI_SUCCESS;
69 }
70
71 int PMPI_Get_version (int *version,int *subversion){
72   *version = MPI_VERSION;
73   *subversion= MPI_SUBVERSION;
74   return MPI_SUCCESS;
75 }
76
77 int PMPI_Get_library_version (char *version,int *len){
78   smpi_bench_end();
79   snprintf(version, MPI_MAX_LIBRARY_VERSION_STRING, "SMPI Version %d.%d. Copyright The Simgrid Team 2007-2018",
80            SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR);
81   *len = strlen(version) > MPI_MAX_LIBRARY_VERSION_STRING ? MPI_MAX_LIBRARY_VERSION_STRING : strlen(version);
82   smpi_bench_begin();
83   return MPI_SUCCESS;
84 }
85
86 int PMPI_Init_thread(int* argc, char*** argv, int /*required*/, int* provided)
87 {
88   if (provided != nullptr) {
89     *provided = MPI_THREAD_SINGLE;
90   }
91   return MPI_Init(argc, argv);
92 }
93
94 int PMPI_Query_thread(int *provided)
95 {
96   if (provided == nullptr) {
97     return MPI_ERR_ARG;
98   } else {
99     *provided = MPI_THREAD_SINGLE;
100     return MPI_SUCCESS;
101   }
102 }
103
104 int PMPI_Is_thread_main(int *flag)
105 {
106   // FIXME: The MPI standard seems to say that fatal errors need to be triggered
107   // if MPI has been finalized or not yet been initialized
108   if (flag == nullptr) {
109     return MPI_ERR_ARG;
110   } else {
111     *flag = simgrid::s4u::this_actor::get_pid() ==
112             1; // FIXME: I don't think this is correct: This just returns true if the process ID is 1,
113                // regardless of whether this process called MPI_Thread_Init() or not.
114     return MPI_SUCCESS;
115   }
116 }
117
118 int PMPI_Abort(MPI_Comm /*comm*/, int /*errorcode*/)
119 {
120   smpi_bench_end();
121   // FIXME: should kill all processes in comm instead
122   smx_actor_t process = SIMIX_process_self();
123   simgrid::simix::simcall([process] { SIMIX_process_kill(process, process); });
124   return MPI_SUCCESS;
125 }
126
127 double PMPI_Wtime()
128 {
129   return smpi_mpi_wtime();
130 }
131
132 extern double sg_maxmin_precision;
133 double PMPI_Wtick()
134 {
135   return sg_maxmin_precision;
136 }
137
138 int PMPI_Address(void *location, MPI_Aint * address)
139 {
140   if (address==nullptr) {
141     return MPI_ERR_ARG;
142   } else {
143     *address = reinterpret_cast<MPI_Aint>(location);
144     return MPI_SUCCESS;
145   }
146 }
147
148 int PMPI_Get_address(void *location, MPI_Aint * address)
149 {
150   return PMPI_Address(location, address);
151 }
152
153 int PMPI_Get_processor_name(char *name, int *resultlen)
154 {
155   strncpy(name, sg_host_self()->get_cname(),
156           strlen(sg_host_self()->get_cname()) < MPI_MAX_PROCESSOR_NAME - 1 ? strlen(sg_host_self()->get_cname()) + 1
157                                                                            : MPI_MAX_PROCESSOR_NAME - 1);
158   *resultlen = strlen(name) > MPI_MAX_PROCESSOR_NAME ? MPI_MAX_PROCESSOR_NAME : strlen(name);
159
160   return MPI_SUCCESS;
161 }
162
163 int PMPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count)
164 {
165   if (status == nullptr || count == nullptr) {
166     return MPI_ERR_ARG;
167   } else if (not datatype->is_valid()) {
168     return MPI_ERR_TYPE;
169   } else {
170     size_t size = datatype->size();
171     if (size == 0) {
172       *count = 0;
173       return MPI_SUCCESS;
174     } else if (status->count % size != 0) {
175       return MPI_UNDEFINED;
176     } else {
177       *count = simgrid::smpi::Status::get_count(status, datatype);
178       return MPI_SUCCESS;
179     }
180   }
181 }
182
183 int PMPI_Initialized(int* flag) {
184    *flag=(smpi_process()!=nullptr && smpi_process()->initialized());
185    return MPI_SUCCESS;
186 }
187
188 int PMPI_Alloc_mem(MPI_Aint size, MPI_Info /*info*/, void* baseptr)
189 {
190   void *ptr = xbt_malloc(size);
191   if(ptr==nullptr)
192     return MPI_ERR_NO_MEM;
193   else {
194     *static_cast<void**>(baseptr) = ptr;
195     return MPI_SUCCESS;
196   }
197 }
198
199 int PMPI_Free_mem(void *baseptr){
200   xbt_free(baseptr);
201   return MPI_SUCCESS;
202 }
203
204 int PMPI_Error_class(int errorcode, int* errorclass) {
205   // assume smpi uses only standard mpi error codes
206   *errorclass=errorcode;
207   return MPI_SUCCESS;
208 }
209
210 int PMPI_Keyval_create(MPI_Copy_function* copy_fn, MPI_Delete_function* delete_fn, int* keyval, void* extra_state) {
211   smpi_copy_fn _copy_fn={copy_fn,nullptr,nullptr};
212   smpi_delete_fn _delete_fn={delete_fn,nullptr,nullptr};
213   return simgrid::smpi::Keyval::keyval_create<simgrid::smpi::Comm>(_copy_fn, _delete_fn, keyval, extra_state);
214 }
215
216 int PMPI_Keyval_free(int* keyval) {
217   return simgrid::smpi::Keyval::keyval_free<simgrid::smpi::Comm>(keyval);
218 }