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.
我正在开发一个将大量数据从 Excel 表格移动到数据库的程序。像CUDA这样的东西有可能加快这个过程吗?我是否可以使用它一次打开多张纸并让不同的核心共享工作?
CUDA 可以加速计算处理,但不会因网络带宽/延迟或缓慢(与应用程序/机器的其余部分相比)IO 性能而成为瓶颈。在您的情况下,您可能不会对 CPU 施加太大压力,因此您的代码很可能不会从将代码卸载到 GPU 中受益。
编辑:基本上,Anon 所说的。
不会。CUDA 加快了数据处理速度。
如果你正在做一堆数字运算,它可能会对你有所帮助。但简单地从 excel 中提取数据并批量插入数据库与 CUDA 无关。