CUDA Blocks & Warps

前端 未结 3 989
孤独总比滥情好
孤独总比滥情好 2021-02-01 19:36

Ok I know that related questions have been asked over and over again and I read pretty much everything I found about this, but things are still unclear. Probably also because I

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-01 20:03

    I am looking to be more efficient, to reduce my execution time and thus I need to know exactly how many threads/warps/blocks can run at once in parallel.

    In short, the number of threads/warps/blocks that can run concurrently depends on several factors. The CUDA C Best Practices Guide has a writeup on Execution Configuration Optimizations that explains these factors and provides some tips for reasoning about how to shape your application.

提交回复
热议问题