Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
merge identical functions
[simgrid.git] / src / smpi / bindings / smpi_pmpi.cpp
1 /* Copyright (c) 2007-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 "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 extern "C" { // Obviously, the C MPI interface should use the C linkage
29
30 int PMPI_Init(int *argc, char ***argv)
31 {
32   xbt_assert(simgrid::s4u::Engine::isInitialized(),
33              "Your MPI program was not properly initialized. The easiest is to use smpirun to start it.");
34   // PMPI_Init is called only once per SMPI process
35   int already_init;
36   MPI_Initialized(&already_init);
37   if(already_init == 0){
38     simgrid::smpi::Process::init(argc, argv);
39     smpi_process()->mark_as_initialized();
40     int rank = smpi_process()->index();
41     TRACE_smpi_init(rank);
42     TRACE_smpi_computing_init(rank);
43     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
44     extra->type = TRACING_INIT;
45     TRACE_smpi_comm_in(rank, __FUNCTION__, extra);
46     TRACE_smpi_comm_out(rank);
47     smpi_bench_begin();
48   }
49
50   smpi_mpi_init();
51
52   return MPI_SUCCESS;
53 }
54
55 int PMPI_Finalize()
56 {
57   smpi_bench_end();
58   int rank = smpi_process()->index();
59   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
60   extra->type = TRACING_FINALIZE;
61   TRACE_smpi_comm_in(rank, __FUNCTION__, extra);
62
63   smpi_process()->finalize();
64
65   TRACE_smpi_comm_out(rank);
66   TRACE_smpi_finalize(smpi_process()->index());
67   return MPI_SUCCESS;
68 }
69
70 int PMPI_Finalized(int* flag)
71 {
72   *flag=smpi_process()!=nullptr ? smpi_process()->finalized() : 0;
73   return MPI_SUCCESS;
74 }
75
76 int PMPI_Get_version (int *version,int *subversion){
77   *version = MPI_VERSION;
78   *subversion= MPI_SUBVERSION;
79   return MPI_SUCCESS;
80 }
81
82 int PMPI_Get_library_version (char *version,int *len){
83   smpi_bench_end();
84   snprintf(version, MPI_MAX_LIBRARY_VERSION_STRING, "SMPI Version %d.%d. Copyright The Simgrid Team 2007-2017",
85            SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR);
86   *len = strlen(version) > MPI_MAX_LIBRARY_VERSION_STRING ? MPI_MAX_LIBRARY_VERSION_STRING : strlen(version);
87   smpi_bench_begin();
88   return MPI_SUCCESS;
89 }
90
91 int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided)
92 {
93   if (provided != nullptr) {
94     *provided = MPI_THREAD_SINGLE;
95   }
96   return MPI_Init(argc, argv);
97 }
98
99 int PMPI_Query_thread(int *provided)
100 {
101   if (provided == nullptr) {
102     return MPI_ERR_ARG;
103   } else {
104     *provided = MPI_THREAD_SINGLE;
105     return MPI_SUCCESS;
106   }
107 }
108
109 int PMPI_Is_thread_main(int *flag)
110 {
111   if (flag == nullptr) {
112     return MPI_ERR_ARG;
113   } else {
114     *flag = smpi_process()->index() == 0;
115     return MPI_SUCCESS;
116   }
117 }
118
119 int PMPI_Abort(MPI_Comm comm, int errorcode)
120 {
121   smpi_bench_end();
122   // FIXME: should kill all processes in comm instead
123   smx_actor_t process = SIMIX_process_self();
124   simgrid::simix::kernelImmediate([process] { SIMIX_process_kill(process, process); });
125   return MPI_SUCCESS;
126 }
127
128 double PMPI_Wtime()
129 {
130   return smpi_mpi_wtime();
131 }
132
133 extern double sg_maxmin_precision;
134 double PMPI_Wtick()
135 {
136   return sg_maxmin_precision;
137 }
138
139 int PMPI_Address(void *location, MPI_Aint * address)
140 {
141   if (address==nullptr) {
142     return MPI_ERR_ARG;
143   } else {
144     *address = reinterpret_cast<MPI_Aint>(location);
145     return MPI_SUCCESS;
146   }
147 }
148
149 int PMPI_Get_address(void *location, MPI_Aint * address)
150 {
151   return PMPI_Address(location, address);
152 }
153
154 int PMPI_Get_processor_name(char *name, int *resultlen)
155 {
156   strncpy(name, sg_host_self()->getCname(), strlen(sg_host_self()->getCname()) < MPI_MAX_PROCESSOR_NAME - 1
157                                                 ? strlen(sg_host_self()->getCname()) + 1
158                                                 : MPI_MAX_PROCESSOR_NAME - 1);
159   *resultlen = strlen(name) > MPI_MAX_PROCESSOR_NAME ? MPI_MAX_PROCESSOR_NAME : strlen(name);
160
161   return MPI_SUCCESS;
162 }
163
164 int PMPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count)
165 {
166   if (status == nullptr || count == nullptr) {
167     return MPI_ERR_ARG;
168   } else if (not datatype->is_valid()) {
169     return MPI_ERR_TYPE;
170   } else {
171     size_t size = datatype->size();
172     if (size == 0) {
173       *count = 0;
174       return MPI_SUCCESS;
175     } else if (status->count % size != 0) {
176       return MPI_UNDEFINED;
177     } else {
178       *count = simgrid::smpi::Status::get_count(status, datatype);
179       return MPI_SUCCESS;
180     }
181   }
182 }
183
184 int PMPI_Initialized(int* flag) {
185    *flag=(smpi_process()!=nullptr && smpi_process()->initialized());
186    return MPI_SUCCESS;
187 }
188
189 int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr){
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 }
219
220 } // extern "C"