Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Remove all references to decode_datatype
[simgrid.git] / src / smpi / mpi / smpi_datatype.cpp
1 /* smpi_datatype.cpp -- MPI primitives to handle datatypes                  */
2 /* Copyright (c) 2009-2018. The SimGrid Team.  All rights reserved.         */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include "simgrid/modelchecker.h"
8 #include "private.hpp"
9 #include "smpi_datatype_derived.hpp"
10 #include "smpi_op.hpp"
11 #include "smpi_process.hpp"
12
13 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_datatype, smpi, "Logging specific to SMPI (datatype)");
14
15 static std::unordered_map<int, simgrid::smpi::Datatype*> id2type_lookup;
16
17 #define CREATE_MPI_DATATYPE(name, id, type)                                                                            \
18   static simgrid::smpi::Datatype mpi_##name((char*)#name, id, sizeof(type), /* size */                                 \
19                                             0,                              /* lb */                                   \
20                                             sizeof(type),                   /* ub = lb + size */                       \
21                                             DT_FLAG_BASIC                   /* flags */                                \
22                                             );                                                                         \
23   const MPI_Datatype name = &mpi_##name;
24
25 #define CREATE_MPI_DATATYPE_NULL(name, id)                                                                             \
26   static simgrid::smpi::Datatype mpi_##name((char*)#name, id, 0, /* size */                                            \
27                                             0,                   /* lb */                                              \
28                                             0,                   /* ub = lb + size */                                  \
29                                             DT_FLAG_BASIC        /* flags */                                           \
30                                             );                                                                         \
31   const MPI_Datatype name = &mpi_##name;
32
33 // Predefined data types
34 CREATE_MPI_DATATYPE(MPI_CHAR, 2, char);
35 CREATE_MPI_DATATYPE(MPI_SHORT, 3, short);
36 CREATE_MPI_DATATYPE(MPI_INT, 1, int);
37 CREATE_MPI_DATATYPE(MPI_LONG, 4, long);
38 CREATE_MPI_DATATYPE(MPI_LONG_LONG, 7, long long);
39 CREATE_MPI_DATATYPE(MPI_SIGNED_CHAR, 8, signed char);
40 CREATE_MPI_DATATYPE(MPI_UNSIGNED_CHAR, 9, unsigned char);
41 CREATE_MPI_DATATYPE(MPI_UNSIGNED_SHORT, 10, unsigned short);
42 CREATE_MPI_DATATYPE(MPI_UNSIGNED, 11, unsigned int);
43 CREATE_MPI_DATATYPE(MPI_UNSIGNED_LONG, 12, unsigned long);
44 CREATE_MPI_DATATYPE(MPI_UNSIGNED_LONG_LONG, 13, unsigned long long);
45 CREATE_MPI_DATATYPE(MPI_FLOAT, 5, float);
46 CREATE_MPI_DATATYPE(MPI_DOUBLE, 0, double);
47 CREATE_MPI_DATATYPE(MPI_LONG_DOUBLE, 14, long double);
48 CREATE_MPI_DATATYPE(MPI_WCHAR, 15, wchar_t);
49 CREATE_MPI_DATATYPE(MPI_C_BOOL, 16, bool);
50 CREATE_MPI_DATATYPE(MPI_BYTE, 6, int8_t);
51 CREATE_MPI_DATATYPE(MPI_INT8_T, 17, int8_t);
52 CREATE_MPI_DATATYPE(MPI_INT16_T, 18, int16_t);
53 CREATE_MPI_DATATYPE(MPI_INT32_T, 19, int32_t);
54 CREATE_MPI_DATATYPE(MPI_INT64_T, 20, int64_t);
55 CREATE_MPI_DATATYPE(MPI_UINT8_T, 21, uint8_t);
56 CREATE_MPI_DATATYPE(MPI_UINT16_T, 22, uint16_t);
57 CREATE_MPI_DATATYPE(MPI_UINT32_T, 23, uint32_t);
58 CREATE_MPI_DATATYPE(MPI_UINT64_T, 24, uint64_t);
59 CREATE_MPI_DATATYPE(MPI_C_FLOAT_COMPLEX, 25, float _Complex);
60 CREATE_MPI_DATATYPE(MPI_C_DOUBLE_COMPLEX, 26, double _Complex);
61 CREATE_MPI_DATATYPE(MPI_C_LONG_DOUBLE_COMPLEX, 27, long double _Complex);
62 CREATE_MPI_DATATYPE(MPI_AINT, 28, MPI_Aint);
63 CREATE_MPI_DATATYPE(MPI_OFFSET, 29, MPI_Offset);
64
65 CREATE_MPI_DATATYPE(MPI_FLOAT_INT, 30, float_int);
66 CREATE_MPI_DATATYPE(MPI_LONG_INT, 31, long_int);
67 CREATE_MPI_DATATYPE(MPI_DOUBLE_INT, 32, double_int);
68 CREATE_MPI_DATATYPE(MPI_SHORT_INT, 33, short_int);
69 CREATE_MPI_DATATYPE(MPI_2INT, 34, int_int);
70 CREATE_MPI_DATATYPE(MPI_2FLOAT, 35, float_float);
71 CREATE_MPI_DATATYPE(MPI_2DOUBLE, 36, double_double);
72 CREATE_MPI_DATATYPE(MPI_2LONG, 37, long_long);
73
74 CREATE_MPI_DATATYPE(MPI_REAL, 38, float);
75 CREATE_MPI_DATATYPE(MPI_REAL4, 39, float);
76 CREATE_MPI_DATATYPE(MPI_REAL8, 40, float);
77 CREATE_MPI_DATATYPE(MPI_REAL16, 41, double);
78 CREATE_MPI_DATATYPE_NULL(MPI_COMPLEX8, 42);
79 CREATE_MPI_DATATYPE_NULL(MPI_COMPLEX16, 43);
80 CREATE_MPI_DATATYPE_NULL(MPI_COMPLEX32, 44);
81 CREATE_MPI_DATATYPE(MPI_INTEGER1, 45, int);
82 CREATE_MPI_DATATYPE(MPI_INTEGER2, 46, int16_t);
83 CREATE_MPI_DATATYPE(MPI_INTEGER4, 47, int32_t);
84 CREATE_MPI_DATATYPE(MPI_INTEGER8, 48, int64_t);
85 CREATE_MPI_DATATYPE(MPI_INTEGER16, 49, integer128_t);
86
87 CREATE_MPI_DATATYPE(MPI_LONG_DOUBLE_INT, 50, long_double_int);
88
89 CREATE_MPI_DATATYPE_NULL(MPI_UB, 51);
90 CREATE_MPI_DATATYPE_NULL(MPI_LB, 52);
91 CREATE_MPI_DATATYPE(MPI_PACKED, 53, char);
92 // Internal use only
93 CREATE_MPI_DATATYPE(MPI_PTR, 54, void*);
94
95 namespace simgrid{
96 namespace smpi{
97
98 std::unordered_map<int, smpi_key_elem> Datatype::keyvals_; // required by the Keyval class implementation
99 int Datatype::keyval_id_=0; // required by the Keyval class implementation
100 Datatype::Datatype(int id, int size, MPI_Aint lb, MPI_Aint ub, int flags) : Datatype(size, lb, ub, flags)
101 {
102   id = id;
103 }
104 Datatype::Datatype(int size,MPI_Aint lb, MPI_Aint ub, int flags) : name_(nullptr), size_(size), lb_(lb), ub_(ub), flags_(flags), refcount_(1){
105 #if SIMGRID_HAVE_MC
106   if(MC_is_active())
107     MC_ignore(&(refcount_), sizeof(refcount_));
108 #endif
109 }
110
111 //for predefined types, so in_use = 0.
112 Datatype::Datatype(char* name, int id, int size, MPI_Aint lb, MPI_Aint ub, int flags)
113     : name_(name), id(id), size_(size), lb_(lb), ub_(ub), flags_(flags), refcount_(0)
114 {
115   id2type_lookup.insert({id, this});
116 #if SIMGRID_HAVE_MC
117   if(MC_is_active())
118     MC_ignore(&(refcount_), sizeof(refcount_));
119 #endif
120 }
121
122 Datatype::Datatype(Datatype *datatype, int* ret) : name_(nullptr), lb_(datatype->lb_), ub_(datatype->ub_), flags_(datatype->flags_), refcount_(1)
123 {
124   flags_ &= ~DT_FLAG_PREDEFINED;
125   *ret = MPI_SUCCESS;
126   if(datatype->name_)
127     name_ = xbt_strdup(datatype->name_);
128
129   if (not datatype->attributes()->empty()) {
130     int flag;
131     void* value_out;
132     for(auto it = datatype->attributes()->begin(); it != datatype->attributes()->end(); it++){
133       smpi_key_elem elem = keyvals_.at((*it).first);
134
135       if (elem != nullptr && elem->copy_fn.type_copy_fn != MPI_NULL_COPY_FN) {
136         *ret = elem->copy_fn.type_copy_fn(datatype, (*it).first, nullptr, (*it).second, &value_out, &flag);
137         if (*ret != MPI_SUCCESS) {
138           break;
139         }
140         if (flag){
141           elem->refcount++;
142           attributes()->insert({(*it).first, value_out});
143         }
144       }
145     }
146   }
147 }
148
149 Datatype::~Datatype(){
150   xbt_assert(refcount_ >= 0);
151
152   if(flags_ & DT_FLAG_PREDEFINED)
153     return;
154
155   //if still used, mark for deletion
156   if(refcount_!=0){
157       flags_ |=DT_FLAG_DESTROYED;
158       return;
159   }
160
161   cleanup_attr<Datatype>();
162
163   xbt_free(name_);
164 }
165
166
167 void Datatype::ref(){
168
169   refcount_++;
170
171 #if SIMGRID_HAVE_MC
172   if(MC_is_active())
173     MC_ignore(&(refcount_), sizeof(refcount_));
174 #endif
175 }
176
177 void Datatype::unref(MPI_Datatype datatype)
178 {
179   if (datatype->refcount_ > 0)
180     datatype->refcount_--;
181
182   if (datatype->refcount_ == 0 && not(datatype->flags_ & DT_FLAG_PREDEFINED))
183     delete datatype;
184
185 #if SIMGRID_HAVE_MC
186   if(MC_is_active())
187     MC_ignore(&(datatype->refcount_), sizeof(datatype->refcount_));
188 #endif
189 }
190
191 void Datatype::commit()
192 {
193   flags_ |= DT_FLAG_COMMITED;
194 }
195
196 bool Datatype::is_valid(){
197   return (flags_ & DT_FLAG_COMMITED);
198 }
199
200 bool Datatype::is_basic()
201 {
202   return (flags_ & DT_FLAG_BASIC);
203 }
204
205 const char* Datatype::encode(MPI_Datatype dt)
206 {
207   if (dt == MPI_DATATYPE_NULL)
208     return "-1";
209
210   return std::to_string(dt->id).c_str();
211 }
212
213 MPI_Datatype Datatype::decode(std::string datatype_id)
214 {
215   return id2type_lookup.find(std::stoi(datatype_id))->second;
216 }
217
218 bool Datatype::is_replayable()
219 {
220   return ((this==MPI_BYTE)||(this==MPI_DOUBLE)||(this==MPI_INT)||
221           (this==MPI_CHAR)||(this==MPI_SHORT)||(this==MPI_LONG)||(this==MPI_FLOAT));
222 }
223
224 size_t Datatype::size(){
225   return size_;
226 }
227
228 int Datatype::flags(){
229   return flags_;
230 }
231
232 int Datatype::refcount(){
233   return refcount_;
234 }
235
236 void Datatype::addflag(int flag){
237   flags_ &= flag;
238 }
239
240 MPI_Aint Datatype::lb(){
241   return lb_;
242 }
243
244 MPI_Aint Datatype::ub(){
245   return ub_;
246 }
247
248 char* Datatype::name(){
249   return name_;
250 }
251
252
253 int Datatype::extent(MPI_Aint * lb, MPI_Aint * extent){
254   *lb = lb_;
255   *extent = ub_ - lb_;
256   return MPI_SUCCESS;
257 }
258
259 MPI_Aint Datatype::get_extent(){
260   return ub_ - lb_;
261 }
262
263 void Datatype::get_name(char* name, int* length){
264   *length = strlen(name_);
265   strncpy(name, name_, *length+1);
266 }
267
268 void Datatype::set_name(char* name){
269   if(name_!=nullptr &&  (flags_ & DT_FLAG_PREDEFINED) == 0)
270     xbt_free(name_);
271   name_ = xbt_strdup(name);
272 }
273
274 int Datatype::pack(void* inbuf, int incount, void* outbuf, int outcount, int* position,MPI_Comm comm){
275   if (outcount - *position < incount*static_cast<int>(size_))
276     return MPI_ERR_BUFFER;
277   Datatype::copy(inbuf, incount, this, static_cast<char*>(outbuf) + *position, outcount, MPI_CHAR);
278   *position += incount * size_;
279   return MPI_SUCCESS;
280 }
281
282 int Datatype::unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount,MPI_Comm comm){
283   if (outcount*static_cast<int>(size_)> insize)
284     return MPI_ERR_BUFFER;
285   Datatype::copy(static_cast<char*>(inbuf) + *position, insize, MPI_CHAR, outbuf, outcount, this);
286   *position += outcount * size_;
287   return MPI_SUCCESS;
288 }
289
290
291 int Datatype::copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
292                        void *recvbuf, int recvcount, MPI_Datatype recvtype){
293
294 // FIXME Handle the case of a partial shared malloc.
295
296   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP){
297     smpi_switch_data_segment(simgrid::s4u::Actor::self());
298   }
299   /* First check if we really have something to do */
300   if (recvcount > 0 && recvbuf != sendbuf) {
301     sendcount *= sendtype->size();
302     recvcount *= recvtype->size();
303     int count = sendcount < recvcount ? sendcount : recvcount;
304
305     if (not(sendtype->flags() & DT_FLAG_DERIVED) && not(recvtype->flags() & DT_FLAG_DERIVED)) {
306       if (not smpi_process()->replaying())
307         memcpy(recvbuf, sendbuf, count);
308     } else if (not(sendtype->flags() & DT_FLAG_DERIVED)) {
309       recvtype->unserialize(sendbuf, recvbuf, count / recvtype->size(), MPI_REPLACE);
310     } else if (not(recvtype->flags() & DT_FLAG_DERIVED)) {
311       sendtype->serialize(sendbuf, recvbuf, count / sendtype->size());
312     }else{
313
314       void * buf_tmp = xbt_malloc(count);
315
316       sendtype->serialize( sendbuf, buf_tmp,count/sendtype->size());
317       recvtype->unserialize( buf_tmp, recvbuf,count/recvtype->size(), MPI_REPLACE);
318
319       xbt_free(buf_tmp);
320     }
321   }
322
323   return sendcount > recvcount ? MPI_ERR_TRUNCATE : MPI_SUCCESS;
324 }
325
326 //Default serialization method : memcpy.
327 void Datatype::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){
328   char* contiguous_buf_char = static_cast<char*>(contiguous_buf);
329   char* noncontiguous_buf_char = static_cast<char*>(noncontiguous_buf)+lb_;
330   memcpy(contiguous_buf_char, noncontiguous_buf_char, count*size_);
331
332 }
333
334 void Datatype::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){
335   char* contiguous_buf_char = static_cast<char*>(contiguous_buf);
336   char* noncontiguous_buf_char = static_cast<char*>(noncontiguous_buf)+lb_;
337   int n=count;
338   if(op!=MPI_OP_NULL)
339     op->apply( contiguous_buf_char, noncontiguous_buf_char, &n, this);
340 }
341
342 int Datatype::create_contiguous(int count, MPI_Datatype old_type, MPI_Aint lb, MPI_Datatype* new_type){
343   if(old_type->flags_ & DT_FLAG_DERIVED){
344     //handle this case as a hvector with stride equals to the extent of the datatype
345     return create_hvector(count, 1, old_type->get_extent(), old_type, new_type);
346   }
347   if(count>0)
348     *new_type = new Type_Contiguous(count * old_type->size(), lb, lb + count * old_type->size(),
349                                    DT_FLAG_DERIVED, count, old_type);
350   else
351     *new_type = new Datatype(count * old_type->size(), lb, lb + count * old_type->size(),0);
352   return MPI_SUCCESS;
353 }
354
355 int Datatype::create_vector(int count, int block_length, int stride, MPI_Datatype old_type, MPI_Datatype* new_type)
356 {
357   int retval;
358   if (block_length<0)
359     return MPI_ERR_ARG;
360   MPI_Aint lb = 0;
361   MPI_Aint ub = 0;
362   if(count>0){
363     lb=old_type->lb();
364     ub=((count-1)*stride+block_length-1)*old_type->get_extent()+old_type->ub();
365   }
366   if(old_type->flags() & DT_FLAG_DERIVED || stride != block_length){
367     *new_type = new Type_Vector(count * (block_length) * old_type->size(), lb, ub,
368                                    DT_FLAG_DERIVED, count, block_length, stride, old_type);
369     retval=MPI_SUCCESS;
370   }else{
371     /* in this situation the data are contiguous thus it's not required to serialize and unserialize it*/
372     *new_type = new Datatype(count * block_length * old_type->size(), 0, ((count -1) * stride + block_length)*
373                          old_type->size(), DT_FLAG_CONTIGUOUS);
374     retval=MPI_SUCCESS;
375   }
376   return retval;
377 }
378
379
380 int Datatype::create_hvector(int count, int block_length, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type)
381 {
382   int retval;
383   if (block_length<0)
384     return MPI_ERR_ARG;
385   MPI_Aint lb = 0;
386   MPI_Aint ub = 0;
387   if(count>0){
388     lb=old_type->lb();
389     ub=((count-1)*stride)+(block_length-1)*old_type->get_extent()+old_type->ub();
390   }
391   if(old_type->flags() & DT_FLAG_DERIVED || stride != block_length*old_type->get_extent()){
392     *new_type = new Type_Hvector(count * (block_length) * old_type->size(), lb, ub,
393                                    DT_FLAG_DERIVED, count, block_length, stride, old_type);
394     retval=MPI_SUCCESS;
395   }else{
396     /* in this situation the data are contiguous thus it's not required to serialize and unserialize it*/
397     *new_type = new Datatype(count * block_length * old_type->size(), 0, count * block_length * old_type->size(), DT_FLAG_CONTIGUOUS);
398     retval=MPI_SUCCESS;
399   }
400   return retval;
401 }
402
403 int Datatype::create_indexed(int count, int* block_lengths, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type){
404   int size = 0;
405   bool contiguous=true;
406   MPI_Aint lb = 0;
407   MPI_Aint ub = 0;
408   if(count>0){
409     lb=indices[0]*old_type->get_extent();
410     ub=indices[0]*old_type->get_extent() + block_lengths[0]*old_type->ub();
411   }
412
413   for (int i = 0; i < count; i++) {
414     if (block_lengths[i] < 0)
415       return MPI_ERR_ARG;
416     size += block_lengths[i];
417
418     if(indices[i]*old_type->get_extent()+old_type->lb()<lb)
419       lb = indices[i]*old_type->get_extent()+old_type->lb();
420     if(indices[i]*old_type->get_extent()+block_lengths[i]*old_type->ub()>ub)
421       ub = indices[i]*old_type->get_extent()+block_lengths[i]*old_type->ub();
422
423     if ( (i< count -1) && (indices[i]+block_lengths[i] != indices[i+1]) )
424       contiguous=false;
425   }
426   if(old_type->flags_ & DT_FLAG_DERIVED)
427     contiguous=false;
428
429   if (not contiguous) {
430     *new_type = new Type_Indexed(size * old_type->size(),lb,ub,
431                                  DT_FLAG_DERIVED|DT_FLAG_DATA, count, block_lengths, indices, old_type);
432   }else{
433     Datatype::create_contiguous(size, old_type, lb, new_type);
434   }
435   return MPI_SUCCESS;
436 }
437
438 int Datatype::create_hindexed(int count, int* block_lengths, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type){
439   int size = 0;
440   bool contiguous=true;
441   MPI_Aint lb = 0;
442   MPI_Aint ub = 0;
443   if(count>0){
444     lb=indices[0] + old_type->lb();
445     ub=indices[0] + block_lengths[0]*old_type->ub();
446   }
447   for (int i = 0; i < count; i++) {
448     if (block_lengths[i] < 0)
449       return MPI_ERR_ARG;
450     size += block_lengths[i];
451
452     if(indices[i]+old_type->lb()<lb)
453       lb = indices[i]+old_type->lb();
454     if(indices[i]+block_lengths[i]*old_type->ub()>ub)
455       ub = indices[i]+block_lengths[i]*old_type->ub();
456
457     if ( (i< count -1) && (indices[i]+block_lengths[i]*(static_cast<int>(old_type->size())) != indices[i+1]) )
458       contiguous=false;
459   }
460   if (old_type->flags_ & DT_FLAG_DERIVED || lb!=0)
461     contiguous=false;
462
463   if (not contiguous) {
464     *new_type = new Type_Hindexed(size * old_type->size(),lb,ub,
465                                    DT_FLAG_DERIVED|DT_FLAG_DATA, count, block_lengths, indices, old_type);
466   }else{
467     Datatype::create_contiguous(size, old_type, lb, new_type);
468   }
469   return MPI_SUCCESS;
470 }
471
472 int Datatype::create_struct(int count, int* block_lengths, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type){
473   size_t size = 0;
474   bool contiguous=true;
475   size = 0;
476   MPI_Aint lb = 0;
477   MPI_Aint ub = 0;
478   if(count>0){
479     lb=indices[0] + old_types[0]->lb();
480     ub=indices[0] + block_lengths[0]*old_types[0]->ub();
481   }
482   bool forced_lb=false;
483   bool forced_ub=false;
484   for (int i = 0; i < count; i++) {
485     if (block_lengths[i]<0)
486       return MPI_ERR_ARG;
487     if (old_types[i]->flags_ & DT_FLAG_DERIVED)
488       contiguous=false;
489
490     size += block_lengths[i]*old_types[i]->size();
491     if (old_types[i]==MPI_LB){
492       lb=indices[i];
493       forced_lb=true;
494     }
495     if (old_types[i]==MPI_UB){
496       ub=indices[i];
497       forced_ub=true;
498     }
499
500     if (not forced_lb && indices[i] + old_types[i]->lb() < lb)
501       lb = indices[i];
502     if (not forced_ub && indices[i] + block_lengths[i] * old_types[i]->ub() > ub)
503       ub = indices[i]+block_lengths[i]*old_types[i]->ub();
504
505     if ( (i< count -1) && (indices[i]+block_lengths[i]*static_cast<int>(old_types[i]->size()) != indices[i+1]) )
506       contiguous=false;
507   }
508   if (not contiguous) {
509     *new_type = new Type_Struct(size, lb,ub, DT_FLAG_DERIVED|DT_FLAG_DATA,
510                                 count, block_lengths, indices, old_types);
511   }else{
512     Datatype::create_contiguous(size, MPI_CHAR, lb, new_type);
513   }
514   return MPI_SUCCESS;
515 }
516
517 int Datatype::create_subarray(int ndims, int* array_of_sizes,
518                              int* array_of_subsizes, int* array_of_starts,
519                              int order, MPI_Datatype oldtype, MPI_Datatype *newtype){
520   MPI_Datatype tmp;
521
522   for (int i = 0; i < ndims; i++) {
523     if (array_of_subsizes[i] > array_of_sizes[i]){
524       XBT_WARN("subarray : array_of_subsizes > array_of_sizes for dim %d",i);
525       return MPI_ERR_ARG;
526     }
527     if (array_of_starts[i] + array_of_subsizes[i] > array_of_sizes[i]){
528       XBT_WARN("subarray : array_of_starts + array_of_subsizes > array_of_sizes for dim %d",i);
529       return MPI_ERR_ARG;
530     }
531   }
532   
533   MPI_Aint extent = oldtype->get_extent();
534
535   int i;
536   int step;
537   int end;
538   if( order==MPI_ORDER_C ) {
539       i = ndims - 1;
540       step = -1;
541       end = -1;
542   } else {
543       i = 0;
544       step = 1;
545       end = ndims;
546   }
547   
548   MPI_Aint size = (MPI_Aint)array_of_sizes[i] * (MPI_Aint)array_of_sizes[i+step];
549   MPI_Aint lb = (MPI_Aint)array_of_starts[i] + (MPI_Aint)array_of_starts[i+step] *(MPI_Aint)array_of_sizes[i];
550
551   create_vector( array_of_subsizes[i+step], array_of_subsizes[i], array_of_sizes[i],
552                                oldtype, newtype );
553
554   tmp = *newtype;
555
556   for( i += 2 * step; i != end; i += step ) {
557       create_hvector( array_of_subsizes[i], 1, size * extent,
558                                     tmp, newtype );
559       unref(tmp);
560       lb += size * array_of_starts[i];
561       size *= array_of_sizes[i];
562       tmp = *newtype;
563   }
564
565   MPI_Aint lbs[1] = {lb * extent};
566   int sizes [1]={1};
567   //handle LB and UB with a resized call
568   create_hindexed( 1, sizes, lbs, tmp, newtype);
569   unref(tmp);
570   
571   tmp = *newtype;
572   create_resized(tmp, 0, extent, newtype);
573
574   unref(tmp);
575   return MPI_SUCCESS;
576 }
577
578 int Datatype::create_resized(MPI_Datatype oldtype,MPI_Aint lb, MPI_Aint extent, MPI_Datatype *newtype){
579   int blocks[3]         = {1, 1, 1};
580   MPI_Aint disps[3]     = {lb, 0, lb + extent};
581   MPI_Datatype types[3] = {MPI_LB, oldtype, MPI_UB};
582
583   *newtype = new simgrid::smpi::Type_Struct(oldtype->size(), lb, lb + extent, DT_FLAG_DERIVED, 3, blocks, disps, types);
584
585   (*newtype)->addflag(~DT_FLAG_COMMITED);
586   return MPI_SUCCESS;
587 }
588
589 Datatype* Datatype::f2c(int id){
590   return static_cast<Datatype*>(F2C::f2c(id));
591 }
592
593
594 }
595 }
596