Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into energy-pstate
[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_comm_in(rank, __FUNCTION__, new simgrid::instr::NoOpTIData("init"));
43     TRACE_smpi_comm_out(rank);
44     TRACE_smpi_computing_init(rank);
45     smpi_bench_begin();
46   }
47
48   smpi_mpi_init();
49
50   return MPI_SUCCESS;
51 }
52
53 int PMPI_Finalize()
54 {
55   smpi_bench_end();
56   int rank = smpi_process()->index();
57   TRACE_smpi_comm_in(rank, __FUNCTION__, new simgrid::instr::NoOpTIData("finalize"));
58
59   smpi_process()->finalize();
60
61   TRACE_smpi_comm_out(rank);
62   TRACE_smpi_finalize(rank);
63   return MPI_SUCCESS;
64 }
65
66 int PMPI_Finalized(int* flag)
67 {
68   *flag=smpi_process()!=nullptr ? smpi_process()->finalized() : 0;
69   return MPI_SUCCESS;
70 }
71
72 int PMPI_Get_version (int *version,int *subversion){
73   *version = MPI_VERSION;
74   *subversion= MPI_SUBVERSION;
75   return MPI_SUCCESS;
76 }
77
78 int PMPI_Get_library_version (char *version,int *len){
79   smpi_bench_end();
80   snprintf(version, MPI_MAX_LIBRARY_VERSION_STRING, "SMPI Version %d.%d. Copyright The Simgrid Team 2007-2017",
81            SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR);
82   *len = strlen(version) > MPI_MAX_LIBRARY_VERSION_STRING ? MPI_MAX_LIBRARY_VERSION_STRING : strlen(version);
83   smpi_bench_begin();
84   return MPI_SUCCESS;
85 }
86
87 int PMPI_Init_thread(int* argc, char*** argv, int /*required*/, int* provided)
88 {
89   if (provided != nullptr) {
90     *provided = MPI_THREAD_SINGLE;
91   }
92   return MPI_Init(argc, argv);
93 }
94
95 int PMPI_Query_thread(int *provided)
96 {
97   if (provided == nullptr) {
98     return MPI_ERR_ARG;
99   } else {
100     *provided = MPI_THREAD_SINGLE;
101     return MPI_SUCCESS;
102   }
103 }
104
105 int PMPI_Is_thread_main(int *flag)
106 {
107   if (flag == nullptr) {
108     return MPI_ERR_ARG;
109   } else {
110     *flag = smpi_process()->index() == 0;
111     return MPI_SUCCESS;
112   }
113 }
114
115 int PMPI_Abort(MPI_Comm /*comm*/, int /*errorcode*/)
116 {
117   smpi_bench_end();
118   // FIXME: should kill all processes in comm instead
119   smx_actor_t process = SIMIX_process_self();
120   simgrid::simix::kernelImmediate([process] { SIMIX_process_kill(process, process); });
121   return MPI_SUCCESS;
122 }
123
124 double PMPI_Wtime()
125 {
126   return smpi_mpi_wtime();
127 }
128
129 extern double sg_maxmin_precision;
130 double PMPI_Wtick()
131 {
132   return sg_maxmin_precision;
133 }
134
135 int PMPI_Address(void *location, MPI_Aint * address)
136 {
137   if (address==nullptr) {
138     return MPI_ERR_ARG;
139   } else {
140     *address = reinterpret_cast<MPI_Aint>(location);
141     return MPI_SUCCESS;
142   }
143 }
144
145 int PMPI_Get_address(void *location, MPI_Aint * address)
146 {
147   return PMPI_Address(location, address);
148 }
149
150 int PMPI_Get_processor_name(char *name, int *resultlen)
151 {
152   strncpy(name, sg_host_self()->getCname(), strlen(sg_host_self()->getCname()) < MPI_MAX_PROCESSOR_NAME - 1
153                                                 ? strlen(sg_host_self()->getCname()) + 1
154                                                 : MPI_MAX_PROCESSOR_NAME - 1);
155   *resultlen = strlen(name) > MPI_MAX_PROCESSOR_NAME ? MPI_MAX_PROCESSOR_NAME : strlen(name);
156
157   return MPI_SUCCESS;
158 }
159
160 int PMPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count)
161 {
162   if (status == nullptr || count == nullptr) {
163     return MPI_ERR_ARG;
164   } else if (not datatype->is_valid()) {
165     return MPI_ERR_TYPE;
166   } else {
167     size_t size = datatype->size();
168     if (size == 0) {
169       *count = 0;
170       return MPI_SUCCESS;
171     } else if (status->count % size != 0) {
172       return MPI_UNDEFINED;
173     } else {
174       *count = simgrid::smpi::Status::get_count(status, datatype);
175       return MPI_SUCCESS;
176     }
177   }
178 }
179
180 int PMPI_Initialized(int* flag) {
181    *flag=(smpi_process()!=nullptr && smpi_process()->initialized());
182    return MPI_SUCCESS;
183 }
184
185 int PMPI_Alloc_mem(MPI_Aint size, MPI_Info /*info*/, void* baseptr)
186 {
187   void *ptr = xbt_malloc(size);
188   if(ptr==nullptr)
189     return MPI_ERR_NO_MEM;
190   else {
191     *static_cast<void**>(baseptr) = ptr;
192     return MPI_SUCCESS;
193   }
194 }
195
196 int PMPI_Free_mem(void *baseptr){
197   xbt_free(baseptr);
198   return MPI_SUCCESS;
199 }
200
201 int PMPI_Error_class(int errorcode, int* errorclass) {
202   // assume smpi uses only standard mpi error codes
203   *errorclass=errorcode;
204   return MPI_SUCCESS;
205 }
206
207 int PMPI_Keyval_create(MPI_Copy_function* copy_fn, MPI_Delete_function* delete_fn, int* keyval, void* extra_state) {
208   smpi_copy_fn _copy_fn={copy_fn,nullptr,nullptr};
209   smpi_delete_fn _delete_fn={delete_fn,nullptr,nullptr};
210   return simgrid::smpi::Keyval::keyval_create<simgrid::smpi::Comm>(_copy_fn, _delete_fn, keyval, extra_state);
211 }
212
213 int PMPI_Keyval_free(int* keyval) {
214   return simgrid::smpi::Keyval::keyval_free<simgrid::smpi::Comm>(keyval);
215 }
216
217 } // extern "C"