Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of https://framagit.org/simgrid/simgrid
[simgrid.git] / src / smpi / include / smpi_request.hpp
1 /* Copyright (c) 2010-2020. 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_REQUEST_HPP_INCLUDED
7 #define SMPI_REQUEST_HPP_INCLUDED
8
9 #include "smpi/smpi.h"
10 #include "smpi_f2c.hpp"
11
12 namespace simgrid{
13 namespace smpi{
14
15 struct smpi_mpi_generalized_request_funcs_t {
16   MPI_Grequest_query_function *query_fn;
17   MPI_Grequest_free_function *free_fn;
18   MPI_Grequest_cancel_function *cancel_fn;
19   void* extra_state;
20   s4u::ConditionVariablePtr cond;
21   s4u::MutexPtr mutex;
22 };
23
24 class Request : public F2C {
25   void* buf_;
26   /* in the case of non-contiguous memory the user address should be keep
27    * to unserialize the data inside the user memory*/
28   void* old_buf_;
29   /* this is especially for derived datatypes that we need to serialize/unserialize.
30    * It let us know how to unserialize at the end of the communication */
31   MPI_Datatype old_type_;
32   size_t size_;
33   int src_;
34   int dst_;
35   int tag_;
36   // to handle cases where we have an unknown sender
37   // We can't override src, tag, and size, because the request may be reused later
38   int real_src_;
39   int real_tag_;
40   bool truncated_;
41   size_t real_size_;
42   MPI_Comm comm_;
43   simgrid::kernel::activity::ActivityImplPtr action_;
44   unsigned flags_;
45   bool detached_;
46   MPI_Request detached_sender_;
47   int refcount_;
48   MPI_Op op_;
49   int cancelled_; // tri-state
50   smpi_mpi_generalized_request_funcs_t* generalized_funcs;
51   MPI_Request* nbc_requests_;
52   int nbc_requests_size_;
53   static bool match_common(MPI_Request req, MPI_Request sender, MPI_Request receiver);
54
55 public:
56   Request() = default;
57   Request(const void* buf, int count, MPI_Datatype datatype, int src, int dst, int tag, MPI_Comm comm, unsigned flags, MPI_Op op = MPI_REPLACE);
58   MPI_Comm comm() const { return comm_; }
59   size_t size() const { return size_; }
60   size_t real_size() const { return real_size_; }
61   int src() const { return src_; }
62   int dst() const { return dst_; }
63   int tag() const { return tag_; }
64   int flags() const { return flags_; }
65   bool detached() const { return detached_; }
66   MPI_Datatype type() const { return old_type_; }
67   void print_request(const char* message) const;
68   void start();
69   void cancel();
70   void init_buffer(int count);
71   void ref();
72   void set_nbc_requests(MPI_Request* reqs, int size);
73   int get_nbc_requests_size() const;
74   MPI_Request* get_nbc_requests() const;
75   static void finish_wait(MPI_Request* request, MPI_Status* status);
76   static void unref(MPI_Request* request);
77   static int wait(MPI_Request* req, MPI_Status* status);
78   static MPI_Request bsend_init(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
79   static MPI_Request send_init(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
80   static MPI_Request isend_init(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
81   static MPI_Request ssend_init(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
82   static MPI_Request rma_send_init(const void* buf, int count, MPI_Datatype datatype, int src, int dst, int tag,
83                                    MPI_Comm comm, MPI_Op op);
84   static MPI_Request recv_init(void* buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm);
85   static MPI_Request rma_recv_init(void* buf, int count, MPI_Datatype datatype, int src, int dst, int tag,
86                                    MPI_Comm comm, MPI_Op op);
87   static MPI_Request irecv_init(void* buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm);
88   static MPI_Request ibsend(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
89   static MPI_Request isend(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
90   static MPI_Request issend(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
91   static MPI_Request irecv(void* buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm);
92
93   static void recv(void* buf, int count, MPI_Datatype datatype, int src, int tag, MPI_Comm comm, MPI_Status* status);
94   static void bsend(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
95   static void send(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
96   static void ssend(const void* buf, int count, MPI_Datatype datatype, int dst, int tag, MPI_Comm comm);
97
98   static void sendrecv(const void* sendbuf, int sendcount, MPI_Datatype sendtype, int dst, int sendtag, void* recvbuf,
99                        int recvcount, MPI_Datatype recvtype, int src, int recvtag, MPI_Comm comm, MPI_Status* status);
100
101   static void startall(int count, MPI_Request* requests);
102
103   static int test(MPI_Request* request, MPI_Status* status, int* flag);
104   static int testsome(int incount, MPI_Request requests[], int* outcounts, int* indices, MPI_Status status[]);
105   static int testany(int count, MPI_Request requests[], int* index, int* flag, MPI_Status* status);
106   static int testall(int count, MPI_Request requests[], int* flag, MPI_Status status[]);
107
108   static void probe(int source, int tag, MPI_Comm comm, MPI_Status* status);
109   static void iprobe(int source, int tag, MPI_Comm comm, int* flag, MPI_Status* status);
110
111   static int waitany(int count, MPI_Request requests[], MPI_Status* status);
112   static int waitall(int count, MPI_Request requests[], MPI_Status status[]);
113   static int waitsome(int incount, MPI_Request requests[], int* indices, MPI_Status status[]);
114
115   static bool match_send(void* a, void* b, kernel::activity::CommImpl* ignored);
116   static bool match_recv(void* a, void* b, kernel::activity::CommImpl* ignored);
117
118   static int grequest_start( MPI_Grequest_query_function *query_fn, MPI_Grequest_free_function *free_fn, MPI_Grequest_cancel_function *cancel_fn, void *extra_state, MPI_Request *request);
119   static int grequest_complete( MPI_Request request);
120   static int get_status(const Request* req, int* flag, MPI_Status* status);
121
122   static void free_f(int id);
123   static Request* f2c(int);
124 };
125
126
127 }
128 }
129
130 #endif