Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' into actor-priority
[simgrid.git] / src / smpi / include / smpi_datatype.hpp
1 /* Copyright (c) 2009-2017. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #ifndef SMPI_DATATYPE_HPP
7 #define SMPI_DATATYPE_HPP
8
9 #include "smpi_f2c.hpp"
10 #include "smpi_keyvals.hpp"
11
12 #define DT_FLAG_DESTROYED     0x0001  /**< user destroyed but some other layers still have a reference */
13 #define DT_FLAG_COMMITED      0x0002  /**< ready to be used for a send/recv operation */
14 #define DT_FLAG_CONTIGUOUS    0x0004  /**< contiguous datatype */
15 #define DT_FLAG_OVERLAP       0x0008  /**< datatype is unpropper for a recv operation */
16 #define DT_FLAG_USER_LB       0x0010  /**< has a user defined LB */
17 #define DT_FLAG_USER_UB       0x0020  /**< has a user defined UB */
18 #define DT_FLAG_PREDEFINED    0x0040  /**< cannot be removed: initial and predefined datatypes */
19 #define DT_FLAG_NO_GAPS       0x0080  /**< no gaps around the datatype */
20 #define DT_FLAG_DATA          0x0100  /**< data or control structure */
21 #define DT_FLAG_ONE_SIDED     0x0200  /**< datatype can be used for one sided operations */
22 #define DT_FLAG_UNAVAILABLE   0x0400  /**< datatypes unavailable on the build (OS or compiler dependant) */
23 #define DT_FLAG_DERIVED       0x0800  /**< is the datatype derived ? */
24 /*
25  * We should make the difference here between the predefined contiguous and non contiguous
26  * datatypes. The DT_FLAG_BASIC is held by all predefined contiguous datatypes.
27  */
28 #define DT_FLAG_BASIC      (DT_FLAG_PREDEFINED | DT_FLAG_CONTIGUOUS | DT_FLAG_NO_GAPS | DT_FLAG_DATA | DT_FLAG_COMMITED)
29
30 extern const MPI_Datatype MPI_PTR;
31
32 //The following are datatypes for the MPI functions MPI_MAXLOC and MPI_MINLOC.
33 struct float_int {
34   float value;
35   int index;
36 };
37 struct float_float {
38   float value;
39   float index;
40 };
41 struct long_long {
42   long value;
43   long index;
44 };
45 struct double_double {
46   double value;
47   double index;
48 };
49 struct long_int {
50   long value;
51   int index;
52 };
53 struct double_int {
54   double value;
55   int index;
56 };
57 struct short_int {
58   short value;
59   int index;
60 };
61 struct int_int {
62   int value;
63   int index;
64 };
65 struct long_double_int {
66   long double value;
67   int index;
68 };
69 struct integer128_t {
70   int64_t value;
71   int64_t index;
72 };
73
74 namespace simgrid{
75 namespace smpi{
76
77 class Datatype : public F2C, public Keyval{
78   private:
79     char* name_;
80     size_t size_;
81     MPI_Aint lb_;
82     MPI_Aint ub_;
83     int flags_;
84     int refcount_;
85
86   public:
87     static std::unordered_map<int, smpi_key_elem> keyvals_;
88     static int keyval_id_;
89
90     Datatype(int size,MPI_Aint lb, MPI_Aint ub, int flags);
91     Datatype(char* name, int size,MPI_Aint lb, MPI_Aint ub, int flags);
92     Datatype(Datatype *datatype, int* ret);
93     virtual ~Datatype();
94
95     char* name();
96     size_t size();
97     MPI_Aint lb();
98     MPI_Aint ub();
99     int flags();
100     int refcount();
101
102     void ref();
103     static void unref(MPI_Datatype datatype);
104     void commit();
105     bool is_valid();
106     void addflag(int flag);
107     int extent(MPI_Aint * lb, MPI_Aint * extent);
108     MPI_Aint get_extent();
109     void get_name(char* name, int* length);
110     void set_name(char* name);
111     static int copy(void *sendbuf, int sendcount, MPI_Datatype sendtype,
112                     void *recvbuf, int recvcount, MPI_Datatype recvtype);
113     virtual void serialize( void* noncontiguous, void *contiguous,
114                             int count);
115     virtual void unserialize( void* contiguous, void *noncontiguous,
116                               int count, MPI_Op op);
117     static int keyval_create(MPI_Type_copy_attr_function* copy_fn, MPI_Type_delete_attr_function* delete_fn, int* keyval, void* extra_state);
118     static int keyval_free(int* keyval);
119     int pack(void* inbuf, int incount, void* outbuf, int outcount, int* position, MPI_Comm comm);
120     int unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Comm comm);
121
122
123     static int create_contiguous(int count, MPI_Datatype old_type, MPI_Aint lb, MPI_Datatype* new_type);
124     static int create_vector(int count, int blocklen, int stride, MPI_Datatype old_type, MPI_Datatype* new_type);
125     static int create_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type);
126     static int create_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type);
127     static int create_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type, MPI_Datatype* new_type);
128     static int create_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types, MPI_Datatype* new_type);
129
130     static Datatype* f2c(int id);
131 };
132
133 }
134 }
135
136 #endif