Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
3829b155f9301e851414140d6ed4734d1ae05af9
[simgrid.git] / src / smpi / mpi / smpi_datatype.cpp
1 /* smpi_datatype.cpp -- MPI primitives to handle datatypes                  */
2 /* Copyright (c) 2009-2019. 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 "private.hpp"
8 #include "simgrid/modelchecker.h"
9 #include "smpi_datatype_derived.hpp"
10 #include "smpi_op.hpp"
11 #include "src/instr/instr_private.hpp"
12 #include "src/smpi/include/smpi_actor.hpp"
13
14 #include <string>
15
16 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(smpi_datatype, smpi, "Logging specific to SMPI (datatype)");
17
18 static std::unordered_map<std::string, simgrid::smpi::Datatype*> id2type_lookup;
19
20 #define CREATE_MPI_DATATYPE(name, id, type)                                                                            \
21   static simgrid::smpi::Datatype _XBT_CONCAT(mpi_, name)((char*)_XBT_STRINGIFY(name), (id), sizeof(type), /* size */   \
22                                                          0,                                               /* lb */     \
23                                                          sizeof(type), /* ub = lb + size */                            \
24                                                          DT_FLAG_BASIC /* flags */                                     \
25                                                          );                                                            \
26   const MPI_Datatype name = &_XBT_CONCAT(mpi_, name);
27
28 #define CREATE_MPI_DATATYPE_NULL(name, id)                                                                             \
29   static simgrid::smpi::Datatype _XBT_CONCAT(mpi_, name)((char*)_XBT_STRINGIFY(name), (id), 0, /* size */              \
30                                                          0,                                    /* lb */                \
31                                                          0,                                    /* ub = lb + size */    \
32                                                          DT_FLAG_BASIC                         /* flags */             \
33                                                          );                                                            \
34   const MPI_Datatype name = &_XBT_CONCAT(mpi_, name);
35
36 // Predefined data types
37 CREATE_MPI_DATATYPE(MPI_CHAR, 2, char)
38 CREATE_MPI_DATATYPE(MPI_SHORT, 3, short)
39 CREATE_MPI_DATATYPE(MPI_INT, 1, int)
40 CREATE_MPI_DATATYPE(MPI_LONG, 4, long)
41 CREATE_MPI_DATATYPE(MPI_LONG_LONG, 7, long long)
42 CREATE_MPI_DATATYPE(MPI_SIGNED_CHAR, 8, signed char)
43 CREATE_MPI_DATATYPE(MPI_UNSIGNED_CHAR, 9, unsigned char)
44 CREATE_MPI_DATATYPE(MPI_UNSIGNED_SHORT, 10, unsigned short)
45 CREATE_MPI_DATATYPE(MPI_UNSIGNED, 11, unsigned int)
46 CREATE_MPI_DATATYPE(MPI_UNSIGNED_LONG, 12, unsigned long)
47 CREATE_MPI_DATATYPE(MPI_UNSIGNED_LONG_LONG, 13, unsigned long long)
48 CREATE_MPI_DATATYPE(MPI_FLOAT, 5, float)
49 CREATE_MPI_DATATYPE(MPI_DOUBLE, 0, double)
50 CREATE_MPI_DATATYPE(MPI_LONG_DOUBLE, 14, long double)
51 CREATE_MPI_DATATYPE(MPI_WCHAR, 15, wchar_t)
52 CREATE_MPI_DATATYPE(MPI_C_BOOL, 16, bool)
53 CREATE_MPI_DATATYPE(MPI_BYTE, 6, int8_t)
54 CREATE_MPI_DATATYPE(MPI_INT8_T, 17, int8_t)
55 CREATE_MPI_DATATYPE(MPI_INT16_T, 18, int16_t)
56 CREATE_MPI_DATATYPE(MPI_INT32_T, 19, int32_t)
57 CREATE_MPI_DATATYPE(MPI_INT64_T, 20, int64_t)
58 CREATE_MPI_DATATYPE(MPI_UINT8_T, 21, uint8_t)
59 CREATE_MPI_DATATYPE(MPI_UINT16_T, 22, uint16_t)
60 CREATE_MPI_DATATYPE(MPI_UINT32_T, 23, uint32_t)
61 CREATE_MPI_DATATYPE(MPI_UINT64_T, 24, uint64_t)
62 CREATE_MPI_DATATYPE(MPI_C_FLOAT_COMPLEX, 25, float _Complex)
63 CREATE_MPI_DATATYPE(MPI_C_DOUBLE_COMPLEX, 26, double _Complex)
64 CREATE_MPI_DATATYPE(MPI_C_LONG_DOUBLE_COMPLEX, 27, long double _Complex)
65 CREATE_MPI_DATATYPE(MPI_AINT, 28, MPI_Aint)
66 CREATE_MPI_DATATYPE(MPI_OFFSET, 29, MPI_Offset)
67
68 CREATE_MPI_DATATYPE(MPI_FLOAT_INT, 30, float_int)
69 CREATE_MPI_DATATYPE(MPI_LONG_INT, 31, long_int)
70 CREATE_MPI_DATATYPE(MPI_DOUBLE_INT, 32, double_int)
71 CREATE_MPI_DATATYPE(MPI_SHORT_INT, 33, short_int)
72 CREATE_MPI_DATATYPE(MPI_2INT, 34, int_int)
73 CREATE_MPI_DATATYPE(MPI_2FLOAT, 35, float_float)
74 CREATE_MPI_DATATYPE(MPI_2DOUBLE, 36, double_double)
75 CREATE_MPI_DATATYPE(MPI_2LONG, 37, long_long)
76
77 CREATE_MPI_DATATYPE(MPI_REAL, 38, float)
78 CREATE_MPI_DATATYPE(MPI_REAL4, 39, float)
79 CREATE_MPI_DATATYPE(MPI_REAL8, 40, double)
80 CREATE_MPI_DATATYPE(MPI_REAL16, 41, long double)
81 CREATE_MPI_DATATYPE_NULL(MPI_DATATYPE_NULL, -1)
82 CREATE_MPI_DATATYPE(MPI_COMPLEX8, 42, float_float)
83 CREATE_MPI_DATATYPE(MPI_COMPLEX16, 43, double_double)
84 CREATE_MPI_DATATYPE(MPI_COMPLEX32, 44, double_double)
85 CREATE_MPI_DATATYPE(MPI_INTEGER1, 45, int)
86 CREATE_MPI_DATATYPE(MPI_INTEGER2, 46, int16_t)
87 CREATE_MPI_DATATYPE(MPI_INTEGER4, 47, int32_t)
88 CREATE_MPI_DATATYPE(MPI_INTEGER8, 48, int64_t)
89 CREATE_MPI_DATATYPE(MPI_INTEGER16, 49, integer128_t)
90
91 CREATE_MPI_DATATYPE(MPI_LONG_DOUBLE_INT, 50, long_double_int)
92
93 CREATE_MPI_DATATYPE_NULL(MPI_UB, 51)
94 CREATE_MPI_DATATYPE_NULL(MPI_LB, 52)
95 CREATE_MPI_DATATYPE(MPI_PACKED, 53, char)
96 // Internal use only
97 CREATE_MPI_DATATYPE(MPI_PTR, 54, void*)
98 CREATE_MPI_DATATYPE(MPI_COUNT, 55, long long)
99
100
101 namespace simgrid{
102 namespace smpi{
103
104 std::unordered_map<int, smpi_key_elem> Datatype::keyvals_; // required by the Keyval class implementation
105 int Datatype::keyval_id_=0; // required by the Keyval class implementation
106 Datatype::Datatype(int ident, int size, MPI_Aint lb, MPI_Aint ub, int flags) : Datatype(size, lb, ub, flags)
107 {
108   id = std::to_string(ident);
109 }
110 Datatype::Datatype(int size,MPI_Aint lb, MPI_Aint ub, int flags) : name_(nullptr), size_(size), lb_(lb), ub_(ub), flags_(flags), refcount_(1){
111 #if SIMGRID_HAVE_MC
112   if(MC_is_active())
113     MC_ignore(&(refcount_), sizeof(refcount_));
114 #endif
115 }
116
117 //for predefined types, so in_use = 0.
118 Datatype::Datatype(char* name, int ident, int size, MPI_Aint lb, MPI_Aint ub, int flags)
119     : name_(name), id(std::to_string(ident)), size_(size), lb_(lb), ub_(ub), flags_(flags), refcount_(0)
120 {
121   id2type_lookup.insert({id, this});
122 #if SIMGRID_HAVE_MC
123   if(MC_is_active())
124     MC_ignore(&(refcount_), sizeof(refcount_));
125 #endif
126 }
127
128 Datatype::Datatype(Datatype *datatype, int* ret) : name_(nullptr), size_(datatype->size_), lb_(datatype->lb_), ub_(datatype->ub_), flags_(datatype->flags_), refcount_(1)
129 {
130   flags_ &= ~DT_FLAG_PREDEFINED;
131   *ret = MPI_SUCCESS;
132     
133   if (not datatype->attributes()->empty()) {
134     int flag=0;
135     void* value_out;
136     for (auto const& it : *(datatype->attributes())) {
137       smpi_key_elem elem = keyvals_.at(it.first);
138       if (elem != nullptr){
139         if( elem->copy_fn.type_copy_fn != MPI_NULL_COPY_FN && 
140             elem->copy_fn.type_copy_fn != MPI_TYPE_DUP_FN)
141           *ret = elem->copy_fn.type_copy_fn(datatype, it.first, elem->extra_state, it.second, &value_out, &flag);
142         else if ( elem->copy_fn.type_copy_fn_fort != MPI_NULL_COPY_FN &&
143                   (*(int*)*elem->copy_fn.type_copy_fn_fort) != 1){
144           value_out=(int*)xbt_malloc(sizeof(int));
145           elem->copy_fn.type_copy_fn_fort(datatype, it.first, elem->extra_state, it.second, value_out, &flag,ret);
146         }
147         if (*ret != MPI_SUCCESS) {
148           break;
149         }
150         if(elem->copy_fn.type_copy_fn == MPI_TYPE_DUP_FN || 
151           ((elem->copy_fn.type_copy_fn_fort != MPI_NULL_COPY_FN) && (*(int*)*elem->copy_fn.type_copy_fn_fort == 1))){
152           elem->refcount++;
153           attributes()->insert({it.first, it.second});
154         } else if (flag){
155           elem->refcount++;
156           attributes()->insert({it.first, value_out});
157         }
158       }
159     }
160   }
161 }
162
163 Datatype::~Datatype()
164 {
165   xbt_assert(refcount_ >= 0);
166
167   if(flags_ & DT_FLAG_PREDEFINED)
168     return;
169
170   //if still used, mark for deletion
171   if(refcount_!=0){
172       flags_ |=DT_FLAG_DESTROYED;
173       return;
174   }
175
176   cleanup_attr<Datatype>();
177
178   xbt_free(name_);
179 }
180
181 void Datatype::ref()
182 {
183   refcount_++;
184
185 #if SIMGRID_HAVE_MC
186   if(MC_is_active())
187     MC_ignore(&(refcount_), sizeof(refcount_));
188 #endif
189 }
190
191 void Datatype::unref(MPI_Datatype datatype)
192 {
193   if (datatype->refcount_ > 0)
194     datatype->refcount_--;
195
196   if (datatype->refcount_ == 0 && not(datatype->flags_ & DT_FLAG_PREDEFINED))
197     delete datatype;
198
199 #if SIMGRID_HAVE_MC
200   if(MC_is_active())
201     MC_ignore(&(datatype->refcount_), sizeof(datatype->refcount_));
202 #endif
203 }
204
205 void Datatype::commit()
206 {
207   flags_ |= DT_FLAG_COMMITED;
208 }
209
210 bool Datatype::is_valid(){
211   return (flags_ & DT_FLAG_COMMITED);
212 }
213
214 bool Datatype::is_basic()
215 {
216   return (flags_ & DT_FLAG_BASIC);
217 }
218
219 bool Datatype::is_replayable()
220 {
221   return (simgrid::instr::trace_format == simgrid::instr::TraceFormat::Ti) &&
222          ((this == MPI_BYTE) || (this == MPI_DOUBLE) || (this == MPI_INT) || (this == MPI_CHAR) ||
223           (this == MPI_SHORT) || (this == MPI_LONG) || (this == MPI_FLOAT));
224 }
225
226 MPI_Datatype Datatype::decode(const std::string& datatype_id)
227 {
228   return id2type_lookup.find(datatype_id)->second;
229 }
230
231 void Datatype::addflag(int flag){
232   flags_ &= flag;
233 }
234
235 int Datatype::extent(MPI_Aint * lb, MPI_Aint * extent){
236   *lb = lb_;
237   *extent = ub_ - lb_;
238   return MPI_SUCCESS;
239 }
240
241 void Datatype::get_name(char* name, int* length){
242   if(name_!=nullptr){
243     *length = strlen(name_);
244     strncpy(name, name_, *length+1);
245   }else{
246     *length = 0;
247   }
248 }
249
250 void Datatype::set_name(const char* name){
251   if(name_!=nullptr &&  (flags_ & DT_FLAG_PREDEFINED) == 0)
252     xbt_free(name_);
253   name_ = xbt_strdup(name);
254 }
255
256 int Datatype::pack(const void* inbuf, int incount, void* outbuf, int outcount, int* position, MPI_Comm)
257 {
258   if (outcount - *position < incount*static_cast<int>(size_))
259     return MPI_ERR_OTHER;
260   Datatype::copy(inbuf, incount, this, static_cast<char*>(outbuf) + *position, outcount, MPI_CHAR);
261   *position += incount * size_;
262   return MPI_SUCCESS;
263 }
264
265 int Datatype::unpack(const void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Comm)
266 {
267   if (outcount*static_cast<int>(size_)> insize)
268     return MPI_ERR_OTHER;
269   Datatype::copy(static_cast<const char*>(inbuf) + *position, insize, MPI_CHAR, outbuf, outcount, this);
270   *position += outcount * size_;
271   return MPI_SUCCESS;
272 }
273
274 int Datatype::copy(const void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
275                    MPI_Datatype recvtype)
276 {
277   // FIXME Handle the case of a partial shared malloc.
278
279   if (smpi_cfg_privatization() == SmpiPrivStrategies::MMAP) {
280     smpi_switch_data_segment(simgrid::s4u::Actor::self());
281   }
282   /* First check if we really have something to do */
283   size_t offset = 0;
284   std::vector<std::pair<size_t, size_t>> private_blocks;
285   if(smpi_is_shared(sendbuf,private_blocks,&offset)
286        && (private_blocks.size()==1
287        && (private_blocks[0].second - private_blocks[0].first)==(unsigned long)(sendcount * sendtype->get_extent()))){
288     XBT_VERB("sendbuf is shared. Ignoring copies");
289     return 0;
290   }
291   if(smpi_is_shared(recvbuf,private_blocks,&offset)
292        && (private_blocks.size()==1
293        && (private_blocks[0].second - private_blocks[0].first)==(unsigned long)(recvcount * recvtype->get_extent()))){
294     XBT_VERB("recvbuf is shared. Ignoring copies");
295     return 0;
296   }
297
298   if (recvcount > 0 && recvbuf != sendbuf) {
299     sendcount *= sendtype->size();
300     recvcount *= recvtype->size();
301     int count = sendcount < recvcount ? sendcount : recvcount;
302     XBT_DEBUG("Copying %d bytes from %p to %p", count, sendbuf, recvbuf);
303     if (not(sendtype->flags() & DT_FLAG_DERIVED) && not(recvtype->flags() & DT_FLAG_DERIVED)) {
304       if (not smpi_process()->replaying())
305         memcpy(recvbuf, sendbuf, count);
306     } else if (not(sendtype->flags() & DT_FLAG_DERIVED)) {
307       recvtype->unserialize(sendbuf, recvbuf, count / recvtype->size(), MPI_REPLACE);
308     } else if (not(recvtype->flags() & DT_FLAG_DERIVED)) {
309       sendtype->serialize(sendbuf, recvbuf, count / sendtype->size());
310     } else {
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(const void* noncontiguous_buf, void* contiguous_buf, int count)
325 {
326   char* contiguous_buf_char = static_cast<char*>(contiguous_buf);
327   const char* noncontiguous_buf_char = static_cast<const char*>(noncontiguous_buf)+lb_;
328   memcpy(contiguous_buf_char, noncontiguous_buf_char, count*size_);
329 }
330
331 void Datatype::unserialize(const void* contiguous_buf, void *noncontiguous_buf, int count, MPI_Op op){
332   const char* contiguous_buf_char = static_cast<const 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, const int* block_lengths, const 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, const int* block_lengths, const 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, const int* block_lengths, const MPI_Aint* indices, const 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, const int* array_of_sizes,
515                              const int* array_of_subsizes, const 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 {
588   return static_cast<Datatype*>(F2C::f2c(id));
589 }
590 } // namespace smpi
591 } // namespace simgrid