Code review notes fixed.

This commit is contained in:
Alexander Smorkalov
2013-04-03 03:48:23 -07:00
parent 4703f4552a
commit a2561ee0cd
7 changed files with 107 additions and 1016 deletions

View File

@@ -0,0 +1,14 @@
#include <stdio.h>
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)){ continue;}
printf("%d.%d ", prop.major, prop.minor);
}
return 0;
}