Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Replace #define with constexpr declarations.
[simgrid.git] / src / smpi / include / smpi_datatype.hpp
1 /* Copyright (c) 2009-2019. 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 #include <string>
12
13 constexpr unsigned DT_FLAG_DESTROYED   = 0x0001; /**< user destroyed but some other layers still have a reference */
14 constexpr unsigned DT_FLAG_COMMITED    = 0x0002; /**< ready to be used for a send/recv operation */
15 constexpr unsigned DT_FLAG_CONTIGUOUS  = 0x0004; /**< contiguous datatype */
16 constexpr unsigned DT_FLAG_OVERLAP     = 0x0008; /**< datatype is unpropper for a recv operation */
17 constexpr unsigned DT_FLAG_USER_LB     = 0x0010; /**< has a user defined LB */
18 constexpr unsigned DT_FLAG_USER_UB     = 0x0020; /**< has a user defined UB */
19 constexpr unsigned DT_FLAG_PREDEFINED  = 0x0040; /**< cannot be removed: initial and predefined datatypes */
20 constexpr unsigned DT_FLAG_NO_GAPS     = 0x0080; /**< no gaps around the datatype */
21 constexpr unsigned DT_FLAG_DATA        = 0x0100; /**< data or control structure */
22 constexpr unsigned DT_FLAG_ONE_SIDED   = 0x0200; /**< datatype can be used for one sided operations */
23 constexpr unsigned DT_FLAG_UNAVAILABLE = 0x0400; /**< datatypes unavailable on the build (OS or compiler dependant) */
24 constexpr unsigned DT_FLAG_DERIVED     = 0x0800; /**< is the datatype derived ? */
25 /*
26  * We should make the difference here between the predefined contiguous and non contiguous
27  * datatypes. The DT_FLAG_BASIC is held by all predefined contiguous datatypes.
28  */
29 constexpr unsigned DT_FLAG_BASIC =
30     (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 struct float_int {
36   float value;
37   int index;
38 };
39 struct float_float {
40   float value;
41   float index;
42 };
43 struct long_long {
44   long value;
45   long index;
46 };
47 struct double_double {
48   double value;
49   double index;
50 };
51 struct long_int {
52   long value;
53   int index;
54 };
55 struct double_int {
56   double value;
57   int index;
58 };
59 struct short_int {
60   short value;
61   int index;
62 };
63 struct int_int {
64   int value;
65   int index;
66 };
67 struct long_double_int {
68   long double value;
69   int index;
70 };
71 struct integer128_t {
72   int64_t value;
73   int64_t index;
74 };
75
76 namespace simgrid{
77 namespace smpi{
78
79 class Datatype : public F2C, public Keyval{
80   char* name_;
81   /* The id here is the (unique) datatype id used for this datastructure.
82    * It's default value is set to -1 since some code expects this return value
83    * when no other id has been assigned
84    */
85   std::string id = "-1";
86   size_t size_;
87   MPI_Aint lb_;
88   MPI_Aint ub_;
89   int flags_;
90   int refcount_;
91
92 public:
93   static std::unordered_map<int, smpi_key_elem> keyvals_;
94   static int keyval_id_;
95
96   Datatype(int id, int size, MPI_Aint lb, MPI_Aint ub, int flags);
97   Datatype(char* name, int id, int size, MPI_Aint lb, MPI_Aint ub, int flags);
98   Datatype(int size, MPI_Aint lb, MPI_Aint ub, int flags);
99   Datatype(char* name, int size, MPI_Aint lb, MPI_Aint ub, int flags);
100   Datatype(Datatype* datatype, int* ret);
101   virtual ~Datatype();
102
103   char* name();
104   size_t size();
105   MPI_Aint lb();
106   MPI_Aint ub();
107   int flags();
108   int refcount();
109
110   void ref();
111   static void unref(MPI_Datatype datatype);
112   void commit();
113   bool is_valid();
114   bool is_basic();
115   static const char* encode(MPI_Datatype dt);
116   static MPI_Datatype decode(const std::string& datatype_id);
117   bool is_replayable();
118   void addflag(int flag);
119   int extent(MPI_Aint* lb, MPI_Aint* extent);
120   MPI_Aint get_extent();
121   void get_name(char* name, int* length);
122   void set_name(char* name);
123   static int copy(void* sendbuf, int sendcount, MPI_Datatype sendtype, void* recvbuf, int recvcount,
124                   MPI_Datatype recvtype);
125   virtual void serialize(void* noncontiguous, void* contiguous, int count);
126   virtual void unserialize(void* contiguous, void* noncontiguous, int count, MPI_Op op);
127   static int keyval_create(MPI_Type_copy_attr_function* copy_fn, MPI_Type_delete_attr_function* delete_fn, int* keyval,
128                            void* extra_state);
129   static int keyval_free(int* keyval);
130   int pack(void* inbuf, int incount, void* outbuf, int outcount, int* position, MPI_Comm comm);
131   int unpack(void* inbuf, int insize, int* position, void* outbuf, int outcount, MPI_Comm comm);
132
133   static int create_contiguous(int count, MPI_Datatype old_type, MPI_Aint lb, MPI_Datatype* new_type);
134   static int create_vector(int count, int blocklen, int stride, MPI_Datatype old_type, MPI_Datatype* new_type);
135   static int create_hvector(int count, int blocklen, MPI_Aint stride, MPI_Datatype old_type, MPI_Datatype* new_type);
136   static int create_indexed(int count, int* blocklens, int* indices, MPI_Datatype old_type, MPI_Datatype* new_type);
137   static int create_hindexed(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype old_type,
138                              MPI_Datatype* new_type);
139   static int create_struct(int count, int* blocklens, MPI_Aint* indices, MPI_Datatype* old_types,
140                            MPI_Datatype* new_type);
141   static int create_subarray(int ndims, int* array_of_sizes,
142                              int* array_of_subsizes, int* array_of_starts,
143                              int order, MPI_Datatype oldtype, MPI_Datatype *newtype);
144   static int create_resized(MPI_Datatype oldtype,MPI_Aint lb, MPI_Aint extent,
145                              MPI_Datatype *newtype);
146   static Datatype* f2c(int id);
147 };
148
149 }
150 }
151
152 #endif