Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Continuing work on datatypes
[simgrid.git] / src / smpi / smpi_datatype.hpp
1 /* Copyright (c) 2009-2010, 2012-2014. The SimGrid Team.
2  * 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 #ifndef SMPI_DATATYPE_HPP
8 #define SMPI_DATATYPE_HPP
9
10 #include <xbt/base.h>
11
12 #include "private.h"
13
14 #define DT_FLAG_DESTROYED     0x0001  /**< user destroyed but some other layers still have a reference */
15 #define DT_FLAG_COMMITED      0x0002  /**< ready to be used for a send/recv operation */
16 #define DT_FLAG_CONTIGUOUS    0x0004  /**< contiguous datatype */
17 #define DT_FLAG_OVERLAP       0x0008  /**< datatype is unpropper for a recv operation */
18 #define DT_FLAG_USER_LB       0x0010  /**< has a user defined LB */
19 #define DT_FLAG_USER_UB       0x0020  /**< has a user defined UB */
20 #define DT_FLAG_PREDEFINED    0x0040  /**< cannot be removed: initial and predefined datatypes */
21 #define DT_FLAG_NO_GAPS       0x0080  /**< no gaps around the datatype */
22 #define DT_FLAG_DATA          0x0100  /**< data or control structure */
23 #define DT_FLAG_ONE_SIDED     0x0200  /**< datatype can be used for one sided operations */
24 #define DT_FLAG_UNAVAILABLE   0x0400  /**< datatypes unavailable on the build (OS or compiler dependant) */
25 #define DT_FLAG_DERIVED       0x0800  /**< is the datatype derived ? */
26 /*
27  * We should make the difference here between the predefined contiguous and non contiguous
28  * datatypes. The DT_FLAG_BASIC is held by all predefined contiguous datatypes.
29  */
30 #define DT_FLAG_BASIC      (DT_FLAG_PREDEFINED | DT_FLAG_CONTIGUOUS | DT_FLAG_NO_GAPS | DT_FLAG_DATA | DT_FLAG_COMMITED)
31
32 extern const MPI_Datatype MPI_PTR;
33
34 //The following are datatypes for the MPI functions MPI_MAXLOC and MPI_MINLOC.
35 typedef struct {
36   float value;
37   int index;
38 } float_int;
39 typedef struct {
40   float value;
41   float index;
42 } float_float;
43 typedef struct {
44   long value;
45   long index;
46 } long_long;
47 typedef struct {
48   double value;
49   double index;
50 } double_double;
51 typedef struct {
52   long value;
53   int index;
54 } long_int;
55 typedef struct {
56   double value;
57   int index;
58 } double_int;
59 typedef struct {
60   short value;
61   int index;
62 } short_int;
63 typedef struct {
64   int value;
65   int index;
66 } int_int;
67 typedef struct {
68   long double value;
69   int index;
70 } long_double_int;
71 typedef struct {
72   int64_t value;
73   int64_t index;
74 } integer128_t;
75
76
77 namespace simgrid{
78 namespace smpi{
79
80 class Datatype{
81 //TODO: remove
82   public:
83     char* name_;
84     size_t size_;
85     MPI_Aint lb_;
86     MPI_Aint ub_;
87     int flags_;
88     xbt_dict_t attributes_;
89     int in_use_;
90
91   public:
92     Datatype(int size,int lb, int ub, int flags);
93     Datatype(char* name, int size,int lb, int ub, int flags);
94     Datatype(Datatype *datatype);
95     virtual ~Datatype();
96     void use();
97     void unuse();
98     void commit();
99     bool is_valid();
100     size_t size();
101     int flags();
102     void addflag(int flag);
103     MPI_Aint lb();
104     MPI_Aint ub();
105     int extent(MPI_Aint * lb, MPI_Aint * extent);
106     MPI_Aint get_extent();
107     char* name();
108     void get_name(char* name, int* length);
109     void set_name(char* name);
110     static int copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
111                     void *recvbuf, int recvcount, MPI_Datatype recvtype);
112     virtual void serialize( void* noncontiguous, void *contiguous, 
113                             int count);
114     virtual void unserialize( void* contiguous, void *noncontiguous, 
115                               int count, MPI_Op op);
116     int attr_delete(int keyval);
117     int attr_get(int keyval, void* attr_value, int* flag);
118     int attr_put(int keyval, void* attr_value);
119     static int keyval_create(MPI_Type_copy_attr_function* copy_fn, MPI_Type_delete_attr_function* delete_fn, int* keyval, void* extra_state);
120     static int keyval_free(int* keyval);
121     int pack(void* inbuf, int incount, void* outbuf, int outcount, int* position, MPI_Comm comm);
122     int unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Comm comm);
123
124
125     static int create_contiguous(int count, MPI_Datatype old_type, MPI_Aint lb, MPI_Datatype* new_type);
126     static int create_vector(int count, int blocklen, int stride, MPI_Datatype old_type, MPI_Datatype* new_type);
127     static int create_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type);
128     static int create_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type);
129     static int create_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type);
130     static int create_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type);
131 };
132
133 class Type_Contiguous: public Datatype{
134   private:
135     int block_count_;
136     MPI_Datatype old_type_;
137   public:
138     Type_Contiguous(int size, int lb, int ub, int flags, int block_count, MPI_Datatype old_type);
139     ~Type_Contiguous();
140     void use();
141     void serialize( void* noncontiguous, void *contiguous, 
142                             int count);
143     void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
144                               int count, MPI_Op op);
145 };
146
147 class Type_Vector: public Datatype{
148   private:
149     int block_count_;
150     int block_length_;
151     int block_stride_;
152     MPI_Datatype old_type_;
153   public:
154     Type_Vector(int size,int lb, int ub, int flags, int count, int blocklen, int stride, MPI_Datatype old_type);
155     ~Type_Vector();
156     void use();
157     void serialize( void* noncontiguous, void *contiguous, 
158                             int count);
159     void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
160                               int count, MPI_Op op);
161 };
162
163 class Type_Hvector: public Datatype{
164   private:
165     int block_count_;
166     int block_length_;
167     MPI_Aint block_stride_;
168     MPI_Datatype old_type_;
169   public:
170     Type_Hvector(int size,int lb, int ub, int flags, int block_count, int block_length, MPI_Aint block_stride, MPI_Datatype old_type);
171     ~Type_Hvector();
172     void use();
173     void serialize( void* noncontiguous, void *contiguous, 
174                             int count);
175     void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
176                               int count, MPI_Op op);
177 };
178
179 class Type_Indexed: public Datatype{
180   private:
181     int block_count_;
182     int* block_lengths_;
183     int* block_indices_;
184     MPI_Datatype old_type_;
185   public:
186     Type_Indexed(int size,int lb, int ub, int flags, int block_count, int* block_lengths, int* block_indices, MPI_Datatype old_type);
187     ~Type_Indexed();
188     void use();
189     void serialize( void* noncontiguous, void *contiguous, 
190                             int count);
191     void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
192                               int count, MPI_Op op);
193 };
194
195 class Type_Hindexed: public Datatype{
196   private:
197     int block_count_;
198     int* block_lengths_;
199     MPI_Aint* block_indices_;
200     MPI_Datatype old_type_;
201   public:
202     Type_Hindexed(int size,int lb, int ub, int flags, int block_count, int* block_lengths, MPI_Aint* block_indices, MPI_Datatype old_type);
203     ~Type_Hindexed();
204     void use();
205     void serialize( void* noncontiguous, void *contiguous, 
206                             int count);
207     void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
208                               int count, MPI_Op op);
209 };
210
211 class Type_Struct: public Datatype{
212   private:
213     int block_count_;
214     int* block_lengths_;
215     MPI_Aint* block_indices_;
216     MPI_Datatype* old_types_;
217   public:
218     Type_Struct(int size,int lb, int ub, int flags, int block_count, int* block_lengths, MPI_Aint* block_indices, MPI_Datatype* old_types);
219     ~Type_Struct();
220     void use();
221     void serialize( void* noncontiguous, void *contiguous, 
222                             int count);
223     void unserialize( void* contiguous_vector, void *noncontiguous_vector, 
224                               int count, MPI_Op op);
225 };
226
227
228 }
229 }
230
231 #endif