OpenMPCD
runtime.hpp
Go to the documentation of this file.
1 /**
2  * @file
3  * Includes the CUDA runtime headers.
4  */
5 
6 #ifndef OPENMPCD_CUDA_RUNTIME_HPP
7 #define OPENMPCD_CUDA_RUNTIME_HPP
8 
9 #if defined(__GNUC__) && (__GNUC__>4 || (__GNUC__==4 && __GNUC_MINOR__>=6))
10  #pragma GCC diagnostic push
11  #pragma GCC diagnostic ignored "-Wlong-long"
12 #endif
13 #include <cuda_runtime.h>
14 #if defined(__GNUC__) && (__GNUC__>4 || (__GNUC__==4 && __GNUC_MINOR__>=6))
15  #pragma GCC diagnostic pop
16 #endif
17 
18 #endif