Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Use more std::string.
[simgrid.git] / src / smpi / bindings / smpi_f77_type.cpp
1 /* Copyright (c) 2010-2020. 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 "smpi_comm.hpp"
8 #include "smpi_datatype.hpp"
9
10 #include <string>
11
12 extern "C" { // This should really use the C linkage to be usable from Fortran
13
14 void mpi_type_extent_(int* datatype, MPI_Aint * extent, int* ierr){
15   *ierr= MPI_Type_extent(simgrid::smpi::Datatype::f2c(*datatype),  extent);
16 }
17
18 void mpi_type_free_(int* datatype, int* ierr){
19   MPI_Datatype tmp= simgrid::smpi::Datatype::f2c(*datatype);
20   *ierr= MPI_Type_free (&tmp);
21   if(*ierr == MPI_SUCCESS) {
22     simgrid::smpi::F2C::free_f(*datatype);
23   }
24 }
25
26 void mpi_type_ub_(int* datatype, MPI_Aint * disp, int* ierr){
27   *ierr= MPI_Type_ub(simgrid::smpi::Datatype::f2c(*datatype), disp);
28 }
29
30 void mpi_type_lb_(int* datatype, MPI_Aint * extent, int* ierr){
31   *ierr= MPI_Type_extent(simgrid::smpi::Datatype::f2c(*datatype), extent);
32 }
33
34 void mpi_type_size_(int* datatype, int *size, int* ierr)
35 {
36   *ierr = MPI_Type_size(simgrid::smpi::Datatype::f2c(*datatype), size);
37 }
38
39 void mpi_type_dup_ (int*  datatype, int* newdatatype, int* ierr){
40  MPI_Datatype tmp;
41  *ierr = MPI_Type_dup(simgrid::smpi::Datatype::f2c(*datatype), &tmp);
42  if(*ierr == MPI_SUCCESS) {
43    *newdatatype = tmp->add_f();
44  }
45 }
46
47 void mpi_type_set_name_(int* datatype, char* name, int* ierr, int size)
48 {
49   std::string tname(name, size);
50   *ierr = MPI_Type_set_name(simgrid::smpi::Datatype::f2c(*datatype), tname.c_str());
51 }
52
53 void mpi_type_get_name_ (int*  datatype, char * name, int* len, int* ierr){
54  *ierr = MPI_Type_get_name(simgrid::smpi::Datatype::f2c(*datatype),name,len);
55   for(int i = *len; i<MPI_MAX_OBJECT_NAME+1; i++)
56     name[i]=' ';
57 }
58
59 void mpi_type_get_attr_ (int* type, int* type_keyval, int *attribute_val, int* flag, int* ierr){
60  int* value = nullptr;
61  *ierr = MPI_Type_get_attr ( simgrid::smpi::Datatype::f2c(*type), *type_keyval, &value, flag);
62  if (*flag == 1)
63    *attribute_val = *value;
64 }
65
66 void mpi_type_set_attr_ (int* type, int* type_keyval, int *attribute_val, int* ierr){
67   auto* val = static_cast<int*>(xbt_malloc(sizeof(int)));
68   *val      = *attribute_val;
69   *ierr     = MPI_Type_set_attr(simgrid::smpi::Datatype::f2c(*type), *type_keyval, val);
70 }
71
72 void mpi_type_delete_attr_ (int* type, int* type_keyval, int* ierr){
73  *ierr = MPI_Type_delete_attr ( simgrid::smpi::Datatype::f2c(*type),  *type_keyval);
74 }
75
76 void mpi_type_create_keyval_ (void* copy_fn, void*  delete_fn, int* keyval, void* extra_state, int* ierr){
77   smpi_copy_fn _copy_fn={nullptr,nullptr,nullptr,nullptr,(*(int*)copy_fn) == 0 ? nullptr : reinterpret_cast<MPI_Type_copy_attr_function_fort*>(copy_fn),nullptr};
78   smpi_delete_fn _delete_fn={nullptr,nullptr,nullptr,nullptr,(*(int*)delete_fn) == 0 ? nullptr : reinterpret_cast<MPI_Type_delete_attr_function_fort*>(delete_fn),nullptr};
79   *ierr = simgrid::smpi::Keyval::keyval_create<simgrid::smpi::Datatype>(_copy_fn, _delete_fn, keyval, extra_state);
80 }
81
82 void mpi_type_free_keyval_ (int* keyval, int* ierr) {
83  *ierr = MPI_Type_free_keyval( keyval);
84 }
85
86 void mpi_type_get_extent_(int* datatype, MPI_Aint* lb, MPI_Aint* extent, int* ierr)
87 {
88   *ierr = MPI_Type_get_extent(simgrid::smpi::Datatype::f2c(*datatype), lb, extent);
89 }
90
91 void mpi_type_get_true_extent_(int* datatype, MPI_Aint* lb, MPI_Aint* extent, int* ierr)
92 {
93   *ierr = MPI_Type_get_true_extent(simgrid::smpi::Datatype::f2c(*datatype), lb, extent);
94 }
95
96 void mpi_type_commit_(int* datatype,  int* ierr){
97   MPI_Datatype tmp= simgrid::smpi::Datatype::f2c(*datatype);
98   *ierr= MPI_Type_commit(&tmp);
99 }
100
101 void mpi_type_contiguous_ (int* count, int* old_type, int*  newtype, int* ierr) {
102   MPI_Datatype tmp;
103   *ierr = MPI_Type_contiguous(*count, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
104   if(*ierr == MPI_SUCCESS) {
105     *newtype = tmp->add_f();
106   }
107 }
108
109 void mpi_type_vector_(int* count, int* blocklen, int* stride, int* old_type, int* newtype,  int* ierr){
110   MPI_Datatype tmp;
111   *ierr= MPI_Type_vector(*count, *blocklen, *stride, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
112   if(*ierr == MPI_SUCCESS) {
113     *newtype = tmp->add_f();
114   }
115 }
116
117 void mpi_type_hvector_(int* count, int* blocklen, MPI_Aint* stride, int* old_type, int* newtype,  int* ierr){
118   MPI_Datatype tmp;
119   *ierr= MPI_Type_hvector (*count, *blocklen, *stride, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
120   if(*ierr == MPI_SUCCESS) {
121     *newtype = tmp->add_f();
122   }
123 }
124
125 void mpi_type_create_hvector_(int* count, int* blocklen, MPI_Aint* stride, int* old_type, int* newtype,  int* ierr){
126   MPI_Datatype tmp;
127   *ierr= MPI_Type_hvector(*count, *blocklen, *stride, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
128   if(*ierr == MPI_SUCCESS) {
129     *newtype = tmp->add_f();
130   }
131 }
132
133 void mpi_type_hindexed_ (int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr) {
134   MPI_Datatype tmp;
135   auto* indices_aint = new MPI_Aint[*count];
136   for(int i=0; i<*count; i++)
137     indices_aint[i]=indices[i];
138   *ierr = MPI_Type_hindexed(*count, blocklens, indices_aint, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
139   if(*ierr == MPI_SUCCESS) {
140     *newtype = tmp->add_f();
141   }
142   delete[] indices_aint;
143 }
144
145 void mpi_type_create_hindexed_(int* count, int* blocklens, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr){
146   MPI_Datatype tmp;
147   *ierr = MPI_Type_create_hindexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
148   if(*ierr == MPI_SUCCESS) {
149     *newtype = tmp->add_f();
150   }
151 }
152
153 void mpi_type_create_hindexed_block_ (int* count, int* blocklength, MPI_Aint* indices, int* old_type, int*  newtype,
154                                       int* ierr) {
155   MPI_Datatype tmp;
156   *ierr = MPI_Type_create_hindexed_block(*count, *blocklength, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
157   if(*ierr == MPI_SUCCESS) {
158     *newtype = tmp->add_f();
159   }
160 }
161
162 void mpi_type_indexed_ (int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr) {
163   MPI_Datatype tmp;
164   *ierr = MPI_Type_indexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
165   if(*ierr == MPI_SUCCESS) {
166     *newtype = tmp->add_f();
167   }
168 }
169
170 void mpi_type_create_indexed_(int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr){
171   MPI_Datatype tmp;
172   *ierr = MPI_Type_create_indexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
173   if(*ierr == MPI_SUCCESS) {
174     *newtype = tmp->add_f();
175   }
176 }
177
178 void mpi_type_create_indexed_block_ (int* count, int* blocklength, int* indices,  int* old_type,  int*newtype,
179                                      int* ierr){
180   MPI_Datatype tmp;
181   *ierr = MPI_Type_create_indexed_block(*count, *blocklength, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
182   if(*ierr == MPI_SUCCESS) {
183     *newtype = tmp->add_f();
184   }
185 }
186
187 void mpi_type_struct_ (int* count, int* blocklens, int* indices, int* old_types, int*  newtype, int* ierr) {
188   MPI_Datatype tmp;
189   auto* types        = static_cast<MPI_Datatype*>(xbt_malloc(*count * sizeof(MPI_Datatype)));
190   auto* indices_aint = new MPI_Aint[*count];
191   for (int i = 0; i < *count; i++) {
192     indices_aint[i]=indices[i];
193     types[i] = simgrid::smpi::Datatype::f2c(old_types[i]);
194   }
195   *ierr = MPI_Type_struct(*count, blocklens, indices_aint, types, &tmp);
196   if(*ierr == MPI_SUCCESS) {
197     *newtype = tmp->add_f();
198   }
199   xbt_free(types);
200   delete[] indices_aint;
201 }
202
203 void mpi_type_create_struct_(int* count, int* blocklens, MPI_Aint* indices, int*  old_types, int*  newtype, int* ierr){
204   MPI_Datatype tmp;
205   auto* types = static_cast<MPI_Datatype*>(xbt_malloc(*count * sizeof(MPI_Datatype)));
206   for (int i = 0; i < *count; i++) {
207     types[i] = simgrid::smpi::Datatype::f2c(old_types[i]);
208   }
209   *ierr = MPI_Type_create_struct(*count, blocklens, indices, types, &tmp);
210   if(*ierr == MPI_SUCCESS) {
211     *newtype = tmp->add_f();
212   }
213   xbt_free(types);
214 }
215
216 void mpi_pack_ (void* inbuf, int* incount, int* type, void* outbuf, int* outcount, int* position, int* comm, int* ierr) {
217  *ierr = MPI_Pack(inbuf, *incount, simgrid::smpi::Datatype::f2c(*type), outbuf, *outcount, position, simgrid::smpi::Comm::f2c(*comm));
218 }
219
220 void mpi_unpack_ (void* inbuf, int* insize, int* position, void* outbuf, int* outcount, int* type, int* comm,
221                   int* ierr) {
222  *ierr = MPI_Unpack(inbuf, *insize, position, outbuf, *outcount, simgrid::smpi::Datatype::f2c(*type), simgrid::smpi::Comm::f2c(*comm));
223 }
224
225 void mpi_pack_external_size_ (char *datarep, int* incount, int* datatype, MPI_Aint *size, int* ierr){
226  *ierr = MPI_Pack_external_size(datarep, *incount, simgrid::smpi::Datatype::f2c(*datatype), size);
227 }
228
229 void mpi_pack_external_ (char *datarep, void *inbuf, int* incount, int* datatype, void *outbuf, MPI_Aint* outcount,
230                          MPI_Aint *position, int* ierr){
231  *ierr = MPI_Pack_external(datarep, inbuf, *incount, simgrid::smpi::Datatype::f2c(*datatype), outbuf, *outcount, position);
232 }
233
234 void mpi_unpack_external_ ( char *datarep, void *inbuf, MPI_Aint* insize, MPI_Aint *position, void *outbuf,
235                             int* outcount, int* datatype, int* ierr){
236  *ierr = MPI_Unpack_external( datarep, inbuf, *insize, position, outbuf, *outcount, simgrid::smpi::Datatype::f2c(*datatype));
237 }
238
239
240 void mpi_type_get_envelope_ ( int* datatype, int *num_integers, int *num_addresses, int *num_datatypes, int *combiner,
241                               int* ierr){
242  *ierr = MPI_Type_get_envelope(  simgrid::smpi::Datatype::f2c(*datatype), num_integers,
243  num_addresses, num_datatypes, combiner);
244 }
245
246 void mpi_type_get_contents_ (int* datatype, int* max_integers, int* max_addresses, int* max_datatypes,
247                              int* array_of_integers, MPI_Aint* array_of_addresses,
248  int* array_of_datatypes, int* ierr){
249  *ierr = MPI_Type_get_contents(simgrid::smpi::Datatype::f2c(*datatype), *max_integers, *max_addresses,*max_datatypes,
250                                array_of_integers, array_of_addresses, reinterpret_cast<MPI_Datatype*>(array_of_datatypes));
251 }
252
253 void mpi_type_create_darray_ (int* size, int* rank, int* ndims, int* array_of_gsizes, int* array_of_distribs,
254                               int* array_of_dargs, int* array_of_psizes,
255  int* order, int* oldtype, int*newtype, int* ierr) {
256   MPI_Datatype tmp;
257   *ierr = MPI_Type_create_darray(*size, *rank, *ndims,  array_of_gsizes,
258   array_of_distribs,  array_of_dargs,  array_of_psizes,
259   *order,  simgrid::smpi::Datatype::f2c(*oldtype), &tmp) ;
260   if(*ierr == MPI_SUCCESS) {
261     *newtype = tmp->add_f();
262   }
263 }
264
265 void mpi_type_create_resized_ (int* oldtype,MPI_Aint* lb, MPI_Aint* extent, int*newtype, int* ierr){
266   MPI_Datatype tmp;
267   *ierr = MPI_Type_create_resized(simgrid::smpi::Datatype::f2c(*oldtype),*lb, *extent, &tmp);
268   if(*ierr == MPI_SUCCESS) {
269     *newtype = tmp->add_f();
270   }
271 }
272
273 void mpi_type_create_subarray_ (int* ndims,int *array_of_sizes, int *array_of_subsizes, int *array_of_starts,
274                                 int* order, int* oldtype, int*newtype, int* ierr){
275   MPI_Datatype tmp;
276   *ierr = MPI_Type_create_subarray(*ndims,array_of_sizes, array_of_subsizes, array_of_starts, *order,
277                                    simgrid::smpi::Datatype::f2c(*oldtype), &tmp);
278   if(*ierr == MPI_SUCCESS) {
279     *newtype = tmp->add_f();
280   }
281 }
282
283 void mpi_type_match_size_ (int* typeclass,int* size,int* datatype, int* ierr){
284   MPI_Datatype tmp;
285   *ierr = MPI_Type_match_size(*typeclass,*size,&tmp);
286   if(*ierr == MPI_SUCCESS) {
287     *datatype = tmp->c2f();
288   }
289 }
290 }