python-3.x - 使用 SLURM 和 MPI(4PY) : Cannot allocate requested resources

标签 python-3.x mpi openmpi slurm mpi4py

我在台式计算机上设置/安装了 SLURM,以便在将其部署到集群之前进行一些测试并了解它的工作原理。 桌面计算机运行的是 Ubuntu 18.10 (Cosmic),集群中的节点都在其上运行。使用的SLURM版本是17.11.9。 我测试了 SLURM 的一些功能,例如作业数组及其任务部署。 不过,我想与发送到集群中每个节点或 CPU 的不同任务进行通信,以便收集其结果(无需磁盘 I/O)。出于这个原因,我研究了如何管理它,例如消息队列、MPI 或 OpenMPI。 (非常感谢任何其他实现策略,作为建议或建议。)

我使用一个简单的 Python 代码片段测试了 MPI,启动了两个进程之间的通信。我正在使用 MPI4PY 来处理此通信。 此代码片段使用 mpiexec-command 运行良好,但通过 SLURM 和 sbatch-command 运行它,我无法让它工作。 SLURM 配置了 OpenMPI,opmi_info 表明支持 SLURM。

OpenMPI 版本 3.1.2-6(来自 dpkg -l | grep mpi) SLURM_版本 17.11.9 Ubuntu 18.10(宇宙) MPI4PY 版本 3.0.1。 (来自点子列表)

这是Python3.6代码片段:

    $cat mpi_test.py
    from mpi4py import MPI

    if __name__=='__main__':

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

      if rank==0:
          data={'param1':1, 'param2':2, 'param3':3}        
          destinationNode = 1
          print('Im', rank, 'sending to ', destinationNode)
          comm.send(data, dest=destinationNode, tag=11)
      elif rank!=0:
          sourceNode = 0
          dataRx=comm.recv(source=sourceNode, tag=11)
          print('Im', rank, 'recieving from ', sourceNode)
          for keys in dataRx.keys():
              print('Data recieved: ',str(dataRx[keys]))

与 sbatch 调用时使用的 python.mpi.sbatch 是:

    $cat python.mpi.sbatch
    #!/bin/bash -l
    #SBATCH --job-name=mpiSimpleExample
    #SBATCH --nodes=1
    #SBATCH --error=slurm-err-%j.err
    #SBATCH --export=all
    #SBATCH --time=0-00:05:00
    #SBATCH --partition=debug

    srun -N 1 mpiexec -n 2 python3 mpi_test.py
    #mpiexec -n 2 python3 mpi_test.py

    exit 0

使用此设置运行“sbatch python.mpi.sbatch”会产生以下输出:

    $sbatch python.mpi.sbatch
    $cat slurm-err-104.err 
    ----------------------------------------------------------------------
    There are not enough slots available in the system to satisfy the 2 
    slots
    that were requested by the application:
    python3

    Either request fewer slots for your application, or make more slots
    available for use.
    --------------------------------------------------------------------

修改 python.mpi.sbatch 以改为使用:

“srun -n 1 mpiexec -n 1 python3 mpi_test.py”产生错误:

    $cat slurm-err-105.error
    Traceback (most recent call last):
      File "mpi_test.py", line 18, in <module>
        comm.send(data, dest=destinationNode, tag=11)
      File "mpi4py/MPI/Comm.pyx", line 1156, in mpi4py.MPI.Comm.send
      File "mpi4py/MPI/msgpickle.pxi", line 174, in mpi4py.MPI.PyMPI_send
        mpi4py.MPI.Exception: MPI_ERR_RANK: invalid rank
    ---------------------------------------------------------------------
    mpiexec detected that one or more processes exited with non-zero 
    status, thus causing the job to be terminated. The first process to do 
    so was:

    Process name: [[44366,1],0]
    Exit code:    1
    ---------------------------------------------------------------------

这是预期的,因为它仅从 1 个节点启动。

运行 mpirun hostname 会生成该机器的四个实例,因此该机器应该有四个可用插槽。 我可以使用命令“mpiexec -n 4 python3 mpi_test.py”运行最多四个(修改mpi_test.py后)进程的Python3.6,并成功。

非常感谢任何帮助。

slurm.conf 文件:

# slurm.conf file generated by configurator.html.
# Put this file on all nodes of your cluster.
# See the slurm.conf man page for more information.
#
ControlMachine=desktop-comp
#ControlAddr=
#BackupController=
#BackupAddr=
#
AuthType=auth/munge
#CheckpointType=checkpoint/none
CryptoType=crypto/munge
#DisableRootJobs=NO
#EnforcePartLimits=NO
#Epilog=
#EpilogSlurmctld=
#FirstJobId=1
#MaxJobId=999999
#GresTypes=
#GroupUpdateForce=0
#GroupUpdateTime=600
#JobCheckpointDir=/var/slurm/checkpoint
#JobCredentialPrivateKey=
#JobCredentialPublicCertificate=
#JobFileAppend=0
#JobRequeue=1
#JobSubmitPlugins=1
#KillOnBadExit=0
#LaunchType=launch/slurm
#Licenses=foo*4,bar
#MailProg=/bin/mail
#MaxJobCount=5000
#MaxStepCount=40000
#MaxTasksPerNode=128
MpiDefault=openmpi
#MpiParams=ports=#-#
#PluginDir=
#PlugStackConfig=
#PrivateData=jobs
#ProctrackType=proctrack/cgroup
#Prolog=
#PrologFlags=
#PrologSlurmctld=
#PropagatePrioProcess=0
#PropagateResourceLimits=
#PropagateResourceLimitsExcept=
#RebootProgram=
ReturnToService=1
#SallocDefaultCommand=
SlurmctldPidFile=/var/run/slurm-llnl/slurmctld.pid
SlurmctldPort=6817
SlurmdPidFile=/var/run/slurm-llnl/slurmd.pid
SlurmdPort=6818
SlurmdSpoolDir=/var/lib/slurm-llnl/slurmd
SlurmUser=slurm
#SlurmdUser=root
#SrunEpilog=
#SrunProlog=
StateSaveLocation=/var/lib/slurm-llnl/slurmd
SwitchType=switch/none
#TaskEpilog=
#TaskPlugin=task/affinity
#TaskPluginParam=Sched
#TaskProlog=
#TopologyPlugin=topology/tree
#TmpFS=/tmp
#TrackWCKey=no
#TreeWidth=
#UnkillableStepProgram=
#UsePAM=0
#
#
# TIMERS
#BatchStartTimeout=10
#CompleteWait=0
#EpilogMsgTime=2000
#GetEnvTimeout=2
#HealthCheckInterval=0
#HealthCheckProgram=
InactiveLimit=0
KillWait=30
#MessageTimeout=10
#ResvOverRun=0
MinJobAge=300
#OverTimeLimit=0
SlurmctldTimeout=120
SlurmdTimeout=300
#UnkillableStepTimeout=60
#VSizeFactor=0
Waittime=0
#
#
# SCHEDULING
#DefMemPerCPU=0
FastSchedule=1
#MaxMemPerCPU=0
#SchedulerTimeSlice=30
SchedulerType=sched/backfill
SelectType=select/cons_res
SelectTypeParameters=CR_Core
#
#
# JOB PRIORITY
#PriorityFlags=
#PriorityType=priority/basic
#PriorityDecayHalfLife=
#PriorityCalcPeriod=
#PriorityFavorSmall=
#PriorityMaxAge=
#PriorityUsageResetPeriod=
#PriorityWeightAge=
#PriorityWeightFairshare=
#PriorityWeightJobSize=
#PriorityWeightPartition=
#PriorityWeightQOS=
#
#
# LOGGING AND ACCOUNTING
#AccountingStorageEnforce=0
#AccountingStorageHost=
#AccountingStorageLoc=
#AccountingStoragePass=
#AccountingStoragePort=
AccountingStorageType=accounting_storage/none
#AccountingStorageUser=
AccountingStoreJobComment=YES
ClusterName=cluster
#DebugFlags=
#JobCompHost=
#JobCompLoc=
#JobCompPass=
#JobCompPort=
JobCompType=jobcomp/none
#JobCompUser=
#JobContainerType=job_container/none
JobAcctGatherFrequency=30
JobAcctGatherType=jobacct_gather/none
SlurmctldDebug=3
#SlurmctldLogFile=
SlurmdDebug=3
#SlurmdLogFile=
#SlurmSchedLogFile=
#SlurmSchedLogLevel=
#
#
# POWER SAVE SUPPORT FOR IDLE NODES (optional)
#SuspendProgram=
#ResumeProgram=
#SuspendTimeout=
#ResumeTimeout=
#ResumeRate=
#SuspendExcNodes=
#SuspendExcParts=
#SuspendRate=
#SuspendTime=
#
#
# COMPUTE NODES
NodeName=desktop-comp CPUs=1 State=UNKNOWN
PartitionName=debug Nodes=desktop-compDefault=YES MaxTime=INFINITE State=UP

最佳答案

在您的更新问题中,您的 slurm.conf 中有该行

NodeName=desktop-comp CPUs=1 State=UNKNOWN

这告诉 slurm 您的节点上只有一个可用的 CPU。您可以尝试运行 slurmd -C 来查看 slurm 发现的有关您计算机的内容,并将 CPU、CoresPerSocket 等值复制粘贴到您的 slurm.conf .

关于python-3.x - 使用 SLURM 和 MPI(4PY) : Cannot allocate requested resources,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56522828/

相关文章:

excel - 使用 Python 突出显示 Excel 中的单元格

python - 根据条件重命名 Pandas 数据框的多列

python-3.x - 如何遍历索引字段以添加来自另一个索引的字段

c++ - 使用 gtest 对 MPI 程序进行单元测试

c - 具有相同类型字段的结构上的 MPI_Allreduce 是否可移植?

c++ - 如何禁用 MPI 的 C++ 包装器?

string - ZipFile 中的 namelist() 返回编码无效的字符串

mpi - 您何时会使用不同的计数或类型来进行发送和接收过程?

c - 缓冲区大小大于 64kb 的 MPI 发送和接收挂起

c++ - 从 C++ 调用 ScaLAPACK