X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5a5f54e7f74566a2418d243e7885e737c2312a36..4e73c03c087fd07184d9ed45224f7fbad24e686e:/src/smpi/include/smpi_datatype_derived.hpp diff --git a/src/smpi/include/smpi_datatype_derived.hpp b/src/smpi/include/smpi_datatype_derived.hpp index 5c46639a24..7f9864b133 100644 --- a/src/smpi/include/smpi_datatype_derived.hpp +++ b/src/smpi/include/smpi_datatype_derived.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2009-2010, 2012-2017. The SimGrid Team. +/* Copyright (c) 2009-2019. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -23,20 +23,6 @@ public: void unserialize(void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); }; -class Type_Vector: public Datatype{ - int block_count_; - int block_length_; - int block_stride_; - MPI_Datatype old_type_; - -public: - Type_Vector(int size, MPI_Aint lb, MPI_Aint ub, int flags, int count, int blocklen, int stride, - MPI_Datatype old_type); - ~Type_Vector(); - void serialize(void* noncontiguous, void* contiguous, int count); - void unserialize(void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); -}; - class Type_Hvector: public Datatype{ int block_count_; int block_length_; @@ -51,18 +37,10 @@ public: void unserialize(void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); }; -class Type_Indexed: public Datatype{ - int block_count_; - int* block_lengths_; - int* block_indices_; - MPI_Datatype old_type_; - +class Type_Vector : public Type_Hvector { public: - Type_Indexed(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, int* block_indices, - MPI_Datatype old_type); - ~Type_Indexed(); - void serialize(void* noncontiguous, void* contiguous, int count); - void unserialize(void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); + Type_Vector(int size, MPI_Aint lb, MPI_Aint ub, int flags, int count, int blocklen, int stride, + MPI_Datatype old_type); }; class Type_Hindexed: public Datatype{ @@ -74,11 +52,19 @@ class Type_Hindexed: public Datatype{ public: Type_Hindexed(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, MPI_Aint* block_indices, MPI_Datatype old_type); + Type_Hindexed(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, int* block_indices, + MPI_Datatype old_type, MPI_Aint factor); ~Type_Hindexed(); void serialize(void* noncontiguous, void* contiguous, int count); void unserialize(void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); }; +class Type_Indexed : public Type_Hindexed { +public: + Type_Indexed(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, int* block_indices, + MPI_Datatype old_type); +}; + class Type_Struct: public Datatype{ int block_count_; int* block_lengths_;