ROSE  0.11.96.11
omp.h
1 #ifndef _OMP_H_DEF
2 #define _OMP_H_DEF
3 
4 #include <stdlib.h> // support size_t
5 
6 /*
7 Updated to support OpenMP 4.5, B.1 page 327
8 
9 Liao 10/10/2016
10 
11 From the specification 3.0, Chapter 3.1, page 108
12 What to put into this file:
13 * The prototypes of all the runtime library routines, with "C" linkage
14 * The type omp_lock_t
15 * The type omp_nest_lock_t
16 * The type omp_sched_t
17 
18 Specification 3.0 page 302
19 D.1 Example of the omp.h Header File
20  * */
21 // This is not correct. omp.h is not required to trigger _OPENMP macro
22 //#define _OPENMP 201511
23 
24 typedef void *omp_lock_t; /* represented as a pointer */
25 typedef void *omp_nest_lock_t; /* represented as a pointer */
26 typedef void *omp_depend_t;
27 
28 /*
29 * define the lock hints
30 */
31 typedef enum omp_lock_hint_t
32 {
33  omp_lock_hint_none = 0,
34  omp_lock_hint_uncontended = 1,
35  omp_lock_hint_contended = 2,
36  omp_lock_hint_nonspeculative = 4,
37  omp_lock_hint_speculative = 8
38  /* , Add vendor specific constants for lock hints here,
39  starting from the most-significant bit. */
40 } omp_lock_hint_t;
41 
42 
43 /*
44 * define the schedule kinds
45 */
46 
47 typedef enum omp_sched_t
48 {
49  omp_sched_static = 1,
50  omp_sched_dynamic = 2,
51  omp_sched_guided = 3,
52  omp_sched_auto = 4
53 } omp_sched_t;
54 
55 /*
56 * define the proc bind values
57 */
58 typedef enum omp_proc_bind_t
59 {
60  omp_proc_bind_false = 0,
61  omp_proc_bind_true = 1,
62  omp_proc_bind_master = 2,
63  omp_proc_bind_close = 3,
64  omp_proc_bind_spread = 4
65 } omp_proc_bind_t;
66 
67 
68 #ifdef __cplusplus
69 extern "C" {
70 #endif
71 
72 /*
73  * Execution Environment Functions
74  */
75 extern void omp_set_num_threads(int num);
76 extern int omp_get_num_threads(void);
77 extern int omp_get_max_threads(void);
78 extern int omp_get_thread_num(void);
79 extern int omp_get_num_procs(void);
80 
81 int omp_in_parallel(void);
82 void omp_set_dynamic(int dynamic_thds);
83 int omp_get_dynamic(void);
84 
85 int omp_get_cancellation(void);
86 
87 void omp_set_nested(int n_nested);
88 int omp_get_nested(void);
89 
90 /*
91  * Other internal variables
92  */
93 
94 void omp_set_schedule (omp_sched_t, int);
95 void omp_get_schedule (omp_sched_t *, int *);
96 int omp_get_thread_limit (void);
97 void omp_set_max_active_levels (int);
98 int omp_get_max_active_levels (void);
99 int omp_get_level (void);
100 int omp_get_ancestor_thread_num (int);
101 int omp_get_team_size (int);
102 int omp_get_active_level (void);
103 
104 int omp_in_final(void);
105 omp_proc_bind_t omp_get_proc_bind(void);
106 int omp_get_num_places(void);
107 int omp_get_place_num_procs(int place_num);
108 void omp_get_place_proc_ids(int place_num, int *ids);
109 int omp_get_place_num(void);
110 int omp_get_partition_num_places(void);
111 void omp_get_partition_place_nums(int *place_nums);
112 
113 /*
114  * Support accelerators as target devices
115  */
116 
117 void omp_set_default_device(int device_num);
118 int omp_get_default_device(void);
119 
120 /* find the max number of devices on the system */
121 int omp_get_max_devices(void);
122 /* set number of active devices to be used */
123 void omp_set_num_devices(int);
124 
125 /* get number of available devices */
126 int omp_get_num_devices(void);
127 // GCC 4.0 provides omp_get_num_devices() already, but without supporting GPUs
128 // I have to use another function to bypass it
129 int xomp_get_num_devices(void);
130 
131 int omp_get_num_teams(void);
132 int omp_get_team_num(void);
133 
134 int omp_is_initial_device(void);
135 int omp_get_initial_device(void);
136 int omp_get_max_task_priority(void);
137 
138 /*
139  * Lock Functions
140  */
141 void omp_init_lock(omp_lock_t *lock);
142 void omp_init_lock_with_hint(omp_lock_t *lock,
143  omp_lock_hint_t hint);
144 void omp_destroy_lock(omp_lock_t *lock);
145 void omp_set_lock(omp_lock_t *lock);
146 void omp_unset_lock(omp_lock_t *lock);
147 int omp_test_lock(omp_lock_t *lock);
148 void omp_init_nest_lock(omp_nest_lock_t *lock);
149 void omp_init_nest_lock_with_hint(omp_nest_lock_t *lock,
150  omp_lock_hint_t hint);
151 void omp_destroy_nest_lock(omp_nest_lock_t *lock);
152 void omp_set_nest_lock(omp_nest_lock_t *lock);
153 void omp_unset_nest_lock(omp_nest_lock_t *lock);
154 int omp_test_nest_lock(omp_nest_lock_t *lock);
155 
156 /*
157  * Timer routine
158  */
159 double omp_get_wtime(void);
160 double omp_get_wtick(void);
161 
162 void * omp_target_alloc(size_t _size, int _device_num);
163 void omp_target_free(void * device_ptr, int _device_num);
164 int omp_target_is_present(void * ptr, int _device_num);
165 int omp_target_memcpy(void *dst, void *src, size_t _length,
166  size_t dst_offset, size_t src_offset,
167  int dst_device_num, int src_device_num);
168 
169 int omp_target_memcpy_rect(
170  void *dst, void *src,
171  size_t element_size,
172  int num_dims,
173  const size_t *volume,
174  const size_t *dst_offsets,
175  const size_t *src_offsets,
176  const size_t *dst_dimensions,
177  const size_t *src_dimensions,
178  int dst_device_num, int src_device_num);
179 
180 int omp_target_associate_ptr(void * host_ptr,
181  void * device_ptr,
182  size_t _size,
183  size_t device_offset,
184  int device_num);
185 
186 int omp_target_disassociate_ptr(void * ptr,
187  int device_num);
188 
189 
190 /*
191  * FORTRAN Execution Environment Function Wrappers
192  * Fortran stuff should be handled in omp_lib.h
193 void omp_set_num_threads_(int *num);
194 int omp_get_num_threads_(void);
195 int omp_get_max_threads_(void);
196 int omp_get_thread_num_(void);
197 int omp_get_num_procs_(void);
198 int omp_in_parallel_(void);
199 void omp_set_dynamic_(int *dynamic_thds);
200 int omp_get_dynamic_(void);
201 void omp_set_nested_(int *n_nested);
202 int omp_get_nested_(void);
203 
204  * FORTRAN Lock Function Wrappers
205 typedef unsigned int _omf77Lock_t;
206 void omp_init_lock_(_omf77Lock_t *lock);
207 void omp_init_nest_lock_(_omf77Lock_t *lock);
208 void omp_destroy_lock_(_omf77Lock_t *lock);
209 void omp_destroy_nest_lock_(_omf77Lock_t *lock);
210 void omp_set_lock_(_omf77Lock_t *lock);
211 void omp_set_nest_lock_(_omf77Lock_t *lock);
212 void omp_unset_lock_(_omf77Lock_t *lock);
213 void omp_unset_nest_lock_(_omf77Lock_t *lock);
214 int omp_test_lock_(_omf77Lock_t *lock);
215 int omp_test_nest_lock_(_omf77Lock_t *lock);
216 
217 */
218 #ifdef __cplusplus
219 } /* closing brace for extern "C" */
220 #endif
221 
222 #endif /* _OMP_H_DEF */
223