X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/43f7ca1cac5ab1858e318fdd6239d0a0c3b3d893..2df88396d94796a341f1dbaa1d41f3162745d927:/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 b450bd9f98..890b4eb4ae 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 @@ -13,95 +13,81 @@ namespace simgrid{ namespace smpi{ class Type_Contiguous: public Datatype { - private: - int block_count_; - MPI_Datatype old_type_; - public: - Type_Contiguous(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, MPI_Datatype old_type); - ~Type_Contiguous(); - void serialize( void* noncontiguous, void *contiguous, - int count); - void unserialize( void* contiguous_vector, void *noncontiguous_vector, - int count, MPI_Op op); -}; + int block_count_; + MPI_Datatype old_type_; -class Type_Vector: public Datatype{ - private: - 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); +public: + Type_Contiguous(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, MPI_Datatype old_type); + Type_Contiguous(const Type_Contiguous&) = delete; + Type_Contiguous& operator=(const Type_Contiguous&) = delete; + ~Type_Contiguous(); + void serialize(const void* noncontiguous, void* contiguous, int count); + void unserialize(const void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); }; class Type_Hvector: public Datatype{ - private: - int block_count_; - int block_length_; - MPI_Aint block_stride_; - MPI_Datatype old_type_; - public: - Type_Hvector(int size,MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int block_length, MPI_Aint block_stride, MPI_Datatype old_type); - ~Type_Hvector(); - void serialize( void* noncontiguous, void *contiguous, - int count); - void unserialize( void* contiguous_vector, void *noncontiguous_vector, - int count, MPI_Op op); + int block_count_; + int block_length_; + MPI_Aint block_stride_; + MPI_Datatype old_type_; + +public: + Type_Hvector(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int block_length, MPI_Aint block_stride, + MPI_Datatype old_type); + Type_Hvector(const Type_Hvector&) = delete; + Type_Hvector& operator=(const Type_Hvector&) = delete; + ~Type_Hvector(); + void serialize(const void* noncontiguous, void* contiguous, int count); + void unserialize(const void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); }; -class Type_Indexed: public Datatype{ - private: - int block_count_; - int* block_lengths_; - int* block_indices_; - MPI_Datatype old_type_; - 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); +class Type_Vector : public Type_Hvector { +public: + 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{ - private: - int block_count_; - int* block_lengths_; - MPI_Aint* block_indices_; - MPI_Datatype old_type_; - 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(); - void serialize( void* noncontiguous, void *contiguous, - int count); - void unserialize( void* contiguous_vector, void *noncontiguous_vector, - int count, MPI_Op op); + int block_count_; + int* block_lengths_; + MPI_Aint* block_indices_; + MPI_Datatype old_type_; + +public: + Type_Hindexed(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, const int* block_lengths, + const MPI_Aint* block_indices, MPI_Datatype old_type); + Type_Hindexed(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, const int* block_lengths, const int* block_indices, + MPI_Datatype old_type, MPI_Aint factor); + Type_Hindexed(const Type_Hindexed&) = delete; + Type_Hindexed& operator=(const Type_Hindexed&) = delete; + ~Type_Hindexed(); + void serialize(const void* noncontiguous, void* contiguous, int count); + void unserialize(const void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); }; -class Type_Struct: public Datatype{ - private: - int block_count_; - int* block_lengths_; - MPI_Aint* block_indices_; - MPI_Datatype* old_types_; - public: - Type_Struct(int size,MPI_Aint lb, MPI_Aint ub, int flags, int block_count, int* block_lengths, MPI_Aint* block_indices, MPI_Datatype* old_types); - ~Type_Struct(); - 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, const int* block_lengths, const int* block_indices, + MPI_Datatype old_type); }; +class Type_Struct: public Datatype{ + int block_count_; + int* block_lengths_; + MPI_Aint* block_indices_; + MPI_Datatype* old_types_; + +public: + Type_Struct(int size, MPI_Aint lb, MPI_Aint ub, int flags, int block_count, const int* block_lengths, + const MPI_Aint* block_indices, const MPI_Datatype* old_types); + Type_Struct(const Type_Struct&) = delete; + Type_Struct& operator=(const Type_Struct&) = delete; + ~Type_Struct(); + void serialize(const void* noncontiguous, void* contiguous, int count); + void unserialize(const void* contiguous_vector, void* noncontiguous_vector, int count, MPI_Op op); +}; -} -} +} // namespace smpi +} // namespace simgrid #endif