1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30 #ifndef MCA_FCOLL_BASE_H
31 #define MCA_FCOLL_BASE_H
32
33 #include "ompi_config.h"
34
35 #include "mpi.h"
36 #include "opal/mca/base/base.h"
37 #include "ompi/mca/common/ompio/common_ompio.h"
38 #include "ompi/mca/fcoll/fcoll.h"
39
40 BEGIN_C_DECLS
41
42 OMPI_DECLSPEC int mca_fcoll_base_file_select(struct ompio_file_t *file,
43 mca_base_component_t *preferred);
44 OMPI_DECLSPEC int mca_fcoll_base_query_table (struct ompio_file_t *file,
45 char *name);
46 OMPI_DECLSPEC int mca_fcoll_base_file_unselect(struct ompio_file_t *file);
47
48 OMPI_DECLSPEC int mca_fcoll_base_find_available(bool enable_progress_threads,
49 bool enable_mpi_threads);
50
51 OMPI_DECLSPEC int mca_fcoll_base_init_file (struct ompio_file_t *file);
52
53 OMPI_DECLSPEC int mca_fcoll_base_get_param (struct ompio_file_t *file, int keyval);
54 OMPI_DECLSPEC int ompi_fcoll_base_sort_iovec (struct iovec *iov, int num_entries, int *sorted);
55
56 OMPI_DECLSPEC mca_fcoll_base_component_t* mca_fcoll_base_component_lookup(const char* name);
57
58
59
60
61 OMPI_DECLSPEC extern mca_base_framework_t ompi_fcoll_base_framework;
62
63 END_C_DECLS
64
65 #endif