Why does the GK110 have 192 cores, and 4 warps?

后端 未结 1 697
情话喂你
情话喂你 2021-01-15 06:41

I wanted to get a feel for Kepler\'s architecture, but it doesn\'t make sense to me.

If a warp is 32 threads, and 4 of them get scheduled/executed, that would mean

相关标签:
1条回答
  • 2021-01-15 07:21

    Each SM in Kepler has 192 (SP) cores, and 4 warp schedulers. Each warp scheduler is capable of dual-issue which means that it can actually issue 2 instructions from a given threadblock (actually for a particular warp) in a single issue slot, under some circumstances.

    One of these circumstances is that the instructions should be independent, which roughly speaking means that niether instruction depends on the output of the other instruction.

    With 4 warp schedulers, each capable of possibly dual-issue, it's theoretically possible to launch work for up to 8 warp instructions. This is at least theoretically enough to keep 192 (SP) cores busy.

    An SM has execution units besides the SP units that are commonly referred to as "cores", so the actual instruction mix will determine which execution units are scheduled in any given issue slot.

    You can get a more detailed description in the GK110 whitepaper.

    0 讨论(0)
提交回复
热议问题