File: base.h

package info (click to toggle)
openmpi 1.6.5-9.1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 91,628 kB
  • ctags: 44,305
  • sloc: ansic: 408,966; cpp: 44,454; sh: 27,828; makefile: 10,486; asm: 3,882; python: 1,239; lex: 805; perl: 549; csh: 253; fortran: 232; f90: 126; tcl: 12
file content (200 lines) | stat: -rw-r--r-- 6,309 bytes parent folder | download | duplicates (2)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 * Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
 *                         University Research and Technology
 *                         Corporation.  All rights reserved.
 * Copyright (c) 2004-2006 The University of Tennessee and The University
 *                         of Tennessee Research Foundation.  All rights
 *                         reserved.
 * Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
 *                         University of Stuttgart.  All rights reserved.
 * Copyright (c) 2004-2005 The Regents of the University of California.
 *                         All rights reserved.
 * Copyright (c) 2007-2010 Cisco Systems, Inc.  All rights reserved.
 * Copyright (c) 2010-2011 Los Alamos National Security, LLC.
 *                         All rights reserved.
 * $COPYRIGHT$
 *
 * Additional copyrights may follow
 *
 * $HEADER$
 */

#ifndef OPAL_SHMEM_BASE_H
#define OPAL_SHMEM_BASE_H

#include "opal_config.h"

#include "opal/mca/shmem/shmem.h"

BEGIN_C_DECLS

/* ////////////////////////////////////////////////////////////////////////// */
/* Public API for the shmem framework */
/* ////////////////////////////////////////////////////////////////////////// */
OPAL_DECLSPEC int
opal_shmem_segment_create(opal_shmem_ds_t *ds_buf,
                          const char *file_name,
                          size_t size);

OPAL_DECLSPEC int
opal_shmem_ds_copy(const opal_shmem_ds_t *from,
                   opal_shmem_ds_t *to);

OPAL_DECLSPEC void *
opal_shmem_segment_attach(opal_shmem_ds_t *ds_buf);

OPAL_DECLSPEC int
opal_shmem_segment_detach(opal_shmem_ds_t *ds_buf);

OPAL_DECLSPEC int
opal_shmem_unlink(opal_shmem_ds_t *ds_buf);
/* ////////////////////////////////////////////////////////////////////////// */
/* End Public API for the shmem framework */
/* ////////////////////////////////////////////////////////////////////////// */

/*
 * Global functions for MCA overall shmem open and close
 */

/**
 * Register MCA params for the shmem base.
 *
 * @retval OPAL_SUCCESS Upon success
 *
 * This function is invoked by opal_shmem_base_register_params().  It registers
 * some shmem-wide MCA parameters.
 */
OPAL_DECLSPEC int
opal_shmem_base_register_params(void);

/**
 * Performs a run-time query across all available shmem components.  Similar to
 * mca_base_select, but take into consideration environment hints provided by
 * orte.
 *
 * see: orte/mca/odls/base/odls_base_default_fns.c
 */
OPAL_DECLSPEC int
opal_shmem_base_runtime_query(mca_base_module_t **best_module,
                              mca_base_component_t **best_component);

/**
 * returns the name of the best, runnable shmem component.  the caller is
 * responsible for freeing returned resources.
 *
 * @retval name of best component.  NULL if no component is found.
 *
 * see: orte/mca/odls/base/odls_base_default_fns.c
 */
OPAL_DECLSPEC char *
opal_shmem_base_best_runnable_component_name(void);

/**
 * Initialize the shmem MCA framework
 *
 * @retval OPAL_SUCCESS Upon success
 * @retval OPAL_ERROR Upon failure
 *
 * This must be the first function invoked in the shmem MCA
 * framework.  It initializes the shmem MCA framework, finds
 * and opens shmem components, etc.
 *
 * This function is invoked during opal_init().
 *
 * This function fills in the internal global variable
 * opal_shmem_base_components_opened, which is a list of all
 * shmem components that were successfully opened.  This
 * variable should \em only be used by other shmem base
 * functions -- it is not considered a public interface member --
 * and is only mentioned here for completeness.
 */
OPAL_DECLSPEC int
opal_shmem_base_open(void);

/**
 * Select an available component.
 *
 * @return OPAL_SUCCESS Upon success.
 * @return OPAL_NOT_FOUND If no component can be selected.
 * @return OPAL_ERROR Upon other failure.
 *
 * This function invokes the selection process for shmem components,
 * which works as follows:
 *
 * - If the \em shmem MCA parameter is not specified, the
 *   selection set is all available shmem components.
 * - If the \em shmem MCA parameter is specified, the
 *   selection set is just that component.
 * - All components in the selection set are queried to see if
 *   they want to run.  All components that want to run are ranked
 *   by their priority and the highest priority component is
 *   selected.  All non-selected components have their "close"
 *   function invoked to let them know that they were not selected.
 * - The selected component will have its "init" function invoked to
 *   let it know that it was selected.
 *
 * If we fall through this entire process and no component is
 * selected, then return OPAL_NOT_FOUND (this is not a fatal
 * error).
 *
 * At the end of this process, we'll either have a single
 * component that is selected and initialized, or no component was
 * selected.  If no component was selected, subsequent invocation
 * of the shmem wrapper functions will return an error.
 */
OPAL_DECLSPEC int
opal_shmem_base_select(void);

/**
 * Shut down the shmem MCA framework.
 *
 * @retval OPAL_SUCCESS Always
 *
 * This function shuts down everything in the shmem MCA
 * framework, and is called during opal_finalize().
 *
 * It must be the last function invoked on the shmem MCA
 * framework.
 */
OPAL_DECLSPEC int
opal_shmem_base_close(void);

/**
 * Indication of whether a component was successfully selected or
 * not
 */
OPAL_DECLSPEC extern bool opal_shmem_base_selected;

/**
 * Global component struct for the selected component
 */
OPAL_DECLSPEC extern const opal_shmem_base_component_2_0_0_t
*opal_shmem_base_component;

/**
 * Global module struct for the selected module
 */
OPAL_DECLSPEC extern const opal_shmem_base_module_2_0_0_t
*opal_shmem_base_module;

/**
 * Indicator as to whether the list of opened shmem components
 * is valid or not.
 */
OPAL_DECLSPEC extern bool opal_shmem_base_components_opened_valid;

/**
 * List of all opened components; created when the shmem
 * framework is initialized and destroyed when we reduce the list
 * to all available shmem components.
 */
OPAL_DECLSPEC extern opal_list_t opal_shmem_base_components_opened;

/**
 * Debugging output stream
 */
OPAL_DECLSPEC extern int opal_shmem_base_output;

END_C_DECLS

#endif /* OPAL_BASE_SHMEM_H */