This source file includes following definitions.
- mca_pml_example_irecv_init
- mca_pml_example_irecv
- mca_pml_example_recv
- mca_pml_example_imrecv
- mca_pml_example_mrecv
1
2
3
4
5
6
7
8
9
10
11
12
13 #include "ompi_config.h"
14 #include "pml_example.h"
15 #include "ompi/request/request.h"
16
17 int mca_pml_example_irecv_init( void *addr,
18 size_t count,
19 ompi_datatype_t * datatype,
20 int src,
21 int tag,
22 struct ompi_communicator_t *comm,
23 struct ompi_request_t **request )
24 {
25 return OMPI_SUCCESS;
26 }
27
28 int mca_pml_example_irecv( void *addr,
29 size_t count,
30 ompi_datatype_t * datatype,
31 int src,
32 int tag,
33 struct ompi_communicator_t *comm,
34 struct ompi_request_t **request )
35 {
36 return OMPI_SUCCESS;
37 }
38
39
40 int mca_pml_example_recv( void *addr,
41 size_t count,
42 ompi_datatype_t * datatype,
43 int src,
44 int tag,
45 struct ompi_communicator_t *comm,
46 ompi_status_public_t * status )
47 {
48 return OMPI_SUCCESS;
49 }
50
51 int mca_pml_example_imrecv(void *buf,
52 size_t count,
53 ompi_datatype_t *datatype,
54 struct ompi_message_t **message,
55 struct ompi_request_t **request)
56 {
57 return OMPI_SUCCESS;
58 }
59
60 int mca_pml_example_mrecv(void *buf,
61 size_t count,
62 ompi_datatype_t *datatype,
63 struct ompi_message_t **message,
64 ompi_status_public_t* status)
65 {
66 return OMPI_SUCCESS;
67 }