The number of Multiprocessors (MP) and the number of cores per MP can be found by running DeviceQuery.exe . It is located in the %NVSDKCOMPUTE_ROOT%/C/bin the SDK Computing SDK installation.
Look at the DeviceQuery code (found in %NVSDKCOMPUTE_ROOT%/C/src/DeviceQuery ), which shows that the number of cores is calculated by passing the xy CUDA Capability values ββto the ConvertSMVer2Cores utility function.
From the ConvertSMVer2Cores code, you can see this relationship between features and the number of cores:
Capability: Cores 10: 8 11: 8 12: 8 13: 8 20: 32 21: 48
Ashwin nanjappa
source share