compute capability check

I am using Geforce GT 710 graphics card. Can anyone tell me what is the compute capability of this graphics card? I checked whole list given by NVIDIA but didn’t find any clue.
here is my graphics card’s link:

Here is the list for compute capability, but above graphics card is not mentioned in it.

run the CUDA 8 deviceQuery sample code on it.

1 Like

what is this possible to run CUDA with Geforce GT 710

arpitagupta: use this function cuDeviceComputeCapability which you can find in cuda driver api samples.

singhpeter709: Yes, why not it have 192 cuda cores. → GeForce RTX 20 Series Graphics Cards and Laptops.

CUDA 8 (and presumably other CUDA versions), at least on Windows, comes with a pre-built deviceQuery application, “C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\extras\demo_suite\deviceQuery.exe”. Run that, the compute capability is one of he first items in the output:

C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\v8.0\extras\demo_suite\deviceQuery.exe Starting...

 CUDA Device Query (Runtime API) version (CUDART static linking)

Detected 1 CUDA Capable device(s)

Device 0: "Quadro K2200"
  CUDA Driver Version / Runtime Version          9.0 / 8.0
  CUDA Capability Major/Minor version number:    5.0  <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
[...]

All GPUs NVIDIA has shipped in the past 10+ years have been CUDA-capable, but modern CUDA versions don’t support very old GPUs any more. Your GT 710 is most likely compute capability >= 3.0, so still supported.

1 Like