diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2017-02-02 15:13:57 +0100 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gcc.gnu.org> | 2017-02-02 15:13:57 +0100 |
commit | 345a8c1712df339941e1b61425f0aa02e55ed364 (patch) | |
tree | faf0068f952501848e4ff07c39f38134178020b5 /libgomp/plugin | |
parent | da75ca93f8f17847f75ff50d00796e98ccf8509d (diff) | |
download | gcc-345a8c1712df339941e1b61425f0aa02e55ed364.zip gcc-345a8c1712df339941e1b61425f0aa02e55ed364.tar.gz gcc-345a8c1712df339941e1b61425f0aa02e55ed364.tar.bz2 |
libgomp: Normalize the names of a few functions of the libgomp plugin API
libgomp/
* libgomp-plugin.h (GOMP_OFFLOAD_openacc_parallel): Rename to
GOMP_OFFLOAD_openacc_exec. Adjust all users.
(GOMP_OFFLOAD_openacc_get_current_cuda_device): Rename to
GOMP_OFFLOAD_openacc_cuda_get_current_device. Adjust all users.
(GOMP_OFFLOAD_openacc_get_current_cuda_context): Rename to
GOMP_OFFLOAD_openacc_cuda_get_current_context. Adjust all users.
(GOMP_OFFLOAD_openacc_get_cuda_stream): Rename to
GOMP_OFFLOAD_openacc_cuda_get_stream. Adjust all users.
(GOMP_OFFLOAD_openacc_set_cuda_stream): Rename to
GOMP_OFFLOAD_openacc_cuda_set_stream. Adjust all users.
From-SVN: r245125
Diffstat (limited to 'libgomp/plugin')
-rw-r--r-- | libgomp/plugin/plugin-nvptx.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libgomp/plugin/plugin-nvptx.c b/libgomp/plugin/plugin-nvptx.c index 4144218..0284c7f 100644 --- a/libgomp/plugin/plugin-nvptx.c +++ b/libgomp/plugin/plugin-nvptx.c @@ -1922,9 +1922,9 @@ GOMP_OFFLOAD_dev2dev (int ord, void *dst, const void *src, size_t n) void (*device_run) (int n, void *fn_ptr, void *vars) = NULL; void -GOMP_OFFLOAD_openacc_parallel (void (*fn) (void *), size_t mapnum, - void **hostaddrs, void **devaddrs, - int async, unsigned *dims, void *targ_mem_desc) +GOMP_OFFLOAD_openacc_exec (void (*fn) (void *), size_t mapnum, + void **hostaddrs, void **devaddrs, + int async, unsigned *dims, void *targ_mem_desc) { nvptx_exec (fn, mapnum, hostaddrs, devaddrs, async, dims, targ_mem_desc); } @@ -2014,13 +2014,13 @@ GOMP_OFFLOAD_openacc_destroy_thread_data (void *data) } void * -GOMP_OFFLOAD_openacc_get_current_cuda_device (void) +GOMP_OFFLOAD_openacc_cuda_get_current_device (void) { return nvptx_get_current_cuda_device (); } void * -GOMP_OFFLOAD_openacc_get_current_cuda_context (void) +GOMP_OFFLOAD_openacc_cuda_get_current_context (void) { return nvptx_get_current_cuda_context (); } @@ -2028,7 +2028,7 @@ GOMP_OFFLOAD_openacc_get_current_cuda_context (void) /* NOTE: This returns a CUstream, not a ptx_stream pointer. */ void * -GOMP_OFFLOAD_openacc_get_cuda_stream (int async) +GOMP_OFFLOAD_openacc_cuda_get_stream (int async) { return nvptx_get_cuda_stream (async); } @@ -2036,7 +2036,7 @@ GOMP_OFFLOAD_openacc_get_cuda_stream (int async) /* NOTE: This takes a CUstream, not a ptx_stream pointer. */ int -GOMP_OFFLOAD_openacc_set_cuda_stream (int async, void *stream) +GOMP_OFFLOAD_openacc_cuda_set_stream (int async, void *stream) { return nvptx_set_cuda_stream (async, stream); } |