How to find out CUDA cores and information on command line for NVIDIA GPU
If you have the nvidia-settings
utilities installed, you can query the number of CUDA cores of your gpus by running nvidia-settings -q CUDACores -t
. If that's not working, try nvidia-settings -q :0/CUDACores
.
- :0 is the gpu slot/ID: In this case 0 is refering to the first GPU.
- CUDACores is the property
If have the cuda
& nvidia-cuda-toolkit
installed, try running deviceQuery
. It's located somewhere in /usr/local/cuda-11/extras/demo_suite/deviceQuery
Try running locate deviceQuery.