Logo AND Algorithmique Numérique Distribuée

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