Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9a2813738583cb2cd2aa180fa94d82f594861fd1
[simgrid.git] / src / smpi / bindings / smpi_f77_type.cpp
1 /* Copyright (c) 2010-2018. 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   if(*len>0)
56     name[*len]=' ';
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, void *attribute_val, int* ierr){
67
68  *ierr = MPI_Type_set_attr ( simgrid::smpi::Datatype::f2c(*type), *type_keyval, attribute_val);
69 }
70
71 void mpi_type_delete_attr_ (int* type, int* type_keyval, int* ierr){
72
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
78  *ierr = MPI_Type_create_keyval(reinterpret_cast<MPI_Type_copy_attr_function*>(copy_fn), reinterpret_cast<MPI_Type_delete_attr_function*>(delete_fn),
79                                 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, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr) {
134   MPI_Datatype tmp;
135   *ierr = MPI_Type_hindexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
136   if(*ierr == MPI_SUCCESS) {
137     *newtype = tmp->add_f();
138   }
139 }
140
141 void mpi_type_create_hindexed_(int* count, int* blocklens, MPI_Aint* indices, int* old_type, int*  newtype, int* ierr){
142   MPI_Datatype tmp;
143   *ierr = MPI_Type_create_hindexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
144   if(*ierr == MPI_SUCCESS) {
145     *newtype = tmp->add_f();
146   }
147 }
148
149 void mpi_type_create_hindexed_block_ (int* count, int* blocklength, MPI_Aint* indices, int* old_type, int*  newtype,
150                                       int* ierr) {
151   MPI_Datatype tmp;
152   *ierr = MPI_Type_create_hindexed_block(*count, *blocklength, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
153   if(*ierr == MPI_SUCCESS) {
154     *newtype = tmp->add_f();
155   }
156 }
157
158 void mpi_type_indexed_ (int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr) {
159   MPI_Datatype tmp;
160   *ierr = MPI_Type_indexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
161   if(*ierr == MPI_SUCCESS) {
162     *newtype = tmp->add_f();
163   }
164 }
165
166 void mpi_type_create_indexed_(int* count, int* blocklens, int* indices, int* old_type, int*  newtype, int* ierr){
167   MPI_Datatype tmp;
168   *ierr = MPI_Type_create_indexed(*count, blocklens, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
169   if(*ierr == MPI_SUCCESS) {
170     *newtype = tmp->add_f();
171   }
172 }
173
174 void mpi_type_create_indexed_block_ (int* count, int* blocklength, int* indices,  int* old_type,  int*newtype,
175                                      int* ierr){
176   MPI_Datatype tmp;
177   *ierr = MPI_Type_create_indexed_block(*count, *blocklength, indices, simgrid::smpi::Datatype::f2c(*old_type), &tmp);
178   if(*ierr == MPI_SUCCESS) {
179     *newtype = tmp->add_f();
180   }
181 }
182
183 void mpi_type_struct_ (int* count, int* blocklens, MPI_Aint* indices, int* old_types, int*  newtype, int* ierr) {
184   MPI_Datatype tmp;
185   int i=0;
186   MPI_Datatype* types = static_cast<MPI_Datatype*>(xbt_malloc(*count*sizeof(MPI_Datatype)));
187   for(i=0; i< *count; i++){
188     types[i] = simgrid::smpi::Datatype::f2c(old_types[i]);
189   }
190   *ierr = MPI_Type_struct(*count, blocklens, indices, types, &tmp);
191   if(*ierr == MPI_SUCCESS) {
192     *newtype = tmp->add_f();
193   }
194   xbt_free(types);
195 }
196
197 void mpi_type_create_struct_(int* count, int* blocklens, MPI_Aint* indices, int*  old_types, int*  newtype, int* ierr){
198   MPI_Datatype tmp;
199   int i=0;
200   MPI_Datatype* types = static_cast<MPI_Datatype*>(xbt_malloc(*count*sizeof(MPI_Datatype)));
201   for(i=0; i< *count; i++){
202     types[i] = simgrid::smpi::Datatype::f2c(old_types[i]);
203   }
204   *ierr = MPI_Type_create_struct(*count, blocklens, indices, types, &tmp);
205   if(*ierr == MPI_SUCCESS) {
206     *newtype = tmp->add_f();
207   }
208   xbt_free(types);
209 }
210
211 void mpi_pack_ (void* inbuf, int* incount, int* type, void* outbuf, int* outcount, int* position, int* comm, int* ierr) {
212  *ierr = MPI_Pack(inbuf, *incount, simgrid::smpi::Datatype::f2c(*type), outbuf, *outcount, position, simgrid::smpi::Comm::f2c(*comm));
213 }
214
215 void mpi_unpack_ (void* inbuf, int* insize, int* position, void* outbuf, int* outcount, int* type, int* comm,
216                   int* ierr) {
217  *ierr = MPI_Unpack(inbuf, *insize, position, outbuf, *outcount, simgrid::smpi::Datatype::f2c(*type), simgrid::smpi::Comm::f2c(*comm));
218 }
219
220 void mpi_pack_external_size_ (char *datarep, int* incount, int* datatype, MPI_Aint *size, int* ierr){
221  *ierr = MPI_Pack_external_size(datarep, *incount, simgrid::smpi::Datatype::f2c(*datatype), size);
222 }
223
224 void mpi_pack_external_ (char *datarep, void *inbuf, int* incount, int* datatype, void *outbuf, MPI_Aint* outcount,
225                          MPI_Aint *position, int* ierr){
226  *ierr = MPI_Pack_external(datarep, inbuf, *incount, simgrid::smpi::Datatype::f2c(*datatype), outbuf, *outcount, position);
227 }
228
229 void mpi_unpack_external_ ( char *datarep, void *inbuf, MPI_Aint* insize, MPI_Aint *position, void *outbuf,
230                             int* outcount, int* datatype, int* ierr){
231  *ierr = MPI_Unpack_external( datarep, inbuf, *insize, position, outbuf, *outcount, simgrid::smpi::Datatype::f2c(*datatype));
232 }
233
234
235 void mpi_type_get_envelope_ ( int* datatype, int *num_integers, int *num_addresses, int *num_datatypes, int *combiner,
236                               int* ierr){
237  *ierr = MPI_Type_get_envelope(  simgrid::smpi::Datatype::f2c(*datatype), num_integers,
238  num_addresses, num_datatypes, combiner);
239 }
240
241 void mpi_type_get_contents_ (int* datatype, int* max_integers, int* max_addresses, int* max_datatypes,
242                              int* array_of_integers, MPI_Aint* array_of_addresses,
243  int* array_of_datatypes, int* ierr){
244  *ierr = MPI_Type_get_contents(simgrid::smpi::Datatype::f2c(*datatype), *max_integers, *max_addresses,*max_datatypes,
245                                array_of_integers, array_of_addresses, reinterpret_cast<MPI_Datatype*>(array_of_datatypes));
246 }
247
248 void mpi_type_create_darray_ (int* size, int* rank, int* ndims, int* array_of_gsizes, int* array_of_distribs,
249                               int* array_of_dargs, int* array_of_psizes,
250  int* order, int* oldtype, int*newtype, int* ierr) {
251   MPI_Datatype tmp;
252   *ierr = MPI_Type_create_darray(*size, *rank, *ndims,  array_of_gsizes,
253   array_of_distribs,  array_of_dargs,  array_of_psizes,
254   *order,  simgrid::smpi::Datatype::f2c(*oldtype), &tmp) ;
255   if(*ierr == MPI_SUCCESS) {
256     *newtype = tmp->add_f();
257   }
258 }
259
260 void mpi_type_create_resized_ (int* oldtype,MPI_Aint* lb, MPI_Aint* extent, int*newtype, int* ierr){
261   MPI_Datatype tmp;
262   *ierr = MPI_Type_create_resized(simgrid::smpi::Datatype::f2c(*oldtype),*lb, *extent, &tmp);
263   if(*ierr == MPI_SUCCESS) {
264     *newtype = tmp->add_f();
265   }
266 }
267
268 void mpi_type_create_subarray_ (int* ndims,int *array_of_sizes, int *array_of_subsizes, int *array_of_starts,
269                                 int* order, int* oldtype, int*newtype, int* ierr){
270   MPI_Datatype tmp;
271   *ierr = MPI_Type_create_subarray(*ndims,array_of_sizes, array_of_subsizes, array_of_starts, *order,
272                                    simgrid::smpi::Datatype::f2c(*oldtype), &tmp);
273   if(*ierr == MPI_SUCCESS) {
274     *newtype = tmp->add_f();
275   }
276 }
277
278 void mpi_type_match_size_ (int* typeclass,int* size,int* datatype, int* ierr){
279   MPI_Datatype tmp;
280   *ierr = MPI_Type_match_size(*typeclass,*size,&tmp);
281   if(*ierr == MPI_SUCCESS) {
282     *datatype = tmp->c2f();
283   }
284 }
285
286
287 }