You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
375 B
15 lines
375 B
#include <cuda_runtime.h>
|
|
#include <cstdio>
|
|
int main()
|
|
{
|
|
int count = 0;
|
|
if (cudaSuccess != cudaGetDeviceCount(&count)) return -1;
|
|
if (count == 0) return -1;
|
|
for (int device = 0; device < count; ++device)
|
|
{
|
|
cudaDeviceProp prop;
|
|
if (cudaSuccess == cudaGetDeviceProperties(&prop, device))
|
|
std::printf("%d.%d ", prop.major, prop.minor);
|
|
}
|
|
return 0;
|
|
}
|