1 /* OpenACC Runtime Library: CUDA support glue.
3 Copyright (C) 2014-2018 Free Software Foundation, Inc.
5 Contributed by Mentor Embedded.
7 This file is part of the GNU Offloading and Multi Processing Library
10 Libgomp is free software; you can redistribute it and/or modify it
11 under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3, or (at your option)
15 Libgomp is distributed in the hope that it will be useful, but WITHOUT ANY
16 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the GNU General Public License for
20 Under Section 7 of GPL version 3, you are granted additional
21 permissions described in the GCC Runtime Library Exception, version
22 3.1, as published by the Free Software Foundation.
24 You should have received a copy of the GNU General Public License and
25 a copy of the GCC Runtime Library Exception along with this program;
26 see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
27 <http://www.gnu.org/licenses/>. */
35 acc_get_current_cuda_device (void)
37 struct goacc_thread
*thr
= goacc_thread ();
39 if (thr
&& thr
->dev
&& thr
->dev
->openacc
.cuda
.get_current_device_func
)
40 return thr
->dev
->openacc
.cuda
.get_current_device_func ();
46 acc_get_current_cuda_context (void)
48 struct goacc_thread
*thr
= goacc_thread ();
50 if (thr
&& thr
->dev
&& thr
->dev
->openacc
.cuda
.get_current_context_func
)
51 return thr
->dev
->openacc
.cuda
.get_current_context_func ();
57 acc_get_cuda_stream (int async
)
59 struct goacc_thread
*thr
= goacc_thread ();
61 if (!async_valid_stream_id_p (async
))
64 if (thr
&& thr
->dev
&& thr
->dev
->openacc
.cuda
.get_stream_func
)
65 return thr
->dev
->openacc
.cuda
.get_stream_func (async
);
71 acc_set_cuda_stream (int async
, void *stream
)
73 struct goacc_thread
*thr
;
75 if (!async_valid_stream_id_p (async
) || stream
== NULL
)
78 goacc_lazy_initialize ();
80 thr
= goacc_thread ();
82 if (thr
&& thr
->dev
&& thr
->dev
->openacc
.cuda
.set_stream_func
)
83 return thr
->dev
->openacc
.cuda
.set_stream_func (async
, stream
);