Logo AND Algorithmique Numérique Distribuée

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