Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 GPU 进行令人尴尬的并行程序有什么缺点?
快速回答:GPU 的最大缺点是内存限制和将数据复制到 GPU 内存中的速度。除了并行化能力之外,内存问题是唯一的其他主要问题。如果进行计算所需的数据量不适合您的 GPU 内存,或者如果代码已经足够快以至于在 CPU 上执行所需的时间比将数据复制到 GPU 的内存要少,那么 GPU在实践中对你没有什么好处。