]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
[libgomp, nvptx] Add cuda-lib.def
authorvries <vries@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Aug 2018 13:20:22 +0000 (13:20 +0000)
committervries <vries@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 1 Aug 2018 13:20:22 +0000 (13:20 +0000)
2018-08-01  Tom de Vries  <tdevries@suse.de>

* plugin/cuda-lib.def: New file.  Factor out of ...
* plugin/plugin-nvptx.c (CUDA_CALLS): ... here.
(struct cuda_lib_s, init_cuda_lib): Include cuda-lib.def instead of
using CUDA_CALLS.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@263208 138bc75d-0d04-0410-961f-82ee72b054a4

libgomp/ChangeLog
libgomp/plugin/cuda-lib.def [new file with mode: 0644]
libgomp/plugin/plugin-nvptx.c

index 0cce3715b843b659d80976c7d24b5f85fa346ee3..5ac69e85a99e3032aa4779cb25d151dbae8bc738 100644 (file)
@@ -1,3 +1,10 @@
+2018-08-01  Tom de Vries  <tdevries@suse.de>
+
+       * plugin/cuda-lib.def: New file.  Factor out of ...
+       * plugin/plugin-nvptx.c (CUDA_CALLS): ... here.
+       (struct cuda_lib_s, init_cuda_lib): Include cuda-lib.def instead of
+       using CUDA_CALLS.
+
 2018-07-31  Andre Vieira  <andre.simoesdiasvieira@arm.com>
 
        Revert 'AsyncI/O patch committed'.
diff --git a/libgomp/plugin/cuda-lib.def b/libgomp/plugin/cuda-lib.def
new file mode 100644 (file)
index 0000000..be8e3b3
--- /dev/null
@@ -0,0 +1,46 @@
+CUDA_ONE_CALL (cuCtxCreate)
+CUDA_ONE_CALL (cuCtxDestroy)
+CUDA_ONE_CALL (cuCtxGetCurrent)
+CUDA_ONE_CALL (cuCtxGetDevice)
+CUDA_ONE_CALL (cuCtxPopCurrent)
+CUDA_ONE_CALL (cuCtxPushCurrent)
+CUDA_ONE_CALL (cuCtxSynchronize)
+CUDA_ONE_CALL (cuDeviceGet)
+CUDA_ONE_CALL (cuDeviceGetAttribute)
+CUDA_ONE_CALL (cuDeviceGetCount)
+CUDA_ONE_CALL (cuEventCreate)
+CUDA_ONE_CALL (cuEventDestroy)
+CUDA_ONE_CALL (cuEventElapsedTime)
+CUDA_ONE_CALL (cuEventQuery)
+CUDA_ONE_CALL (cuEventRecord)
+CUDA_ONE_CALL (cuEventSynchronize)
+CUDA_ONE_CALL (cuFuncGetAttribute)
+CUDA_ONE_CALL (cuGetErrorString)
+CUDA_ONE_CALL (cuInit)
+CUDA_ONE_CALL (cuLaunchKernel)
+CUDA_ONE_CALL (cuLinkAddData)
+CUDA_ONE_CALL (cuLinkComplete)
+CUDA_ONE_CALL (cuLinkCreate)
+CUDA_ONE_CALL (cuLinkDestroy)
+CUDA_ONE_CALL (cuMemAlloc)
+CUDA_ONE_CALL (cuMemAllocHost)
+CUDA_ONE_CALL (cuMemcpy)
+CUDA_ONE_CALL (cuMemcpyDtoDAsync)
+CUDA_ONE_CALL (cuMemcpyDtoH)
+CUDA_ONE_CALL (cuMemcpyDtoHAsync)
+CUDA_ONE_CALL (cuMemcpyHtoD)
+CUDA_ONE_CALL (cuMemcpyHtoDAsync)
+CUDA_ONE_CALL (cuMemFree)
+CUDA_ONE_CALL (cuMemFreeHost)
+CUDA_ONE_CALL (cuMemGetAddressRange)
+CUDA_ONE_CALL (cuMemHostGetDevicePointer)
+CUDA_ONE_CALL (cuModuleGetFunction)
+CUDA_ONE_CALL (cuModuleGetGlobal)
+CUDA_ONE_CALL (cuModuleLoad)
+CUDA_ONE_CALL (cuModuleLoadData)
+CUDA_ONE_CALL (cuModuleUnload)
+CUDA_ONE_CALL (cuStreamCreate)
+CUDA_ONE_CALL (cuStreamDestroy)
+CUDA_ONE_CALL (cuStreamQuery)
+CUDA_ONE_CALL (cuStreamSynchronize)
+CUDA_ONE_CALL (cuStreamWaitEvent)
index b6ec5f88d59a087e613f272bc45e9fe96f6915be..83176ce07a028a26f39adbc3759b9c9a92ccac2b 100644 (file)
 #if PLUGIN_NVPTX_DYNAMIC
 # include <dlfcn.h>
 
-# define CUDA_CALLS \
-CUDA_ONE_CALL (cuCtxCreate)            \
-CUDA_ONE_CALL (cuCtxDestroy)           \
-CUDA_ONE_CALL (cuCtxGetCurrent)                \
-CUDA_ONE_CALL (cuCtxGetDevice)         \
-CUDA_ONE_CALL (cuCtxPopCurrent)                \
-CUDA_ONE_CALL (cuCtxPushCurrent)       \
-CUDA_ONE_CALL (cuCtxSynchronize)       \
-CUDA_ONE_CALL (cuDeviceGet)            \
-CUDA_ONE_CALL (cuDeviceGetAttribute)   \
-CUDA_ONE_CALL (cuDeviceGetCount)       \
-CUDA_ONE_CALL (cuEventCreate)          \
-CUDA_ONE_CALL (cuEventDestroy)         \
-CUDA_ONE_CALL (cuEventElapsedTime)     \
-CUDA_ONE_CALL (cuEventQuery)           \
-CUDA_ONE_CALL (cuEventRecord)          \
-CUDA_ONE_CALL (cuEventSynchronize)     \
-CUDA_ONE_CALL (cuFuncGetAttribute)     \
-CUDA_ONE_CALL (cuGetErrorString)       \
-CUDA_ONE_CALL (cuInit)                 \
-CUDA_ONE_CALL (cuLaunchKernel)         \
-CUDA_ONE_CALL (cuLinkAddData)          \
-CUDA_ONE_CALL (cuLinkComplete)         \
-CUDA_ONE_CALL (cuLinkCreate)           \
-CUDA_ONE_CALL (cuLinkDestroy)          \
-CUDA_ONE_CALL (cuMemAlloc)             \
-CUDA_ONE_CALL (cuMemAllocHost)         \
-CUDA_ONE_CALL (cuMemcpy)               \
-CUDA_ONE_CALL (cuMemcpyDtoDAsync)      \
-CUDA_ONE_CALL (cuMemcpyDtoH)           \
-CUDA_ONE_CALL (cuMemcpyDtoHAsync)      \
-CUDA_ONE_CALL (cuMemcpyHtoD)           \
-CUDA_ONE_CALL (cuMemcpyHtoDAsync)      \
-CUDA_ONE_CALL (cuMemFree)              \
-CUDA_ONE_CALL (cuMemFreeHost)          \
-CUDA_ONE_CALL (cuMemGetAddressRange)   \
-CUDA_ONE_CALL (cuMemHostGetDevicePointer)\
-CUDA_ONE_CALL (cuModuleGetFunction)    \
-CUDA_ONE_CALL (cuModuleGetGlobal)      \
-CUDA_ONE_CALL (cuModuleLoad)           \
-CUDA_ONE_CALL (cuModuleLoadData)       \
-CUDA_ONE_CALL (cuModuleUnload)         \
-CUDA_ONE_CALL (cuStreamCreate)         \
-CUDA_ONE_CALL (cuStreamDestroy)                \
-CUDA_ONE_CALL (cuStreamQuery)          \
-CUDA_ONE_CALL (cuStreamSynchronize)    \
-CUDA_ONE_CALL (cuStreamWaitEvent)
 # define CUDA_ONE_CALL(call) \
   __typeof (call) *call;
 struct cuda_lib_s {
-  CUDA_CALLS
+#include "cuda-lib.def"
 } cuda_lib;
 
 /* -1 if init_cuda_lib has not been called yet, false
@@ -127,7 +80,7 @@ init_cuda_lib (void)
   cuda_lib.call = dlsym (h, #call);    \
   if (cuda_lib.call == NULL)           \
     return false;
-  CUDA_CALLS
+#include "cuda-lib.def"
   cuda_lib_inited = true;
   return true;
 }