CUDA: How many concurrent threads in total?

前端 未结 3 1418
我寻月下人不归
我寻月下人不归 2020-11-27 12:24

I have a GeForce GTX 580, and I want to make a statement about the total number of threads that can (ideally) actually be run in parallel, to compare with 2 or 4 multi-core

3条回答
  •  难免孤独
    2020-11-27 12:50

    I realize this is a bit late but I figured I'd help out anyway. From page 10 the CUDA Fermi architecture whitepaper:

    Each SM features two warp schedulers and two instruction dispatch units, allowing two warps to be issued and executed concurrently.

    To me this means that each SM can have 2*32=64 threads running concurrently. I don't know if that means that the GPU can have a total of 16*64=1024 threads running concurrently.

提交回复
热议问题