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.
我有 mpi 程序在集群上的几个进程之间分配大数组。
每个进程计算自己的数组元素总和并将结果返回给主机。
我想对每个进程的数组元素运行并行前缀扫描。
任何想法是否可以使用 CUDPP。?
有没有人一起使用过openmpi和cudpp?
没有理由不能在同一个应用程序中结合 CUDPP 和 MPI。它们是正交的。
您还可以考虑使用Thrust 的扫描实现,如果您使用 Fortran,请参阅此博客文章以获得一些指导。