OpenCL global memory fetches

前端 未结 3 1375
予麋鹿
予麋鹿 2021-01-03 06:10

I am thinking about reworking my GPU OpenCL kernel to speed things up. The problem is there is a lot of global memory that is not coalesced and fetches are really bringing d

3条回答
  •  生来不讨喜
    2021-01-03 06:30

    I am not able to understand you question properly , but if you have large global access and if those are re-used than use use local memory.

    Note:small local work size less data shared so no use, large local work size less parallel threads . So you need to select the best one.

提交回复
热议问题