Reputation: 5649
I want to know the detailed specification about my NVIDIA Quadro K2000 GPU. I want to know the number of SM, number of SP per SM. I have read several questions about it at SO but most of them are old, for example this, this and this.
Some people have said to run deviceQuery.exe
and it will give the details about your GPU but I do not have any deviceQuery.exe
available in my system (I have searched, checked the location suggested).
PS: I am using Windows-7, 64 bit.
Upvotes: 2
Views: 2176
Reputation: 5649
The CUDA Samples are not shipped as pre-built binaries. So, we need to compile it ourself.
I have used Visual Studio-2012 to build Samples.sln
present in C:\ProgramData\NVIDIA Corporation\CUDA Samples\v7.0
.
UPDATE: I would also like to add here that by default, the CUDA installer puts the Sample files in C:\ProgramData......
but some time the folder ProgramData
is hidden and that's why I was not able to search the sample files at my system. So, you need to unhide ProgramData
folder to find the Sample files
of CUDA.
Upvotes: 0
Reputation: 59090
You can download the nVidia SDK from here and compile deviceQuery.exe
by yourself. See the getting starded guide page 7
Upvotes: 4