Post
Topic
Board Mining (Altcoins)
Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux]
by
Schleicher
on 26/04/2013, 19:32:21 UTC
See, it can't even open your GPU. No name indicated and compute capability is bogus.
Maybe some code like this would be helpful?
Code:
error=cudaGetDeviceCount(&deviceCount);
if(error!=cudaSuccess)
{
if(error==cudaErrorNoDevice)
cout << "No CUDA capable device found" << endl;
else
cout << cudaGetErrorString(error) << endl;
}