Maximum blocks per grid:CUDA

后端 未结 2 810
忘掉有多难
忘掉有多难 2021-02-05 05:01

What is the maximum number of blocks in a grid that can created per kernel launch? I am slightly confused here since

Now the compute capability table here says that ther

相关标签:
2条回答
  • 2021-02-05 05:10

    i think it is 65535 per grid..

    0 讨论(0)
  • 2021-02-05 05:15

    65535 per dimension of the grid. On compute 1.x cards, 1D and 2D grids are supported. On compute 2.x cards, 3D grids are also supported, so 65535, 65535 x 65535, and 65535 x 65535 x 65535 are the limits for Fermi (compute 2.x) cards.

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