gpt4 book ai didi

MPI mpirun execvp 错误 : no such file or directory

转载 作者:行者123 更新时间:2023-12-04 03:51:15 25 4
gpt4 key购买 nike

我正在尝试使用 MPI 运行 C++ 代码(BCparallel.cpp);编译代码:

 mpic++ BCparallel.cpp -o BCparallel

很成功,但是当我通过线时
 mpiexec -np 4 BCparallel file.txt

它返回
[proxy:0:0@lps-Inspiron-5537] HYDU_create_process 
(utils/launch/launch.c:75): execvp error on file BCparallel (No such
file or directory)
[proxy:0:0@lps-Inspiron-5537] HYDU_create_process
(utils/launch/launch.c:75): execvp error on file BCparallel (No such
file or directory)
[proxy:0:0@lps-Inspiron-5537] HYDU_create_process
(utils/launch/launch.c:75): execvp error on file BCparallel (No such
file or directory)
[proxy:0:0@lps-Inspiron-5537] HYDU_create_process
(utils/launch/launch.c:75): execvp error on file BCparallel (No such
file or directory)

我究竟做错了什么?

最佳答案

该程序不在您的 $PATH 中并且您没有指定它存在的路径。尝试这个:

mpiexec -np 4 ./BCparallel file.txt

这与任何其他程序相同,如果它不在 $PATH 中。必须有路径限定。这可以防止您意外运行名为 ls 的程序。 (例如)在您当前的目录中。

关于MPI mpirun execvp 错误 : no such file or directory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47472153/

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