How to check CUDA Compute Capability

cudagpugraphics card

I just playaround with open-source software called Meshroom.
https://github.com/alicevision/meshroom

One of it's processes called DepthMap gives an error:
This program needs a CUDA-Enabled GPU (with at least compute capability 2.0).

On wikipedia (https://en.wikipedia.org/wiki/CUDA) I read that my video card: GeForce GT 650M has the compute capablility 3.0.

Can I check the CUDA Compute Capability?

Is there something I missed? Or it should be bug in the Meshroom software?

Best Answer

GPU-z will tell you everything about your card.

Under the Advanced tab is a dropdown for CUDA which will tell you exactly what your card supports:

enter image description here

It does sound like a bug though, the Geforce 600 series Wikipedia page also states CUDA 3.0 support.

Related Question