File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
openmp/libomptarget/plugins-nextgen/cuda/src Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ struct CUDAKernelTy;
37
37
struct CUDADeviceTy ;
38
38
struct CUDAPluginTy ;
39
39
40
- #if (defined(CUDART_VERSION ) && (CUDART_VERSION < 11000))
40
+ #if (defined(CUDA_VERSION ) && (CUDA_VERSION < 11000))
41
41
// / Forward declarations for all Virtual Memory Management
42
42
// / related data structures and functions. This is necessary
43
43
// / for older cuda versions.
@@ -543,7 +543,7 @@ struct CUDADeviceTy : public GenericDeviceTy {
543
543
544
544
// / CUDA support VA management
545
545
bool supportVAManagement () const override {
546
- #if (defined(CUDART_VERSION ) && (CUDART_VERSION >= 11000))
546
+ #if (defined(CUDA_VERSION ) && (CUDA_VERSION >= 11000))
547
547
return true ;
548
548
#else
549
549
return false ;
You can’t perform that action at this time.
0 commit comments