CMS 3D CMS Logo

currentDevice.h
Go to the documentation of this file.
1 #ifndef HeterogenousCore_CUDAUtilities_currentDevice_h
2 #define HeterogenousCore_CUDAUtilities_currentDevice_h
3 
5 
6 #include <cuda_runtime.h>
7 
8 namespace cms {
9  namespace cuda {
10  inline int currentDevice() {
11  int dev;
12  cudaCheck(cudaGetDevice(&dev));
13  return dev;
14  }
15  } // namespace cuda
16 } // namespace cms
17 
18 #endif
Namespace of DDCMS conversion namespace.
#define cudaCheck(ARG,...)
Definition: cudaCheck.h:69
int currentDevice()
Definition: currentDevice.h:10