-
-
-
sort-mpi.rar
* 算法描述: 分段 -> 段内排序 -> 归约结果。
* 1,根进程读取输入,将元素个数广播给各个进程。
* 2,然后各进程计算段长度和段偏移。
* 3,然后根进程选择第一个段,标记站位符。
* 4,跟进程将剩余元素发送给下一进程,下一进程选择段的同时,根进程排序。
* 5,下一进程继续此过程,直到最后一个进程,所有元素都进行排序。
* 6,进程将排序好的元素,按照段偏移归约给根进程。
* 7,根进程输入结果。
*
-
-
-
mpi_src.zip
The structure of the MPI interface is fully static. It means that views cannot be created, destroyed or repositioned in the run-time. For many cases, like the mentioned FTP server, this is perfectly enough. Of course there are more fancy solutions, like ...
-
MPIEqSolver.zip
一个使用MPI的并行Equation Solver。采用高斯迭代。在双核和4核机器上加速比可到2和4。并行的效果非常好。采用ghost rows。可操作于任意的process数
-
-
-
-
-