Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[SMPI] Datatypes: Make them all replayable
[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()
206 {
207   return std::to_string(id).c_str();
208 }
209
210 MPI_Datatype Datatype::decode(const char* const datatype_id)
211 {
212   return id2type_lookup.find(std::stoi(datatype_id))->second;
213 }
214
215 bool Datatype::is_replayable()
216 {
217   return ((this==MPI_BYTE)||(this==MPI_DOUBLE)||(this==MPI_INT)||
218           (this==MPI_CHAR)||(this==MPI_SHORT)||(this==MPI_LONG)||(this==MPI_FLOAT));
219 }
220
221 size_t Datatype::size(){
222   return size_;
223 }
224
225 int Datatype::flags(){
226   return flags_;
227 }
228
229 int Datatype::refcount(){
230   return refcount_;
231 }
232
233 void Datatype::addflag(int flag){
234   flags_ &= flag;
235 }
236
237 MPI_Aint Datatype::lb(){
238   return lb_;
239 }
240
241 MPI_Aint Datatype::ub(){
242   return ub_;
243 }
244
245 char* Datatype::name(){
246   return name_;
247 }
248
249
250 int Datatype::extent(MPI_Aint * lb, MPI_Aint * extent){
251   *lb = lb_;
252   *extent = ub_ - lb_;
253   return MPI_SUCCESS;
254 }
255
256 MPI_Aint Datatype::get_extent(){
257   return ub_ - lb_;
258 }
259
260 void Datatype::get_name(char* name, int* length){
261   *length = strlen(name_);
262   strncpy(name, name_, *length+1);
263 }
264
265 void Datatype::set_name(char* name){
266   if(name_!=nullptr &&  (flags_ & DT_FLAG_PREDEFINED) == 0)
267     xbt_free(name_);
268   name_ = xbt_strdup(name);
269 }
270
271 int Datatype::pack(void* inbuf, int incount, void* outbuf, int outcount, int* position,MPI_Comm comm){
272   if (outcount - *position < incount*static_cast<int>(size_))
273     return MPI_ERR_BUFFER;
274   Datatype::copy(inbuf, incount, this, static_cast<char*>(outbuf) + *position, outcount, MPI_CHAR);
275   *position += incount * size_;
276   return MPI_SUCCESS;
277 }
278
279 int Datatype::unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount,MPI_Comm comm){
280   if (outcount*static_cast<int>(size_)> insize)
281     return MPI_ERR_BUFFER;
282   Datatype::copy(static_cast<char*>(inbuf) + *position, insize, MPI_CHAR, outbuf, outcount, this);
283   *position += outcount * size_;
284   return MPI_SUCCESS;
285 }
286
287
288 int Datatype::copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
289                        void *recvbuf, int recvcount, MPI_Datatype recvtype){
290
291 // FIXME Handle the case of a partial shared malloc.
292
293   if(smpi_privatize_global_variables == SMPI_PRIVATIZE_MMAP){
294     smpi_switch_data_segment(simgrid::s4u::Actor::self());
295   }
296   /* First check if we really have something to do */
297   if (recvcount > 0 && recvbuf != sendbuf) {
298     sendcount *= sendtype->size();
299     recvcount *= recvtype->size();
300     int count = sendcount < recvcount ? sendcount : recvcount;
301
302     if (not(sendtype->flags() & DT_FLAG_DERIVED) && not(recvtype->flags() & DT_FLAG_DERIVED)) {
303       if (not smpi_process()->replaying())
304         memcpy(recvbuf, sendbuf, count);
305     } else if (not(sendtype->flags() & DT_FLAG_DERIVED)) {
306       recvtype->unserialize(sendbuf, recvbuf, count / recvtype->size(), MPI_REPLACE);
307     } else if (not(recvtype->flags() & DT_FLAG_DERIVED)) {
308       sendtype->serialize(sendbuf, recvbuf, count / sendtype->size());
309     }else{
310
311       void * buf_tmp = xbt_malloc(count);
312
313       sendtype->serialize( sendbuf, buf_tmp,count/sendtype->size());
314       recvtype->unserialize( buf_tmp, recvbuf,count/recvtype->size(), MPI_REPLACE);
315
316       xbt_free(buf_tmp);
317     }
318   }
319
320   return sendcount > recvcount ? MPI_ERR_TRUNCATE : MPI_SUCCESS;
321 }
322
323 //Default serialization method : memcpy.
324 void Datatype::serialize( void* noncontiguous_buf, void *contiguous_buf, int count){
325   char* contiguous_buf_char = static_cast<char*>(contiguous_buf);
326   char* noncontiguous_buf_char = static_cast<char*>(noncontiguous_buf)+lb_;
327   memcpy(contiguous_buf_char, noncontiguous_buf_char, count*size_);
328
329 }
330
331 void Datatype::unserialize( void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){
332   char* contiguous_buf_char = static_cast<char*>(contiguous_buf);
333   char* noncontiguous_buf_char = static_cast<char*>(noncontiguous_buf)+lb_;
334   int n=count;
335   if(op!=MPI_OP_NULL)
336     op->apply( contiguous_buf_char, noncontiguous_buf_char, &n, this);
337 }
338
339 int Datatype::create_contiguous(int count, MPI_Datatype old_type, MPI_Aint lb, MPI_Datatype* new_type){
340   if(old_type->flags_ & DT_FLAG_DERIVED){
341     //handle this case as a hvector with stride equals to the extent of the datatype
342     return create_hvector(count, 1, old_type->get_extent(), old_type, new_type);
343   }
344   if(count>0)
345     *new_type = new Type_Contiguous(count * old_type->size(), lb, lb + count * old_type->size(),
346                                    DT_FLAG_DERIVED, count, old_type);
347   else
348     *new_type = new Datatype(count * old_type->size(), lb, lb + count * old_type->size(),0);
349   return MPI_SUCCESS;
350 }
351
352 int Datatype::create_vector(int count, int block_length, int stride, MPI_Datatype old_type, MPI_Datatype* new_type)
353 {
354   int retval;
355   if (block_length<0)
356     return MPI_ERR_ARG;
357   MPI_Aint lb = 0;
358   MPI_Aint ub = 0;
359   if(count>0){
360     lb=old_type->lb();
361     ub=((count-1)*stride+block_length-1)*old_type->get_extent()+old_type->ub();
362   }
363   if(old_type->flags() & DT_FLAG_DERIVED || stride != block_length){
364     *new_type = new Type_Vector(count * (block_length) * old_type->size(), lb, ub,
365                                    DT_FLAG_DERIVED, count, block_length, stride, old_type);
366     retval=MPI_SUCCESS;
367   }else{
368     /* in this situation the data are contiguous thus it's not required to serialize and unserialize it*/
369     *new_type = new Datatype(count * block_length * old_type->size(), 0, ((count -1) * stride + block_length)*
370                          old_type->size(), DT_FLAG_CONTIGUOUS);
371     retval=MPI_SUCCESS;
372   }
373   return retval;
374 }
375
376
377 int Datatype::create_hvector(int count, int block_length, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type)
378 {
379   int retval;
380   if (block_length<0)
381     return MPI_ERR_ARG;
382   MPI_Aint lb = 0;
383   MPI_Aint ub = 0;
384   if(count>0){
385     lb=old_type->lb();
386     ub=((count-1)*stride)+(block_length-1)*old_type->get_extent()+old_type->ub();
387   }
388   if(old_type->flags() & DT_FLAG_DERIVED || stride != block_length*old_type->get_extent()){
389     *new_type = new Type_Hvector(count * (block_length) * old_type->size(), lb, ub,
390                                    DT_FLAG_DERIVED, count, block_length, stride, old_type);
391     retval=MPI_SUCCESS;
392   }else{
393     /* in this situation the data are contiguous thus it's not required to serialize and unserialize it*/
394     *new_type = new Datatype(count * block_length * old_type->size(), 0, count * block_length * old_type->size(), DT_FLAG_CONTIGUOUS);
395     retval=MPI_SUCCESS;
396   }
397   return retval;
398 }
399
400 int Datatype::create_indexed(int count, int* block_lengths, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type){
401   int size = 0;
402   bool contiguous=true;
403   MPI_Aint lb = 0;
404   MPI_Aint ub = 0;
405   if(count>0){
406     lb=indices[0]*old_type->get_extent();
407     ub=indices[0]*old_type->get_extent() + block_lengths[0]*old_type->ub();
408   }
409
410   for (int i = 0; i < count; i++) {
411     if (block_lengths[i] < 0)
412       return MPI_ERR_ARG;
413     size += block_lengths[i];
414
415     if(indices[i]*old_type->get_extent()+old_type->lb()<lb)
416       lb = indices[i]*old_type->get_extent()+old_type->lb();
417     if(indices[i]*old_type->get_extent()+block_lengths[i]*old_type->ub()>ub)
418       ub = indices[i]*old_type->get_extent()+block_lengths[i]*old_type->ub();
419
420     if ( (i< count -1) && (indices[i]+block_lengths[i] != indices[i+1]) )
421       contiguous=false;
422   }
423   if(old_type->flags_ & DT_FLAG_DERIVED)
424     contiguous=false;
425
426   if (not contiguous) {
427     *new_type = new Type_Indexed(size * old_type->size(),lb,ub,
428                                  DT_FLAG_DERIVED|DT_FLAG_DATA, count, block_lengths, indices, old_type);
429   }else{
430     Datatype::create_contiguous(size, old_type, lb, new_type);
431   }
432   return MPI_SUCCESS;
433 }
434
435 int Datatype::create_hindexed(int count, int* block_lengths, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type){
436   int size = 0;
437   bool contiguous=true;
438   MPI_Aint lb = 0;
439   MPI_Aint ub = 0;
440   if(count>0){
441     lb=indices[0] + old_type->lb();
442     ub=indices[0] + block_lengths[0]*old_type->ub();
443   }
444   for (int i = 0; i < count; i++) {
445     if (block_lengths[i] < 0)
446       return MPI_ERR_ARG;
447     size += block_lengths[i];
448
449     if(indices[i]+old_type->lb()<lb)
450       lb = indices[i]+old_type->lb();
451     if(indices[i]+block_lengths[i]*old_type->ub()>ub)
452       ub = indices[i]+block_lengths[i]*old_type->ub();
453
454     if ( (i< count -1) && (indices[i]+block_lengths[i]*(static_cast<int>(old_type->size())) != indices[i+1]) )
455       contiguous=false;
456   }
457   if (old_type->flags_ & DT_FLAG_DERIVED || lb!=0)
458     contiguous=false;
459
460   if (not contiguous) {
461     *new_type = new Type_Hindexed(size * old_type->size(),lb,ub,
462                                    DT_FLAG_DERIVED|DT_FLAG_DATA, count, block_lengths, indices, old_type);
463   }else{
464     Datatype::create_contiguous(size, old_type, lb, new_type);
465   }
466   return MPI_SUCCESS;
467 }
468
469 int Datatype::create_struct(int count, int* block_lengths, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type){
470   size_t size = 0;
471   bool contiguous=true;
472   size = 0;
473   MPI_Aint lb = 0;
474   MPI_Aint ub = 0;
475   if(count>0){
476     lb=indices[0] + old_types[0]->lb();
477     ub=indices[0] + block_lengths[0]*old_types[0]->ub();
478   }
479   bool forced_lb=false;
480   bool forced_ub=false;
481   for (int i = 0; i < count; i++) {
482     if (block_lengths[i]<0)
483       return MPI_ERR_ARG;
484     if (old_types[i]->flags_ & DT_FLAG_DERIVED)
485       contiguous=false;
486
487     size += block_lengths[i]*old_types[i]->size();
488     if (old_types[i]==MPI_LB){
489       lb=indices[i];
490       forced_lb=true;
491     }
492     if (old_types[i]==MPI_UB){
493       ub=indices[i];
494       forced_ub=true;
495     }
496
497     if (not forced_lb && indices[i] + old_types[i]->lb() < lb)
498       lb = indices[i];
499     if (not forced_ub && indices[i] + block_lengths[i] * old_types[i]->ub() > ub)
500       ub = indices[i]+block_lengths[i]*old_types[i]->ub();
501
502     if ( (i< count -1) && (indices[i]+block_lengths[i]*static_cast<int>(old_types[i]->size()) != indices[i+1]) )
503       contiguous=false;
504   }
505   if (not contiguous) {
506     *new_type = new Type_Struct(size, lb,ub, DT_FLAG_DERIVED|DT_FLAG_DATA,
507                                 count, block_lengths, indices, old_types);
508   }else{
509     Datatype::create_contiguous(size, MPI_CHAR, lb, new_type);
510   }
511   return MPI_SUCCESS;
512 }
513
514 int Datatype::create_subarray(int ndims, int* array_of_sizes,
515                              int* array_of_subsizes, int* array_of_starts,
516                              int order, MPI_Datatype oldtype, MPI_Datatype *newtype){
517   MPI_Datatype tmp;
518
519   for (int i = 0; i < ndims; i++) {
520     if (array_of_subsizes[i] > array_of_sizes[i]){
521       XBT_WARN("subarray : array_of_subsizes > array_of_sizes for dim %d",i);
522       return MPI_ERR_ARG;
523     }
524     if (array_of_starts[i] + array_of_subsizes[i] > array_of_sizes[i]){
525       XBT_WARN("subarray : array_of_starts + array_of_subsizes > array_of_sizes for dim %d",i);
526       return MPI_ERR_ARG;
527     }
528   }
529   
530   MPI_Aint extent = oldtype->get_extent();
531
532   int i;
533   int step;
534   int end;
535   if( order==MPI_ORDER_C ) {
536       i = ndims - 1;
537       step = -1;
538       end = -1;
539   } else {
540       i = 0;
541       step = 1;
542       end = ndims;
543   }
544   
545   MPI_Aint size = (MPI_Aint)array_of_sizes[i] * (MPI_Aint)array_of_sizes[i+step];
546   MPI_Aint lb = (MPI_Aint)array_of_starts[i] + (MPI_Aint)array_of_starts[i+step] *(MPI_Aint)array_of_sizes[i];
547
548   create_vector( array_of_subsizes[i+step], array_of_subsizes[i], array_of_sizes[i],
549                                oldtype, newtype );
550
551   tmp = *newtype;
552
553   for( i += 2 * step; i != end; i += step ) {
554       create_hvector( array_of_subsizes[i], 1, size * extent,
555                                     tmp, newtype );
556       unref(tmp);
557       lb += size * array_of_starts[i];
558       size *= array_of_sizes[i];
559       tmp = *newtype;
560   }
561
562   MPI_Aint lbs[1] = {lb * extent};
563   int sizes [1]={1};
564   //handle LB and UB with a resized call
565   create_hindexed( 1, sizes, lbs, tmp, newtype);
566   unref(tmp);
567   
568   tmp = *newtype;
569   create_resized(tmp, 0, extent, newtype);
570
571   unref(tmp);
572   return MPI_SUCCESS;
573 }
574
575 int Datatype::create_resized(MPI_Datatype oldtype,MPI_Aint lb, MPI_Aint extent, MPI_Datatype *newtype){
576   int blocks[3]         = {1, 1, 1};
577   MPI_Aint disps[3]     = {lb, 0, lb + extent};
578   MPI_Datatype types[3] = {MPI_LB, oldtype, MPI_UB};
579
580   *newtype = new simgrid::smpi::Type_Struct(oldtype->size(), lb, lb + extent, DT_FLAG_DERIVED, 3, blocks, disps, types);
581
582   (*newtype)->addflag(~DT_FLAG_COMMITED);
583   return MPI_SUCCESS;
584 }
585
586 Datatype* Datatype::f2c(int id){
587   return static_cast<Datatype*>(F2C::f2c(id));
588 }
589
590
591 }
592 }
593