0

对于以下 3 个命令中的每一个,我都会收到相同的错误。是我来自 ifconfig 的 IP 地址。关于出了什么问题的任何想法?昨晚效果很好。

mpiexec -f machinefile -n <number> hostname
mpiexec -f machinefile –n 1 hostname
mpiexec -f machinefile -n 2 ~/mpich_build/examples/cpi
--------------------------------------------------------------------------
mpiexec was unable to launch the specified application as it could not find an executable:

Executable: -f
Node: raspberrypi

while attempting to start process rank 0.
--------------------------------------------------------------------------

我正在学习来自http://www.southampton.ac.uk/~sjc/raspberrypi/pi_supercomputer_southampton.htm的教程

4

1 回答 1

5

我的猜测是您已经安装了 OpenMPI,就像示例中给出的与 MPICH2 一样,是吗?这并没有什么问题,但是诸如指定机器文件之类的选项有些不同。你会想要

mpiexec -machinefile machinefile -n 1 hostname

等等

于 2012-12-16T04:10:36.843 回答