If my algorithm is bottlenecked by host to device and device to host memory transfers, is the only solution a different or revised algorithm?
|
There are a couple things you can try to mitigate the PCIe bottleneck:
Note that neither of these techniques makes the transfer go faster, they just reduce the time the GPU is waiting on the data to arrive. With the With the You can read more about these topics in Section 3.2.6-3.2.7 of the CUDA Programming Guide and Section 3.1 of the CUDA Best Practices Guide. Chapter 3 of the OpenCL Best Practices Guide explains how to use these features in OpenCL. |
|||||
|
|
You really need to do the math to be certain that you're going to be doing enough processing on the GPU to make it worthwhile transferring data between host and GPU. Ideally you do this at the design stage, before doing any coding, since it can be a deal-breaker. |
|||
|
|