gpt4 book ai didi

python - 使用 mpi4py 在计算集群上并行化 'for' 循环

转载 作者:太空宇宙 更新时间:2023-11-03 15:44:19 32 4
gpt4 key购买 nike

我以前没有使用过分布式计算,但我正在尝试将 mpi4py 集成到一个程序中,以便在计算集群上并行化 for 循环。

这是我想做的伪代码:

对于目录中的文件:
初始化一个类
运行类方法
综合结果

我查看了整个堆栈溢出问题,但找不到任何解决方案。有什么方法可以简单地使用 mpi4py 来做到这一点,或者是否有其他工具可以通过简单的安装和设置来做到这一点?

最佳答案

为了使用 MPI4Py 实现 for 循环的并行性,请检查下面的代码示例。它只是一个用于添加一些数字的 for 循环。 for 循环将在每个节点中执行。每个节点都将获得不同的数据 block 来处理(for 循环中的范围)。最后排名为零的节点将添加所有节点的结果。

#!/usr/bin/python

import numpy
from mpi4py import MPI
import time

comm = MPI.COMM_WORLD
rank = comm.Get_rank()
size = comm.Get_size()

a = 1
b = 1000000

perrank = b//size
summ = numpy.zeros(1)

comm.Barrier()
start_time = time.time()

temp = 0
for i in range(a + rank*perrank, a + (rank+1)*perrank):
temp = temp + i

summ[0] = temp

if rank == 0:
total = numpy.zeros(1)
else:
total = None

comm.Barrier()
#collect the partial results and add to the total sum
comm.Reduce(summ, total, op=MPI.SUM, root=0)

stop_time = time.time()

if rank == 0:
#add the rest numbers to 1 000 000
for i in range(a + (size)*perrank, b+1):
total[0] = total[0] + i
print ("The sum of numbers from 1 to 1 000 000: ", int(total[0]))
print ("time spent with ", size, " threads in milliseconds")
print ("-----", int((time.time()-start_time)*1000), "-----")

为了执行上面的代码,你应该像这样运行它:

$ qsub -q qexp -l select=4:ncpus=16:mpiprocs=16:ompthreads=1 -I # Salomon: ncpus=24:mpiprocs=24
$ ml Python
$ ml OpenMPI
$ mpiexec -bycore -bind-to-core python hello_world.py

在这个例子中,我们在 4 个节点上运行启用 MPI4Py 的代码,每个节点 16 个核心(总共 64 个进程),每个 python 进程绑定(bind)到不同的核心。

可能对您有帮助的资源:
Submit job with python code (mpi4py) on HPC cluster
https://github.com/JordiCorbilla/mpi4py-examples/tree/master/src/examples/matrix%20multiplication

关于python - 使用 mpi4py 在计算集群上并行化 'for' 循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50979373/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com