How many 'CUDA cores' does each multiprocessor of a GPU have? -
i know devices before fermi architecture had 8 sps in single multiprocessor. count same in fermi architecture?
the number of multiprocessors (mp) , number of cores per mp can found executing devicequery.exe. found in %nvsdkcompute_root%/c/bin
directory of gpu computing sdk installation.
a @ code of devicequery (found in %nvsdkcompute_root%/c/src/devicequery
) reveals number of cores calculated passing x.y cuda capability numbers convertsmver2cores utility function.
from code of convertsmver2cores relationship between capability , core count can seen:
capability: cores 10: 8 11: 8 12: 8 13: 8 20: 32 21: 48
Comments
Post a Comment