How many 'CUDA cores' does each multiprocessor of a GPU have?

前端 未结 3 2108
情深已故
情深已故 2021-02-09 07:28

I know that devices before the Fermi architecture had 8 SPs in a single multiprocessor. Is the count same in Fermi architecture?

3条回答
  •  伪装坚强ぢ
    2021-02-09 07:47

    The answer depends on the Compute Capability property of the CUDA device. The numbers are:

    1. Compute Capability <= 1.3 --> 8 CUDA Cores / SM
    2. CC == 2.0 --> 32 CUDA cores / SM
    3. CC == 2.1 --> 48 CUDA cores / SM

    See appendix G of the CUDA C Programming Guide.

提交回复
热议问题