Maximum blocks per grid:CUDA

后端 未结 2 844
忘掉有多难
忘掉有多难 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: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.

提交回复
热议问题