See, it can't even open your GPU. No name indicated and compute capability is bogus.
Maybe some code like this would be helpful?
error=cudaGetDeviceCount(&deviceCount);
if(error!=cudaSuccess)
{
if(error==cudaErrorNoDevice)
cout << "No CUDA capable device found" << endl;
else
cout << cudaGetErrorString(error) << endl;
}