This source file includes following definitions.
- rte_orte_open
- rte_orte_close
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #include "ompi_config.h"
22 #include "ompi/constants.h"
23
24 #include "opal/threads/threads.h"
25 #include "opal/class/opal_list.h"
26
27 #include "orte/mca/rml/rml.h"
28 #include "orte/mca/grpcomm/base/base.h"
29
30 #include "ompi/mca/rte/rte.h"
31 #include "rte_orte.h"
32
33
34
35
36 const char *ompi_rte_orte_component_version_string =
37 "OMPI orte rte MCA component version " OMPI_VERSION;
38
39
40
41
42 static int rte_orte_open(void);
43 static int rte_orte_close(void);
44
45
46
47
48
49
50 ompi_rte_component_t mca_rte_orte_component = {
51
52
53
54 .base_version = {
55 OMPI_RTE_BASE_VERSION_1_0_0,
56
57
58 .mca_component_name = "orte",
59 MCA_BASE_MAKE_VERSION(component, OMPI_MAJOR_VERSION, OMPI_MINOR_VERSION,
60 OMPI_RELEASE_VERSION),
61
62
63 .mca_open_component = rte_orte_open,
64 .mca_close_component = rte_orte_close,
65 },
66 .base_data = {
67
68 MCA_BASE_METADATA_PARAM_CHECKPOINT
69 },
70 };
71
72 static int rte_orte_open(void)
73 {
74 return OMPI_SUCCESS;
75 }
76
77 static int rte_orte_close(void)
78 {
79 return OMPI_SUCCESS;
80 }