1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24 #ifndef ORTE_ODLS_ALPS_H
25 #define ORTE_ODLS_ALPS_H
26
27 #include "orte_config.h"
28 #include "orte/mca/mca.h"
29 #include "orte/mca/odls/odls.h"
30
31 #include "alps/alps.h"
32 #include "alps/alps_toolAssist.h"
33 #include "alps/libalpsutil.h"
34 #include "alps/libalpslli.h"
35
36 BEGIN_C_DECLS
37
38
39
40
41 int orte_odls_alps_component_open(void);
42 int orte_odls_alps_component_close(void);
43 int orte_odls_alps_component_query(mca_base_module_t **module, int *priority);
44
45
46
47
48 extern orte_odls_base_module_t orte_odls_alps_module;
49 ORTE_MODULE_DECLSPEC extern orte_odls_base_component_t mca_odls_alps_component;
50
51
52
53
54
55 int orte_odls_alps_get_rdma_creds(void);
56 END_C_DECLS
57
58 #endif