gcc/
[official-gcc.git] / libgomp / oacc-parallel.c
blobd0e5f949fb0e325bb6d06ca0fbe72f385f455210
1 /* Copyright (C) 2013-2015 Free Software Foundation, Inc.
3 Contributed by Mentor Embedded.
5 This file is part of the GNU Offloading and Multi Processing Library
6 (libgomp).
8 Libgomp is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3, or (at your option)
11 any later version.
13 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
16 more details.
18 Under Section 7 of GPL version 3, you are granted additional
19 permissions described in the GCC Runtime Library Exception, version
20 3.1, as published by the Free Software Foundation.
22 You should have received a copy of the GNU General Public License and
23 a copy of the GCC Runtime Library Exception along with this program;
24 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
25 <http://www.gnu.org/licenses/>. */
27 /* This file handles OpenACC constructs. */
29 #include "openacc.h"
30 #include "libgomp.h"
31 #include "libgomp_g.h"
32 #include "gomp-constants.h"
33 #include "oacc-int.h"
34 #ifdef HAVE_INTTYPES_H
35 # include <inttypes.h> /* For PRIu64. */
36 #endif
37 #include <string.h>
38 #include <stdarg.h>
39 #include <assert.h>
41 static int
42 find_pset (int pos, size_t mapnum, unsigned short *kinds)
44 if (pos + 1 >= mapnum)
45 return 0;
47 unsigned char kind = kinds[pos+1] & 0xff;
49 return kind == GOMP_MAP_TO_PSET;
52 static void goacc_wait (int async, int num_waits, va_list ap);
54 void
55 GOACC_parallel (int device, void (*fn) (void *),
56 size_t mapnum, void **hostaddrs, size_t *sizes,
57 unsigned short *kinds,
58 int num_gangs, int num_workers, int vector_length,
59 int async, int num_waits, ...)
61 bool host_fallback = device == GOMP_DEVICE_HOST_FALLBACK;
62 va_list ap;
63 struct goacc_thread *thr;
64 struct gomp_device_descr *acc_dev;
65 struct target_mem_desc *tgt;
66 void **devaddrs;
67 unsigned int i;
68 struct splay_tree_key_s k;
69 splay_tree_key tgt_fn_key;
70 void (*tgt_fn);
72 if (num_gangs != 1)
73 gomp_fatal ("num_gangs (%d) different from one is not yet supported",
74 num_gangs);
75 if (num_workers != 1)
76 gomp_fatal ("num_workers (%d) different from one is not yet supported",
77 num_workers);
79 #ifdef HAVE_INTTYPES_H
80 gomp_debug (0, "%s: mapnum=%"PRIu64", hostaddrs=%p, size=%p, kinds=%p, "
81 "async = %d\n",
82 __FUNCTION__, (uint64_t) mapnum, hostaddrs, sizes, kinds, async);
83 #else
84 gomp_debug (0, "%s: mapnum=%lu, hostaddrs=%p, sizes=%p, kinds=%p, async=%d\n",
85 __FUNCTION__, (unsigned long) mapnum, hostaddrs, sizes, kinds,
86 async);
87 #endif
88 goacc_lazy_initialize ();
90 thr = goacc_thread ();
91 acc_dev = thr->dev;
93 /* Host fallback if "if" clause is false or if the current device is set to
94 the host. */
95 if (host_fallback)
97 goacc_save_and_set_bind (acc_device_host);
98 fn (hostaddrs);
99 goacc_restore_bind ();
100 return;
102 else if (acc_device_type (acc_dev->type) == acc_device_host)
104 fn (hostaddrs);
105 return;
108 if (num_waits)
110 va_start (ap, num_waits);
111 goacc_wait (async, num_waits, ap);
112 va_end (ap);
115 acc_dev->openacc.async_set_async_func (async);
117 if (!(acc_dev->capabilities & GOMP_OFFLOAD_CAP_NATIVE_EXEC))
119 k.host_start = (uintptr_t) fn;
120 k.host_end = k.host_start + 1;
121 gomp_mutex_lock (&acc_dev->lock);
122 tgt_fn_key = splay_tree_lookup (&acc_dev->mem_map, &k);
123 gomp_mutex_unlock (&acc_dev->lock);
125 if (tgt_fn_key == NULL)
126 gomp_fatal ("target function wasn't mapped");
128 tgt_fn = (void (*)) tgt_fn_key->tgt_offset;
130 else
131 tgt_fn = (void (*)) fn;
133 tgt = gomp_map_vars (acc_dev, mapnum, hostaddrs, NULL, sizes, kinds, true,
134 false);
136 devaddrs = gomp_alloca (sizeof (void *) * mapnum);
137 for (i = 0; i < mapnum; i++)
138 devaddrs[i] = (void *) (tgt->list[i]->tgt->tgt_start
139 + tgt->list[i]->tgt_offset);
141 acc_dev->openacc.exec_func (tgt_fn, mapnum, hostaddrs, devaddrs, sizes, kinds,
142 num_gangs, num_workers, vector_length, async,
143 tgt);
145 /* If running synchronously, unmap immediately. */
146 if (async < acc_async_noval)
147 gomp_unmap_vars (tgt, true);
148 else
150 gomp_copy_from_async (tgt);
151 acc_dev->openacc.register_async_cleanup_func (tgt);
154 acc_dev->openacc.async_set_async_func (acc_async_sync);
157 void
158 GOACC_data_start (int device, size_t mapnum,
159 void **hostaddrs, size_t *sizes, unsigned short *kinds)
161 bool host_fallback = device == GOMP_DEVICE_HOST_FALLBACK;
162 struct target_mem_desc *tgt;
164 #ifdef HAVE_INTTYPES_H
165 gomp_debug (0, "%s: mapnum=%"PRIu64", hostaddrs=%p, size=%p, kinds=%p\n",
166 __FUNCTION__, (uint64_t) mapnum, hostaddrs, sizes, kinds);
167 #else
168 gomp_debug (0, "%s: mapnum=%lu, hostaddrs=%p, sizes=%p, kinds=%p\n",
169 __FUNCTION__, (unsigned long) mapnum, hostaddrs, sizes, kinds);
170 #endif
172 goacc_lazy_initialize ();
174 struct goacc_thread *thr = goacc_thread ();
175 struct gomp_device_descr *acc_dev = thr->dev;
177 /* Host fallback or 'do nothing'. */
178 if ((acc_dev->capabilities & GOMP_OFFLOAD_CAP_SHARED_MEM)
179 || host_fallback)
181 tgt = gomp_map_vars (NULL, 0, NULL, NULL, NULL, NULL, true, false);
182 tgt->prev = thr->mapped_data;
183 thr->mapped_data = tgt;
185 return;
188 gomp_debug (0, " %s: prepare mappings\n", __FUNCTION__);
189 tgt = gomp_map_vars (acc_dev, mapnum, hostaddrs, NULL, sizes, kinds, true,
190 false);
191 gomp_debug (0, " %s: mappings prepared\n", __FUNCTION__);
192 tgt->prev = thr->mapped_data;
193 thr->mapped_data = tgt;
196 void
197 GOACC_data_end (void)
199 struct goacc_thread *thr = goacc_thread ();
200 struct target_mem_desc *tgt = thr->mapped_data;
202 gomp_debug (0, " %s: restore mappings\n", __FUNCTION__);
203 thr->mapped_data = tgt->prev;
204 gomp_unmap_vars (tgt, true);
205 gomp_debug (0, " %s: mappings restored\n", __FUNCTION__);
208 void
209 GOACC_enter_exit_data (int device, size_t mapnum,
210 void **hostaddrs, size_t *sizes, unsigned short *kinds,
211 int async, int num_waits, ...)
213 struct goacc_thread *thr;
214 struct gomp_device_descr *acc_dev;
215 bool host_fallback = device == GOMP_DEVICE_HOST_FALLBACK;
216 bool data_enter = false;
217 size_t i;
219 goacc_lazy_initialize ();
221 thr = goacc_thread ();
222 acc_dev = thr->dev;
224 if ((acc_dev->capabilities & GOMP_OFFLOAD_CAP_SHARED_MEM)
225 || host_fallback)
226 return;
228 if (num_waits)
230 va_list ap;
232 va_start (ap, num_waits);
233 goacc_wait (async, num_waits, ap);
234 va_end (ap);
237 acc_dev->openacc.async_set_async_func (async);
239 /* Determine if this is an "acc enter data". */
240 for (i = 0; i < mapnum; ++i)
242 unsigned char kind = kinds[i] & 0xff;
244 if (kind == GOMP_MAP_POINTER || kind == GOMP_MAP_TO_PSET)
245 continue;
247 if (kind == GOMP_MAP_FORCE_ALLOC
248 || kind == GOMP_MAP_FORCE_PRESENT
249 || kind == GOMP_MAP_FORCE_TO)
251 data_enter = true;
252 break;
255 if (kind == GOMP_MAP_FORCE_DEALLOC
256 || kind == GOMP_MAP_FORCE_FROM)
257 break;
259 gomp_fatal (">>>> GOACC_enter_exit_data UNHANDLED kind 0x%.2x",
260 kind);
263 if (data_enter)
265 for (i = 0; i < mapnum; i++)
267 unsigned char kind = kinds[i] & 0xff;
269 /* Scan for PSETs. */
270 int psets = find_pset (i, mapnum, kinds);
272 if (!psets)
274 switch (kind)
276 case GOMP_MAP_POINTER:
277 gomp_acc_insert_pointer (1, &hostaddrs[i], &sizes[i],
278 &kinds[i]);
279 break;
280 case GOMP_MAP_FORCE_ALLOC:
281 acc_create (hostaddrs[i], sizes[i]);
282 break;
283 case GOMP_MAP_FORCE_PRESENT:
284 acc_present_or_copyin (hostaddrs[i], sizes[i]);
285 break;
286 case GOMP_MAP_FORCE_TO:
287 acc_present_or_copyin (hostaddrs[i], sizes[i]);
288 break;
289 default:
290 gomp_fatal (">>>> GOACC_enter_exit_data UNHANDLED kind 0x%.2x",
291 kind);
292 break;
295 else
297 gomp_acc_insert_pointer (3, &hostaddrs[i], &sizes[i], &kinds[i]);
298 /* Increment 'i' by two because OpenACC requires fortran
299 arrays to be contiguous, so each PSET is associated with
300 one of MAP_FORCE_ALLOC/MAP_FORCE_PRESET/MAP_FORCE_TO, and
301 one MAP_POINTER. */
302 i += 2;
306 else
307 for (i = 0; i < mapnum; ++i)
309 unsigned char kind = kinds[i] & 0xff;
311 int psets = find_pset (i, mapnum, kinds);
313 if (!psets)
315 switch (kind)
317 case GOMP_MAP_POINTER:
318 gomp_acc_remove_pointer (hostaddrs[i], (kinds[i] & 0xff)
319 == GOMP_MAP_FORCE_FROM,
320 async, 1);
321 break;
322 case GOMP_MAP_FORCE_DEALLOC:
323 acc_delete (hostaddrs[i], sizes[i]);
324 break;
325 case GOMP_MAP_FORCE_FROM:
326 acc_copyout (hostaddrs[i], sizes[i]);
327 break;
328 default:
329 gomp_fatal (">>>> GOACC_enter_exit_data UNHANDLED kind 0x%.2x",
330 kind);
331 break;
334 else
336 gomp_acc_remove_pointer (hostaddrs[i], (kinds[i] & 0xff)
337 == GOMP_MAP_FORCE_FROM, async, 3);
338 /* See the above comment. */
339 i += 2;
343 acc_dev->openacc.async_set_async_func (acc_async_sync);
346 static void
347 goacc_wait (int async, int num_waits, va_list ap)
349 struct goacc_thread *thr = goacc_thread ();
350 struct gomp_device_descr *acc_dev = thr->dev;
352 while (num_waits--)
354 int qid = va_arg (ap, int);
356 if (acc_async_test (qid))
357 continue;
359 if (async == acc_async_sync)
360 acc_wait (qid);
361 else if (qid == async)
362 ;/* If we're waiting on the same asynchronous queue as we're
363 launching on, the queue itself will order work as
364 required, so there's no need to wait explicitly. */
365 else
366 acc_dev->openacc.async_wait_async_func (qid, async);
370 void
371 GOACC_update (int device, size_t mapnum,
372 void **hostaddrs, size_t *sizes, unsigned short *kinds,
373 int async, int num_waits, ...)
375 bool host_fallback = device == GOMP_DEVICE_HOST_FALLBACK;
376 size_t i;
378 goacc_lazy_initialize ();
380 struct goacc_thread *thr = goacc_thread ();
381 struct gomp_device_descr *acc_dev = thr->dev;
383 if ((acc_dev->capabilities & GOMP_OFFLOAD_CAP_SHARED_MEM)
384 || host_fallback)
385 return;
387 if (num_waits)
389 va_list ap;
391 va_start (ap, num_waits);
392 goacc_wait (async, num_waits, ap);
393 va_end (ap);
396 acc_dev->openacc.async_set_async_func (async);
398 for (i = 0; i < mapnum; ++i)
400 unsigned char kind = kinds[i] & 0xff;
402 switch (kind)
404 case GOMP_MAP_POINTER:
405 case GOMP_MAP_TO_PSET:
406 break;
408 case GOMP_MAP_FORCE_TO:
409 acc_update_device (hostaddrs[i], sizes[i]);
410 break;
412 case GOMP_MAP_FORCE_FROM:
413 acc_update_self (hostaddrs[i], sizes[i]);
414 break;
416 default:
417 gomp_fatal (">>>> GOACC_update UNHANDLED kind 0x%.2x", kind);
418 break;
422 acc_dev->openacc.async_set_async_func (acc_async_sync);
425 void
426 GOACC_wait (int async, int num_waits, ...)
428 if (num_waits)
430 va_list ap;
432 va_start (ap, num_waits);
433 goacc_wait (async, num_waits, ap);
434 va_end (ap);
436 else if (async == acc_async_sync)
437 acc_wait_all ();
438 else if (async == acc_async_noval)
439 goacc_thread ()->dev->openacc.async_wait_all_async_func (acc_async_noval);
443 GOACC_get_num_threads (void)
445 return 1;
449 GOACC_get_thread_num (void)
451 return 0;