Logo AND Algorithmique Numérique Distribuée

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