summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/StubRPATH/main.cxx
blob: 877856ea024f36200f8246e350f834cb5e943bb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

#include <iostream>

#include <cuda.h>

int main(int argc, char** argv)
{
  int nDevices = 0;
  cuInit(0);
  auto err = cuDeviceGetCount(&nDevices);
  if (err != CUDA_SUCCESS) {
    std::cerr << "Failed to retrieve the number of CUDA enabled devices "
              << err << std::endl;
    return 1;
  }
  return 0;
}