Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
dc5ea855bd00a263ba6168d2b455d6ae8a32e55b
[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 : public F2C{
81   protected:
82     char* name_;
83     size_t size_;
84     MPI_Aint lb_;
85     MPI_Aint ub_;
86     int flags_;
87     xbt_dict_t attributes_;
88     int refcount_;
89   public:
90     static MPI_Datatype null_id_;
91
92     Datatype(int size,MPI_Aint lb, MPI_Aint ub, int flags);
93     Datatype(char* name, int size,MPI_Aint lb, MPI_Aint ub, int flags);
94     Datatype(Datatype *datatype, int* ret);
95     virtual ~Datatype();
96     void ref();
97     static void unref(MPI_Datatype datatype);
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     static Datatype* f2c(int id);
133 };
134
135 }
136 }
137
138 #endif