+2019-08-08 Julian Brown <julian@codesourcery.com>
+
+ * plugin/plugin-gcn.c (GOMP_OFFLOAD_openacc_exec_params,
+ GOMP_OFFLOAD_openacc_async_exec_params): New functions.
+
2019-07-31 Julian Brown <julian@codesourcery.com>
* config/nvptx/gomp_print.c (gomp_print_string, gomp_print_integer,
/* Run an asynchronous OpenACC kernel on the specified queue. */
+void
+GOMP_OFFLOAD_openacc_exec_params (void (*fn_ptr) (void *), size_t mapnum,
+ void **hostaddrs, void **devaddrs,
+ unsigned *dims, void *targ_mem_desc)
+{
+ GOMP_PLUGIN_fatal ("OpenACC exec params unimplemented.");
+}
+
void
GOMP_OFFLOAD_openacc_async_exec (void (*fn_ptr) (void *), size_t mapnum,
void **hostaddrs, void **devaddrs,
/* Create a new asynchronous thread and queue for running future kernels. */
+void
+GOMP_OFFLOAD_openacc_async_exec_params (void (*fn) (void *), size_t mapnum,
+ void **hostaddrs, void **devaddrs,
+ unsigned *dims, void *targ_mem_desc,
+ struct goacc_asyncqueue *aq)
+{
+ GOMP_PLUGIN_fatal ("OpenACC async exec params unimplemented.");
+}
+
struct goacc_asyncqueue *
GOMP_OFFLOAD_openacc_async_construct (int device)
{