This source file includes following definitions.
- hwloc_external_open
1
2
3
4
5
6
7
8
9
10
11
12
13
14 #include "opal_config.h"
15 #include "opal/constants.h"
16
17 #include "opal/mca/hwloc/hwloc-internal.h"
18
19
20
21
22 const char *opal_hwloc_external_component_version_string =
23 "OPAL hwloc_external hwloc MCA component version " OPAL_VERSION;
24
25
26
27
28
29 static int hwloc_external_open(void);
30
31
32
33
34
35
36
37 const opal_hwloc_component_t mca_hwloc_external_component = {
38
39
40
41
42 .base_version = {
43 OPAL_HWLOC_BASE_VERSION_2_0_0,
44
45
46 .mca_component_name = "external",
47 MCA_BASE_MAKE_VERSION(component, OPAL_MAJOR_VERSION, OPAL_MINOR_VERSION,
48 OPAL_RELEASE_VERSION),
49
50
51 .mca_open_component = hwloc_external_open,
52 },
53 .base_data = {
54
55 MCA_BASE_METADATA_PARAM_CHECKPOINT
56 },
57 };
58
59 static int hwloc_external_open(void)
60 {
61
62
63 return OPAL_SUCCESS;
64 }