From: Julian Brown Date: Mon, 29 Jul 2019 22:05:35 +0000 (-0700) Subject: [og9] NVPTX GOMP_OFFLOAD_openacc_async_construct arg fix and gomp_print_* support X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da5430880b8c503a39cfc2445337a6374419c446;p=thirdparty%2Fgcc.git [og9] NVPTX GOMP_OFFLOAD_openacc_async_construct arg fix and gomp_print_* support libgomp/ * config/nvptx/gomp_print.c (gomp_print_string, gomp_print_integer, gomp_print_double): New. * plugin/plugin-nvptx.c (GOMP_OFFLOAD_openacc_async_construct): Add dummy device parameter. (cherry picked from openacc-gcc-9-branch commit 3df3ea7e8163b9ec0c7227c70c6e1154bf95c24a) --- diff --git a/libgomp/ChangeLog.omp b/libgomp/ChangeLog.omp index c03f87144089..c850203e1455 100644 --- a/libgomp/ChangeLog.omp +++ b/libgomp/ChangeLog.omp @@ -1,3 +1,10 @@ +2019-07-31 Julian Brown + + * config/nvptx/gomp_print.c (gomp_print_string, gomp_print_integer, + gomp_print_double): New. + * plugin/plugin-nvptx.c (GOMP_OFFLOAD_openacc_async_construct): Add + dummy device parameter. + 2019-07-31 Julian Brown * libgomp.map (GOMP_2.0.GOMP_4_BRANCH): Remove GOACC_parallel_keyed_v2. diff --git a/libgomp/config/nvptx/gomp_print.c b/libgomp/config/nvptx/gomp_print.c new file mode 100644 index 000000000000..811bdd6e9a93 --- /dev/null +++ b/libgomp/config/nvptx/gomp_print.c @@ -0,0 +1,20 @@ +#include +#include + +void +gomp_print_string (const char *msg, const char *value) +{ + printf ("%s%s\n", msg, value); +} + +void +gomp_print_integer (const char *msg, int64_t value) +{ + printf ("%s%ld\n", msg, value); +} + +void +gomp_print_double (const char *msg, double value) +{ + printf ("%s%f\n", msg, value); +} diff --git a/libgomp/plugin/plugin-nvptx.c b/libgomp/plugin/plugin-nvptx.c index 09567ce852c2..4beb3222e8f8 100644 --- a/libgomp/plugin/plugin-nvptx.c +++ b/libgomp/plugin/plugin-nvptx.c @@ -1732,7 +1732,7 @@ GOMP_OFFLOAD_openacc_cuda_set_stream (struct goacc_asyncqueue *aq, void *stream) } struct goacc_asyncqueue * -GOMP_OFFLOAD_openacc_async_construct (void) +GOMP_OFFLOAD_openacc_async_construct (int device __attribute__((unused))) { CUstream stream = NULL; CUDA_CALL_ERET (NULL, cuStreamCreate, &stream, CU_STREAM_DEFAULT);