This source file includes following definitions.
- mca_coll_basic_exscan_intra
- mca_coll_basic_exscan_inter
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 #include "ompi_config.h"
23 #include "coll_basic.h"
24
25 #include <stdio.h>
26
27 #include "mpi.h"
28 #include "ompi/constants.h"
29 #include "ompi/op/op.h"
30 #include "ompi/datatype/ompi_datatype.h"
31 #include "ompi/mca/pml/pml.h"
32 #include "ompi/mca/coll/coll.h"
33 #include "ompi/mca/coll/base/coll_tags.h"
34 #include "coll_basic.h"
35
36
37
38
39
40
41
42
43
44 int
45 mca_coll_basic_exscan_intra(const void *sbuf, void *rbuf, int count,
46 struct ompi_datatype_t *dtype,
47 struct ompi_op_t *op,
48 struct ompi_communicator_t *comm,
49 mca_coll_base_module_t *module)
50 {
51 return ompi_coll_base_exscan_intra_linear(sbuf, rbuf, count, dtype, op, comm, module);
52 }
53
54
55
56
57
58
59
60
61
62 int
63 mca_coll_basic_exscan_inter(const void *sbuf, void *rbuf, int count,
64 struct ompi_datatype_t *dtype,
65 struct ompi_op_t *op,
66 struct ompi_communicator_t *comm,
67 mca_coll_base_module_t *module)
68 {
69 return OMPI_ERR_NOT_IMPLEMENTED;
70 }