Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[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 "simgrid/s4u/Engine.hpp"
7 #include "simgrid/s4u/Host.hpp"
8 #include "private.h"
9 #include "smpi_comm.hpp"
10 #include "smpi_datatype_derived.hpp"
11 #include "smpi_process.hpp"
12 #include "smpi_status.hpp"
13
14 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_pmpi, smpi, "Logging specific to SMPI (pmpi)");
15
16 //this function need to be here because of the calls to smpi_bench
17 void TRACE_smpi_set_category(const char *category)
18 {
19   //need to end bench otherwise categories for execution tasks are wrong
20   smpi_bench_end();
21   TRACE_internal_smpi_set_category (category);
22   //begin bench after changing process's category
23   smpi_bench_begin();
24 }
25
26 /* PMPI User level calls */
27 extern "C" { // Obviously, the C MPI interface should use the C linkage
28
29 int PMPI_Init(int *argc, char ***argv)
30 {
31   xbt_assert(simgrid::s4u::Engine::isInitialized(),
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 = smpi_process()->index();
40     TRACE_smpi_init(rank);
41     TRACE_smpi_computing_init(rank);
42     instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
43     extra->type = TRACING_INIT;
44     TRACE_smpi_collective_in(rank, __FUNCTION__, extra);
45     TRACE_smpi_collective_out(rank, __FUNCTION__);
46     smpi_bench_begin();
47   }
48
49   smpi_mpi_init();
50
51   return MPI_SUCCESS;
52 }
53
54 int PMPI_Finalize()
55 {
56   smpi_bench_end();
57   int rank = smpi_process()->index();
58   instr_extra_data extra = xbt_new0(s_instr_extra_data_t,1);
59   extra->type = TRACING_FINALIZE;
60   TRACE_smpi_collective_in(rank, __FUNCTION__, extra);
61
62   smpi_process()->finalize();
63
64   TRACE_smpi_collective_out(rank, __FUNCTION__);
65   TRACE_smpi_finalize(smpi_process()->index());
66   return MPI_SUCCESS;
67 }
68
69 int PMPI_Finalized(int* flag)
70 {
71   *flag=smpi_process()!=nullptr ? smpi_process()->finalized() : 0;
72   return MPI_SUCCESS;
73 }
74
75 int PMPI_Get_version (int *version,int *subversion){
76   *version = MPI_VERSION;
77   *subversion= MPI_SUBVERSION;
78   return MPI_SUCCESS;
79 }
80
81 int PMPI_Get_library_version (char *version,int *len){
82   smpi_bench_end();
83   snprintf(version, MPI_MAX_LIBRARY_VERSION_STRING, "SMPI Version %d.%d. Copyright The Simgrid Team 2007-2017",
84            SIMGRID_VERSION_MAJOR, SIMGRID_VERSION_MINOR);
85   *len = strlen(version) > MPI_MAX_LIBRARY_VERSION_STRING ? MPI_MAX_LIBRARY_VERSION_STRING : strlen(version);
86   smpi_bench_begin();
87   return MPI_SUCCESS;
88 }
89
90 int PMPI_Init_thread(int *argc, char ***argv, int required, int *provided)
91 {
92   if (provided != nullptr) {
93     *provided = MPI_THREAD_SINGLE;
94   }
95   return MPI_Init(argc, argv);
96 }
97
98 int PMPI_Query_thread(int *provided)
99 {
100   if (provided == nullptr) {
101     return MPI_ERR_ARG;
102   } else {
103     *provided = MPI_THREAD_SINGLE;
104     return MPI_SUCCESS;
105   }
106 }
107
108 int PMPI_Is_thread_main(int *flag)
109 {
110   if (flag == nullptr) {
111     return MPI_ERR_ARG;
112   } else {
113     *flag = smpi_process()->index() == 0;
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   simcall_process_kill(SIMIX_process_self());
123   return MPI_SUCCESS;
124 }
125
126 double PMPI_Wtime()
127 {
128   return smpi_mpi_wtime();
129 }
130
131 extern double sg_maxmin_precision;
132 double PMPI_Wtick()
133 {
134   return sg_maxmin_precision;
135 }
136
137 int PMPI_Address(void *location, MPI_Aint * address)
138 {
139   if (address==nullptr) {
140     return MPI_ERR_ARG;
141   } else {
142     *address = reinterpret_cast<MPI_Aint>(location);
143     return MPI_SUCCESS;
144   }
145 }
146
147 int PMPI_Get_address(void *location, MPI_Aint * address)
148 {
149   return PMPI_Address(location, address);
150 }
151
152 int PMPI_Get_processor_name(char *name, int *resultlen)
153 {
154   strncpy(name, sg_host_self()->getCname(), strlen(sg_host_self()->getCname()) < MPI_MAX_PROCESSOR_NAME - 1
155                                                 ? strlen(sg_host_self()->getCname()) + 1
156                                                 : MPI_MAX_PROCESSOR_NAME - 1);
157   *resultlen = strlen(name) > MPI_MAX_PROCESSOR_NAME ? MPI_MAX_PROCESSOR_NAME : strlen(name);
158
159   return MPI_SUCCESS;
160 }
161
162 int PMPI_Get_count(MPI_Status * status, MPI_Datatype datatype, int *count)
163 {
164   if (status == nullptr || count == nullptr) {
165     return MPI_ERR_ARG;
166   } else if (not datatype->is_valid()) {
167     return MPI_ERR_TYPE;
168   } else {
169     size_t size = datatype->size();
170     if (size == 0) {
171       *count = 0;
172       return MPI_SUCCESS;
173     } else if (status->count % size != 0) {
174       return MPI_UNDEFINED;
175     } else {
176       *count = simgrid::smpi::Status::get_count(status, datatype);
177       return MPI_SUCCESS;
178     }
179   }
180 }
181
182 int PMPI_Initialized(int* flag) {
183    *flag=(smpi_process()!=nullptr && smpi_process()->initialized());
184    return MPI_SUCCESS;
185 }
186
187 int PMPI_Alloc_mem(MPI_Aint size, MPI_Info info, void *baseptr){
188   void *ptr = xbt_malloc(size);
189   if(ptr==nullptr)
190     return MPI_ERR_NO_MEM;
191   else {
192     *static_cast<void**>(baseptr) = ptr;
193     return MPI_SUCCESS;
194   }
195 }
196
197 int PMPI_Free_mem(void *baseptr){
198   xbt_free(baseptr);
199   return MPI_SUCCESS;
200 }
201
202 int PMPI_Error_class(int errorcode, int* errorclass) {
203   // assume smpi uses only standard mpi error codes
204   *errorclass=errorcode;
205   return MPI_SUCCESS;
206 }
207
208 int PMPI_Keyval_create(MPI_Copy_function* copy_fn, MPI_Delete_function* delete_fn, int* keyval, void* extra_state) {
209   smpi_copy_fn _copy_fn={copy_fn,nullptr,nullptr};
210   smpi_delete_fn _delete_fn={delete_fn,nullptr,nullptr};
211   return simgrid::smpi::Keyval::keyval_create<simgrid::smpi::Comm>(_copy_fn, _delete_fn, keyval, extra_state);
212 }
213
214 int PMPI_Keyval_free(int* keyval) {
215   return simgrid::smpi::Keyval::keyval_free<simgrid::smpi::Comm>(keyval);
216 }
217
218 } // extern "C"